@charset "UTF-8";
@font-face {
  font-family: "TTFirsNeue-Light";
  src: url("../fonts/TTFirsNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Regular";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraLight";
  src: url("../fonts/TTFirsNeue-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-DemiBold";
  src: url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Bold";
  src: url("../fonts/TTFirsNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraBold";
  src: url("../fonts/TTFirsNeue-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Medium";
  src: url("../fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Thin";
  src: url("../fonts/TTFirsNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Black";
  src: url("../fonts/TTFirsNeue-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}



html, body{
scroll-behavior: smooth;
}


.container {
  max-width: 1335px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1335px) {
  .container {
    padding: 0 15px;
  }
}

.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

.section__page {
  margin-top: 150px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "TTFirsNeue-Regular";
  color: #053276;
  background: #fff;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #053276;
  padding: 18px 0;
  z-index: 100;
}

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

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__buttons .button1 {
  margin-right: 24px;
}

.button2 {
  border: 1px solid #FFF;
  border-radius: 8px;
  padding: 11.5px 20px;
  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;
  text-decoration: none;
  font-family: "TTFirsNeue-Medium";
  font-size: 15px;
  color: #053276;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: 210px;
  background:#fff;
}
.button2:hover {
  background: #053276;
  border: 1px solid #FFF;
  color: #FFF;
}

.button1 {
  border: 1px solid #FADF10;
  background: #FADF10;
  border-radius: 8px;
  padding: 11.5px 20px;
  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;
  text-decoration: none;
  font-family: "TTFirsNeue-Medium";
  font-size: 15px;
  color: #053276;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: 210px;
}
.button1:hover {
  background: transparent;
  border: 1px solid #FADF10;
  color:#FFF;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 32px;
  height: 32px;
  position: relative;
}
.burger span {
  width: 32px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(1) {
  width: 16px;
}
.burger span:nth-child(2) {
  width: 22px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 83.5px;
  right: 0;
  width: 100%;
  max-width:420px;
  height: 100%;
  background: #fff;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 20px 15px;
}
.mobile__menu .header__buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .header__buttons .button1 {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  background: #053276;
  color:#FFF;
  border:1px solid  #053276;
}
.mobile__menu .header__buttons .button2 {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  background: #053276;
  color:#FFF;
   border:1px solid  #053276;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    top: 68px;
  }
}
.mobile__menu .top__menu {
  margin-top: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.mobile__menu .top__menu .menu {
  -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;
}
.mobile__menu .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
  text-align: center;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-size: 20px;
  text-decoration: none;
  color: #053276;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.back {
 background: #053276bb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.section1 {
  height: 100vh;
  overflow: hidden;
  position: relative;
background-color: #0c2052;
}

@media screen and (max-width: 1024px) {
  .section1 {
    height: auto;
  }
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #053276; /* затемнення для контрастності */
  z-index: 2;
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* затемнення для контрастності */
  z-index: 2;
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
}

.content {
  position: relative;
  z-index: 3;
  height: 100vh;
  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;
  width: 100%;
}

.section1__title {
  font-family: "TTFirsNeue-Bold";
  font-size: 64px;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 40px;
    line-height: 120%;
  }
}

.section1__txt {
  font-family: "TTFirsNeue-Medium";
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .section1__txt {
    font-size: 18px;
    line-height: 100%;
  }
}

.section1__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button3 {
	
  cursor: pointer;
  overflow: none;
  border:1px solid #FFF;
  border-radius: 8px;
  padding: 11.5px 60px;
  background: #FFF;
  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;
  text-decoration: none;
  font-family: "TTFirsNeue-Medium";
  font-size: 15px;
  color: #053276;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.button3:hover {
  background:#FADF10;
	border:1px solid #FADF10;
  
}

.hide {
  -webkit-transform: translate(0%, 200%);
          transform: translate(0%, 200%);
}

.mause {
  position: absolute;
  z-index: 4;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: upDown 1.5s ease-in-out infinite;
          animation: upDown 1.5s ease-in-out infinite;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
.tab__panel {
  display: none;
}

.tab__panel.active {
  display: block;
}

.tabs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: relative;
}
.tabs::before {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(250, 250, 250, 0.42);
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow-x: scroll;
    width: 100%;
  }
  .tabs::before {
    display: none;
  }
}

.tab__button {
  cursor: pointer;
  border-top: 5px solid transparent;
  position: relative;
  z-index: 1;
  padding: 20px 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "TTFirsNeue-DemiBold";
  font-size: 18px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .tab__button {
    padding: 15px 20px;
    font-size: 16px;
  }
}

.tab__button.active {
  background: #053276;
 
}

.section2 {
  height: 100vh;
  overflow: hidden;
  width: 100%;
  position: relative;
  
}

@media screen and (max-width: 1024px) {
  .section2 {
    height: auto;
  }
}

.section2::before{
	position:absolute;
	 top: 0;
	 left: 0;
	 right:0;
	 bottom:0;
	 background: #05327683;
	 content:"";
	 z-index:2;
}


.tabs__hidden{
	
}

.tab__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  
 
}

.tab__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.tab__content {
  position: absolute;
  bottom: 180px;
  z-index: 3;
  width: 100%;
  font-family: "TTFirsNeue-Medium";
  font-size: 20px;
  color: #fff;
}

.tab__content .container p{
	 font-weight:300;
	 font-family:sans-serif;
}


.tab__content .container .videobutton{
	
}

.tab__content .container .videobutton a{
	border: 1px solid #FFF;
    border-radius: 8px;
    padding: 11.5px 20px;
    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;
    text-decoration: none;
    font-family: "TTFirsNeue-Medium";
    font-size: 15px;
    color: #053276;
    -webkit-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
    width: 210px;
    background: #fff;
	margin-top:30px
}

.tab__content .container .videobutton a:hover{
	background:none;
	color:#FFF;
}

.section2__content {
  position: absolute;
  bottom: 340px;
  z-index: 2;
  width: 100%;
}

.section3 {
  padding: 84px 0;
  height:100vh;
  display:grid;
  align-items:center;
}
@media screen and (max-width: 1024px) {
  .section3 {
    padding: 42px 0;
    height: auto;
  }
}

.section3__title {
  font-family: "TTFirsNeue-DemiBold";
  font-size: 43px;
  line-height: 51px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section3__title {
    margin-bottom: 35px;
    font-size: 21px;
    line-height: 120%;
  }
}

.section3__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr ;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s3__item {
  background: #053276;
  border-radius: 6px;
  padding-top: 15px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .s3__item {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.s3__item__img {
  margin-bottom: 44px;
}

.s3__item__title {
  font-family: "TTFirsNeue-Medium";
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
}

.s3__item__txt {
  font-family: "TTFirsNeue-Light";
  color: rgba(250, 250, 250, 0.66);
}

.section4 {
  background: #053276 url("../img/section4.jpg") no-repeat;
  background-size: cover;
  padding: 30px 0;

  height:100vh;
  align-items:center;
  display:grid;
}

@media screen and (max-width: 1024px) {
  .section4 {
    height: auto;
    overflow: hidden;
  }
}

.section4 .section3__title {
  color: #fff;
}

.section4__swiper {
  overflow: hidden;
}

.section4__numbers {
 display:grid;
 grid-template-columns:1fr 1fr 1fr 400px;
  margin-bottom:30px;
  grid-gap:20px;
  align-items:center;
}
@media screen and (max-width: 1024px) {
  .section4__numbers {
   grid-template-columns:100%;
  }
}

.s4__item__numb {
 
 
  
}
.s4__item__numb:nth-last-child(1) {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .s4__item__numb {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .s4__item__numb:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.numb {
  color: transparent;
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  font-size:50px; 
  font-family: "TTFirsNeue-ExtraBold";
 
}
@media screen and (max-width: 1024px) {
  .numb {
    font-size: 45px;
  }
}

.numb__txt {
  font-size: 16px;
  color: #fff;
  font-family: "TTFirsNeue-Light";
}

.section4__bottom {
 
		  width:400px;
}
@media screen and (max-width: 1024px) {
  .section4__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section4__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section4__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section4__right {
  
}
@media screen and (max-width: 1024px) {
  .section4__right {
    width: 100%;
    overflow: hidden;
  }
}

.section4__title {
  margin-bottom: 0;
}

.s4__item {
  border-radius: 6px;
  background: #fff;
}

.s4__top {
  padding: 20px;
}

.s4__ico {
  margin-bottom: 55px;
}

.s4__title {
  font-size: 22px;
  font-family: "TTFirsNeue-Bold";
  margin-bottom: 32px;
}

.s4__bottom {
  padding: 20px;
  background: #FADF10;
  color: #053276;
  font-family: "TTFirsNeue-Medium";
  font-size: 20px;
  border-radius: 0px 0px 6px 6px;
}

.section5 {
  padding: 125px 0;
  min-height:100vh;
  align-items:center;
  display:grid;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding: 40px 0;
    height: auto;
  }
}

.section5__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 18px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .section5__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s5__item:hover .s5__item__button {
  opacity: 1;
  visibility: visible;
}

.s5__header {
  padding: 30px;
  border: 1px solid #000;
  border-radius: 8px;
  margin-bottom: 1px;
  background: #053276;
  color:#FFF;
}

.s5__title {
  text-align: center;
  font-size: 23px;
  font-family: "TTFirsNeue-Bold";
  letter-spacing: 0.04em;
  border-bottom: 1px solid #FFF; 
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.s5__content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.s5__content__item:nth-last-child(1) {
  margin-bottom: 0;
}
.s5__content__item::before {
  content: "";
  width: 16px;
  height: 16px;
  
  background: url("../img/check__green.svg") no-repeat;
  display: block;
  margin-right: 16px;
}

.no::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/check__white.svg)no-repeat;
  display: block;
  margin-right: 16px;
}

.s5__price {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #FFF;
  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;
}

.old__price {
  font-size: 20px;
  color: #FFF;
  text-decoration: line-through;
  margin-right: 10px;
}

.new__price {
  font-family: "TTFirsNeue-Bold";
  font-size: 23px;
}

.s5__item__button {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 1;
  visibility: visible;
}
.s5__item__button .button3 {
  max-width: 100%;
  width: 100%;
  cursor: pointer;
	color:#053276;
	border:1px solid #053276;
}
@media screen and (max-width: 1024px) {
  .s5__item__button {
    opacity: 1;
    visibility: visible;
  }
}

.tariff2 .s5__header {
 background: #053276;
}
.tariff2 .s5__title {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.tariff2 .s5__content__item {
  color: #fff;
}
.tariff2 .no::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/check__white.svg") no-repeat;
  display: block;
  margin-right: 16px;
}
.tariff2 .old__price {
  color:#FFF;
}
.tariff2 .new__price {
  color: #fff;
}
.tariff2 .s5__price {
  border-top: 1px solid #fff;
}

.tariff3 .s5__header {
  background: #053276;
}
.tariff3 .s5__title {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.tariff3 .s5__content__item {
  color: #fff;
}
.tariff3 .no::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/check__white.svg") no-repeat;
  display: block;
  margin-right: 16px;
}
.tariff3 .old__price {
  color: #FFF;
}
.tariff3 .new__price {
  color: #fff;
}
.tariff3 .s5__price {
  border-top: 1px solid #fff;
}

.fancybox__content {
  border-radius: 6px;
  max-width: 500px;
}

.form__title {
  text-align: center;
  margin-bottom: 30px;
  font-family: "TTFirsNeue-Bold";
  font-size: 20px;
}

.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
}
.form__input input {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
  padding: 18px 20px;
  width: 100%;
  outline: none;
  font-size: 15px;
  color: #9E9E9E;
}
.form__input input::-webkit-input-placeholder {
  font-size: 15px;
  color: #9E9E9E;
}
.form__input input::-moz-placeholder {
  font-size: 15px;
  color: #9E9E9E;
}
.form__input input:-ms-input-placeholder {
  font-size: 15px;
  color: #9E9E9E;
}
.form__input input::-ms-input-placeholder {
  font-size: 15px;
  color: #9E9E9E;
}
.form__input input::placeholder {
  font-size: 15px;
  color: #9E9E9E;
}

.check__label {
  margin-bottom: 10px;
}
.check__label span {
  color: #EA3724;
}

.form__check {
  margin-bottom: 16px;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 20px;
}

.section6 {
  background: url("../img/section6.png") no-repeat fixed;
  background-size: cover;
  padding: 140px 0;
  min-height:100vh;
  display:grid;
  align-items:center;
}

@media screen and (max-width: 1024px) {
  .section6 {
    height: auto;
  }
}

.section6 .section3__title {
  margin-bottom: 110px;
  color: #fff;
}

.section6__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .section6__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .section6 .section3__title {
  margin-bottom: 40px;
  color: #fff;
}
}

.s6__item {
  padding-bottom:50px;
  border-bottom: 1px solid #fff;
}


.s6__item__img {
  margin-bottom: 24px;
	
}
.s6__item__img img{
	transition: 0.5s transform;
}
.s6__item:hover .s6__item__img img{
	transform:scale(1.3);
	
}

.s6__item__txt {
  font-family: "TTFirsNeue-Medium";
  letter-spacing: 0.04em;
  color: #fff;
}

.section7 {
  padding: 100px 0;
  min-height:100vh;
  display:grid;
  align-items:center;
}
@media screen and (max-width: 1024px) {
  .section7 {
    padding: 40px 0;
    height: auto;
  }
  .s6__item {
	  padding-bottom:20px;
	  
	}
}

.section7__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section7__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section7__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section7__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section7__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section7__right {
    width: 100%;
  }
}

.section7__item {
  margin-bottom: 40px;
}
.section7__item:nth-last-child(1) {
  margin-bottom: 0;
}
.section7__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #053276;
}
.section7__item a img {
  margin-right: 24px;
}

.section8 {
  padding: 100px 0;
  min-height:100vh;
  display:grid;
  align-items:center;
}
@media screen and (max-width: 1024px) {
  .section8 {
    padding: 40px 0;
    height: auto;
  }
}

.question__item {
  margin-bottom: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 32px;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .question__item {
    padding: 15px 15px;
  }
}
.question__item:nth-last-child(1) {
  margin-bottom: 0;
}

.question__arrow {
  min-width: 14px;
  min-height: 17px;
  margin-left: 20px;
}

.question__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question__number {
  margin-right: 24px;
}

.question__title {
  font-family: "TTFirsNeue-Medium";
  font-size: 17px;
}
@media screen and (max-width: 1024px) {
  .question__title {
    font-size: 15px;
  }
}

.question__hidden {
  margin-top: 30px;
  background:#053276;
  color:#FFF;
  padding:10px;
  border-radius:5px;
  
}

.footer {
  background: #053276;
  padding-top: 80px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__item {
  width: 23%;
}
@media screen and (max-width: 1024px) {
  .footer__item {
    width: 100%;
    margin-bottom: 30px;
  }
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__txt {
  font-family: "TTFirsNeue-Light";
  font-size: 15px;
  color: #fff;
}

.footer__name {
  font-family: "TTFirsNeue-Bold";
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
}

.footer__link {
  font-family: "TTFirsNeue-Medium";
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
.footer__link:nth-last-child(1) {
  margin-bottom: 0;
}
.footer__link:hover {
  text-decoration: underline;
}

.telephones {
  margin-bottom: 20px;
}
.telephones:nth-last-child(1) {
  margin-bottom: 0;
}
.telephones a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff;
}
.telephones a img {
  margin-right: 10px;
}

.footer__row2 {
  padding: 30px 0;
  margin-top: 100px;
  border-top: 1px solid rgba(250, 250, 250, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.copyright {
  font-size: 14px;
  color: #CECECE;
}

.fo__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .fo__socials {
    margin: 20px 0;
  }
}

.soc {
  margin-right: 10px;
}

.footer__link2 {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}

.swiper-button-prev {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  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;
  margin-right: 10px;
}
.swiper-button-prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.swiper-button-next {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  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;
}
.swiper-button-next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}




.error-page{
	padding:180px 40px 100px 40px;
	text-align:center;

}

.error-page a{
	background: #053276;
	border-radius:5px;
	display:inline-block;
	padding:15px 40px;
	color:#FFF;
	border:1px solid #053276;
	transition:0.5s background;
	text-decoration:none;
}


.error-page h1{
	font-family: "TTFirsNeue-DemiBold";
    font-size: 65px;
	color:#053276;
	margin-bottom:10px;
}
.error-page h2{
	font-family: "TTFirsNeue-DemiBold";
    font-size: 36px;
	color:#053276;
	margin-bottom:20px;
}
.error-page a:hover{
	background:#FFF;
	color:#053276;
}


.button-two{
	display:flex;
	align-items:center;
	
}
.button-two button{
	border:1px solid #053276;
}
.button-sociaal{
	margin-left:30px;
	display:flex;
}

.button-sociaal img{
	
	transition:0.5s transform; 
	transform: scale(1.5);
	margin:0 15px;
}
.button-sociaal img:hover{
	transform: scale(1.6);
}
	









.background-video {
    transition: opacity 1s ease;
}
.background-video.hide-video {
    opacity: 0;
    visibility: hidden;
}










.fo__socials .soc{
		display:flex;
		align-items:center;
		justify-content:center;
		background:#FFF;
		border-radius:50%;
		width:33px;
		height:33px;
		
}
.fo__socials .soc:nth-child(4) img{
	width:20px;
}
.fo__socials .soc:nth-child(5) img{
	width:20px;
}





