@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=Allura&family=Montserrat:wght@100;300;400;500;600;700&display=swap");
:root {
  --black: #161615;
  --white: #ffffff;
  --error-message-color: red;
  --transition-time: 0.3s;
}

/* navbar styles start */
.navbar {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding-right: 28px;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .navbar {
    padding-right: 18px;
    padding-left: 18px;
  }
}
.navbar.scrolled {
  background-color: #769bc2;
  -webkit-box-shadow: 0px 0px 13px -2px black;
          box-shadow: 0px 0px 13px -2px black;
  overflow: hidden;
}
.navbar.scrolled .site-logo {
  padding-top: 0;
  color: var(--white);
}
.navbar.scrolled .navbar-toggler span {
  background-color: var(--white);
}
.navbar.scrolled .header-phone {
  color: var(--white);
}
.navbar.scrolled .header-phone a {
  color: var(--white);
}
.navbar.scrolled .header-phone i {
  color: var(--white);
}
.navbar .header-phones {
  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;
  position: relative;
  z-index: 1;
}
.navbar .header-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
  color: var(--white);
}
@media (max-width: 768px) {
  .navbar .header-phone span {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar .header-phone {
    font-size: 20px;
    line-height: 26px;
  }
}
.navbar .header-phone i {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .navbar .header-phone i {
    display: block;
    font-size: 30px;
  }
}

.navbar-toggler {
  border: none;
  padding: 29px 28px;
  position: relative;
  z-index: 1;
}
.navbar-toggler span {
  display: block;
  width: 33px;
  height: 2px;
  background: #fff;
  margin-bottom: 8px;
}
.navbar-toggler span:nth-child(2) {
  width: 24px;
}
.navbar-toggler:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 992px) {
  .navbar-toggler {
    padding: 29px 18px;
    padding-left: 0;
  }
}

.site-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 46px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
}
.site-logo span {
  display: block;
}
.site-logo span:last-child {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 4px;
  margin-top: 4px;
}
@media (max-width: 992px) {
  .site-logo {
    font-size: 40px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .site-logo {
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .site-logo {
    font-size: 29px;
    line-height: 22px;
  }
}
@media (max-width: 380px) {
  .site-logo {
    font-size: 22px;
  }
}
.site-logo:hover, .site-logo:focus {
  text-decoration: none;
  color: var(--white);
}

#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #769bc2;
  background-image: url("../images/bg-text/menu.png");
  background-position: 12% 189%;
  background-repeat: no-repeat;
  color: var(--black);
  z-index: 9;
  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;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all var(--transition-time) linear;
  transition: all var(--transition-time) linear;
  opacity: 1;
  -webkit-box-shadow: 0px 0px 13px -2px var(--black);
          box-shadow: 0px 0px 13px -2px var(--black);
  max-width: 430px;
}
@media (max-width: 992px) {
  #main-menu {
    max-width: 100%;
  }
}
#main-menu.collapse:not(.show) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
#main-menu .navbar-toggler {
  position: absolute;
  top: 29px;
  right: 28px;
  padding: 0;
  margin: 0;
  width: 27px;
  height: 27px;
}
#main-menu .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#main-menu .navbar-toggler span {
  display: block;
  background: var(--white);
  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: 33px !important;
}
#main-menu .header-phone {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 35px;
  padding-bottom: 35px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}
@media (max-width: 992px) {
  #main-menu .header-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  #main-menu .header-phone span {
    display: block;
  }
}
@media (max-width: 768px) {
  #main-menu .header-phone i {
    font-size: 22px;
  }
}
#main-menu .nav-link {
  color: #fff;
  font-size: 30px;
  line-height: 72px;
  font-weight: normal;
}
#main-menu .socials {
  margin-top: auto;
}
#main-menu .contacts {
  margin-top: 40px;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  color: var(--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(--blue);
  padding: 15px;
}
#main-menu .contacts .contact {
  margin-bottom: 0;
}
#main-menu .contacts a {
  color: var(--white);
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  font-size: 22px;
  line-height: 50px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--black);
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 575px) {
  .navbar :not(#main-menu) .header-phone {
    display: none;
  }

  .navbar #main-menu:not(.show):not(.collapsing) .header-phone {
    position: fixed;
    bottom: 15px;
    left: calc(200vw - 79px);
    background: #769bc2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    z-index: 99;
    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;
    box-shadow: 0px -1px 11px -1px rgba(26, 23, 24, 0.75);
    -webkit-box-shadow: 0px -1px 11px -1px rgba(26, 23, 24, 0.75);
    -moz-box-shadow: 0px -1px 11px -1px rgba(26, 23, 24, 0.75);
    padding: 0;
  }

  .navbar #main-menu:not(.show):not(.collapsing) .header-phone i {
    margin: 0;
  }

  .navbar #main-menu:not(.show):not(.collapsing) .header-phone span {
    display: none;
  }
}
/* navbar styles end */
/* main-banner styles start */
.main-banner {
  height: 100%;
  color: var(--white);
  background: url("../images/backgrounds/main-banner.jpg") 0 0 no-repeat;
  background-size: cover;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 73px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px), (max-height: 567px) {
  .main-banner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
    background-position-x: 25%;
  }
}
@media (max-width: 575px), (max-height: 567px) {
  .main-banner .main-banner {
    height: 75%;
  }
}
.main-banner > .container {
  z-index: 9;
}
.main-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#474d4e), color-stop(65%, transparent));
  background: linear-gradient(180deg, #474d4e 0%, transparent 65%);
  background: -moz-linear-gradient(-90deg, #474d4e 0%, transparent 65%);
  position: absolute;
  top: 0;
  left: 0;
}
.main-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.3);
}
.main-banner img.main-banner-bg {
  position: absolute;
  left: 52%;
  bottom: 0;
}
@media (max-width: 767px), (max-height: 567px) {
  .main-banner img.main-banner-bg {
    left: 5%;
  }
}
.main-banner .banner-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: normal;
  margin-bottom: 24px;
  text-align: center;
}
.main-banner .banner-text span {
  font-weight: 400;
}
@media (max-width: 992px) {
  .main-banner .banner-text {
    font-size: 25px;
    line-height: 34px;
  }
}
@media (max-width: 768px), (max-height: 567px) {
  .main-banner .banner-text {
    font-size: 20px;
    line-height: 29px;
  }
}
@media (max-width: 576px), (max-height: 567px) {
  .main-banner .banner-text {
    font-size: 18px;
    line-height: 26px;
  }
}
.main-banner .banner-title {
  font-size: 90px;
  line-height: 90px;
  font-weight: 200;
  margin: 0;
  margin-bottom: 90px;
  text-align: center;
}
@media (max-width: 992px) {
  .main-banner .banner-title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 768px), (max-height: 567px) {
  .main-banner .banner-title {
    font-size: 45px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .main-banner .banner-title {
    font-size: 38px;
    line-height: 38px;
  }
}
.main-banner .banner-caption {
  width: 100%;
  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;
}
.main-banner .scroll-info {
  position: absolute;
  top: 100%;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #837d7a;
  padding: 30px 35px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  padding-left: 63px;
  z-index: 9;
}
.main-banner .scroll-info span {
  position: relative;
  margin-bottom: -30px;
}
.main-banner .scroll-info span::before {
  content: " ";
  width: 15px;
  height: 23px;
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  background: url("../images/icons/mouse.png") 0 0 no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: -30px;
}
@media (max-width: 992px) {
  .main-banner .scroll-info {
    display: none;
  }
}

/* main-banner styles end  */
.button {
  background: none;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  padding: 34px 90px;
  text-decoration: none;
  border: 2px solid #ffffff;
  display: block;
}
.button:hover, .button:focus {
  text-decoration: none;
  outline: none;
  color: var(--white);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 768px) {
  .button {
    padding: 24px 53px;
  }
}

/*columned content styles start */
.columned-content .text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.columned-content .text a {
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 576px), (max-height: 567px) {
  .columned-content .text {
    font-size: 16px;
    line-height: 21px;
  }
}
.columned-content .more-link {
  color: #8fadce;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.columned-content .more-link i {
  margin-left: 16px;
}
.columned-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.columned-content ul.services {
  -webkit-columns: 2;
          columns: 2;
  -webkit-column-gap: 38px;
          column-gap: 38px;
}
.columned-content ul.services li {
  border-bottom: 1px solid var(--gray);
  border-top: 1px solid var(--gray);
  margin-top: -1px;
  font-size: 26px;
  line-height: 80px;
  font-weight: 600;
  color: var(--primary-red);
  padding: 5px 0;
}
.columned-content ul.services li::before {
  content: "+";
  font-size: 24px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-right: 14px;
}
.columned-content ul.services li:last-child {
  color: transparent;
}
.columned-content ul.services li:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .columned-content ul.services {
    -webkit-columns: 1;
            columns: 1;
  }
}
.columned-content .toggled-text {
  display: none;
}
.columned-content .more-link {
  cursor: pointer;
}

/*columned content styles end */
.block-header {
  color: var(--black);
  margin-bottom: 30px;
}
.block-header h2 {
  color: inherit;
  font-size: 60px;
  line-height: 1;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .block-header h2 {
    font-size: 53px;
  }
}
@media (max-width: 576px), (max-height: 567px) {
  .block-header h2 {
    font-size: 45px;
    line-height: 1;
  }
}
.block-header .header-prepend {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 2;
  color: #a5a5a5;
  letter-spacing: 3px;
}

.block-subheader {
  font-size: 18px;
  line-height: 28px;
}

.icon-labels {
  background: rgba(143, 173, 206, 0.7);
  padding: 60px 0;
  color: var(--white);
  margin-top: 136px;
}
@media (max-width: 768px) {
  .icon-labels .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px), (max-height: 567px) {
  .icon-labels {
    margin-top: 65px;
  }
}

.icon-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-image {
  background: #8fadce;
  color: 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;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin-right: 15px;
  font-size: 30px;
}

.icon-title {
  font-size: 30px;
  line-height: 28px;
}

.icon-description {
  font-size: 18px;
  line-height: 28px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 13px;
}
@media (max-width: 768px)  {
  .services {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

.services-description {
  padding-right: 67px;
}
@media (max-width: 768px)  {
  .services-description {
    padding-right: 0;
  }
}

.service {
  position: relative;
  background-size: cover;
}
.service img {
  opacity: 0;
  width: 100%;
}
.service .service-title {
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service .service-title span {
  margin-top: auto;
  z-index: 2;
}
.service .service-title:after {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  background-image: -webkit-linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: calc(80% - calc(var(--bs-gutter-x)));
  opacity: .8;
  bottom: 0;
}

/* call to us banner style start */
.call-banner {
  color: var(--white);
  background: url("../images/backgrounds/call-banner.png") 0 0 no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .call-banner {
    padding-top: 65px;
    padding-bottom: 70px;
  }
}
.call-banner.covered {
  position: relative;
}
.call-banner.covered::before {
  content: " ";
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 127, 196, 0.8);
}
.call-banner.covered > .container {
  position: relative;
  z-index: 2;
}
.call-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.call-banner-head {
  text-align: center;
  margin-bottom: 17px;
}
.call-banner-head h2 {
  font-size: 60px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .call-banner-head h2 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 768px), (max-height: 567px)  {
  .call-banner-head h2 {
    font-size: 45px;
    line-height: 45px;
  }
}
.call-banner-subhead {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 26px;
  text-transform: none;
  text-align: center;
}
.call-banner-subhead a {
  color: var(--white);
  font-weight: 500;
}
@media (max-width: 992px) {
  .call-banner-subhead {
    font-size: 25px;
    line-height: 34px;
  }
}
@media (max-width: 768px), (max-height: 567px)  {
  .call-banner-subhead {
    font-size: 20px;
    line-height: 29px;
  }
}
.call-banner-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 576px)  {
  .call-banner-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.call-banner-button .button {
  text-align: center;
  width: 280px;
  padding: 34px;
}

/* call to us banner style end */
.tag-cloud {
  background: url("../images/backgrounds/tags-banner.png") center center no-repeat #a7c0db;
}
@media (max-width: 575px)  {
  .tag-cloud {
    background-size: 215%;
  }
}

.tag-cloud-head {
  text-align: center;
}
.tag-cloud-head h2 {
  font-size: 80px;
  line-height: 60px;
  font-weight: 300;
  color: var(--white);
}
@media (max-width: 576px), (max-height: 567px)  {
  .tag-cloud-head h2 {
    font-size: 55px;
    line-height: 1;
  }
}

.gallery-tale {
  padding-top: 102px;
  padding-bottom: 95px;
}
.gallery-tale img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery-tale .image-link{
  position: relative;
}
.gallery-tale .image-link::after{
  content: "";
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 409.6 409.6'%3E%3Cpath d='M307 0H102C46 0 0 46 0 102v205c0 57 46 103 102 103h205c57 0 103-46 103-103V102C410 46 364 0 307 0zm68 307c0 38-30 68-68 68H102c-37 0-68-30-68-68V102c0-37 31-68 68-68h205c38 0 68 31 68 68v205z'/%3E%3Ccircle cx='315.8' cy='93.9' r='25.6'/%3E%3Cpath d='M205 102a102 102 0 100 205 102 102 0 000-205zm0 171a68 68 0 110-136 68 68 0 010 136z'/%3E%3C/svg%3E") 50% 45% /10% auto no-repeat;
  background-color: #fff;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.gallery-tale .image-link::before{
  content:"";
  background-color: rgba(118, 155, 194, .75);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.gallery-tale .image-link:hover::after,
.gallery-tale .image-link:hover::before
{
  opacity: 1;
}
.gallery-tale .row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 13px;
}
@media (max-width: 576px)  {
  .gallery-tale .row-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.gallery-tale .column-flex {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 13px;
  width: 33.3333%;
}
@media (max-width: 576.98px)  {
  .gallery-tale .column-flex {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .gallery-tale .column-flex.last-column {
    display: none;
  }
}
@media (max-width: 768px)  {
  .gallery-tale .column-flex.first-column {
    display: none;
  }
}
.gallery-tale .second-block {
  height: 475px;
  margin-top: 54px;
}
.gallery-tale .third-block {
  margin-top: 0;
}
.gallery-tale .upper-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  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;
}
.gallery-tale .down-block {
  overflow: hidden;
  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;
}
@media (max-width: 576px), (max-height: 567px)  {
  .gallery-tale {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.gallery-tale .block-header .header-prepend{
  margin-left: 5px;
}

.contact-form {
  background: #efeff1;
  color: var(--black);
}
.contact-form .block-header h2 {
  color: var(--black);
}

.form {
  font-size: 15px;
  line-height: 30px;
  max-width: 880px;
  width: 100%;
  margin-top: 45px;
}
.form label {
  color: #202220;
}
.form .button {
  border: none;
  background: #8fadce;
  margin-top: 30px;
  padding: 33px 47px;
}
.form .error {
  color: var(--error-message-color);
}
.form .form-control {
  border-radius: 0;
  background: #e0e0e0;
  font-size: 16px;
}

input.form-control {
  height: 60px;
}

textarea.form-control {
  height: 230px;
}

.copyright {
  font-size: 12px;
}
.copyright a {
  color: var(--white);
}

.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: 20px;
}

.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 {
  background: url("../images/bg-text/footer.png") 0 -165% no-repeat #8fadce;
}

.footer-menu {
  margin-bottom: 25px;
}

.footer-header {
  font-size: 20px;
  line-height: 40px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-list, .footer-list a {
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
}
.footer-list a {
  display: block;
}
.footer-list p {
  margin-bottom: 23px;
  padding-bottom: 0;
}
.footer-list span {
  color: #20456c;
  font-size: 15px;
  font-weight: 500;
}
.footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list ul.socials {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer-list ul.socials a {
  display: block;
  width: 50px;
  height: 50px;
  background: #628bb6;
  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;
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}
.footer-list ul.accreditations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 1320px) {
  .footer-list ul.accreditations {
    -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-left: 0;
    margin-right: 0;
  }
}
.footer-list ul.accreditations li {
  padding: 0 30px;
}
@media (max-width: 1320px) {
  .footer-list ul.accreditations li {
    padding: 0;
    border: none !important;
    margin-bottom: 15px;
  }
}
.footer-list ul.accreditations li:first-child {
  border-right: 2px solid var(--white);
}

.footer-copyright {
  padding-top: 60px;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
}
.footer-copyright a {
  color: var(--white);
}
@media (min-width: 992px) {
  .footer-copyright {
    padding-top: 60px;
  }
}
@media(max-width: 575px){
  .footer-copyright {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}

.site-authors {
  text-align: right;
}
@media (max-width: 768px), (max-height: 567px)  {
  .site-authors {
    text-align: left !important;
  }
}

.modal {
  font-size: 14px;
}

.modal-header {
  font-size: 24px;
}
.modal-header button {
  border: none;
}

.modal-title {
  font-size: 24px;
}

.scroll-top {
  position: fixed;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
  background: #769bc2;
  box-shadow: 0px -1px 11px -1px rgba(22, 22, 21, 0.75);
  -webkit-box-shadow: 0px -1px 11px -1px rrgba(22, 22, 21, 0.75);
  -moz-box-shadow: 0px -1px 11px -1px rgba(22, 22, 21, 0.75);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 99;
  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: 24px;
  display: none;
}
.scroll-top.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* root styles start */
html,
body {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--black);
  scroll-behavior: smooth;
  position: absolute;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 991.9px) {
  .container {
    max-width: 100%;
    --bs-gutter-x: 3rem;
  }
}

@media (max-width: 991.9px) {
  .row {
    --bs-gutter-x: 3rem;
  }
}

/* root styles end */
#about-section {
  padding-top: 174px;
  background: url("../images/bg-text/about.png") center 124% no-repeat;
}
#about-section .text {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 768px), (max-height: 567px) {
  #about-section {
    padding-top: 65px;
  }
}

#services-section {
  padding-top: 142px;
  padding-bottom: 122px;
  background: url("../images/bg-text/service.png") center 124% no-repeat;
}
@media (max-width: 768px), (max-height: 567px)  {
  #services-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

#call-section {
  padding-top: 82px;
  padding-bottom: 69px;
}
@media(max-height: 567px){
  #call-section {
    padding-top: 42px;
    padding-bottom: 29px;
  }
}

#tags-section {
  padding-top: 208px;
  padding-bottom: 224px;
}
@media (max-width: 768px), (max-height: 567px)  {
  #tags-section {
    padding-top: 123px;
    padding-bottom: 142px;
  }
}

#gallery-section {
  padding-top: 112px;
  padding-bottom: 143px;
  background: url("../images/bg-text/gallery.png") center 170% no-repeat;
}
@media (max-width: 768px), (max-height: 567px)  {
  #gallery-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

#contact-section {
  padding-top: 120px;
  padding-bottom: 84px;
}
@media (max-width: 768px), (max-height: 567px)  {
  #contact-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

#footer-section {
  padding-top: 74px;
  padding-bottom: 42px;
}
@media (max-width: 768px), (max-height: 567px)  {
  #footer-section {
    padding-top: 30px;
  }
}
