/* ===== IMPORTED STYLE ===== */
@import url("jquery.fancybox.min.css");

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, main, menu, nav, section, audio, video  {
  font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section, picture {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;} sup {top: -0.5em;} sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style:none;}
blockquote {quotes: none; } blockquote::before, blockquote::after {content:none;}
table {border-collapse:collapse; border-spacing:0;}
a {text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;outline:none!important;}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust:none;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: 100%;  }
input, button, select {border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
select::ms-expand {display:none;}
input::-ms-clear {display:none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
  --black: #000;
  --white: #fff;
  --main-color: #014876;
  --main-font:'Montserrat';
  --font-title:'Magistral';
}
html {font-size:10px;height:100%;}
body {
    background: #fff;
    font-weight: 300;
  font-family: var(--main-font);
  font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
  color: #383838;
    height:100%;
}
.page-wrapper {display:flex;flex-direction: column;justify-content: space-between;height:100%;}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}
/* Убираем стрелочки в input type="number"
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type='number'], input[type="number"]:hover, input[type="number"]:focus {appearance: none;-moz-appearance: textfield;}
*/
a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}

b, strong {font-weight:bold;}
p:not(:last-child) {margin-bottom: 1em;}
ul:not([class]) li, ol:not([class]) li {margin-bottom: 1em;}
ul:not([class]),
ol:not([class]) {padding-left: 20px;margin-bottom: 20px;}

p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {text-decoration: none;}
p a, ul:not([class]) li a, ol:not([class]) li a {color: red;text-decoration: underline;}

table {width: 100%;margin:3rem 0;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {text-transform: uppercase;background: rgba(0, 0, 0, 0.12);font-weight: bold;}

/* Flexbox */
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.flex-wrap {flex-wrap: wrap;}
.flex-column {flex-direction: column;}
.align-center {align-items: center}
.align-end {align-items: flex-end;}
.align-start {align-items: flex-start;}
.justify-center {justify-content: center;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.grid {display:grid;}
.col-2 {grid-template-columns: repeat(2, 1fr);}
.col-3 {grid-template-columns: repeat(3, 1fr);}
.col-4 {grid-template-columns: repeat(4, 1fr);}
.col-5 {grid-template-columns: repeat(5, 1fr);}
.col-6 {grid-template-columns: repeat(6, 1fr);}
.grid-col-1 {grid-column: span 1;}
.grid-row-1 {grid-row: span 1;}
.grid-col-2 {grid-column: span 2;}
.grid-row-2 {grid-row: span 2;}
.grid-col-3 {grid-column: span 3;}
.grid-row-3 {grid-row: span 3;}
.grid-col-4 {grid-column: span 4;}
.grid-row-4 {grid-row: span 4;}
.grid-col-5 {grid-column: span 5;}
.grid-row-5 {grid-row: span 5;}

.gap-1 {gap:1rem;}
.gap-2 {gap:2rem;}
.gap-3 {gap:3rem;}
.gap-4 {gap:4rem;}
.gap-5 {gap:5rem;}
/* // CSS Grid */

.container {
  width: 100%;
  max-width:1480px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
}

.red {border:1px solid red;}
.blue {border:1px solid blue;}
.green {border:1px solid green;}

.mobile-btn {display:none;}
.noscroll {overflow: hidden;}
.mobile-menu__content {display:none;}

.text--uppercase {text-transform:uppercase;}
.text--center {text-align:center;}
.text--left {text-align:left;}
.text--right {text-align:right;}
.text--black {color:var(--black);}
.text--white {color:var(--white);}
.text--colored {color:var(--main-color);}
.text--bold {font-weight: bold;}
.bg--main-color {background: var(--main-color);}
.resp--img img {width: 100%;height:100%;object-fit: cover;}

.position-relative {position: relative;}
.position-absolute {position: absolute;}

.sm-show, .svg-library {display:none;}

.section {padding:max(7vw, 40px) 0;}
.section__title {margin-bottom:1.5em;position: relative;}

.input-wrapper input, .input-wrapper textarea {
  display:block;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: var(--main-font);
  color:var(--black);
  background: #e7e7e7;
  height:5rem;
  padding:0 1em;
}
.input-wrapper textarea {
  height: 10rem;
  padding: 1em;
}
.input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
  font-size: 1.8rem;
  color:var(--black);
  font-family: var(--main-font);
  font-weight: normal;
}

.w-5 {width:5%;}
.w-10 {width:10%;}
.w-15 {width:15%;}
.w-20 {width:20%;}
.w-25 {width:25%;}
.w-30 {width:30%;}
.w-33 {width:33.33%;}
.w-35 {width:35%;}
.w-40 {width:40%;}
.w-45 {width:45%;}
.w-50 {width:50%;}
.w-55 {width:55%;}
.w-60 {width:60%;}
.w-65 {width:65%;}
.w-70 {width:70%;}
.w-75 {width:75%;}
.w-80 {width:80%;}
.w-85 {width:85%;}
.w-90 {width:90%;}
.w-95 {width:95%;}
.w-100 {width:100%;}

.pt-0 {padding-top:0;}
.pt-1 {padding-top:1rem;}
.pt-2 {padding-top:2rem;}
.pt-3 {padding-top:3rem;}
.pt-4 {padding-top:4rem;}
.pt-5 {padding-top:5rem;}
.pb-0 {padding-bottom:0;}
.pb-1 {padding-bottom:1rem;}
.pb-2 {padding-bottom:2rem;}
.pb-3 {padding-bottom:3rem;}
.pb-4 {padding-bottom:4rem;}
.pb-5 {padding-bottom:5rem;}

.mt-0 {margin-top:0;}
.mt-1 {margin-top:1rem;}
.mt-2 {margin-top:2rem;}
.mt-3 {margin-top:3rem;}
.mt-4 {margin-top:4rem;}
.mt-5 {margin-top:5rem;}
.mb-0 {margin-bottom:0;}
.mb-1 {margin-bottom:1rem;}
.mb-2 {margin-bottom:2rem;}
.mb-3 {margin-bottom:3rem;}
.mb-4 {margin-bottom:4rem;}
.mb-5 {margin-bottom:5rem;}

/* Buttons */
.btn {
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: normal;
  display:inline-flex;
  padding:1.8rem 3.5rem;
  background: var(--main-color);
  position:relative;
  text-align:center;
  transition: all 0.25s;
  justify-content: center;
  align-items: center;
  border:1px solid var(--main-color);
  text-transform: uppercase;
  cursor:pointer;
  border-radius: 7px;
  color:#fff;
}
.btn:hover {
  background: #45d1b8;
  transition: all 0.25s;
  color:#fff;
  border: 1px solid #45d1b8;
}

/* Icons */
.icon {display:block;transition: all 0.25s;}

.icon-phone, .icon-location, .icon-envelope {
    width: 2.3rem;
    height: 2.3rem;
    color: var(--main-color);
}
.arrow-icon {
    width: 4rem;
    height: 2.6rem;
    color: #fff;
  transition: all 0.25s;
}
.icon-adv {
  width: 7rem;
  height:7rem;
  color:var(--main-color);
}
.btn__arrow {
    width: 2rem;
    height: 1rem;
    color: #fff;
    transition: all 0.25s;
}


/* Titles */
.h1,.h2,.h3,.h4,.h5,.h6, h1,h2,h3,h4,h5,h6 {display:block; font-family: var(--font-title); font-weight: bold;}
.h1, h1 {
  line-height: 1;
  font-size: clamp(30px, 2.7vw, 52px); /* 5.2rem */
}
.h2, h2 {
  line-height: 1.2;
  font-size: clamp(25px, 2.4vw, 46px); /* 4.6rem */
}
.h3, h3 {
  line-height: 1.3;
  font-size: clamp(25px, 2.2vw, 32px); /* 3rem */
}
.h4, h4 {
  line-height: 1.3;
  font-size: clamp(20px, 1.8vw, 24px); /* 2.5rem */
}
.h5, h5 {
  line-height: 1.3;
  font-size: clamp(17px, 1.8vw, 20px); /* 2.5rem */
}

/* Marker list */
.marker--list li {
  display: flex;
  align-items: flex-start;
}
.marker--list li::before {
  content:'';
  display: block;
  min-width: 5px;
  height:5px;
  background: var(--main-color);
  border-radius: 50%;
  margin:1rem 1rem 0 0;
}

/* Slick Slider - Default Style */
.slick-slider {
  position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand; 
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); 
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; 
}
.slick-loading .slick-track {
  visibility: hidden; 
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; 
}
.slick-initialized .slick-slide {
  display: block; 
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Slick Slider - Arrows */
.prev-slide,
.next-slide {
  flex: none;
  width: 8rem;
  height: 8rem;
  color: #fff;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s; 
  border-radius: 7px;
}
.prev-slide:hover, .next-slide:hover {
  background-color: #898183;
}
.prev-slide:hover svg, .next-slide:hover svg {
  color:var(--white);
  transition: all .3s; 
}
.prev-slide svg, .next-slide svg {
  width: 1em;
  height: 2.5em; 
  color:#fff;
}
.prev-slide svg {
  transform: rotate(90deg);
}
.next-slide svg {
  transform: rotate(-90deg);
}

/* Slick Slider - Dots */
.slick-dots {
  position: relative;
  bottom: 0;
  list-style: none;
  display: flex;
  text-align: center;
  padding: 0;
  margin: 3rem 0 0 0;
  width: 100%; 
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    flex: 1;
}
.slick-dots li button {
    border: 0;
    background: #dddcdc;
    display: block;
    height: 3px;
    width: 100%;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none; 
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1; 
}
.slick-dots li.slick-active button{
  background: var(--main-color);
}

/* Popup  */
.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(1,72,118,0.5);
  z-index: 5;
  display: none;
}
.popup-window, .thanks-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  z-index: 110;
  transition: all .3s;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  width: 35em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-window.active {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}
.close-popup {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  display: block;
  overflow: visible;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.close-popup::before, .close-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  display: block;
  width: 20px;
  height: 1px;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
.close-popup::after {
  left: 0;
  transform: rotate(-45deg);
}

/* Thanks window */
.thanks-window {
  z-index: 120;
}
.thanks-window.active {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}
.thanks-window__title {
  margin-bottom:0.3em;
}
.thanks-window p {
  text-align: center;
}

/* Accordeon */
.acc__body {
  display: none;
}

/* ===== Custom Styles =====*/
.header {
  padding: 2rem 0;
  background: #fff;
  position: relative;
}
.header .container {
  max-width: 100%;
  padding:0 5rem;
}
.badge__phone {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 0 20px 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    white-space: nowrap;
}
.contact__item {
  font-size: 2rem;
}
.contact__item .fa {
  color:var(--main-color)
}
.contact__item__text span {
  color:#fff;
  font-size: 1.6rem;
  font-weight: 300;
  display: block;
}
.contact__item__text {
  margin-left: 1.5rem;
}
.mobile-menu__content .contact__item__text {
  text-align: center;
}
.contact__item__icon {
  flex:none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border:1px solid var(--main-color);
  transition: all 0.25s;
}
.btn .contact__item__icon {
  border:1px solid #fff;
  margin-right:1.5rem;
}
.btn .icon {
  color:#fff;
}
.logo {
  display: block;
  width: 23rem;
}
.logo img {
  width: 100%;
}
.menu li {
  margin:0 1em;
}
.menu li a {
  text-transform: uppercase;
  &:hover {
    color:#45d1b8;
  }
}
.mobile-menu__content .contact__item {
  margin-bottom:5px;
}
.language {
  margin-right:3rem;
}
.lang__link {
  font-weight: bold;
  color:var(--main-color);
  margin:0 0.5em;
  &:hover {
    color: #45d1b8;
  }
}
.lang__link.current {
  color: silver;
  pointer-events: none;
}
.decor__patern {
    position: absolute;
    width: 130rem;
    height: 130rem;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 5rem;
    background: linear-gradient(90deg, silver, #dfdfdf 30%, transparent 30%, transparent 100%);
    background-size: 6px;
    opacity: 0.1;
    z-index: 0;
}
.first__screen {
  padding: 20rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, rgba(1,72,118,0.9), transparent), url(../images/main2.webp) no-repeat center center / cover;
}
.first__screen::before {
  content:'';
  position: absolute;
  bottom:-10rem;
  left:-10rem;
  border-radius: 50%;
  background: #45d1b8;
  width: 30vw;
  height: 30vw;
  filter: blur(100px);
  opacity: 0.5;
}
.fs__content {
  z-index: 0;
}
.main__title__text {
    display: block;
    line-height: 1;
    font-family: 'Magistral';
    font-size: 10rem;
    font-weight: 500;
  text-shadow: 2px 2px 0 var(--main-color);
}
.fs__content p {
  font-size: 2.2rem;
  color: #fff;
  width: 80%;
}
.brand {
  display: block;
  bottom: 0;
  right:20px;
  font-size: 6vw;
  font-weight: bold;
  color:#fff;
  opacity: 0.2;
  font-family: 'Magistral';
}
.moz__license {
  padding:2rem;
  border-radius: 10px;
  background: #fff;
}
.moz__logo {
  width: 4rem;
  flex:none;
  margin-right:2rem;
}
.moz__logo img {
  width: 100%;
}
.section__title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2rem;
    width: 10rem;
    height: 0.3rem;
    background: var(--main-color);
}
.section__title.text--right::after {
    right: 0;
}
.section__title.text--center::after {
    left: 50%;
  transform: translateX(-50%);
}
.decor__title {
  font-size: 6vw;
    font-weight: 500;
    display: block;
    -webkit-text-stroke: 1px var(--main-color);
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.3;
  top:2rem;
  font-family: var(--font-title);
}
.decor__title.right {
  right: 5rem;
}
.decor__title.left {
  left: 5rem;
}
.about__img__1 {
  position: relative;
}
.about__img__1 img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 20px;
} 
.statistic {
  position: absolute;
  bottom:-7rem;
  right:0;
  border-radius: 20px;
  padding: 3rem;
  background: #014876;
  border:5px solid #fff;
}
.statistic::before {
  content:'';
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
}
.statistic p {
  text-align: center;
  color:#fff;
  font-size: 1.6rem;
  margin:1em 0 0;
}
.stat__index {
  display: block;
  font-size: 7rem;
  color:#45d1b8;
  line-height: 1;
}
.stat__index__text {
  display: block;
  color:#45d1b8;
}
.img__area img {
  border-radius: 20px;
}
.action {
  padding: 7rem 0;
  overflow: hidden;
}
.action__content {
  position: relative;
  z-index: 1;
}
.action p {
  color:#fff;
}
.action__content__icon {
    margin-right: 2rem;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    flex: none;
    border: 1px solid #45d1b8;
    padding: 3px;
}
.action .btn {
  background: #fff;
  color:var(--main-color);
  &:hover {
    background: #45d1b8;
    color:#fff;
  }
}
.action .btn:hover .icon {
  color:#fff;
  transition: all 0.25s;
}
.action .btn:hover .contact__item__icon {
  border:1px solid #fff;
  transition: all 0.25s;
}
.action .btn .icon {
  color:var(--main-color);
}
.action .contact__item__icon {
  border:1px solid var(--main-color);
}
.chat-icon {
    border: 1px solid #45d1b8;
    border-radius: 50%;
    width: 93%;
    height: 93%;
}
.chat-icon img {
    width: 50%;
}
.scroll-bar::-webkit-scrollbar-button {
  background-repeat:no-repeat;
  height:0px;
}
.scroll-bar::-webkit-scrollbar-track {
  background-color:#f3f3f3;
  border-radius:50px;
}
.scroll-bar::-webkit-scrollbar-thumb {
  -webkit-border-radius: 50px;
  border-radius: 5px;
  background-color: #014876;
}
.scroll-bar::-webkit-resizer{
  background-repeat:no-repeat;
  height:0px
}
.scroll-bar::-webkit-scrollbar{
  width: 5px;
}
.scroll-bar {
  padding-right: 2rem;
}
.advantages {
  padding: 8rem 0;
  background: var(--main-color);
}
.advantages p {
  color:#fff;
}
.adv__icon {
  width: 5rem;
  margin-right: 2rem;
}
.adv__icon img {
  width: 100%;
}
.service {
  background: #f3f3f3;
  overflow: hidden;
}
.service__card {
  overflow: hidden;
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 10px;
}
.sevice__card__img {
  margin-bottom:2rem;
  position: relative;
  z-index: 1;
}
.sevice__card__img img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 10px;
}
.more__link {
  font-size: 1.6rem;
  margin-top:1rem;
  cursor: pointer;
  transition: all 0.25s;
  &:hover {
    color: #45d1b8;
    transition: all 0.25s;
  }
}
.service__title {
  margin-bottom:1rem;
}
.acc__body p {
  text-align: center;
  font-size: 1.5rem;
}
.acc__head .more__link span:last-child {display: none;}
.acc__head.active .more__link span:last-child {display: block;}
.acc__head.active .more__link span:first-child {display: none;}
.service__descr {
  display: flex;
  flex-direction: column-reverse;
}
.service__slider .slide {
  padding: 0 1.5rem;
}
.service__slider .slick-list {
  margin:0 -1.5rem;
}
.gallery-slider-area {
  z-index: 0;
}
.gallery__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.gallery-slider .slick-list {
  margin:-3px 0;
}
.gallery-slider .slide {
  padding:0 3px;
}
.gallery-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  top:50%;
  transform: translateY(-50%);
}
.gallery-slider .prev-slide {
  left:5rem;
}
.gallery-slider .next-slide {
  right:5rem;
}
.gallery-item {
  margin-bottom:6px;
}
.gallery__img {
  display: block;
  position: relative;
}
.gallery__img::before {
  content:'';
  position: absolute;
  width: 100%;
  height:100%;
  background: var(--main-color);
  opacity: 0.3;
  top:0;
  left:0;
  transition: all 0.25s;
}
.gallery__img:hover::before {
  opacity: 0;
  transition: all 0.25s;
}
.gallery .decor__section__title {
  z-index: 1;
  color:var(--main-color);
}
.gallery .decor__title {
    z-index: 1;
}
.contact {
    background: linear-gradient(rgba(1,72,118,0.5), rgba(1,72,118,0.5)), url(../images/16.webp) no-repeat center center / cover;
  overflow: hidden;
}
.contact__body {
  padding: 4rem;
  background: rgba(255,255,255,0.75);
  margin:0 auto;
  border-radius: 20px;
  width: 60%;
}
.contact__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border:1px solid var(--main-color);
  margin-bottom:1rem;
}
.contact .contact__item {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
}
.contacts .contact__item {
  font-size: 4rem;
  font-weight: 300;
}
.contact__item__icon .icon {
  margin:0;
}
.map__area {
  height: 50rem;
}
.map__area iframe {
  width: 100%;
  height: 100%;
}
.footer__body {
  padding:7rem 0;
  background: #1e1e1e;
  overflow: hidden;
}
.footer__bottom {
  padding: 2rem 0;
}
.copyright {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  color:#fff;
}
.copyright a {
  text-decoration: underline;
}
.copyright a:hover {
  text-decoration: none;
}
.scroll__text {
  display: block;
  font-size: 1.5rem;
  margin-right:1rem;
  color:var(--main-color);
}
.down {
  transition: all 0.25s;
  display: flex;
}
.down span {
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(-45deg);
  display: block;
  width:15px;
  height:15px;
  margin-top:-3px;
}
@-webkit-keyframes glowing {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
  }
  @keyframes glowing {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
.down span:first-child {
  -webkit-animation: glowing 1200ms infinite;
  -moz-animation: glowing 1200ms infinite;
  -o-animation: glowing 1200ms infinite;
  animation: glowing 1200ms infinite;
}
.down span:nth-child(2) {
  -webkit-animation: glowing 1400ms infinite;
  -moz-animation: glowing 1400ms infinite;
  -o-animation: glowing 1400ms infinite;
  animation: glowing 1400ms infinite;
}
.down span:last-child {
  -webkit-animation: glowing 1600ms infinite;
  -moz-animation: glowing 1600ms infinite;
  -o-animation: glowing 1600ms infinite;
  animation: glowing 1600ms infinite;
}