@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
  resize: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, address, cite, span, ul, li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*-----------------------------------обнуляющие стили--------------------------------*/
/*----------------------------------Шрифты--------------------------------*/
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Black.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------Шрифты--------------------------------*/
/*----------------------------------Переменные--------------------------------*/
:root {
  --color-black: #000D11;
  --color-white: #AFD0D7;
  --font-family-base: "Roboto", Arial, sans-serif;
  --container-width: 86%;
}

/*----------------------------------Переменные--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-white);
  background: var(--color-black);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 10px;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.text {
  font-size: clamp(14px, 1.25vw, 18px);
  color: var(--color-black);
  line-height: 100%;
}

.button {
  display: inline-block;
  padding: 20px 32px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: clamp(18px, 1.5277777778vw, 22px);
  background-color: var(--color-white);
  color: var(--color-black);
  text-transform: uppercase;
  transition: All 0.5s ease 0s;
}
@media (hover: hover) {
  .button:hover {
    background-color: #5f757a;
  }
}

/*----------------------------------global--------------------------------*/
/*----------------------------------header--------------------------------*/
.header {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);border-bottom: 0.5px solid #AFD0D7;
  z-index: 99;
  padding: 20px 0px;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__logo {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Unbounded";
  color: #AFD0D7;
}
.header__logo span {
  transition: All 0.5s ease 0s;
}
@media (max-width: 768px) {
  .header__logo span {
    display: none;
  }
}
@media (hover: hover) {
  .header__logo span:hover {
    color: #ffffff;
  }
}
.header__link {
  transition: All 0.5s ease 0s;
  font-size: clamp(18px, 2.0833333333vw, 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (hover: hover) {
  .header__link:hover {
    color: #ffffff;
  }
}

/*----------------------------------header--------------------------------*/
/*----------------------------------menu--------------------------------*/
.menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.menu__link {
  line-height: 120%;
  position: relative;
  font-size: 16px;
  transition: All 0.5s ease 0s;
}
@media (hover: hover) {
  .menu__link:hover {
    color: #ffffff;
  }
}
@media (max-width: 1024px) {
  .menu__link {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .menu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 80px 30px 30px 30px;
    transition: All 0.5s ease 0s;
    overflow: auto;
    z-index: 9;
  }
  .menu._active {
    top: 0;
  }
  .menu__list-item:not(:last-child) {
    margin-bottom: 32px;
  }
  .menu ul {
    display: block;
    text-align: center;
    position: relative;
    color: var(--color-black);
  }
  .menu ul li {
    margin-bottom: 20px;
  }
}

/*----------------------------------menu--------------------------------*/
/*----------------------------------burger--------------------------------*/
.burger {
  display: none;
}
@media (max-width: 1024px) {
  .burger {
    width: 43px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: all 0.3s;
    z-index: 999;
    cursor: pointer;
    padding: 4px 0 4px 5px;
  }
  .burger__line {
    height: 2px;
    transition: all 0.3s ease 0s;
    background: #ffffff;
    border-radius: 2px;
  }
  .burger._active .burger__line:first-child {
    transform: rotate(45deg) translate(7px, 6px);
  }
  .burger._active .burger__line:nth-child(2) {
    transform: scale(0);
  }
  .burger._active .burger__line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/*----------------------------------burger--------------------------------*/
/*----------------------------------main-section--------------------------------*/
.main-section {
  padding-top: 150px;
  padding-bottom: 50px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-section {
    padding-top: 120px;
  }
}
.main-section__content {
  position: relative;
  z-index: 2;
}
.main-section__title {
  font-size: clamp(25px, 4.2666666667vw, 68px);
  line-height: 120%;
  max-width: 690px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.main-section__title span {
  display: block;margin-top: 20px;
  line-height: 130%;
  font-size: clamp(20px, 2.7777777778vw, 27px);
}
.main-section__list {
  text-transform: uppercase;
  margin-left: 20px;
  margin-bottom: 50px;
}
.main-section__list li {
  margin-bottom: 14px;
   line-height: 150%;
   max-width: 660px;
  list-style: disc;
}
.main-section__list li a {
  margin-bottom: 20px;
   line-height: 150%;
   max-width: 660px;
  list-style: disc;
}
.main-section__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main-section__wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.main-section__cost {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 30px;
  font-size: 40px;
}



.main-section__items {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .main-section__items {
    display: block;
  }
  .main-section__cost {
  display: none;
}
.header__logo {
display: none;
}
}
.main-section__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-section__item {
    margin-bottom: 20px;
  }
  .main-section__item svg {
    display: none;
  }
}

/*----------------------------------main-section--------------------------------*/

/*----------------------------------news-section--------------------------------*/
.image__bg{
  background-image: url(../../assets/img/image-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 80px;
}

.container{
   max-width: 83%;
  padding: 0 15px;
  margin: 0 auto;
}

.about_us{
  padding: 30px 0;
}
.about_us h2{
  font-size: 48px;
  font-weight: 300;
  color: #000;
}
.about_us__grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}
.about_us__grid-item-2, .about_us__grid-item-3{
  padding: 45px;
  background-color: #000D11;
}
.about_us__grid-item-1 { grid-area: 1 / 1 / 3 / 2; }
.about_us__grid-item-2 { grid-area: 1 / 2 / 3 / 5; }
.about_us__grid-item-3 { grid-area: 3 / 1 / 4 / 3; }
.about_us__grid-item-4 { grid-area: 3 / 3 / 4 / 5; }
.about_us__grid-item{
  border-radius: 8px;
  overflow: hidden;
}
.about_us__grid-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_us__grid-item p{
  font-size: 18.7px;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  .about_us__grid{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr); 
  }
  .about_us__grid-item-1 { grid-area: 1 / 1 / 3 / 2; }
  .about_us__grid-item-2 { grid-area: 1 / 2 / 3 / 5; }
  .about_us__grid-item-3 { grid-area: 3 / 1 / 4 / 5; }
  .about_us__grid-item-4 { display: none;}
  .about_us__grid-item-5 { display: none;}
  
}
@media (max-width: 1000px) {
	
	.container{
   max-width: 97%;
  padding: 0 15px;
  margin: 0 auto;
}

  .about_us__grid{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .about_us h2{
    font-size: 36px;
    
  }
  .about_us__grid-item-2, .about_us__grid-item-3{
    padding: 25px;
  }
  .hidden {
	  display: none;
  }
  


}
.about_us__grid-item b {
  font-weight: 600;

}
.about_us__grid-item  {
color: #AFD0D7;  
 
}

.news-section {

  background-image: url(../images/image-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding-bottom: 0px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  background-color: #fff;
}
/*----------------------------------news-section--------------------------------*//*# sourceMappingURL=styles.css.map */



.footer__content {
	
	
	  padding: 40px;
	  color: #AFD0D7; 
	  text-align: center;
	  font-size: 14.7px;
	  line-height: 1.3;
}

.news-section-2 {

  background-image: url(../images/image-bg-2.png);
        background-size: cover;
        background-repeat: repeat;
        background-position: center;
        padding-bottom: 80px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  background-color: #fff;
}

.about_us__grid-2{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 310px);
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

.about_us__grid-2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:13px;
}






.news-section-3 {

  background-image: url(../images/image-bg.png);
        background-size: cover;
        background-repeat: repeat;
        background-position: center;
        padding-bottom: 80px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  background-color: #fff;
}
.about_us-3 {
  padding: 30px 0px;
}

  .about_us-3 h2{
    font-size: 48px;
	padding-top: 110px;
    color:#000;
	line-height: 1.0;
  }
  
    .about_us-3 li a {
  
  padding: 0px 0px;
  display: inline;
  
  }
  
  .rekvizit {
 margin-top: 50px;
 color:#3E6770;
 width: 280px;
   font-size: 11.7px;
	  line-height: 1.7;
}
  
  .news-section-4 {

  background-image: url(../images/image-bg5555.png);
        background-size: cover;
        background-repeat: repeat;
        background-position: center;
        padding-bottom: 80px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  background-color: #000;
}

.about_us__grid-4 {
  margin-top: 140px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
 
  grid-column-gap: 35px;
  grid-row-gap: 35px;
   font-size: 16.7px;
   line-height: 1.7;
}

.about_us__grid-6 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

.about_us__grid-item-6 {
    padding: 35px;
  }
  
  .about_us__grid-item-6 p {
  font-size: 18.7px;
  line-height: 1.7;
}

.about_us__grid-item-6 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {

  .about_us__grid-2{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 310px);
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

  .about_us-3 h2{
    font-size: 48px;
	padding-top: 50px;
    color:#000;
	line-height: 1.0;
  }
  
  .footer__content {
	
	
	  padding: 20px;
	  color: #AFD0D7; 
	  text-align: center;
	  font-size: 14.7px;
	  line-height: 1.3;
}
.about_us__grid-6 {
	 width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 0fr);
 
  grid-column-gap: 0px;
  grid-row-gap: 35px;
}

.hiddens {
	display: inline;
}

}

.hiddens {
	display: none;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 30px 10px;
}

.popup__content {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 35%);
  padding: 30px;
  max-width: 500px;
  position: relative;
}

.popup__close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 15px;
  font-weight: 600;
}
.form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__title {
  font-size: 19px;
  color:#000;
  font-weight: bold;
  text-align: center;
}

.form__item {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form__input {
  width: 100%;
  border: 1px solid #ccc;
  margin: 15px 0;
  padding: 0 15px;
  height: 50px;
  font-size: 15px;
  box-sizing: border-box;
  border-radius: 3px;
}

.form__input:focus {
  border: 2px solid #000000;
}

.checkbox {
  text-align: center;
  margin: 0 0 20px 0;
}

.checkbox__input {
  appearance: auto;
}
.checkbox__label {
  font-size: 13px;
  color: #888;
}
.park__btns {
  max-width: 293px;
  justify-content: space-between;
}
.park__btn {
  font-size: 13px;
  width: 133px;
  min-height: 28px;
}

.btn.--grad:before,
.btn.--grad:after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.btn.--grad:before {
  opacity: 1;
  visibility: visible;
  background: linear-gradient(103.9deg, #005968 31.58%, rgba(0, 0, 0, 0.4) 84.3%);
}
.btn.--grad:after {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(103.9deg, #005968 84.3%, #005968 31.58%);
}
.btn.--grad:hover {
  transition: 0.3s;
}
.btn.--grad:hover:before {
  visibility: hidden;
}
.btn.--grad:hover:after {
  opacity: 1;
  visibility: visible;
}
.btn {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-bottom: none;
  overflow: hidden;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 15px;
  padding: 10px 25px;
 
  width: 60%;
}
.btn.--blue {
  min-height: 41px;
}
.btn.--blue:before,
.btn.--blue:after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.btn.--blue:before {
  opacity: 1;
  visibility: visible;
  background: linear-gradient(180deg, #4770ff 0%, rgba(0, 0, 0, 0.67) 100%);
}
.btn.--blue:after {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, #4770ff 100%, #000 0%);
}
.btn.--blue:hover {
  transition: 0.3s;
}
.btn.--blue:hover:before {
  opacity: 0;
  visibility: hidden;
}
.btn.--blue:hover:after {
  opacity: 1;
  visibility: visibl