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

a {
  text-decoration: none;
}

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

a {
  text-decoration: none;
}

.navbar-container {
  height: 70px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.86));
  background-size: 300% 100%;
  z-index: 9;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
  transition: 0.6s;
}
.navbar-container .navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .navbar-container .navbar-wrapper {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .navbar-container .navbar-wrapper {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .navbar-container .navbar-wrapper {
    max-width: 90%;
  }
}
.navbar-container .navbar-wrapper .logo-container svg.logo path[fill="#4d4d4f"] {
  fill: #FFF;
  transition: 0.3s;
}
.navbar-container .navbar-wrapper .links-container-mobile {
  display: none;
}
@media screen and (max-width: 620px) {
  .navbar-container .navbar-wrapper .links-container-mobile {
    display: block;
  }
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler {
  display: inline-block;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  border-radius: 5px;
  position: relative;
  width: 40px;
  height: 40px;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler {
  width: 20px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler .bar {
  position: absolute;
  height: 2px;
  width: 20px;
  background: #FFF;
  transition: all 0.3s;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler .bar.middle-bar {
  top: 50%;
  margin-top: -1px;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler .bar.bottom-bar {
  bottom: 0;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler.active {
  z-index: 2;
  animation: rotateHamburger 0.5s linear 0s forwards;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler.active .bar {
  background: #fff;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler.active .top-bar {
  transform: translateY(7px) rotate(45deg);
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler.active .middle-bar {
  width: 0;
}
.navbar-container .navbar-wrapper .links-container-mobile .mobile-menu-toggler .burger-toggler.active .bottom-bar {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar-container .navbar-wrapper .links-container ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar-container .navbar-wrapper .links-container ul:hover li {
  opacity: 0.5;
}
.navbar-container .navbar-wrapper .links-container ul li {
  display: block;
  transition: 0.3s;
}
.navbar-container .navbar-wrapper .links-container ul li:hover {
  opacity: 1;
}
.navbar-container .navbar-wrapper .links-container ul li a {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  font-size: 15px;
}
.navbar-container .navbar-wrapper .links-container ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background: #FFF;
  transition: 0.3s;
}
.navbar-container .navbar-wrapper .links-container ul li a:hover::after {
  width: 30px;
}
.navbar-container .navbar-wrapper .links-container ul li.active {
  opacity: 1;
}
.navbar-container .navbar-wrapper .links-container ul li.active a {
  background: -webkit-linear-gradient(45deg, #C02E2D, #F69B1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-container .navbar-wrapper .links-container ul li.active a::after {
  background: linear-gradient(45deg, #C02E2D, #F69B1C) !important;
  width: 30px;
}
@media screen and (max-width: 620px) {
  .navbar-container .navbar-wrapper .links-container {
    position: fixed;
    top: 60px;
    left: -100%;
    opacity: 0;
    width: 100%;
    box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.15);
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 0;
    z-index: 9;
    display: flex;
    align-content: center;
    backdrop-filter: blur(5px);
    transition: 0.3s;
  }
  .navbar-container .navbar-wrapper .links-container::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: linear-gradient(45deg, #C02E2D, #F69B1C);
  }
}
@media screen and (max-width: 620px) and (max-width: 1400px) {
  .navbar-container .navbar-wrapper .links-container::before {
    max-width: 920px;
  }
}
@media screen and (max-width: 620px) and (max-width: 920px) {
  .navbar-container .navbar-wrapper .links-container::before {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) and (max-width: 620px) {
  .navbar-container .navbar-wrapper .links-container::before {
    max-width: 90%;
  }
}
@media screen and (max-width: 620px) {
  .navbar-container .navbar-wrapper .links-container ul {
    display: flex;
    flex-direction: column;
  }
  .navbar-container .navbar-wrapper .links-container ul li a {
    font-size: 25px;
    color: #121212;
  }
  .navbar-container .navbar-wrapper .links-container ul li a::after {
    transform: none;
    left: 0;
  }
  .navbar-container .navbar-wrapper .links-container.active {
    opacity: 1;
    left: 0;
  }
}
.navbar-container.standout {
  background-position: 100% 0;
  height: 60px;
}
.navbar-container.standout .navbar-wrapper .logo-container svg.logo path[fill="#4d4d4f"] {
  fill: #4d4d4f;
}
.navbar-container.standout .navbar-wrapper .links-container ul li a {
  color: #121212;
}
.navbar-container.standout .navbar-wrapper .links-container ul li a::after {
  background: #121212;
}

.banner-container {
  height: 700px;
  max-height: 100vh;
  background: #f1f1f1;
  position: relative;
  background: url("../../assets/images/banner/home.jpg");
  background-position: 50% 35%;
  background-size: cover;
}
.banner-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 10%, rgba(246, 155, 28, 0.1));
  z-index: 2;
}
.banner-container .header-text {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 3;
}
@media screen and (max-width: 1400px) {
  .banner-container .header-text {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .banner-container .header-text {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .banner-container .header-text {
    max-width: 90%;
  }
}
.banner-container .header-text h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #FFF;
  line-height: 70px;
  margin-bottom: 20px;
}
.banner-container .header-text h1 .gradient-text {
  transition: 0.3s;
  background: -webkit-linear-gradient(45deg, #C02E2D, #F69B1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-container .header-text p {
  max-width: 800px;
  color: #FFF;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.banner-container .header-text .header-btn {
  display: inline-block;
  padding: 0 20px;
  line-height: 45px;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  margin-top: 20px;
}
@media screen and (max-width: 920px) {
  .banner-container .header-text h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 620px) {
  .banner-container .header-text h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .banner-container .header-text p {
    font-size: 15px;
    max-width: 500px;
  }
}

.cookies-container {
  position: absolute;
  bottom: 20px;
  right: 0;
  padding: 25px;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  box-shadow: -3px -3px 15px 0 rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  color: #FFF;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: 0.6s;
}
.cookies-container.active {
  right: 20px;
  z-index: 4;
  visibility: visible;
  opacity: 1;
}
.cookies-container h3 {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 600;
}
.cookies-container p a {
  color: #1376b8;
  text-decoration: underline;
}
.cookies-container p a:hover {
  color: #1894E6;
}
.cookies-container .buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.cookies-container .buttons a {
  display: inline-block;
  line-height: 40px;
  padding: 0 10px;
  background: #FFF;
  color: #222;
  border-radius: 5px;
  transition: background 0.3s;
}
.cookies-container .buttons a:hover {
  background: whitesmoke;
}
.cookies-container .buttons a.primary {
  background: #1894E6;
  color: #FFF;
}
.cookies-container .buttons a.primary:hover {
  background: #1376b8;
}

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

a {
  text-decoration: none;
}

.footer-container {
  padding: 100px 0;
  padding-bottom: 50px;
  background: #FFF;
  position: relative;
}
.footer-container::before {
  content: "";
  height: 3px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .footer-container::before {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .footer-container::before {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .footer-container::before {
    max-width: 90%;
  }
}
.footer-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 960px;
  background: url("../images/wave-bg-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-container .copyright-wrapper {
  text-align: center;
  padding-top: 60px;
  font-family: "Poppins", sans-serif;
  color: #555;
  font-size: 14px;
}
.footer-container .footer-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}
@media screen and (max-width: 1400px) {
  .footer-container .footer-wrapper {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .footer-container .footer-wrapper {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .footer-container .footer-wrapper {
    max-width: 90%;
  }
}
@media screen and (max-width: 1400px) {
  .footer-container .footer-wrapper .logo-container img {
    width: 300px;
  }
}
.footer-container .footer-wrapper .info-container {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
}
.footer-container .footer-wrapper .info-container ul {
  list-style: none;
}
.footer-container .footer-wrapper .info-container ul li {
  font-family: "Poppins", sans-serif;
}
.footer-container .footer-wrapper .info-container ul li a {
  color: #111;
  font-weight: bold;
}
.footer-container .footer-wrapper .info-container .links-wrapper {
  border-right: 1px rgba(246, 155, 28, 0.2) solid;
}
.footer-container .footer-wrapper .info-container .links-wrapper ul li a {
  display: block;
  padding-right: 25px;
  position: relative;
  line-height: 40px;
  font-size: 14px;
}
.footer-container .footer-wrapper .info-container .links-wrapper ul li a::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  height: 0;
  width: 2px;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  transition: 0.6s;
}
.footer-container .footer-wrapper .info-container .links-wrapper ul li a:hover::after {
  height: 100%;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li:last-child {
  margin-bottom: 0;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li.centered {
  align-items: center;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li .icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, rgba(192, 46, 45, 0.1), rgba(246, 155, 28, 0.1));
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li .icon img {
  height: 20px;
  width: 20px;
}
.footer-container .footer-wrapper .info-container .contact-wrapper ul li p {
  color: #555;
  font-size: 14px;
}
@media screen and (max-width: 920px) {
  .footer-container {
    padding: 50px 0;
  }
  .footer-container .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0;
  }
  .footer-container .footer-wrapper .info-container {
    width: 100%;
    flex-direction: column;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper {
    border-right: 0;
    border-top: 1px rgba(246, 155, 28, 0.2) solid;
    border-bottom: 1px rgba(246, 155, 28, 0.2) solid;
    margin-bottom: 20px;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper ul li a {
    padding-right: 0;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper ul li a::after {
    display: none;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper ul li a:hover {
    background: -webkit-linear-gradient(45deg, #C02E2D, #F69B1C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 545px) {
  .footer-container .footer-wrapper ul {
    padding: 0;
  }
  .footer-container .footer-wrapper .info-container .links-wrapper ul {
    flex-direction: column;
    gap: 0;
  }
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}

body.disabled {
  position: relative;
}
body.disabled::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9;
}

.page-content {
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
}
.page-content h4 {
  margin-bottom: 10px;
}
.page-content p {
  margin-bottom: 20px;
  max-width: 90%;
}

.title-banner {
  height: 400px;
  background-position: center !important;
  display: flex;
  align-items: center;
}

p {
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-weight: 600;
  font-size: 50px;
  color: #000410;
  position: relative;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.section-title::after {
  content: "";
  display: block;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  height: 3px;
  width: 160px;
}
.section-title::before {
  content: "";
  display: block;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100px;
}
.section-title.center {
  text-align: center;
}
.section-title.center::after {
  margin: 0 auto;
}
.section-title.center::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 620px) {
  .section-title {
    font-size: 30px;
  }
}

.section-description {
  font-family: "Poppins", sans-serif;
  max-width: 500px;
  color: #32353F;
}
.section-description.center {
  text-align: center;
  margin: 25px auto;
}

.section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .section {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .section {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .section {
    max-width: 90%;
  }
}

.section-wrapper {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-wrapper.wave-top-corner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url("../images/wave-top-corner.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top top;
}
.section-wrapper.wave-center::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  height: 500px;
  background: url("../images/wave-center.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-wrapper.wave-opacity::before {
  opacity: 0.5;
}

.about-us-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-us-wrapper .side {
  width: 50%;
}
.about-us-wrapper .side img {
  width: 100%;
  max-width: 640px;
  max-height: 600px;
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
}
.about-us-wrapper .side p {
  max-width: 640px;
  line-height: 35px;
}
@media screen and (max-width: 920px) {
  .about-us-wrapper {
    flex-wrap: wrap;
  }
  .about-us-wrapper .side {
    width: 100%;
  }
  .about-us-wrapper .side:first-child {
    display: flex;
    flex-direction: column-reverse;
  }
}

.services-section-wrapper {
  background: #F9FCFF;
}
.services-section-wrapper .services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 25px;
  padding: 50px 0;
}
.services-section-wrapper .services-wrapper .service {
  font-family: "Poppins", sans-serif;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px rgba(246, 155, 28, 0.2) solid;
}
.services-section-wrapper .services-wrapper .service:last-child, .services-section-wrapper .services-wrapper .service:nth-child(4) {
  border-right: 0;
}
@media screen and (max-width: 920px) {
  .services-section-wrapper .services-wrapper .service {
    border-right: 0;
  }
}
@media screen and (max-width: 620px) {
  .services-section-wrapper .services-wrapper .service {
    width: 150px;
  }
}
.services-section-wrapper .services-wrapper .service .icon {
  background: linear-gradient(45deg, rgba(192, 46, 45, 0.1), rgba(246, 155, 28, 0.1));
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section-wrapper .services-wrapper .service .icon img {
  width: 50px;
  height: 50px;
}
.services-section-wrapper .services-wrapper .service h3 {
  font-size: 15px;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  max-width: 150px;
  margin: 0 auto;
}

.contact-form {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  background: #F4F7FB;
  z-index: 99;
  transition: 0.6s;
  opacity: 0;
  overflow-y: auto;
  display: flex;
}
.contact-form .contact-content {
  padding: 25px;
}
.contact-form .contact-image {
  flex-shrink: 0;
  width: 450px;
  background: #FFF;
}
.contact-form .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form .loader {
  display: none;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 30px);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.contact-form.active {
  opacity: 1;
  top: 50%;
}
.contact-form.loading .loader {
  display: block;
}
.contact-form.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}
.contact-form h2 {
  font-size: 35px;
  margin-bottom: 25px;
}
.contact-form form input, .contact-form form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border: 0;
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 1px transparent solid;
}
.contact-form form input:focus, .contact-form form textarea:focus {
  border-color: rgba(246, 155, 28, 0.5);
}
.contact-form form input:last-child, .contact-form form textarea:last-child {
  margin-bottom: 0;
}
.contact-form form input {
  line-height: 50px;
  padding: 0 10px;
}
.contact-form form textarea {
  padding: 10px;
  height: 150px;
  resize: none;
}
.contact-form form .checkbox-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.contact-form form .checkbox-container input {
  width: 20px;
}
.contact-form form .checkbox-container p {
  font-size: 12px;
}
.contact-form form .buttons-container {
  display: flex;
  justify-content: space-between;
}
.contact-form form .buttons-container button {
  display: inline-block;
  padding: 0 20px;
  line-height: 45px;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  border: 0;
  cursor: pointer;
}
.contact-form form .buttons-container button:not(.active) {
  color: #999;
  background: #f1f1f1;
  cursor: not-allowed;
}
@media screen and (max-width: 900px) {
  .contact-form .contact-image {
    width: 350px;
  }
  .contact-form .contact-image img {
    object-position: 70% center;
  }
}
@media screen and (max-width: 750px) {
  .contact-form {
    flex-direction: column-reverse;
  }
  .contact-form .contact-image {
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-height: 650px) {
  .contact-form h2 {
    font-size: 25px;
  }
  .contact-form form input {
    line-height: 35px;
  }
  .contact-form form textarea {
    height: 60px;
  }
}

.separator {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #C02E2D, #F69B1C);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .separator {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .separator {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .separator {
    max-width: 90%;
  }
}
.separator::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 60px;
  background: inherit;
}
.separator::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 50px;
  background: inherit;
}

.white-space {
  height: 60px;
}

.split-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 0px;
}
@media screen and (max-width: 1400px) {
  .split-section {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .split-section {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .split-section {
    max-width: 90%;
  }
}
.split-section .content-side {
  max-width: 800px;
  padding: 50px 0;
}
.split-section .content-side h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.split-section .content-side p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
}
@media screen and (max-width: 1400px) {
  .split-section .image-side img.privacy-image {
    object-position: 100% center;
  }
}
@media screen and (max-width: 920px) {
  .split-section {
    padding: 20px 0;
  }
  .split-section .content-side {
    padding: 20px 0;
  }
  .split-section .content-side h2 {
    font-size: 35px;
  }
}

.banner-image {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .banner-image {
    max-width: 920px;
  }
}
@media screen and (max-width: 920px) {
  .banner-image {
    max-width: 620px;
  }
}
@media screen and (max-width: 620px) {
  .banner-image {
    max-width: 90%;
  }
}
.banner-image img {
  max-height: 500px;
  width: 100%;
  max-width: 800px;
  object-fit: cover;
  object-position: center 30%;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #F69B1C;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

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

/*# sourceMappingURL=style.css.map */
