﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url(../fonts/fonts.css);
@keyframes headerfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: slategray;
}

::-webkit-scrollbar-track {
  background: #b8c0c8;
}

body {
  scrollbar-face-color: slategray;
  scrollbar-track-color: #b8c0c8;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  html, body {
    font-size: 16px;
    font-weight: 400;
  }
}

* {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
  line-height: 100%;
  font-weight: normal;
  transition: all ease 0.5s;
}

:root {
  /* Not my favorite that line-height has to be united, but needed */
  --lh: 2.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #000202 !important;
}

input[type=button], input[type=submit], .btn {
  display: inline-block;
  padding: 13px 22px;
  background: #fff;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 0px;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all ease 0.5s;
}
a:hover {
  text-decoration: none;
  transition: all ease 0.5s;
}
a.btn {
  display: inline-block;
  background: #000;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  text-decoration: none;
  padding: 15px 30px;
}
a.btn:hover {
  color: #fff;
  text-decoration: none;
}

input[type=text], input[type=password], textarea, select, input[type=email], input[type=tel], input[type=file] {
  padding: 15px 10px;
  border-radius: 5px;
  line-height: 100%;
  border: 1px solid #868e96;
  background: #fff;
}

/*header*/
header {
  position: relative;
  z-index: 999;
  height: 80px;
}
header.sticky {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 999999;
  height: 60px;
  backdrop-filter: blur(4px);
}
header.sticky .wrapper {
  height: 60px;
  background: none !important;
}
header .wrapper {
  max-width: 1440px;
  margin: 0px auto;
  overflow: hidden;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  header .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 700px) {
  header .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
header .wrapper span.logo {
  width: 170px;
  height: 55px;
  background: url(../images/logo.svg) no-repeat 0% 50%;
  background-size: 100% auto;
  display: block;
}
@media screen and (max-width: 700px) {
  header {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    height: 60px;
    z-index: 9999;
  }
  header.sticky {
    height: 60px;
  }
  header.sticky .wrapper {
    height: 60px;
  }
  header .wrapper {
    height: 60px;
    position: relative;
  }
  header .wrapper span.logo {
    position: relative;
    left: 0px;
    width: 120px;
  }
  header .wrapper .toggler {
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    width: 30px;
    height: 30px;
    background: url(../images/toggler.png) no-repeat 50% 50%;
    background-size: 26px auto;
  }
  header .wrapper nav.mainMenu {
    position: fixed;
    top: 60px;
    right: -300px;
    bottom: 0px;
    width: 300px;
    transition: all ease 0.5s;
    z-index: 9999;
    height: 100%;
  }
  header .wrapper nav.mainMenu.open {
    display: block;
    right: 0px;
    transition: all ease 0.5s;
    bottom: 0px;
    z-index: 9999;
    position: fixed;
  }
  header .wrapper nav.mainMenu ul {
    display: block;
    padding: 10px;
  }
  header .wrapper nav.mainMenu ul li {
    padding: 10px 0px 0px 20px;
  }
  header .wrapper nav.mainMenu ul li a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }
  header .wrapper nav.mainMenu ul li.active a {
    padding: 5px 10px;
  }
}

main section .wrapper {
  min-height: 600px;
  max-width: 1440px;
  margin: 0px auto;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  main section .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 700px) {
  main section .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
main section.hero .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url(../images/hero.svg) no-repeat 100% 70%;
  background-size: auto 90%;
  padding: 100px 0px;
}
main section.hero .wrapper h1 {
  font-size: 60px;
  font-weight: 600;
  color: #d0cece;
  max-width: 60%;
}
main section.ritro-second .wrapper {
  padding: 100px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
main section.ritro-second .wrapper p {
  font-size: 35px;
  font-weight: 500;
  line-height: 140%;
  margin: 0px 0px 20px 0px;
  color: #afabab;
  width: 60%;
}
main section.ritro-second .wrapper h2 {
  width: 90%;
  margin: 0px 0px;
  font-size: 45px;
  font-weight: 700;
  color: #afabab;
}
main section.ritro-second .wrapper h2 span {
  font-size: 45px;
  font-weight: 600;
}
main section.ritro-second .wrapper .clrgreen {
  color: #29cec6;
}
main section.ritro-third .wrapper {
  padding: 100px 0px;
}
main section.ritro-third .wrapper > ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  padding: 0px;
}
main section.ritro-third .wrapper > ul > li {
  list-style: none;
  width: 100%;
}
main section.ritro-third .wrapper > ul > li h2 {
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  color: #9d9d9d;
  font-weight: 700;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) {
  padding-right: 40px;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) h1 {
  font-size: 40px;
  margin: 30px 0px 50px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) h1 span {
  font-weight: 400;
  display: block;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) ul {
  margin: 0px;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) ul li {
  padding: 20px;
  border: 2px solid #9d9d9d;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) ul li p {
  font-size: 15px;
  font-weight: 600;
  color: #afabab;
  line-height: 120%;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) ul li p span {
  display: block;
  color: #29cec6;
  font-weight: 600;
  padding: 10px 0px 0px 0px;
}
main section.ritro-third .wrapper > ul > li:nth-child(1) h3 {
  color: #29cec6;
  font-size: 30px;
  margin: 50px 0px 0px 0px;
  font-weight: 400;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) {
  padding-left: 40px;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h1 {
  font-size: 40px;
  margin: 30px 0px 10px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h1 span {
  font-weight: 700;
  color: #2e75b6;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h3 {
  color: #29cec6;
  font-weight: 600;
  font-size: 40px;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h3 span {
  display: block;
  font-size: 20px;
  color: #afabab;
  line-height: 120%;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h4 {
  color: #afabab;
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
main section.ritro-third .wrapper > ul > li:nth-child(2) h5 {
  font-size: 30px;
  font-style: italic;
  color: #afabab;
  margin: 50px 0px;
}
main section.ritro-four {
  padding: 0px 0px 100px 0px;
}
main section.ritro-four .wrapper h2 {
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  color: #9d9d9d;
  font-weight: 700;
}
main section.ritro-four .wrapper h1 {
  font-size: 40px;
  margin: 30px 0px 10px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-four .wrapper h1 span {
  font-weight: 700;
  color: #2e75b6;
}
main section.ritro-four .wrapper > ul {
  margin: 30px 0px 0px 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.ritro-four .wrapper > ul > li {
  width: 50%;
  padding: 100px 0px;
}
main section.ritro-four .wrapper > ul > li:nth-child(1) {
  padding-right: 30px;
  border-right: 1px solid #9d9d9d;
}
main section.ritro-four .wrapper > ul > li:nth-child(1) p {
  margin: 0px;
}
main section.ritro-four .wrapper > ul > li:nth-child(1) p img {
  width: calc(100% - 30px);
}
main section.ritro-four .wrapper > ul > li:nth-child(2) {
  padding-left: 30px;
}
main section.ritro-four .wrapper > ul > li:nth-child(2) p {
  margin: 30px 0px 0px 0px;
  padding: 0px;
  font-size: 20px;
  color: #afabab;
  line-height: 140%;
}
main section.ritro-five {
  padding: 50px 0px 50px 0px;
}
main section.ritro-five .wrapper h2 {
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  color: #9d9d9d;
  font-weight: 700;
}
main section.ritro-five .wrapper h1 {
  font-size: 40px;
  font-weight: 700;
  color: #afabab;
  margin: 40px 0px;
}
main section.ritro-five .wrapper h1 span.clrgreen {
  color: #29cec6;
  font-weight: 700;
}
main section.ritro-five .wrapper ul {
  margin: 0px;
  padding: 20px 0px 0px 0px;
}
main section.ritro-five .wrapper ul li {
  list-style: none;
  padding: 0px 0px 0px 40px;
  font-size: 20px;
  color: #afabab;
  background: url(../images/arrow.svg) no-repeat 0% 50%;
  background-size: 30px auto;
  margin: 10px 0px 20px 0px;
}
main section.ritro-five .wrapper ul.sp1 li {
  background: url(../images/price.svg) no-repeat 0% 50%;
}
main section.ritro-five .wrapper ul.sp li {
  font-weight: 700;
}
main section.ritro-five .wrapper ul.sp li span {
  font-weight: 400;
}
main section.ritro-five .wrapper ul.sp li span.clrgreen {
  font-weight: 600;
  color: #29cec6;
}
main section.ritro-six {
  padding: 70px 0px;
}
main section.ritro-six .wrapper > ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
main section.ritro-six .wrapper > ul > li {
  width: 50%;
}
main section.ritro-six .wrapper > ul > li:nth-child(1) {
  padding-right: 30px;
}
main section.ritro-six .wrapper > ul > li:nth-child(1) h1 {
  font-size: 40px;
  margin: 30px 0px 10px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-six .wrapper > ul > li:nth-child(1) h3 {
  color: #29cec6;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0px;
}
main section.ritro-six .wrapper > ul > li:nth-child(1) ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 0px;
  padding: 0px;
}
main section.ritro-six .wrapper > ul > li:nth-child(1) ul li {
  list-style: none;
  border: 2px solid #9d9d9d;
  padding: 23px;
  font-size: 15px;
  line-height: 130%;
  color: #afabab;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) {
  padding-left: 30px;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) h1 {
  font-size: 40px;
  margin: 30px 0px 10px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) h1 span {
  font-weight: 600;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) h1 span.clrgrey {
  color: #9d9d9d;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) h1 span.clrgreen {
  color: #29cec6;
}
main section.ritro-six .wrapper > ul > li:nth-child(2) h3 {
  color: #29cec6;
  margin: 50px 0px 10px 0px;
  font-weight: 400;
  font-size: 50px;
}
main section.ritro-six .wrapper h2 {
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  color: #9d9d9d;
  font-weight: 700;
}
main section.ritro-seven {
  padding: 100px 0px;
}
main section.ritro-seven .wrapper h1 {
  font-size: 40px;
  margin: 30px 0px 10px 0px;
  font-weight: 600;
  color: #afabab;
}
main section.ritro-seven .wrapper p {
  margin: 50px 0px;
  padding: 0px;
  font-size: 20px;
  color: #afabab;
  line-height: 140%;
}
main section.ritro-seven .wrapper p span {
  display: block;
}
main section.ritro-seven .wrapper p span a {
  color: #29cec6;
  font-style: italic;
}
main section.ritro-seven .wrapper h3 {
  font-size: 30px;
  color: #afabab;
}
@media screen and (max-width: 1300px) {
  main .wrapper {
    min-height: 400px !important;
  }
}
@media screen and (min-width: 1300px) {
  main .wrapper {
    min-height: 600px;
  }
}
@media screen and (max-width: 700px) {
  main {
    height: 100%;
  }
  main section {
    padding: 30px 0px !important;
    position: relative;
  }
  main section:after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0px;
    height: 1px;
    background: #9d9d9d;
  }
  main section .wrapper {
    padding: 40px 20px !important;
  }
  main section .wrapper h1 {
    font-size: 25px !important;
    line-height: 130% !important;
    text-align: center;
  }
  main section.hero {
    height: 100%;
  }
  main section.hero .wrapper {
    background-position: 50% calc(100% - 20px);
    background-size: 40% auto;
    min-height: 100% !important;
    height: 100%;
  }
  main section.hero .wrapper h1 {
    font-size: 40px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }
  main section.ritro-second .wrapper p {
    width: 100%;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
  }
  main section.ritro-second .wrapper h2 {
    font-size: 30px;
    line-height: 120%;
    width: 100%;
    text-align: center;
  }
  main section.ritro-second .wrapper h2 span {
    font-size: 40px;
    line-height: 120%;
    width: 100%;
  }
  main section.ritro-third .wrapper h2 {
    text-align: center;
  }
  main section.ritro-third .wrapper h3, main section.ritro-third .wrapper h4, main section.ritro-third .wrapper h5 {
    font-size: 20px !important;
    text-align: center !important;
    line-height: 130% !important;
    margin: 0px 0px 30px 0px !important;
  }
  main section.ritro-third .wrapper h3 span {
    font-size: 20px !important;
    text-align: center !important;
    line-height: 120% !important;
  }
  main section.ritro-third .wrapper > ul {
    display: block;
  }
  main section.ritro-third .wrapper > ul > li {
    width: 100%;
  }
  main section.ritro-third .wrapper > ul > li:nth-child(1), main section.ritro-third .wrapper > ul > li:nth-child(2) {
    padding: 30px 0px !important;
  }
  main section.ritro-third .wrapper > ul > li ul {
    display: block !important;
  }
  main section.ritro-third .wrapper > ul > li ul li {
    margin: 0px 0px 10px 0px;
    padding: 16px;
    text-align: center;
  }
  main section.ritro-four .wrapper h2 {
    text-align: center;
  }
  main section.ritro-four .wrapper ul {
    display: block;
  }
  main section.ritro-four .wrapper ul li {
    width: 100%;
    margin: 0px 0px 10px 0px !important;
    padding: 0px !important;
  }
  main section.ritro-four .wrapper ul li h3, main section.ritro-four .wrapper ul li h4 {
    font-size: 25px !important;
    text-align: center !important;
    line-height: 130%;
  }
  main section.ritro-four .wrapper ul li p {
    text-align: center;
    margin: 0px 0px 10px 0px;
    font-size: 20px !important;
    line-height: 120% !important;
  }
  main section.ritro-five .wrapper h2 {
    text-align: center !important;
  }
  main section.ritro-five .wrapper h1 {
    text-align: center !important;
    font-size: 25px !important;
  }
  main section.ritro-five .wrapper ul li {
    font-size: 16px !important;
  }
  main section.ritro-six .wrapper h1, main section.ritro-six .wrapper h2, main section.ritro-six .wrapper h3 {
    text-align: center;
  }
  main section.ritro-six .wrapper ul {
    display: block !important;
  }
  main section.ritro-six .wrapper ul li {
    padding: 20px 0px !important;
    width: 100% !important;
  }
  main section.ritro-six .wrapper ul li h3 {
    font-size: 30px !important;
  }
  main section.ritro-six .wrapper ul li ul li {
    text-align: center !important;
    padding: 20px !important;
    font-size: 16px !important;
    line-height: 120%;
    margin: 0px 0px 20px 0px !important;
  }
  main section.ritro-seven .wrapper h1, main section.ritro-seven .wrapper h2, main section.ritro-seven .wrapper h3, main section.ritro-seven .wrapper p, main section.ritro-seven .wrapper span {
    text-align: center;
  }
}

footer .wrapper {
  max-width: 1440px;
  margin: 0px auto;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  footer .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 700px) {
  footer .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
footer .wrapper p {
  padding: 20px 0px;
  text-align: center;
  margin: 0px;
  font-size: 20px;
  color: #9d9d9d;
}
@media screen and (max-width: 700px) {
  footer {
    display: none;
    padding: 20px;
  }
  footer .wrapper ul {
    padding: 0px;
    display: block;
  }
}

/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */
*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */
*::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */
/* This one works! */
*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
