@import url(./vendor/fontawesome.min.css);
@import url(./vendor/bootstrap.min.css);
@import url(./vendor/normalize.css);
@import url(./vendor/slick.css);
@import url(./vendor/leaflet.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto&family=Roboto+Condensed:wght@400;700&display=swap");
:root {
  --black: #2a2a2a;
  --white: #ffffff;
  --blue: #293684;
  --red: #800020;
  --gray: #efefef;
  --error-message-color: red;
  --transition-time: 0.3s;
}

/* sections start */
#whyus-section {
  padding-top: 93px;
  padding-bottom: 93px;
  background: var(--gray);
}
#whyus-section ul li {
  color: var(--red);
  font-size: 18px;
  line-height: 36px;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-left: 25px;
}
#whyus-section ul li i {
  margin-right: 6px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media (max-width: 768px) {
  #whyus-section ul li i {
    top: 2px;
  }
}
@media (max-width: 768px) {
  #whyus-section ul li {
    line-height: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 992px) {
  #whyus-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #whyus-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#services-section {
  padding-top: 73px;
  padding-bottom: 97px;
}
@media (max-width: 992px) {
  #services-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #services-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#additional-services {
  padding-top: 92px;
}
#additional-services ul li {
  color: var(--red);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 60px;
  font-weight: bold;
  border-top: 1px solid var(--red);
}
#additional-services ul li:last-child {
  border-bottom: 1px solid var(--red);
}
@media (max-width: 768px) {
  #additional-services ul li:last-child {
    border-bottom: none;
  }
}
@media (max-width: 992px) {
  #additional-services {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}

#callus-section {
  background: url("../images/backgrounds/icons.png") 50% -38% no-repeat var(--gray);
  padding-top: 120px;
  padding-bottom: 103px;
}
@media (max-width: 576px) {
  #callus-section .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 992px) {
  #callus-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #callus-section {
    text-align: center;
  }
}
@media (max-width: 576px) {
  #callus-section {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #callus-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

#gallery-section {
  padding-top: 99px;
  padding-bottom: 94px;
}
@media (max-width: 992px) {
  #gallery-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #gallery-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#testimonials-section {
  background: url("../images/backgrounds/testimonials.png") 50% -38% no-repeat #800020;
  padding-top: 88px;
  padding-bottom: 86px;
}
#testimonials-section img {
  width: 100%;
  max-width: 390px;
}
@media (max-width: 992px) {
  #testimonials-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #testimonials-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#contact-section {
  padding-top: 108px;
  padding-bottom: 107px;
  background: #1a2462;
  color: var(--white);
}
#contact-section .block-header.append:after {
  background: var(--white);
}
#contact-section h2 {
  color: var(--white);
}
@media (max-width: 992px) {
  #contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  #contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

#footer-section {
  padding-bottom: 60px;
}

/* sections end */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 36px;
  background: var(--red);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.button:hover, .button:focus {
  color: var(--white);
}
.button svg {
  margin-left: 30px;
}
.button svg path {
  fill: currentColor;
}
.button.framed {
  background: none;
  border: 2px solid var(--white);
  line-height: 1;
  padding: 34px 54px;
}

.block-header {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 23px;
}
.block-header.centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.block-header h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  line-height: 34px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .block-header h2 br {
    display: none;
  }
}
.block-header.append:after {
  content: " ";
  display: block;
  width: 61px;
  height: 3px;
  background: var(--blue);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .block-header {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hamburger {
  top: 50%;
  left: 15px;
  height: 86px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: opacity, -webkit-filter linear 0.15s;
  transition: opacity, -webkit-filter linear 0.15s;
  transition: opacity, filter linear 0.15s;
  transition: opacity, filter linear 0.15s, -webkit-filter linear 0.15s;
  border: none;
  z-index: 99;
  background: none;
}
.hamburger-box {
  width: auto;
  height: 24px;
  display: inline-block;
  position: relative;
  display: none;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--black);
  border-radius: 4px;
  position: absolute;
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: .13s;
          transition-delay: .13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .13s;
          transition-duration: .13s;
}
.hamburger--collapse .hamburger-inner:before {
  content: "";
  display: block;
  top: -10px;
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner:after {
  content: "";
  display: block;
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
.hamburger--collapse.is-active {
  width: 45px;
}
.hamburger--collapse.is-active .hamburger-box {
  display: block;
}
.hamburger--collapse.is-active .hamburger-label {
  display: none;
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transition-delay: .22s;
          transition-delay: .22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  background-color: var(--white);
}
.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: var(--white);
}
.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.navbar {
  padding: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background: #fff;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.navbar > .container-fluid {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  position: relative;
}
.navbar.nav-01 .container {
  position: relative;
}
.navbar .navbar-button {
  font-size: 1.25rem;
  margin-right: 0;
  background: var(--blue);
  padding-left: 25px;
}
@media (max-width: 768px) {
  .navbar .navbar-button .nav-link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 85px;
    line-height: 76px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-button .footer-03-socials {
    margin-bottom: 30px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .navbar-button .footer-03-socials a i {
    margin: 0;
  }
}
@media (min-width: 767.98px) {
  .navbar .navbar-button {
    padding-right: 25px;
    display: none;
  }
}
.navbar-toggler {
  float: left;
  margin: 10px -10px 0 10px;
  padding: 3px 5px;
}
.navbar-nav {
  width: auto !important;
}
@media (max-width: 768px) {
  .navbar-nav {
    background: transparent;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .navbar-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
}
.navbar-collapse {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.navbar .navbar-mobile-button {
  font-size: 16px;
}
.navbar.scrolled {
  box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.64);
  -webkit-box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.64);
  -moz-box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.64);
}
.navbar.scrolled .navbar-mobile-button .nav-item .nav-link {
  color: #ffffff;
}
.navbar.scrolled .navbar-header {
  height: 100%;
}
.navbar.scrolled .logo-wrapper {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}
.navbar.scrolled .logo-wrapper a:first-child {
  display: none;
}
.navbar.scrolled .logo-wrapper a:last-child {
  display: block;
}
@media (max-width: 768px) {
  .navbar.scrolled {
    background: var(--white) !important;
  }
  .navbar.scrolled .logo-wrapper a:first-child img {
    height: 68px;
  }
  .navbar.scrolled .logo-wrapper a:last-child img {
    height: 45px;
  }
}
.navbar .navbar-header {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-header {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .navbar {
    height: 86px;
    padding-right: 19px;
  }
}

#navbar-menu {
  margin-left: auto;
}
@media (max-width: 768px) {
  #navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    z-index: 11;
  }
  #navbar-menu .navbar-brand {
    width: 100%;
    padding: 0 35px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  #navbar-menu .nav-item .nav-link {
    color: var(--white);
    margin-right: 0;
    font-size: 24px;
    line-height: 72px;
    font-weight: 600;
  }
  #navbar-menu .nav-item .nav-link span {
    display: block;
  }
  #navbar-menu .nav-item .nav-link i {
    display: none;
  }
  #navbar-menu .footer-03-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
  #navbar-menu .footer-03-socials a {
    color: var(--white);
    font-size: 24px;
    position: relative;
    z-index: 2;
  }
}

.nav-item .nav-link {
  font-size: 16px;
  line-height: 30px;
  height: 82px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-item .nav-link span {
  display: none;
}
@media (max-width: 992px) {
  .nav-item .nav-link {
    margin-right: 15px;
  }
}

.logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 43px 47px;
}
.logo-wrapper a:last-child {
  display: none;
}
@media (max-width: 768px) {
  .logo-wrapper {
    padding: 30px;
  }
  .logo-wrapper a {
    display: block;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-wrapper a:first-child img {
    width: 112px;
  }
}

.main-banner {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-image {
  background: url("../images/backgrounds/main-banner.jpg") 0 0 no-repeat;
  background-size: cover;
  height: 100%;
  width: 60.6666%;
  position: relative;
}
@media (max-width: 1399.98px) {
  .banner-image {
    width: 55.6666%;
  }
}
@media (max-width: 1199.98px) {
  .banner-image {
    width: 50.6666%;
  }
}
@media (max-width: 768px) {
  .banner-image {
    width: 100%;
    background: url("../images/backgrounds/main-banner.jpg") 66% 100% no-repeat;
  }
  .banner-image:after {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: -webkit-gradient(linear, left top, right top, color-stop(-50%, #ffffff), to(transparent));
    background: linear-gradient(90deg, #ffffff -50%, transparent 100%);
    background: -webkit-linear-gradient(90deg, #ffffff -50%, transparent 100%);
  }
}
.banner-content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .banner-content {
    top: auto;
    bottom: 80px;
    -webkit-transform: none;
            transform: none;
  }
}
.banner-inner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .banner-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.banner-header h1 {
  text-align: right;
  font-weight: 600;
  font-size: 90px;
  line-height: 80px;
  text-transform: uppercase;
  color: var(--blue);
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 22px;
}
.banner-header h1:after {
  content: " ";
  display: block;
  width: 61px;
  height: 3px;
  background: var(--blue);
  margin-top: 13px;
}
@media (max-width: 768px) {
  .banner-header h1:after {
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  .banner-header h1 {
    font-size: 50px;
    line-height: 50px;
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .banner-header h1 {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .banner-header h1 {
    font-size: 68px;
    line-height: 1;
  }
}
.banner-description {
  font-size: 26px;
  line-height: 30px;
  color: var(--black);
  text-align: right;
}
@media (max-width: 768px) {
  .banner-description {
    text-align: center;
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  .banner-description {
    font-size: 24px;
    line-height: 24px;
  }
}
.banner-button {
  padding-top: 17px;
}
.banner-button .button {
  padding: 36px 47px;
}
.banner-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  height: 56px;
}
.banner-icon:before {
  content: " ";
  display: block;
  width: 17px;
  height: 37px;
  background: url("../images/icons/mouse.png") 0 0 no-repeat;
  margin-left: -8.5px;
  margin-top: -48px;
  position: absolute;
  right: calc(var(--bs-gutter-x) * 0.23);
  padding: 0;
}
.banner-icon:after {
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  right: calc(var(--bs-gutter-x) * .5);
  top: 0;
  background: var(--black);
}
@media (max-width: 768px) {
  .banner-icon {
    width: 0 !important;
    bottom: -36px;
  }
}
@media (min-width: 768px) and (max-height: 633px) {
  .banner-icon {
    bottom: -55px;
  }
}

/*columned content styles start */
.columned-content {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: var(--black);
}
.columned-content.font-regular {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.columned-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*columned content styles end */
/* featurettes styles start */
@media (max-width: 992px) {
  .featurettes .featurettes-row {
    --bs-gutter-y: 30px;
  }
}

.featurette {
  min-height: 428px;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  /*&:hover:before{
      background: url('../images/backgrounds/service.png') 110px 190px no-repeat rgba(128, 0, 32, 0.8);
  }*/
}
.featurette:before {
  content: ' ';
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  background: -webkit-gradient(linear, right top, left top, from(var(--black)), to(transparent));
  background: linear-gradient(-90deg, var(--black) 0%, transparent 100%);
  background: -webkit-linear-gradient(-90deg, var(--black) 0%, transparent 100%);
}
.featurette a {
  color: var(--white);
  text-decoration: none;
}
.featurette img {
  width: 100%;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.featurette .featurette-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: var(--white);
}
.featurette .featurette-inner .featurette-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.featurette .featurette-inner .featurette-link .button {
  font-size: 20px;
  line-height: 48px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all var(--transition-time) linear;
  transition: all var(--transition-time) linear;
  padding: 0;
  margin-left: auto;
}
.featurette .featurette-inner .featurette-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: hidden;
}
.featurette:hover .featurette-text .featurette-description {
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  height: 100%;
  opacity: 1;
}
.featurette .featurette-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.featurette .featurette-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  position: relative;
  height: 0;
  opacity: 0;
  -webkit-transition: all var(--transition-time) linear;
  transition: all var(--transition-time) linear;
}

/* featurettes styles end */
.icon {
  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;
  color: var(--red);
  font-family: "Roboto Condensed", sans-serif;
}
@media (max-width: 576px) {
  .icon {
    margin-bottom: 30px;
  }
}

.icon-image {
  display: block;
  width: 102px;
  height: 102px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 44px;
  line-height: 1;
  color: var(--red);
  border-radius: 50%;
}

.icon-label {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 17px;
}

/* lightwidget gallery styles start */
/*.lightwidget-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    & img{
        width: 100%;
    }

    @media(max-width: 767.9px){
        grid-template-columns: repeat(3, 1fr);
    }

    @media(max-width: 380px){
        grid-template-columns: 1fr 1fr;
    }

    & .lightwidget-image:nth-child(6){
        @media(max-width: 767.9px){
            display: none;
        }
    }

    & .lightwidget-image:nth-child(7){
        @media(max-width: 767.9px){
            display: none;
        }
    }
}*/
/* lightwidget gallery styles end */
/* testimonials styles start */
.testimonials {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.testimonials .read-all {
  margin-top: 4.4rem;
}
.testimonials h2 {
  text-align: center;
  color: var(--white);
}

.testimonials-carousel {
  padding-top: 98px;
  background: url("../images/backgrounds/quote.svg") 0 0 no-repeat;
}
.testimonials-carousel .carousel-indicators {
  position: relative;
  margin-top: 80px;
  margin-left: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonials-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 1.1rem;
  border: none;
  background: #cdcdcd;
}
.testimonials-carousel .carousel-indicators .active {
  background: var(--main-theme);
  width: 10px;
  height: 10px;
}
@media (max-width: 768px) {
  .testimonials-carousel .carousel-indicators {
    margin-top: 50px;
  }
}
@media (max-width: 767.9px) {
  .testimonials-carousel {
    margin-top: 20px;
    padding-top: 40px;
  }
}

.testimonial-body .col-12 {
  padding-left: 0;
  padding-right: 0;
}

.testimonial-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
  font-style: italic;
}
.testimonial-text.show-read-more .read-more {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-top: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}
.testimonial-text.show-read-more .more-text {
  display: none;
}
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .testimonial-text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-height: 567px) {
  .testimonial-text {
    font-size: 25px;
    line-height: 30px;
  }
}

.testimonial-author {
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  font-style: normal;
  padding-top: 36px;
}

/* testimonials styles end */
.contact-section {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.contact-slogan {
  margin-bottom: 30px;
}

.contact-form {
  font-size: 16px;
  line-height: 24px;
  padding-right: 15%;
}
.contact-form .form-control {
  border-radius: 0;
  height: 53px;
  font-size: 16px;
}
.contact-form .form-control:hover, .contact-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.contact-form textarea.form-control {
  height: 183px;
}
.contact-form label {
  margin-bottom: 2px;
}
.contact-form label.error {
  color: var(--error-message-color);
}
.contact-form .form-group {
  margin-bottom: 23px;
}
@media (max-width: 992px) {
  .contact-form {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .contact-form .form-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 60px;
  }
}

.footer-contacts {
  gap: 68px 0;
}
.footer-contacts .footer-contact {
  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;
}
.footer-contacts .footer-contact .contact-icon {
  font-size: 48px;
  line-height: 24px;
}
.footer-contacts .footer-contact .contact-label {
  font-size: 30px;
  line-height: 34px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding: 24px 0px 20px;
}
.footer-contacts .footer-contact .contact-inner .contact-text {
  text-align: center;
}
@media (max-width: 992px) {
  .footer-contacts .footer-contact .contact-inner .contact-text {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer-contacts .footer-contact .contact-inner .contact-text {
    font-size: 16px;
  }
}
.footer-contacts .footer-contact .contact-inner .contact-links {
  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;
  font-family: "Roboto Condensed", sans-serif;
  padding-top: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
}
.footer-contacts .footer-contact .contact-inner .contact-links.inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-contacts .footer-contact .contact-inner .contact-links.buttons {
  padding-top: 16px;
}
.footer-contacts .footer-contact .contact-inner .contact-links.buttons a {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: normal;
  border-radius: 50%;
}
.footer-contacts .footer-contact .contact-inner .contact-links a {
  color: var(--white);
  font-weight: 600;
}

.custom-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.custom-checkbox-group label {
  line-height: 24px;
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 16px;
}
@media (max-width: 576px) {
  .custom-checkbox {
    margin-right: 22px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: #fff;
  border: 1px solid #ced4da;
}
.checkmark.error {
  background-color: var(--error-message-color);
}

.custom-checkbox input:checked ~ .checkmark, .custom-checkbox input:checked {
  background-color: #fff !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==") 2px 2px no-repeat;
  -webkit-animation: checkbox 0.3s linear;
          animation: checkbox 0.3s linear;
}

@-webkit-keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 19px;
  }
}

@keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 19px;
  }
}
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  list-style: none;
  margin-bottom: 0;
}
.footer-menu li a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer-menu {
    margin-bottom: 30px;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.owner-info {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  margin-top: 20px;
}
@media (max-width: 576px) {
  .owner-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.site-authors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-authors a {
  color: var(--white);
}
.site-authors img {
  width: 62px;
  height: 17px;
}

.modal {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.modal-header {
  font-size: 24px;
}
.modal-header button {
  border: none;
}

.modal-title {
  font-size: 24px;
}

/* root styles start */
html,
body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  color: var(--black);
  scroll-behavior: smooth;
  height: 100%;
}

a {
  text-decoration: none;
}

.container {
  --bs-gutter-x: 3rem;
}
@media (max-width: 991.9px) {
  .container {
    max-width: 100%;
  }
}

.row {
  --bs-gutter-x: 30px;
}
.row > * {
  --bs-gutter-x: 30px;
}

ul {
  padding: 0;
  margin: 0;
}

footer {
  background: #1a2462;
}

/* root styles end */
