@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--primary-text);
}
:root {
  --primary: #0989ef;
  --primary-text: #094869;
  --sub-text: #6a8d92;
}
[class*="grid"] {
  display: grid;
}
.align-center {
  align-items: center;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  position: relative;
}
html::before,
html::after {
  content: "";
  position: fixed;
  width: 1px;
  height: 100vh;
  top: 0;
  background: #dddddd8b;
  z-index: 9999;
}
html::before {
  left: 10rem;
}
html::after {
  right: 10rem;
}
body {
  -webkit-text-size-adjust: 100%;
}
i svg {
  width: unset;
  height: 1.8rem;
  fill: white;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
p {
  color: var(--sub-text);
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}
img,
video {
  max-width: 100%;
}
.container {
  max-width: 1440px;
  padding: 0 12rem;
  margin: auto;
  width: 100%;
}
button {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 1rem;
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary-text);
  text-transform: capitalize;
  line-height: 1;
  transition: 0.3s;
}
button:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}
button i svg path {
  stroke: var(--primary) !important;
}
button i svg {
  height: 1.6rem !important;
  width: unset !important;
}
button.empty:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
main button.empty:hover {
  background: var(--primary) !important;
}
button.empty:hover {
  background: var(--primary);
  color: white;
}
button:hover svg path {
  stroke: white !important;
}
button.learn {
  transition: 0.1s;
}
button.learn:hover {
  padding-bottom: 0.5rem;
}
button.empty {
  background: transparent;
  color: var(--primary-text);
}
button.learn {
  border: none;
  border-bottom: 3px solid var(--primary);
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--primary-text);
}
section {
  padding: 5rem 0;
}
body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../images/noice.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* header */
header {
  height: 8rem;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: 0.3s;
  border-bottom: 1px solid #dddddd8b;
}
header.sticky {
  background: var(--primary-text);
  border-color: transparent;
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header button {
  width: fit-content;
  position: relative;
  margin-left: auto;
  border-color: white;
  color: white !important;
}
header .logo img {
  height: 5rem;
}
header .bars span {
  width: 3.5rem;
  height: 2px;
  background: white;
  display: block;
  border-radius: 1rem;
  transition: 0.3s;
}
header .menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: fit-content;
}
header .menu p {
  color: white;
  font-weight: 300;
}
header .bars span:nth-child(2) {
  width: 2.5rem;
}
header .bars span:nth-child(3) {
  width: 3rem;
}
header .bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
header.active .menu .bars span {
  width: 3.5rem;
  transition: 0.3s;
}
header.active .links {
  transform: translateX(0);
}
main {
  position: relative;
  overflow: hidden;
  height: fit-content;
  padding: 10rem 0;
  padding-top: 15rem;
}
main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2e303891;
  z-index: 1;
}
main .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  align-items: center;
}
main .content {
  max-width: 65rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
main .content h1 {
  font-size: 7.6rem;
  color: white;
  line-height: 1;
  font-weight: 900;
}
main .content p {
  color: white;
  font-weight: 300;
}
main .content .cta {
  display: flex;
  gap: 1.5rem;
}
main .content button {
  border-color: white;
  background: white;
  color: var(--primary-text);
  height: 5.5rem;
}
main .content button.empty {
  background: none;
  color: white;
}
.list-url {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.list-url a {
  color: #ffffff84;
  text-align: right;
  padding: 1rem 0;
  transition: 0.3s;
  text-transform: capitalize;
}
.list-url a:hover {
  color: white;
}
.list-url::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: -1rem;
  background: #ffffff78;
}
.list-url a.active {
  position: relative;
  color: white;
}
.list-url a.active::before {
  content: "";
  position: absolute;
  right: -1.1rem;
  width: 3px;
  background: var(--primary);
  height: 100%;
  top: 0;
  border-radius: 5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
.frame-1x1 {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.frame-16x7 {
  aspect-ratio: 16/7;
  overflow: hidden;
}
.full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block h2 {
  font-size: 4rem;
  line-height: 1.1;
}

.block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fixed-bg {
  background: url(../images/7.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 5rem 0;
  margin-bottom: 0;
}
.fixed-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #2e303891;
  width: 100%;
  height: 100%;
}
.fixed-bg :is(h2, p) {
  color: white;
}
.fixed-bg .container {
  position: relative;
}
.fixed-bg .content {
  text-align: center;
  max-width: 90rem;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.fixed-bg .content h2 {
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 900;
}
.fixed-bg button {
  color: white;
  border-color: white;
}
#contact {
  position: relative;
  padding: 0 !important;
  margin-bottom: 10rem;
}
#contact .frame {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% + 10rem);
}
#contact .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#contact form {
  max-width: 60%;
  background: white;
  position: relative;
  margin-left: auto;
  padding: 5rem;
  z-index: 3;
  top: 5rem;
}
.switch-wraper {
  height: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 30rem;
  width: 100%;
  margin: auto;
  border: 1px solid var(--primary-text);
  position: relative;
}

.switch-wraper input:checked ~ label {
  color: white;
  background: var(--primary-text);
}
.switch-wraper label {
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch-wraper input {
  display: none;
}
.field input,
.field textarea {
  height: 5rem;
  border-bottom: 1px solid var(--primary-text);
  width: 100%;
}
.field p {
  color: var(--primary-text);
  text-transform: capitalize;
  line-height: 1.15;
}
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
#contact form {
  display: grid;
  gap: 2rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
#contact textarea {
  height: 10rem !important;
  resize: none;
  padding: 1.5rem 0;
}
textarea::placeholder,
input::placeholder {
  color: var(--sub-text);
}
#contact form button {
  width: fit-content;
  margin: auto;
  font-size: 2rem;
  background: var(--primary-text);
  margin-top: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.grid-4 .card h3 {
  font-size: 4rem;
}
.my-slide {
  width: 40vw;
  background: white;
  padding: 2vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
}
.my-slide p {
  font-size: 1vw;
  line-height: 1.5vw;
}
.my-slide .details {
  margin-top: 1.5vw;
}
.my-slide h4 {
  font-size: 1.5vw;
}
.my-slide .profile {
  width: 4vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.feedback {
  margin: 1rem 0;
}
.stars {
  display: flex;
  align-items: center;
  margin-top: 1vw;
  gap: 0.5rem;
}
.stars p {
  line-height: 1;
  color: var(--primary-text);
  font-size: 1.1vw;
  font-weight: 800;
}
.stars .list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.stars .list svg {
  width: unset;
  height: 1vw;
}
/* footer */
footer {
  background: #d3d3d329;
  padding: 5rem 0;
  margin-top: 5rem;
  padding-bottom: 0;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
}
.link,
.contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.link h2,
.contact h2 {
  font-size: 2rem;
  color: #0a2539;
}
.link a,
.contact a {
  font-weight: 500;
}
footer p {
  font-size: 1.5rem;
}
.link a,
.contact a,
footer p {
  color: var(--primary-text);
}
footer p {
  margin: 2rem 0;
}
.newsletter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.newsletter input {
  height: 5rem;
  font-size: 1.6rem;
  padding: 0 2rem;
  border: 1px solid var(--bg);
}
.newsletter button {
  border-radius: unset;
  border: unset;
  height: 5rem;
  background: var(--primary-text);
}
footer .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social i svg {
  width: unset;
  height: 3rem;
  fill: var(--primary);
}
.copy {
  padding: 2rem;
  text-align: center;
  color: white;
  background: var(--primary-text);
  margin-top: 5rem;
  font-size: 1.5rem;
}
.copy span {
  color: white;
}
section a,
footer a {
  width: fit-content !important;
}
footer .logo img {
  height: 5rem;
}
.iti {
  width: 100% !important;
}
.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 1.6rem;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-left: 10rem !important;
}
.f1,
.f2 {
  position: relative;
}

.f1::before,
.f2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}
.f1.revealed::before,
.f2.revealed::before {
  animation: rev 0.8s cubic-bezier(0, 0.09, 0.96, -0.05) forwards;
}
.f2.tp.revealed::before {
  animation: rev1 0.8s cubic-bezier(0, 0.09, 0.96, -0.05) forwards;
}
.f2.bt.revealed::before {
  animation: rev2 0.8s cubic-bezier(0, 0.09, 0.96, -0.05) forwards;
}
@keyframes rev {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rev1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes rev2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.list-url {
  right: 13rem;
}
#background-video {
  display: none;
}
i path {
  fill: var(--primary);
}
i svg {
  height: 1.5rem;
  width: unset;
}
.list .item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}
.list .item {
  font-size: 1.8rem;
  color: var(--primary-text);
}
.list {
  display: grid;
  gap: 1rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.card-wrap {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.card-wrap .card .image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-wrap .card .body {
  padding: 3rem;
}
.card-wrap .card {
  background: white;
  box-shadow: #959da533 0px 8px 24px;
}
.card h4 {
  font-size: 2.5rem;
  text-align: center;
}
.image-frame svg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: unset;
  height: 2.5rem;
}
.image-frame svg path {
  fill: white !important;
}
.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: var(--primary-text);
}
.card-wrap .card {
  cursor: pointer;
}
.image-frame.main::before {
  display: none;
}
.modal {
  position: fixed;
  background: #0a2539dc;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 99999;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.modal.active {
  display: flex;
  animation: fade 0.3s linear;
}
@keyframes fade {
  from {
    opacity: 0;
  }
}
.modal .modal-content {
  background: white;
  max-width: 100rem;
  width: 100%;
  padding: 3rem;
  max-height: 85vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.modal-content::-webkit-scrollbar {
  width: 0;
}
.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  aspect-ratio: 1/1;
  overflow-y: hidden;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal .close svg path {
  fill: white !important;
}
.modal .close svg {
  width: unset;
  height: 2.5rem;
}
.modal-content .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-content h2 {
  font-size: 3rem;
}
.location {
  display: grid;
  grid-template-columns: auto 1fr;
  font-weight: 600;
  color: var(--primary);
  gap: 0.5rem;
  font-size: 1.5rem;
  align-items: flex-start;
  margin: 0 !important;
  line-height: 1.3;
}
.location svg {
  width: unset;
  height: 1.8rem;
}
.location svg path {
  fill: var(--primary) !important;
}
.modal-content p {
  margin: 1.5rem 0;
}
.actions a {
  width: 5rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
}
.actions a svg {
  width: unset;
  height: 2rem;
}
.actions svg path {
  fill: var(--primary);
}
.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
main.sm .container {
  display: block !important;
  text-align: center;
}
main.sm .content {
  margin: auto;
}
.modal-content .list p {
  margin: 0;
}
.card-grid.card-wrap {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid.card-wrap .card {
  cursor: default;
}
.card-grid.card-wrap .body {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.5rem;
  align-items: center;
}
.card-grid.card-wrap .body h4 {
  text-align: left;
  font-size: 2rem;
}
.back {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}
.back svg path {
  fill: var(--primary) !important;
}

@media (max-width: 1080px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 991px) {
  html::before {
    left: 5rem;
  }
  html::after {
    right: 5rem;
  }
}
@media (max-width: 860px) {
  html {
    font-size: 40%;
  }
}

@media (max-width: 660px) {
  html {
    font-size: 62%;
  }
  .fix {
    grid-area: 1 / 1 / 2 / 2;
  }
  p {
    line-height: 1.6;
  }
  .menu p {
    display: none;
  }
  header .logo img {
    height: 3rem;
  }
  header .container {
    gap: 1rem;
    grid-template-columns: 5rem 1fr auto;
  }
  header button {
    padding: 1rem;
    text-wrap: nowrap;
  }
  .list-url {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 5rem;
    gap: 1rem;
  }
  .list-url::before {
    display: none;
  }
  .list-url a {
    padding: 0;
  }
  .list-url a::before {
    display: none;
  }
  [class*="grid"],
  footer .container {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1.5rem;
  }
  html::before,
  html::after {
    display: none;
  }
  #contact .frame {
    width: 100%;
  }
  #contact form {
    max-width: 100%;
  }
  main {
    height: 100%;
    padding: 5rem 0;
    padding-top: 12rem;
  }
  main .content h1 {
    font-size: 4rem;
  }
  main .content .cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  main .content .cta button {
    width: 100% !important;
  }
  .block h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .fixed-bg .content h2 {
    font-size: 4rem;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #contact form {
    padding: 2rem;
  }
  .newsletter {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .p-0 {
    gap: 1.5rem;
  }
  .my-slide {
    width: 35rem;
    padding: 2rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .my-slide p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .my-slide h4 {
    font-size: 2rem;
    line-height: 1.5;
  }
  .my-slide .profile {
    width: 5rem;
  }
  .stars .list svg {
    height: 1.4rem;
  }
  header .links {
    width: 100%;
    padding: 5rem;
  }
  .modal-content {
    padding: 0 !important;
    width: calc(100% - 2rem) !important;
  }
  .modal-content .body {
    padding: 2rem;
    margin: 0;
  }
  .location {
    margin-top: 0.8rem;
  }
  .modal-content {
    height: 100%;
    display: unset !important;
    gap: 0 !important;
  }
  .modal-content .body {
    padding-bottom: 10rem;
  }
  .modal-content {
    overflow-y: scroll;
  }
  .actions {
    position: fixed;
    height: 8rem;
    bottom: 7.5vh;
    width: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    margin: 0;
    border-top: 1px solid #00000021;
    justify-content: center;
  }
  .modal .image-frame {
    position: sticky;
    top: 0;
    width: 100%;
    aspect-ratio: 16/9 !important;
  }
  .card-grid.card-wrap {
    grid-template-columns: 1fr;
  }
  .sm1 {
    text-align: center !important;
  }
}
/*------------------------*/

.message {
    display: none; 
    margin: 10px 0;  
    position: fixed; 
    top: -100px; 
    left: 50%; 
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, top 0.5s ease;
    font-size: 25px;
    font-weight: bold;
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 30px;
    background-color: #393939;
    transition: display 0.4s ease;
    text-align: center;
 
}
.active{
    display: block;
    top: 20px;
    opacity: 1;

}

  .success{
    color: #18F296;
    border-color: #18F296;
  }
  .error{
    color: #fe2f18;
    border-color: #fe2f18;
  }