@import url("http://fonts.cdnfonts.com/css/gilroy-bold");
/* FontAwesome */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Gilroy-Bold", sans-serif;
  color: #000000;
  background-color: #fbfbfb;
}

img,
video {
  width: 100%;
}

::selection {
  background: #28282c;
  color: white;
}

/* Video.js custom */
.vjs-poster {
  background-color: #28282c !important;
}

/* Start of Buttons */
.primary-btn {
  background: transparent linear-gradient(114deg, #00ff00 0%, #00ffe7 100%) 0%
    0% no-repeat padding-box;
  border-radius: 50px;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.91px;
  padding: 0 30px;
  color: #000000 !important;
  text-decoration: none !important;
  outline: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: 0.3s all ease;
}

.primary-btn i {
  margin-left: 0.5rem;
}

.primary-btn.dark {
  background: #313131;
  color: white !important;
}

.primary-btn.dark:hover,
.primary-btn.dark:focus,
.primary-btn.dark.active {
  background: #292929;
}

.secondary-btn {
  background: #d8d8d8;
  border-radius: 50px;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.91px;
  padding: 0 30px;
  color: #6f6f6f !important;
  text-decoration: none !important;
  outline: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: 0.3s all ease;
}

.secondary-btn.dark {
  background: #d8d8d8;
  color: #6f6f6f !important;
}

.secondary-btn.dark:hover,
.secondary-btn.dark:focus,
.secondary-btn.dark.active {
  background: #313131 !important;
  color: white !important;
}

.secondary-btn i {
  margin-left: 0.5rem;
}

.secondary-btn:hover,
.secondary-btn:focus,
.secondary-btn.active {
  background: #808080;
  color: white !important;
}

.second-text {
  color: white !important;
  letter-spacing: 2.31px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s all ease;
}

.second-text i {
  margin-left: 0.5rem;
  transition: 0.3s all ease;
}

.second-text:hover > i,
.second-text:focus > i {
  margin-left: 1rem;
}

.btn-second {
  text-align: center;
  letter-spacing: 0.91px;
  color: #464849 !important;
  height: 50px;
  text-decoration: none;
  background-color: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  border: 2px solid #464849;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 48px;
  padding: 0 30px;
  transition: 0.3s all ease;
}

.btn-second:hover,
.btn-second:focus,
.btn-second.active {
  background: #464849;
  border-color: transparent;
  color: white !important;
}

.btn-second i {
  margin-left: 0.5rem;
}
/* End of Buttons */

/* Start of input */
.input-label {
  margin-bottom: 12px;
  font-size: 14px;
  color: #464849;
}

.input-label span {
  color: #ff1a1a;
  font-size: 14px;
}

.input {
  background-color: #ebebeb;
  border: none;
  outline: none;
  height: 50px;
  padding: 0 20px;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
}

textarea.input {
  min-height: 130px;
  padding: 20px;
}

.form-select {
  background-color: #ebebeb;
  border: none;
  outline: none;
  height: 50px;
  padding: 0 20px;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: none !important;
}
/* End of input */

/* Start of section styling */
section {
  padding: 100px 0;
}

.section-head small {
  letter-spacing: 1.57px;
  color: #464849;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}

.section-head h2 {
  letter-spacing: 0.05px;
  color: #000000;
  font-weight: 400;
  max-width: 437px;
}
/* End of section styling */

/* Start of navigation */
.offcanvas {
  display: none;
}

.offcanvas-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 28px !important;
  height: auto;
  margin-right: 15px;
}

.offcanvas-logo h1 {
  font-weight: normal;
  font-size: 28px;
}

.offcanvas .text-reset {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar .nav-link {
  color: white !important;
  font-size: 16px;
  margin: 0 10px;
  position: relative;
}

.navbar .nav-link:first-child {
  margin-left: 0 !important;
}
.navbar .nav-link:last-child {
  margin-right: 0 !important;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: 0;
  height: 3px;
  transition: 0.5s all ease;
}

.nav-link:hover::before,
.nav-link:focus::before,
.nav-link.active::before {
  background: transparent
    linear-gradient(94deg, #00ff00 0%, #00ffe7 100%, #00dbd0 100%) 0% 0%
    no-repeat padding-box;
  width: 80%;
}

.offcanvas .nav-link {
  color: #000000 !important;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
  color: #00dbd0 !important;
}

.navbar-top {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #eeee;
  transition: 0.3s all ease;
}

.navbar-top .nav-link {
  color: #000000 !important;
}

.navbar .navbar-toggler {
  box-shadow: none !important;
  border: none;
}

.navbar-top .navbar-toggler i {
  color: #000000;
}
/* End of navigation */

/* Start of hero section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/bg.png);
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-section .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-section .content h1 {
  font-size: 50px;
  color: white;
  line-height: 60px;
  margin-bottom: 2.5rem;
}
/* End of hero section */

/* Start of about */
.about {
  transform: translateY(-83px);
  padding-bottom: 450px;
}

.about .container {
  background: #f8f8f8;
  position: absolute;
  right: 0;
  padding: 5rem;
}

.about .img {
  transform: translateX(-30%);
}

.about .mobile-image {
  display: none;
}

.about h2 {
  text-align: left;
  letter-spacing: 0.05px;
  color: #000000;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
}

.about p {
  text-align: left;
  letter-spacing: 0.02px;
  color: #6c6c6c;
  opacity: 0.9;
  font-size: 14px;
}

.about .button {
  margin-top: 50px;
}

.about .img img {
  width: 580px;
  height: 355px;
  object-fit: cover;
}
/* End of about */

/* Start of services */
.services .row {
  margin-top: calc(71px - 20px);
}

.services .item {
  margin: 20px;
}

.services .item .icon {
  width: 43px;
  max-height: 36px;
  margin-bottom: 33px;
}

.services .item .icon img {
  height: 36px;
  width: auto;
}

.services .item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 21px;
}

.services .item p {
  text-align: left;
  letter-spacing: 0.02px;
  color: #6c6c6c;
  opacity: 0.9;
  font-size: 14px;
}
/* End of services */

/* Start of video */
.video {
  padding-top: calc(100px - 20px) !important;
}

.video .text {
  position: absolute;
  bottom: 87px;
  left: 77px;
  z-index: 99;
}

.video .text small {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.91px;
  color: #ffffff;
  display: block;
  font-weight: 500;
}

.video .text h3 {
  font-size: 36px;
  letter-spacing: 0.04px;
  color: #ffffff;
}

.video .video-js {
  width: 100%;
  height: 564px;
}

.video .video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: transparent;
  font-size: 80px;
}
/* End of video */

/* Start of performance */
.performance .row {
  margin-top: 67px;
}

.performance .item {
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.circle {
  width: 119px;
  height: 119px;
  position: relative;
}

.circle canvas {
  transform: rotateZ(90deg);
}

.circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  font-weight: 500;
  transform: translate(-45%, -45%);
}

.performance .item .text {
  margin-top: 20px;
  font-size: 21px;
  text-align: center;
  width: 200px;
}
/* End of performance */

/* Start of reviews */
.reviews {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/reviews-bg.png);
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.reviews .head {
  max-width: 400px;
  color: white;
  font-weight: 300;
  padding-bottom: 360px;
}

.reviews .head small {
  font-size: 12px;
}

.reviews .head h1 {
  font-size: 41px;
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 28px;
}

.reviews .head p {
  letter-spacing: 0.02px;
  color: #ebebeb;
  font-weight: 300;
}
/* End of reviews */

/* Start of testimonials */
.testimonials .container {
  background-color: white;
  position: absolute;
  right: 0;
  transform: translateY(-400px);
  padding: 4rem;
}

.testimonials .desc {
  text-align: left;
  letter-spacing: 0.02px;
  color: #464849;
  width: 350px;
  font-size: 14px;
  margin-bottom: 27px;
}

.testimonials .item {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/testimonials1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 385px;
  min-height: 485px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 20px 0;
}

.testimonials .item small {
  color: #c7c7c7;
  font-size: 14px;
  margin-bottom: 5px;
}

.testimonials .item h3 {
  letter-spacing: 0.03px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

.testimonials .item p {
  text-align: center;
  letter-spacing: 0.02px;
  color: #e0e0e0;
  font-size: 13px;
  margin-top: 26px;
}

.testimonials .item .stars {
  margin-top: 80px;
}

.testimonials .item .stars i {
  color: #ff9b32;
  font-size: 18px;
}
/* End of testimonials */

/* Start of footer */
.footer {
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 335px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 78px;
}

.footer .links a {
  text-decoration: none;
  color: #000000 !important;
  font-weight: 500;
  margin: 0 20px;
  text-align: center;
  letter-spacing: 0.02px;
  font-size: 18px;
  position: relative;
}

.footer .links a:first-child {
  margin-left: 0 !important;
}

.footer .links a:last-child {
  margin-right: 0 !important;
}

.footer .links a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: 0;
  height: 3px;
  transition: 0.5s all ease;
}

.footer .links a:hover::before,
.footer .links a:focus::before,
.footer .links a.active::before {
  background: transparent
    linear-gradient(94deg, #00ff00 0%, #00ffe7 100%, #00dbd0 100%) 0% 0%
    no-repeat padding-box;
  width: 80%;
}

.footer .copyright {
  margin-top: 50px;
}

.footer .copyright p {
  margin-bottom: 0 !important;
  font-weight: 500;
  text-align: center;
  color: #000000;
  font-size: 14px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 33px;
  height: 65px;
  margin-right: 20px;
}

.footer-logo h1 {
  font-weight: normal;
  font-size: 37px;
}
/* End of footer */

/* Start of Cookie Alert */
.cookie-alert {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 99px #00000019;
  border-radius: 13px;
  width: 784px;
  min-height: 147px;
  padding: 2.5rem;
  position: fixed;
  z-index: 99;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-alert .icon {
  width: 50px;
  height: 50px;
}

.cookie-alert .text p {
  color: #141d36;
  font-size: 14px;
  width: 400px;
  letter-spacing: 0.02px;
  opacity: 0.9;
}

.cookie-alert .text a {
  color: #141d36;
  text-decoration: underline;
  opacity: 0.9;
  font-weight: 500;
  font-size: 14px;
}

.cookie-alert .button a {
  color: white !important;
  background: transparent linear-gradient(77deg, #3afc3a 0%, #00f5de 100%) 0% 0%
    no-repeat padding-box !important;
}
/* End of Cookie Alert */

/* Start of Portfolio */
.portfolio .row {
  margin-top: 78px;
}

.portfolio .row > div {
  padding: 0;
}

.portfolio .row .col-lg-4 .item {
  padding: 0;
  border: 1px solid #e6e6e6;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #c7c7c7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-decoration: none;
  color: #000000 !important;
  cursor: pointer;
  position: relative;
}

.portfolio .row .content {
  position: absolute;
  width: 100%;
  top: -100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #eeee;
  height: 100%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s all ease;
}

.portfolio .row .content h3 {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.portfolio .row .content p {
  font-size: 14px;
  font-weight: 400;
  color: #252525;
}

.portfolio .row .col-lg-4 .item:hover .content,
.portfolio .row .col-lg-4 .item:focus .content,
.portfolio .row .col-lg-4 .item.active .content {
  top: 0;
}

.dark .portfolio .row .col-lg-4 .item {
  border-color: #464849 !important;
}
/* End of Portfolio */

/* Start of availability */
.availability .show-all {
  font-size: 16px;
  text-decoration: none;
  color: #707070;
  border-bottom: 2px solid;
}

.availability .content .header {
  padding: 2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: white;
}

.availability .content .header .icon {
  margin-bottom: 12px;
}

.availability .content .header .icon i {
  color: #6e6e6e;
  font-size: 27px;
}

.availability .content .header .text h3 {
  font-size: 37px;
  font-weight: 400;
}

.availability .content .header .text p {
  color: #6e6e6e;
  margin-top: 30px;
  margin-bottom: 0;
}

.availability .content .middle {
  padding: 2rem;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  background-color: white;
}

.availability .content .middle .text {
  display: flex;
  align-items: center;
}

.availability .content .middle .text h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.availability .content .middle .text span {
  margin-left: 35px;
  font-size: 14px;
  color: #6e6e6e;
}

.availability .content .foot {
  background-color: white;
  padding: 2rem;
}

.availability .content .foot p {
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 25px;
}

.availability .content .foot h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

.availability .content .foot ul {
  list-style: none;
}

.availability .content .foot ul li small {
  margin-right: 1rem;
}

.availability .container .foot ul li {
  color: #6e6e6e;
  font-size: 14px;
}

.availability .content-bottom .row {
  border-bottom: 1px solid #cfcfcf;
  padding: 2rem 0;
}

.availability .content-bottom .row .col-lg-6:first-child {
  padding-bottom: 2rem;
}

.availability .content-bottom .row:last-child {
  border: none;
}

.availability .content-bottom .row .icon {
  margin-bottom: 12px;
}

.availability .content-bottom .row .icon i {
  color: #6e6e6e;
  font-size: 27px;
}

.availability .content-bottom .row .text h2 {
  font-size: 37px;
  font-weight: 400;
}

.availability .content-bottom .row .text p {
  color: #6e6e6e;
  margin-top: 30px;
  margin-bottom: 0;
}

.availability .content-bottom .middle,
.availability .content-bottom .foot {
  background: none;
}

.dark .availability .content-bottom .row,
.dark .availability .content .middle {
  border-color: #484848;
}

.dark .availability .content .header,
.dark .availability .content .middle,
.dark .availability .content .foot {
  background: #252525;
}
/* End of availability */

/* Start of terms of service */
.terms-of-service {
  background: #ffffff 0% 0% no-repeat padding-box;
  width: 900px;
  margin-top: 150px;
  padding: 5rem;
  background: #ffffff 0% 0% no-repeat padding-box;
}

.terms-of-service h1 {
  text-align: left;
  letter-spacing: 0.07px;
  color: #000000;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 50px;
}

.terms-of-service p {
  text-align: left;
  letter-spacing: 0.02px;
  color: #6c6c6c;
  opacity: 0.9;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 30px;
}

.terms-of-service h3 {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 0.04px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
}

.dark .terms-of-service {
  background-color: #252525;
}

.dark .terms-of-service h1,
.dark .terms-of-service h3 {
  color: white;
}

.dark .terms-of-service p {
  color: #dbdbdb;
}
/* End of terms of service */

/* Start of contact */
.contact {
  background-color: white;
  padding: 5rem 3rem;
  margin-top: 150px;
  transform: translateY(100px);
}

.dark .contact {
  background-color: #252525;
}

.contact .image {
  transform: translate(-25%);
}

.contact .image img {
  width: 627px;
  height: 653px;
  object-fit: cover;
}

.contact .right h2 {
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 19px;
}

.contact .right p {
  font-size: 13px;
  font-weight: 400;
  color: #6c6c6c;
  margin-bottom: 50px;
  width: 330px;
}

.dark .contact .right p {
  color: #b3b3b3;
}
/* End of contact */

/* Start of back to top button */
#topBtn {
  width: 50px;
  height: 50px;
  font-size: 16px;
  border: none;
  background: transparent
    linear-gradient(94deg, #00ff00 0%, #00ffe7 100%, #00dbd0 100%) 0% 0%
    no-repeat padding-box;
  border-radius: 50%;
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 10px;
}

#themeSwitcher {
  width: 50px;
  height: 50px;
  font-size: 16px;
  border: none;
  background: transparent
    linear-gradient(94deg, #00ff00 0%, #00ffe7 100%, #00dbd0 100%) 0% 0%
    no-repeat padding-box;
  border-radius: 50%;
  position: fixed;
  z-index: 99;
  left: 10px;
  bottom: 10px;
}
/* End of back to top button */

/* Start of dark mode */
.dark {
  background-color: #131313;
  color: white;
}

.dark .input,
.dark .form-select {
  background-color: #3c3c3c;
  color: white;
}

.dark .form-select {
  background-image: url(../img/dark-form-select.svg) !important;
}

.dark .input-label {
  color: white;
}

.dark .btn-second {
  color: white !important;
}

.dark .navbar-top {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(16px);
  border-bottom: none;
  transition: 0.3s all ease;
}

.dark .navbar-top .nav-link {
  color: white !important;
}

.dark .offcanvas {
  background: #131313;
}

.dark .navbar .navbar-toggler i {
  color: white !important;
}

.dark .offcanvas .nav-link {
  color: white !important;
}

.dark .offcanvas .text-reset {
  color: white !important;
}

.dark .about .container {
  background: #252525;
}

.dark .about h2 {
  color: white;
}

.dark .about p {
  color: #adadad;
}

.dark .section-head small {
  color: #b5b5b5 !important;
}

.dark .section-head h2 {
  color: #cdcdcd !important;
}

.dark .services .item h3 {
  color: #cdcdcd !important;
}

.dark .services .item p {
  color: #a5a5a5;
}

.dark .circle span,
.dark .performance .item .text {
  color: #b5b5b5;
}

.dark .reviews .head small {
  color: #908e8d !important;
}

.dark .reviews .head h1,
.dark .reviews .head p {
  color: #c7c7c7 !important;
}

.dark .testimonials .container {
  background-color: #131313;
}

.dark .testimonials .desc {
  color: #c7c7c2;
}

.dark .footer .copyright p,
.dark .footer .links a {
  color: white !important;
}

.dark .footer-logo h1 {
  color: white;
}

.dark .cookie-alert {
  background: 0% 0% no-repeat padding-box padding-box rgb(40 40 44);
  color: white;
}

.dark .cookie-alert .text p,
.dark .cookie-alert .text a {
  color: white !important;
}
/* End of dark mode */

/* Responsive design */
@media only screen and (max-width: 991px) {
  .offcanvas {
    display: unset;
  }

  .offcanvas img {
    width: 180px;
  }

  .navbar .nav-link {
    display: block;
    margin: 0.5rem 0;
    color: #28282c !important;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus,
  .navbar .nav-link.active {
    color: #00dbd0 !important;
  }

  .navbar .nav-link::before {
    width: 0 !important;
  }

  section {
    padding: 50px 0 !important;
  }

  .section-head small,
  .section-head h2 {
    font-weight: 400;
    text-align: center;
    margin: auto;
  }

  .hero-section .content h1 {
    font-size: 30px !important;
    line-height: 35px;
    margin-bottom: 1.5rem;
  }

  .about {
    padding-bottom: 850px;
  }

  .about .container {
    padding: 0;
  }

  .about .img {
    transform: unset;
  }

  .about .mobile-image {
    display: unset;
  }

  .about .pc-image {
    display: none;
  }

  .about .img img {
    width: 100%;
    margin-bottom: 2rem;
  }

  .about .col-lg-6:nth-child(2) {
    padding: 2rem;
  }

  .services .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-weight: 300;
  }

  .services .item h3 {
    font-weight: 300;
  }

  .services .item p {
    text-align: center;
  }

  .video {
    padding-top: calc(50px - 20px) !important;
  }

  .video .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .video .text {
    left: 5px;
    padding: 0 1rem;
  }

  .video .text h3 {
    font-size: 25px;
  }

  .reviews .head {
    margin: 0 auto;
  }

  .reviews .head small,
  .reviews .head h1 {
    text-align: center;
    display: block;
  }

  .reviews .head p {
    display: none;
  }

  .testimonials .desc {
    display: none;
  }

  .testimonials .container {
    padding: unset;
    position: unset;
  }

  .testimonials {
    padding-bottom: 0;
  }

  .footer {
    margin-top: 0 !important;
    padding-top: 50px;
  }

  .footer .links {
    display: unset;
  }

  .footer .links a {
    display: block;
    margin: 1rem 0;
  }

  .footer .links a.active {
    margin-bottom: calc(1rem + 10px);
  }

  .footer .links a::before {
    width: 15% !important;
  }

  .footer-logo h1,
  .offcanvas-logo h1 {
    font-size: 23px;
  }

  .cookie-alert {
    display: none;
  }

  .mobile-availability-image {
    display: block !important;
  }

  .pc-availability-image {
    display: none !important;
  }

  .availability .content {
    transform: unset !important;
    margin-top: 30px;
  }

  .availability .show-all {
    display: none;
  }

  .availability .content-bottom .row:first-child {
    margin-top: 1.5rem;
  }

  .availability .content-bottom .row .icon i {
    font-size: 20px;
  }

  .availability .content-bottom .row .text h3 {
    font-size: 23px;
  }

  .availability .content-bottom .row .text p {
    margin-top: 15px;
  }

  .availability .content-bottom .row .icon,
  .availability .content-bottom .row .text {
    text-align: center;
  }

  .availability .header .col-lg-6:nth-child(2),
  .availability .content-bottom .row .col-lg-6:nth-child(2) {
    flex-direction: column;
  }

  .availability .header .col-lg-6:nth-child(2) button,
  .availability .content-bottom .row .col-lg-6:nth-child(2) a:first-child {
    margin-bottom: 1rem !important;
    margin-left: 0 !important;
  }

  .availability .header .col-lg-6:nth-child(2) {
    align-items: center;
  }

  .availability .content-bottom .row .col-lg-6:nth-child(2) {
    align-items: center;
  }

  .availability .content-bottom .row .col-lg-6:nth-child(2) a:first-child {
    margin-right: 0 !important;
  }

  .availability .header .col-lg-6:nth-child(2) button,
  .availability .header .col-lg-6:nth-child(2) a,
  .availability .content-bottom .row .col-lg-6:nth-child(2) a {
    width: 200px !important;
    margin-right: 0 !important;
  }

  .terms-of-service {
    padding: 2rem;
  }

  .contact {
    padding: 5rem 0;
    transform: unset !important;
  }

  .contact .image {
    display: none;
  }

  .contact .right p {
    width: auto;
  }
}
/* ./responsive design */
