/**=================================*/
/**============ GENERAL ============*/
/**=================================*/
@font-face {
   font-family: 'SD Pro Regular';
   src: url('/resources/fonts/sf-pro-text_regular.woff2') format('woff2');
}

:root {
   --main-color: #007aff;
   --white-color: #fff;
}

html {
   font-size: 62.5%;
}

body {
   font-size: 1.6rem;
   font-family: 'SD Pro Regular';
}

/**================= */
/** HEADER ========= */
/**================= */

header {
   display: flex;
   align-items: center;
   position: absolute;
   width: 100%;
   background-color: rgba(255, 255, 255, 0.5);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   backdrop-filter: blur(6.3px);
   -webkit-backdrop-filter: blur(6.3px);
}

.header-wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.header-wrapper .phone {
   text-align: right;
   padding: 1.5rem 0;
   text-transform: uppercase;
}

.header-wrapper .phone a {
   color: var(--main-color);
}

.header-wrapper .phone p {
   font-size: 1.8rem;
   margin: 0;
}

/* .logo {
   display: flex;
   border: 1px solid var(--main-color);
   border-radius: 12px;
   width: fit-content;
   font-weight: 700;
   line-height: 45px;
} */

.logo img {
   width: 140px;
}

.logo span {
   text-transform: uppercase;
   margin: 0;
   font-size: 3rem;
}

.logo span:first-child {
   font-weight: 700;
   color: var(--white-color);
   background-color: var(--main-color);
   border-top-left-radius: 12px;
   border-bottom-left-radius: 12px;
   padding-left: 12px;
   padding-right: 8px;
}

.logo span:last-child {
   font-weight: 300;
   color: var(--main-color);
   border-top-right-radius: 12px;
   border-bottom-right-radius: 12px;
   padding-left: 8px;
   padding-right: 12px;
}

/**================= */
/** MAIN =========== */
/**================= */

/** List of Services */

.heading {
   margin-top: calc(100px + 7rem);
   font-size: 4rem;
   text-transform: capitalize;
   font-weight: bold;
   background-color: rgba(255, 255, 255, 0);
   border-radius: 12px;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(30px);
   padding: 2rem;
   width: 80%;
   text-align: center;
}

.list-wrapper {
   align-items: center;
   justify-content: center;
   display: flex;
   flex-direction: column;
   width: 80%;
   color: #000;
   padding: 4rem;
   background-color: rgba(255, 255, 255, 0);
   border-radius: 12px;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(30px);
}

.window-wrapper {
   margin-top: calc(100px + 7rem);
}

.list-wrapper h3 {
   margin-bottom: 2.5rem;
   font-size: 2.5rem;
}

.list-wrapper ul {
   font-size: 1.6rem;
   padding: 0;
}

.list-wrapper ul li {
   list-style-type: none;
   margin: 1rem 0;
   display: flex;
   align-items: center;
}

.list-wrapper ul li:first-child {
   margin-top: 0;
}

.list-wrapper ul li:last-child {
   color: rgba(33, 37, 41, 0.75);
   font-size: 1.3rem;
   margin: 0;
}

.list-wrapper ul li i {
   margin-right: 1rem;
   color: var(--main-color);
   font-size: 2rem;
}

/** Navigation */
.nav-tabs {
   border: none;
}

.nav-tabs button {
   width: 50%;
   padding: 1rem 2rem;
}

.nav-tabs .nav-link {
   border: none;
   background-color: rgba(255, 255, 255, 0.5);
   backdrop-filter: blur(6.3px);
   -webkit-backdrop-filter: blur(6.3px);
   border-top-left-radius: 12px;
   border-top-right-radius: 12px;
   font-size: 1.7rem;
   color: #000;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active:hover {
   background-color: #0072ec;
   color: var(--white-color);
}

.nav-tabs .nav-link.active {
   background-color: var(--main-color);
   color: var(--white-color);
   border-color: none;
}

.separator {
   width: 100%;
   height: 8px;
   background-color: var(--main-color);
}

.tab-content {
   margin-bottom: 7rem;
}

#background-video {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   min-height: 100vh;
   object-fit: cover;
   z-index: -1;
}

main .window {
   color: #000;
   width: 100%;
   padding: 4rem;
   background-color: rgba(255, 255, 255, 0.31);
   border-radius: 12px;
   border-top-left-radius: 0;
   border-top-right-radius: 0;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(30px);
}

main .window .window-content {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

main .window .window-content form h1 {
   font-size: 2.5rem;
}

main .window .window-content form button {
   font-size: 1.5rem;
   color: var(--white-color);
   border-radius: 8px;
   border: none;
   background-color: var(--main-color);
   padding: 0.8rem;
   width: 100%;
   transition: all 0.3s ease-out;
   font-weight: 500;
}

main .window .window-content form button:hover {
   background-color: #6091e6;
}

label span {
   color: tomato;
}

.form-control {
   font-size: 1.4rem;
   padding: 0.5rem 1rem;
   background-color: #ffffff75;
   border: none;
}

.form-check-input {
   background-color: #ffffff75;
}

.terms-and-conditions {
   color: #551a8b;
}

.terms-and-conditions:hover {
   color: var(--main-color);
}

#responseMessage {
   position: absolute;
   text-align: center;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2.5rem;
   padding: 3rem;
   margin: 0;
}

/** LOGIN */

.login {
   width: 50%;
   margin: 0 auto;
   text-align: center;
}

.login button {
   width: 100%;
   font-size: 1.5rem;
   color: var(--white-color);
   border-radius: 8px;
   border: none;
   background-color: var(--main-color);
   padding: 0.8rem;
   transition: all 0.3s ease-out;
   font-weight: 500;
}

.login button:hover {
   background-color: #6091e6;
}

/**================= */
/** LOADER ========= */
/**================= */

.loader-wrapper {
   display: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.7);
   align-items: center;
   justify-content: center;
   border-radius: 16px;
}

.loader {
   border: 10px solid #f3f3f3;
   border-top: 10px solid var(--main-color);
   border-radius: 50%;
   width: 100px;
   height: 100px;
   animation: spin 2s linear infinite;
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

/**============================ */
/** TERMS AND CONDITIONS ====== */
/**============================ */

.form-check-label,
.form-check-input {
   cursor: pointer;
}

.terms-cloud {
   background-color: var(--white-color);
   padding: 0.8rem;
   border-radius: 3.75px;
}

.terms-container {
   padding: 4rem 0;
}

.terms-container button {
   border: none;
   border-radius: 8px;
   background-color: var(--main-color);
   font-size: 1.7rem;
   transition: all 0.3s ease-out;
   width: 130px;
}

.terms-container button:hover {
   background-color: #6091e6;
}

.terms-container button a {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 0.8rem;
   gap: 1rem;
   text-decoration: none;
}

.terms-container button a i {
   color: var(--white-color);
   display: flex;
}

.terms-container button a p {
   margin: 0;
   color: var(--white-color);
}

.g-recaptcha {
   width: 100%;
}

/** =========================== */
/** MEDIA QUERIES ============= */
/** =========================== */

@media only screen and (max-width: 1398px) {
   .list-wrapper,
   .heading {
      width: 90%;
   }
}

@media only screen and (max-width: 991px) {
   .list-wrapper,
   .heading {
      width: 100%;
   }
   .list-col {
      order: 2;
   }
   .list-wrapper {
      margin-bottom: 15rem;
   }
   .window-wrapper {
      margin-top: calc(100px + 10rem);
   }
   .tab-content {
      margin-bottom: 0;
   }
}

@media only screen and (max-width: 767px) {
   .terms-container button {
      width: 100%;
      margin-bottom: 3rem;
   }
}

@media only screen and (max-width: 575px) {
   .terms-container .row {
      margin: 0 auto;
   }
}

@media only screen and (max-width: 499px) {
   html {
      font-size: 52.5%;
   }
   .list-wrapper {
      margin: 8rem 0;
   }
   .window-wrapper {
      margin-top: calc(100px + 8rem);
   }
}

@media only screen and (max-width: 425px) {
   html {
      font-size: 45.5%;
   }
}
