/* Vendors */
@import url(./bootstrap.min.css);
@import url(./fontawesome.min.css);
@import url(./jquery.lightbox.css);
@import url(./leaflet.css);
@import url(./slick.css);
@import url(./fonts.css);

:root {
  /* Color var */
  --color-white: #ffffff;
  --color-text: #343434;
  --color-purple-text: #664558;
  --color-purple: #272542;
  --color-gray-yellow: #c7a55a;
  --color-light-bg: #f2ece0;
  /* Font var */
  --font-family1: "Alice";
  --font-family2: "Calibri";
  --font-fa5: "Font Awesome 5 Pro";
  --font-fa6: "Font Awesome 6 Pro";
  --font-extra-light: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
}

body {
  font-family: var(--font-family2);
  font-weight: var(--font-regular);
  font-size: 22px;
}

h1 {
  font-size: 100px;
  line-height: 80px;
  font-weight: var(--font-regular);
}

@media (max-width: 767px) {
  h1 {
    font-size: 72px;
    line-height: 58px;
  }
}

h2 {
  font-size: 60px;
  line-height: 60px;
  font-weight: var(--font-regular);
  font-family: var(--font-family1);
  color: var(--color-purple-text);
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 52px;
    line-height: 52px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

p {
  font-family: var(--font-family2);
  font-weight: var(--font-regular);
}

.button {
  padding: 22px 55px;
  border-radius: 28px;
  height: 56px;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: var(--font-regular);
  font-family: var(--font-family2);
  color: var(--color-white);
  background-color: var(--color-gray-yellow);
  text-decoration: none;
}

/* Navbar styles Start */

.navbar {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0;
  height: 100px;
  background-color: var(--color-purple);
}

.navbar.scrolled > div {
  -webkit-transform: translateY(var(--scroll-translate));
  transform: translateY(var(--scroll-translate));
}

.navbar.scrolled .site-logo {
  bottom: var(--scroll-translate);
}

.navbar-container {
  height: 100%;
  /* padding: 0; */
}

@media (min-width: 1200px) {
  .navbar-container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .navbar-container .header-buttons .phone a span {
    display: none;
  }
}

.navbar-toggler {
  border: none;
  position: relative;
  z-index: 1;
  color: var(--color-gray-yellow) !important;
  display: flex;
  align-items: center;
  padding: 0 0 0 3px;
}

.navbar-toggler .menu-title {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-toggler i {
  font-size: 24px;
  margin-right: 13px;
}

@media (max-width: 1400px) {
  .navbar-toggler {
    padding-left: 0;
  }
}

.navbar-toggler:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    padding: 29px 18px;
    padding-left: 0;
  }
}

.site-logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--color-blue);
  border-radius: 10px;
}

.site-logo img {
  width: 220px;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
}

.navbar.scrolled .site-logo img {
  margin-top: -20px;
  width: 180px;
}

@media (max-width: 991px) {
  .navbar.scrolled .site-logo img {
    margin-top: 0;
  }
}

.site-logo:hover,
.site-logo:focus {
  text-decoration: none;
  color: var(--white);
}

.navbar .header-buttons .phone a {
  font-size: 18px;
  font-weight: var(--font-regular);
  color: var(--color-gray-yellow);
  text-decoration: none;
}

.navbar .header-buttons .phone a i {
  margin-right: 7px;
}

#main-menu .main-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 825px;
  height: 100%;
  background: var(--color-gray-yellow);
  color: var(--color-white);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(0);
  opacity: 1;
  box-shadow: 0px 0px 13px -2px #292929;
  transition: all 0.2s linear;
  font-family: "Montserrat";
  font-weight: 600;
}

@media (max-width: 625px) {
  #main-menu .main-menu-container {
    width: 100%;
  }
}

#main-menu .main-menu-container .mobile-menu-content {
  max-width: 425px;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--color-dark-blue);
  display: flex;
  align-items: center;
  position: relative;
}

#main-menu .main-menu-container .mobile-menu-content::before {
  content: " ";
  background: url(/images/flower-90.webp);
  position: absolute;
  width: 270px;
  height: 100%;
  max-height: 728px;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(-1);
}

@media (max-width: 1110px) {
  #main-menu .main-menu-container .mobile-menu-content {
    border: none;
    width: 100%;
  }
}

#main-menu .main-menu-container .mobile-menu-content .navbar-nav {
  gap: 20px;
  width: fit-content;
  margin: 0 0 0 85px;
  z-index: 1;
}

#main-menu .main-menu-container .mobile-menu-content .nav-link {
  font-size: 48px;
  font-weight: 400;
}

@media (max-width: 480px) {
  #main-menu .main-menu-container .mobile-menu-content .nav-link {
    font-size: 40px;
  }
}

#main-menu .main-menu-container .contact-info {
  width: 100%;
  height: 100%;
  max-width: 465px;
  padding-left: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 1110px) {
  #main-menu .main-menu-container .contact-info {
    display: none;
  }
}

#main-menu .main-menu-container .contact-info .contact-block {
  display: flex;
  gap: 10px;
  max-width: 280px;
}

#main-menu .main-menu-container .contact-info .contact-block i {
  font-size: 24px;
  color: var(--color-gray-yellow);
}

#main-menu .main-menu-container .contact-info .contact-block a {
  color: var(--color-white);
  text-decoration: none;
}

#main-menu .main-menu-container .contact-block .contact-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gray-yellow);
}

#main-menu .main-menu-container .contact-block .contact-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

#main-menu .main-menu-container .navbar-contacts {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 40px;
}

#main-menu .main-menu-container .navbar-contacts h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-purple);
}

#main-menu .main-menu-container .navbar-contacts i {
  font-size: 30px;
  color: var(--color-purple);
}

#main-menu .main-menu-container .navbar-contacts svg {
  height: 30px;
  width: 30px;
}

#main-menu .main-menu-container .navbar-contacts a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
}

#main-menu .main-menu-container .navbar-contacts .social_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#main-menu .main-menu-container .navbar-contacts .social_links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-purple);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-menu .main-menu-container .navbar-contacts .social_links a i {
  color: var(--color-white);
  font-size: 22px;
}

#main-menu .main-menu-container .navbar-contacts .social_links a svg {
  fill: var(--color-white);
  width: 25px;
}

@media (max-width: 825px) {
  #main-menu .main-menu-container {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }

  #main-menu .main-menu-container::before {
    content: " ";
    background: url(/images/flower-90.webp);
    position: absolute;
    width: 270px;
    height: 100%;
    max-height: 728px;
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(-1);
    z-index: -1;
  }

  #main-menu .main-menu-container .mobile-menu-content {
    align-items: flex-start;
    margin: 50px 0 25px 0;
    height: max-content;
  }

  #main-menu .main-menu-container .mobile-menu-content::before {
    display: none;
  }

  #main-menu .main-menu-container .mobile-menu-content .navbar-nav {
    margin: 0 !important;
    gap: 10px;
  }

  #main-menu .main-menu-container .mobile-menu-content .nav-link {
    font-size: 38px;
    line-height: 40px;
  }

  #main-menu .main-menu-container .navbar-contacts {
    gap: 10px;
    max-width: 425px;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  #main-menu .main-menu-container {
    padding-left: 20px;
  }

  #main-menu .main-menu-container .navbar-contacts {
    margin: 0;
  }
}

#main-menu .mobile-contacts {
  display: none;
}

#main-menu .mobile-contacts a {
  color: var(--white);
}

#main-menu .navbar-toggler i {
  font-size: 30px;
  color: var(--color-purple);
}

#main-menu .mobile-contacts .phone-number a {
  font-size: 22px;
}

#main-menu.collapse:not(.show) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

#main-menu .navbar-toggler {
  position: absolute;
  top: 29px;
  right: 28px;
  padding: 0;
  margin: 0;
  width: 27px;
}

@media (max-width: 1110px) {
  #main-menu .navbar-toggler {
    right: 50px !important;
  }
}

#main-menu .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#main-menu .navbar-toggler span {
  display: block;
  background: #fff;
  position: absolute;
}

#main-menu .navbar-toggler span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#main-menu .navbar-toggler span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 26px !important;
}

#main-menu > ul {
  margin-left: 86px;
}

#main-menu > .col-12 {
  width: auto;
}

#main-menu .nav-link {
  color: var(--color-purple);
  font-family: var(--font-family1);
}

#main-menu .nav-item-dedicated .nav-link {
  font-size: 30px;
  color: var(--color-white);
  font-family: var(--font-family1);
}

#main-menu .socials {
  margin-top: auto;
}

#main-menu .contacts {
  margin-top: 40px;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-orange);
  padding: 15px;
}

#main-menu .contacts .contact {
  margin-bottom: 0;
}

#main-menu .contacts a {
  color: var(--color-white);
  font-weight: 700;
}

@media (max-width: 620px) {
  #main-menu {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-nav {
    margin-left: 65px !important;
  }

  #main-menu > ul {
    margin-top: 80px;
  }

  #main-menu .mobile-contacts {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-bottom: 60px;
  }

  .nav-item-dedicated a {
    color: var(--color-white) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 380px) {
  #main-menu > ul {
    margin-left: 50px;
  }

  #main-menu .mobile-contacts {
    margin-left: 50px;
  }

  #main-menu .nav-link {
    font-size: 18px;
  }

  #main-menu .nav-item-dedicated .nav-link {
    font-size: 24px;
    color: var(--color-white);
  }
}

@media (max-width: 380px) {
  #main-menu {
    width: 100%;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 22px;
  line-height: 50px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--color-black);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 320px) {
  .navbar-toggler {
    margin-left: -10px !important;
  }
}

/* Navbar styles End */

/* Main banner styles Start */

.main-banner {
  margin-top: 100px;
  background-color: var(--color-purple);
  position: relative;
}

.main-banner-block {
  border-radius: 20px;
  height: 90vh;
  width: 100%;
  background-image: url("/images/bg/main-banner-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
  padding: 0;
}

.main-banner .main-banner-title {
  color: var(--color-white);
  font-weight: var(--font-regular);
  font-family: var(--font-family1);
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}

@media (max-width: 1060px) {
  .main-banner-block {
    background-position: top;
    background-size: cover;
    height: 70vh;
  }

  .main-banner .main-banner-title {
    margin-bottom: -110px;
  }
}

@media (max-width: 575px) {
  .main-banner-block {
    width: calc(100% - (var(--bs-gutter-x) * 0.5 * 2));
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .main-banner .main-banner-title {
    font-size: 52px;
    line-height: 48px;
    margin-bottom: -70px;
  }
}

/* Main banner styles End */

/***** About us *****/

.about-us {
  padding: 30px 0 125px;
  background-color: var(--color-purple);
  position: relative;
}

@media (max-width: 1060px) {
  .about-us {
    padding-top: 170px;
  }
}

@media (max-width: 575px) {
  .about-us {
    padding-top: 110px;
  }
}

.about-us .container {
  position: relative;
  z-index: 1;
}

.about-us .about-us-text {
  max-width: 790px;
  margin: 0 auto;
}

.about-us .about-us-text p {
  color: var(--color-white);
  text-align: center;
}

.about-us .button {
  margin: 30px auto 0 auto;
}

.about-us .about-us-bg {
  position: absolute;
  z-index: 0;
  bottom: 0;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1060px) {
  .about-us .about-us-bg {
    max-width: 60%;
  }
}

/***** End About us *****/

/***** What we do *****/

.what-we-do {
  padding: 120px 0 100px;
}

.what-we-do .block-1 img {
  margin-bottom: 30px;
}

.what-we-do .block-1 .block-title {
  margin-bottom: 30px;
}

.what-we-do .block-1 .block-desc {
  font-size: 22px;
  line-height: 27px;
  color: var(--color-purple-text);
}

.what-we-do .block-4 .text-content {
  font-size: 18px;
  line-height: 24px;
}

.what-we-do .block-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  column-gap: 30px;
  row-gap: 50px;
}

.what-we-do .block-wrapper .block-2,
.what-we-do .block-wrapper .block-4 {
  margin-left: 80px;
}

.what-we-do .block-wrapper .block-1 {
  grid-column: 1 / 2;
}

.what-we-do .block-wrapper .block-2 {
  grid-column: 2 / 3;
}

.what-we-do .block-wrapper .block-2 img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

.what-we-do .block-wrapper .block-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.what-we-do .block-wrapper .block-3 .list-wrapper {
  padding: 50px 0 50px 40px;
  background-color: var(--color-light-bg);
  color: var(--color-purple-text);
  font-family: var(--font-family1);
  font-size: 26px;
  line-height: 36px;
}

.what-we-do .block-wrapper .block-3 .list-wrapper .list-items {
  list-style: none;
  padding-left: 0;
}

.what-we-do .block-wrapper .block-3 .list-wrapper .list-items li {
  position: relative;
  padding-left: 35px;
}

.what-we-do .block-wrapper .block-3 .list-wrapper .list-items li:before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-purple-text);
  font-size: 26px;
}

@media (max-width: 991px) {
  .what-we-do .block-wrapper .block-3 .list-wrapper {
    font-size: 22px;
    line-height: 32px;
  }

  .what-we-do .block-wrapper .block-3 .list-wrapper .list-items li:before {
    font-size: 22px;
  }
}

.what-we-do .block-wrapper .block-4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-right: 30px;
}

.what-we-do .block-wrapper .block-4 a {
  text-decoration: none;
  color: #c7a55a;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.what-we-do .block-wrapper .block-4 a i {
  margin-right: 10px;
}

.what-we-do .block-wrapper .block-5 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  position: relative;
}

.what-we-do .block-wrapper .block-5 .block-image {
  width: 100%;
  border-radius: 10px;
}

.what-we-do .block-wrapper .block-5 .flower {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}

@media (max-width: 1399px) {
  .what-we-do .block-wrapper .block-5 .block-image {
    height: 100%;
  }

  .what-we-do .block-wrapper .block-2,
  .what-we-do .block-wrapper .block-4 {
    margin-left: 30px;
  }
}

@media (max-width: 1199px) {
  .what-we-do .block-wrapper .block-2 img {
    height: 100%;
  }

  .what-we-do .block-wrapper .block-2,
  .what-we-do .block-wrapper .block-4 {
    margin: 0px;
  }
}

@media (max-width: 991px) {
  .what-we-do .block-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-we-do .block-wrapper .block-1 {
    margin-right: 50px;
  }

  .what-we-do .block-wrapper .block-4 {
    margin-left: 20px;
  }

  .what-we-do .block-wrapper .block-5 {
    display: none;
  }
}

@media (max-width: 767px) {
  .what-we-do .block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .what-we-do .block-wrapper .block-1,
  .what-we-do .block-wrapper .block-2,
  .what-we-do .block-wrapper .block-3,
  .what-we-do .block-wrapper .block-4,
  .what-we-do .block-wrapper .block-5 {
    width: 100%;
  }

  .what-we-do .block-wrapper .block-2 {
    order: 4;
  }

  .what-we-do .block-wrapper .block-4 {
    margin-left: 0;
  }
}

/***** End What we do *****/

/***** Who We Are *****/

.who-we-are {
  padding: 75px 0 105px;
  background-color: var(--color-light-bg);
}

.who-we-are .head-content {
  text-align: center;
  margin-bottom: 35px;
}

.who-we-are .head-content img {
  margin-bottom: 30px;
}

.who-we-are .head-content .block-desc {
  max-width: 645px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 26px;
}

.who-we-are .persons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .who-we-are .persons {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .who-we-are .persons {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .who-we-are .persons {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

.who-we-are .person .person-info {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 0 0 10px 10px;
  padding: 30px 25px;
}

.who-we-are .person img {
  width: 100%;
}

.who-we-are .person .person-info .person-name {
  color: var(--color-purple-text);
  font-family: var(--font-family1);
  font-size: 30px;
  margin-bottom: 15px;
}

.who-we-are .person .person-info a {
  text-decoration: none;
  color: var(--color-gray-yellow);
  font-size: 16px;
  line-height: 22px;
}

/***** End Who We Are *****/

/***** Form section *****/

.form-section {
  padding: 135px 0 90px;
  background: var(--color-purple);
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.form-section .block-head {
  text-align: center;
}

.form-section .block-head .block-title {
  color: var(--color-white);
}

.form-section .title {
  margin-bottom: 24px;
  font-size: 60px;
}

.form-section .text {
  font-size: 22px;
  line-height: 28px;
}

.form-section .form-field {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 18px;
}

.form-section .text-small {
  font-size: 14px;
  line-height: 24px;
  color: #b3bac1;
  margin-top: 24px;
  margin-bottom: 20px;
}

.form-section .socials .social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.form-section .socials .social-button {
  width: 60px;
  height: 60px;
  --bs-btn-bg: #be1623;
  display: grid;
  place-content: center;
  padding: 0;
  font-size: 20px;
}

.form-section .socials .phone-link,
.form-section .socials .email-link {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.form-section .form {
  max-width: 868px;
  margin: 72px auto 0 auto;
}

.form-section .col-form-label {
  font-size: 16px;
  line-height: 30px;
  padding: 0;
}

.form-section .form-control {
  border: none;
  border-radius: 5px;
  min-height: 60px;
}

.form-section .form-control:focus {
  box-shadow: none;
}

.form-section .form input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-top: 5px;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-section .form .form-group.bottom-box {
  text-align: center;
}

.form-section .form button {
  background-color: var(--color-gray-yellow);
  width: 200px;
  height: 56px;
  margin: 0 auto;
  border-radius: 28px;
  color: var(--color-white);
  font-size: 18px;
}

.form-section .checkbox + label::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 0;
  border: none !important;
  border-radius: 5px;
}

.form-section .checkbox + label {
  padding-left: 34px !important;
  font-size: 15px;
  line-height: 22px;
  position: relative;
  cursor: pointer;
}

.form-section .form-group.tickbox {
  margin-top: 20px;
  margin-bottom: 26px;
}

.form-section textarea {
  height: 230px;
  resize: none;
}

.form-section .checkbox:checked + label::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  color: #000;
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 14px;
}

.form-section .image-wrapper {
  position: absolute;
  left: -164px;
  width: 55%;
  top: 354px;
  z-index: -1;
}

.form-section .decoration-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-section label.error {
  display: none !important;
}

.form-section input.error,
.form-section select.error,
.form-section textarea.error,
.form-section .radio-multi.has-error .tickbox {
  background-color: #ffc8c8;
  background-image: url("/images/error-field.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.form-section .checkbox.error + label::before {
  background-color: red;
}

@media (max-width: 1199.98px) {
  .form-section .title {
    font-size: 54px;
  }

  .form-section .text-small {
    margin-top: 14px;
  }

  .form-section .form {
    margin-top: 65px;
  }

  .form-section .form-group.tickbox {
    margin-bottom: 15px;
  }

  .form-section {
    padding: 135px 0 80px;
  }
}

@media (max-width: 991.98px) {
  .form-section {
    padding: 100px 0 65px;
  }

  .form-section .image-wrapper {
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
  }

  .form-section .form {
    margin-top: 16px;
  }

  .form-section .text-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--bs-gutter-x);
  }

  .form-section .title {
    grid-column: 1 / span 2;
  }

  .form-section .socials {
    grid-area: 2/2 / span 2;
  }

  .form-section .text-small {
    grid-column: 1;
  }
}

@media (max-width: 767.98px) {
  .form-section {
    padding: 85px 0 65px;
  }

  .form-section .form {
    margin-top: 48px;
  }

  .form-section .text-small {
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .form-section .text-col {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .form-section {
    padding: 65px 0 45px;
  }

  .form-section .form-group.bottom-box {
    text-align: center;
  }

  .form-section .form-field {
    margin-bottom: 10px;
  }

  .form-section .title {
    font-size: 48px;
    text-align: center;
  }

  .form-section .form-group.tickbox {
    margin-bottom: 16px;
  }

  .form-section .text-small {
    margin-top: 16px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 20px;
  }

  .form-section .form {
    margin-top: 24px;
  }

  .form-section .text {
    font-size: 21px;
    text-align: center;
  }

  .form-section .title {
    margin-bottom: 16px;
  }

  .form-section .socials .social-buttons {
    margin-top: 20px;
    justify-content: center;
  }

  .form-section .form-field {
    text-align: left;
  }

  .form-section .form-group.tickbox {
    margin-top: 28px;
  }

  .form-section .socials {
    text-align: center;
  }

  .form-section .form-field {
    margin-bottom: 16px;
  }
}

@media (max-height: 600px) {
  .form-section {
    padding-top: 60px;
  }
}

/***** End Form section *****/

/***** Footer Info *****/

.footer-info {
  background-color: var(--color-purple);
  padding-bottom: 70px;
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
}

.footer-info .company {
  margin-bottom: 5px;
}

/***** End Footer Info *****/

.modal button {
  border: none;
  background: none;
  font-size: 26px;
}
