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

@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  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:#3d9cb9;
  --main-font:'Montserrat';
}
html {font-size:10px;height:100%;}
body {
    background: #fff;
    font-weight: normal;
  font-family: var(--main-font);
  font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
  color: var(--black);
    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 */

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

.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;}

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

/* Buttons */
.btn {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: normal;
  display:inline-flex;
  padding:1.3em 3em;
  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;
  color:#fff;
  border-radius: 50px;
}
.btn:hover {
  background: transparent;
  transition: all 0.25s;
  color:var(--main-color);
}
.btn--violet {
  background: #003280;
  border:1px solid #003280;
}
.btn--violet:hover {
  border:1px solid #003280;
  color:#003280
}
.btn .icon {
  margin-right:2rem;
}
.btn:hover .icon {
  color:var(--main-color);
  transition: all 0.25s;
}
.btn--violet:hover .icon {
  color:#003280;
}
/* Icons */
.icon {display:block;transition: all 0.25s;}
.icon-phone, .icon-web {
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
}


/* Popup  */
.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(49, 49, 49, 0.62);
  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: 2rem;
  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;
}

/* ===== Custom Styles =====*/
.hero {
  height: 100vh;
  background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)), url(main.webp) no-repeat center center / cover;
}
.content {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  padding: 7rem 5rem;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  width: 90%;
  margin:0 auto;
}
.main__title {
  font-size: 5rem;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color:var(--main-color);
}
.btn__row {
  gap:2rem;
  margin-top:3rem;
}
.text__block {
  width: 80%;
  margin:4rem auto 0;
}
.text__block p {
  text-align: center;
  font-size: 2.2rem;
}
.subtitle {
  display: block;
  text-align: center;
  font-weight: bold;
  color:var(--main-color);
  font-size: 2rem;
  margin-bottom:1em;
}

@media (max-width:1440px) { 
  .content {
    padding: 5rem;
  }
  .main__title {
      font-size: 4rem;
  }
}

@media (max-width:768px) { 
  .content {
    padding: 3rem 2rem;
    width: 100%;
  }
  .main__title {
    font-size: 2.2rem;
  }
  .text__block p {
    text-align: center;
    font-size: 16px;
  }
  .text__block {
    width: 100%;
  }
  .btn {
    width: 100%;
    padding: 1.5rem 2rem;
  }
  .hero {
    height: auto;
    padding: 5rem 0;
  }
}


/* ===== Custom Styles END =====*/
