@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  position: relative;
  height: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 38px;
}

p {
  font-size: 18px;
}

.default-container {
  padding-inline: 160px;
  padding-top: 70px;
  padding-bottom: 130px;
}

.circle-design div {
  border-radius: 50%;
}
.circle-design .first-circle {
  background-color: rgba(15, 118, 188, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-design .first-circle .second-circle {
  background-color: rgba(15, 118, 188, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-design .first-circle .second-circle .third-circle {
  background-color: rgba(15, 118, 188, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-design .first-circle .second-circle .third-circle .fourth-circle {
  background-color: rgba(15, 118, 188, 0.8);
}

header {
  width: 100%;
  position: fixed;
  z-index: 999;
}
header .announcement {
  background-color: #B52C2C;
  color: #F3F3F3;
  display: none;
}
header .announcement p {
  margin-inline: 160px;
  padding-block: 12px;
}
header .messages {
  position: absolute;
  top: 150px;
  right: 0;
  left: 0;
  background-color: #0F76BC;
  color: white;
  z-index: 1000;
  padding: 6px;
}
header .messages p {
  margin-inline: 160px;
  padding-block: 12px;
}

nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-inline: 160px;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
}
nav .first {
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav .first img {
  width: 77px;
  height: 62px;
}
nav .first .links-container .links {
  display: flex;
  color: #0F76BC;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  gap: 20px;
}
nav .first .links-container .links .link {
  color: #0F76BC;
  transition: 0.4s ease;
}
nav .first .links-container .links .link:hover {
  color: #07AEEF;
}
nav .last {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav .last a:nth-of-type(3) {
  color: #ffffff;
  background-color: #0F76BC;
  padding: 17px 35px;
  border-radius: 100px;
  transition: 0.4s ease;
}
nav .last a:nth-of-type(3):hover {
  background-color: #07AEEF;
}
nav .last i {
  color: #0F76BC;
  font-size: 20px;
}
nav .last .hamburger-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: none;
}
nav .last button {
  min-width: 60px;
  background: transparent;
  min-height: 60px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #0F76BC;
  border-radius: 50%;
}
nav .last button:focus {
  outline: none;
}
nav .last .effect1 span {
  display: inline-block;
  width: 80%;
  height: 5px;
  background: #0F76BC;
  position: relative;
  transition: all 0.2s;
  border-radius: 10px;
}
nav .last .effect1 span:before {
  content: "";
  position: absolute;
  width: 100%;
  background: #0F76BC;
  height: 5px;
  left: 0px;
  transition: all 0.3s;
  border-radius: 10px;
  top: 10px;
}
nav .last .effect1 span:after {
  content: "";
  position: absolute;
  width: 100%;
  background: #0F76BC;
  height: 5px;
  left: 0px;
  transition: all 0.3s;
  bottom: 10px;
  border-radius: 10px;
}
nav .last button.effect1:hover span:after {
  left: -5px;
}
nav .last button.effect1:hover span:before {
  left: 5px;
}
nav .last button.effect1 span.active {
  background: #fff;
}
nav .last button.effect1 span.active:after {
  top: 0px;
  left: 0px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
nav .last button.effect1 span.active:before {
  top: 0px;
  left: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.nav-active {
  background-color: #ffffff;
  box-shadow: 5px -1px 12px -5px grey;
}

#nav {
  width: 100%;
  position: fixed;
  z-index: 999;
}

.img-gallery {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  background-color: rgba(15, 118, 188, 0.05);
}
.img-gallery img {
  border-radius: 50px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-gallery .gallery-first-section {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.img-gallery .gallery-first-section h1 {
  font-size: 48px;
  font-weight: 700;
}
.img-gallery .gallery-first-section p {
  font-size: 22px;
  font-weight: 400;
}
.img-gallery .gallery-first-section a {
  color: #ffffff;
  background-color: #0F76BC;
  padding: 17px 35px;
  border-radius: 100px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.img-gallery .gallery-img-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}
.img-gallery .gallery-img-container > div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.img-gallery .gallery-img-container .first-part {
  gap: 20px;
  width: 100%;
}
.img-gallery .gallery-img-container .first-part .first-img {
  width: 60%;
  min-width: 200px;
  height: 221.668px;
}
.img-gallery .gallery-img-container .first-part .second-img {
  max-width: 244px;
  height: 156.419px;
  align-self: flex-end;
  min-width: 150px;
}
.img-gallery .gallery-img-container .second-part {
  gap: 20px;
}
.img-gallery .gallery-img-container .second-part .third-img {
  max-width: 244px;
  height: 156.419px;
  min-width: 150px;
}
.img-gallery .gallery-img-container .second-part .fourth-img {
  width: 60%;
  min-width: 200px;
  height: 221.668px;
}

.img-right-overlay {
  display: flex;
  position: relative;
}
.img-right-overlay .right-img-container {
  border-radius: 50px;
  width: 50%;
  height: 728px;
}
.img-right-overlay .right-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.img-right-overlay .right-second-container {
  background-color: rgba(15, 118, 188, 0.9);
  padding: 50px;
  border-radius: 50px;
  min-height: 60%;
  width: 55%;
  position: absolute;
  right: 160px;
  color: #ffffff;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.img-right-overlay .right-second-container > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.img-right-overlay .right-second-container h1 {
  font-size: 32px;
  font-weight: 700;
}
.img-right-overlay .right-second-container p {
  font-size: 20px;
  font-weight: 400;
}
.img-right-overlay .right-second-container a {
  color: #0F76BC;
  background-color: #ffffff;
  padding: 17px 35px;
  border-radius: 100px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.4s ease;
}
.img-right-overlay .right-second-container a:hover {
  background-color: rgb(236, 234, 234);
}

.img-left-overlay {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.img-left-overlay .left-img-container {
  border-radius: 50px;
  width: 50%;
  height: 608px;
}
.img-left-overlay .left-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.img-left-overlay .left-first-container {
  background-color: rgba(15, 118, 188, 0.9);
  padding: 50px;
  border-radius: 50px;
  min-height: 60%;
  width: 55%;
  position: absolute;
  left: 160px;
  color: white;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.img-left-overlay .left-first-container > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.img-left-overlay .left-first-container h1 {
  font-size: 32px;
  font-weight: 700;
}
.img-left-overlay .left-first-container p {
  font-size: 20px;
  font-weight: 400;
}
.img-left-overlay .left-first-container a {
  color: #0F76BC;
  background-color: #ffffff;
  padding: 17px 35px;
  border-radius: 100px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.4s ease;
}
.img-left-overlay .left-first-container a:hover {
  background-color: rgb(236, 234, 234);
}

.footer {
  width: 100%;
  background-color: #0F76BC;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
}
.footer a {
  color: #ffffff;
  font-size: 20px;
}
.footer p,
.footer li {
  font-size: 18px;
}
.footer .footer-first {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-first h1 {
  font-size: 24px;
  font-weight: 700;
}
.footer .footer-first h2 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.footer .footer-second {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.footer .footer-third {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}
.footer .footer-third .socials {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer .footer-third .socials i {
  font-size: 24px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contact .contact-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.contact .contact-first h1 {
  font-size: 48px;
  font-weight: 700;
}
.contact .contact-first p {
  font-size: 16px;
  max-width: 600px;
}
.contact .contact-second {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 100%;
}
.contact .contact-second i {
  color: #0F76BC;
  font-size: 30px;
}
.contact .contact-second > div:not(.phone-referal) {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  background-color: rgba(15, 118, 188, 0.2);
  border-radius: 30px;
}
.contact .contact-second > div:not(.phone-referal):nth-of-type(1) {
  max-width: 350px;
}
.contact .contact-second > div:not(.phone-referal) > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact .contact-second > div:not(.phone-referal) > div p {
  font-size: 18px;
  font-weight: 700;
}
.contact .contact-second .phone-referal {
  gap: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact .contact-second .phone-referal > div {
  padding: 26px;
  background-color: rgba(15, 118, 188, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact .contact-second .phone-referal > div > div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.contact .contact-second .phone-referal > div > div p {
  font-size: 18px;
  font-weight: 700;
}
.contact .contact-third {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contact .contact-third .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.contact .contact-third .contact-form input,
.contact .contact-third .contact-form textarea {
  border: 1px solid #0F76BC;
  border-radius: 30px;
  padding: 15px 25px;
  font-size: 18px;
}
.contact .contact-third .contact-form input::-moz-placeholder, .contact .contact-third .contact-form textarea::-moz-placeholder {
  color: #0F76BC;
}
.contact .contact-third .contact-form input::placeholder,
.contact .contact-third .contact-form textarea::placeholder {
  color: #0F76BC;
}
.contact .contact-third .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact .contact-third .contact-form form > div {
  width: 100%;
  display: flex;
  gap: 15px;
}
.contact .contact-third .contact-form form > div input {
  width: 50%;
}
.contact .contact-third .contact-form form button {
  color: #ffffff;
  background-color: #0F76BC;
  padding: 17px 35px;
  border-radius: 100px;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: 0.4s ease;
}
.contact .contact-third .contact-form form button:hover {
  background-color: #07AEEF;
}
.contact .contact-third .map {
  border-radius: 50px;
  width: 50%;
  height: 520px;
  position: relative;
}
.contact .contact-third .map iframe {
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .footer .footer-second {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .footer .footer-third {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1100px) {
  .default-container {
    padding-inline: 100px;
  }
  header .announcement p {
    margin-inline: 100px;
  }
  header nav {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 970px) {
  .default-container {
    padding-inline: 70px;
  }
  header nav {
    padding-inline: 70px;
  }
}
@media screen and (max-width: 910px) {
  .default-container {
    padding-inline: 20px;
  }
  header nav .first .links-container {
    position: absolute;
    background-color: rgb(218, 245, 255);
    top: -600px;
    min-height: 40vh;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
  }
  header nav .first .links-container .links {
    padding-left: 0;
    flex-direction: column;
    gap: 0;
  }
  header nav .first .links-container .links a {
    padding: 32px;
    text-align: center;
  }
  header nav .first .links-container .links a .link {
    color: #0F76BC;
  }
  header nav .last .hamburger-wrapper {
    display: block;
  }
  header nav .last a:nth-of-type(3) {
    display: none;
  }
  .img-right-overlay {
    flex-direction: column;
    padding-bottom: 0;
  }
  .img-right-overlay .right-img-container {
    width: 100%;
    height: 500px;
  }
  .img-right-overlay .right-second-container {
    padding: 30px;
    border-radius: 50px;
    min-height: 60%;
    width: 85%;
    top: -200px;
    left: 0;
    position: relative;
    gap: 25px;
  }
  .img-right-overlay .right-second-container > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .img-left-overlay {
    flex-direction: column-reverse;
    justify-content: flex-start;
    padding-block: 0;
  }
  .img-left-overlay .left-img-container {
    width: 100%;
    height: 500px;
  }
  .img-left-overlay .left-first-container {
    border-radius: 50px;
    min-height: 60%;
    width: 85%;
    top: -200px;
    left: 0;
    position: relative;
    gap: 25px;
  }
  .img-left-overlay .left-first-container > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .img-left-overlay .left-first-container h1 {
    font-size: 32px;
    font-weight: 700;
  }
  .img-left-overlay .left-first-container p {
    font-size: 20px;
    font-weight: 400;
  }
  .img-left-overlay .left-first-container a {
    color: #0F76BC;
    background-color: #ffffff;
    padding: 17px 35px;
    border-radius: 100px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact .contact-third {
    flex-direction: column;
    align-items: center;
  }
  .contact .contact-third .contact-form {
    width: 100%;
  }
  .contact .contact-third .map {
    width: 100%;
  }
  .contact .contact-third .map iframe {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .img-gallery {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  .img-gallery .gallery-first-section {
    width: 100%;
  }
  .img-gallery .gallery-img-container {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .hero {
    padding-top: 290px;
  }
  header .announcement p {
    margin-inline: 70px;
  }
  .contact .contact-second {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
  }
  .contact .contact-second i {
    color: #0F76BC;
    font-size: 30px;
  }
  .contact .contact-second > div:not(.phone-referal) {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 26px;
    background-color: rgba(15, 118, 188, 0.2);
    border-radius: 30px;
    flex-grow: 9999;
  }
  .contact .contact-second > div:not(.phone-referal):nth-of-type(1) {
    max-width: 100%;
    flex-grow: 999;
  }
  .contact .contact-second > div:not(.phone-referal) > div {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 100%;
  }
  .contact .contact-second > div:not(.phone-referal) > div p {
    font-size: 18px;
    font-weight: 700;
  }
  .contact .contact-second .phone-referal {
    gap: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    flex-grow: 9999;
  }
  .contact .contact-second .phone-referal > div {
    padding: 26px;
    background-color: rgba(15, 118, 188, 0.2);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 9999;
  }
  .contact .contact-second .phone-referal > div > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .contact .contact-second .phone-referal > div > div p {
    font-size: 18px;
    font-weight: 700;
  }
}
@media screen and (max-width: 650px) {
  .img-gallery .gallery-first-section p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  header .announcement p {
    margin-inline: 10px;
    font-size: 10px;
  }
  header nav {
    padding-inline: 30px;
  }
  .hero {
    padding-top: 310px;
  }
  .default-container {
    padding-inline: 10px;
  }
  header .announcement p {
    font-size: 16px;
  }
  .img-right-overlay .right-second-container {
    width: 95%;
  }
  .img-right-overlay .right-second-container h1 {
    font-size: 22px;
  }
  .img-right-overlay .right-second-container p {
    font-size: 16px;
  }
  .img-left-overlay .left-first-container {
    width: 95%;
  }
  .img-left-overlay .left-first-container h1 {
    font-size: 22px;
  }
  .img-left-overlay .left-first-container p {
    font-size: 16px;
  }
  .footer {
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
  }
  .footer .footer-second {
    padding-left: 0;
  }
}
@media screen and (max-width: 400px) {
  .img-gallery {
    padding-bottom: 40px;
  }
  .img-gallery .gallery-img-container {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */