@charset "UTF-8";

/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Unbounded:wght@900&family=Yeseva+One&display=swap');


/*'Unbounded', sans-serif;*/
/*'Colus', serif;*/

/*baisic*/
html{
  -webkit-locale: "ru-RU";
  direction: ltr;
  unicode-bidi: isolate;
  min-height: 100%;
}
html, body{
  min-height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body{
  font: 400 16px/1.2 'Jost', sans-serif;
  color: #D1E1FE;
  background: #0B1537;
  min-width: 310px; 
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  -moz-font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}
.no-scroll{
  height: 100%;
  overflow: hidden;
}

/*box-sizing*/
*, *:before, *:after, input[type="search"]{
  box-sizing: border-box;
}

/*buttons*/
.btn{
  display: block;
  padding: 0;
  outline: 0!important;
  outline-color: transparent!important;
  outline-width: 0!important;
  outline-style: none!important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  border: none;
  background: none;
  box-shadow: none;
  transition: .25s ease;  
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.btn::-moz-focus-inner {border: 0;}
.btn:disabled {
  cursor: default;
  opacity: 1;
  user-select: none;	
}

/*layout*/
.wrapper{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}
.container{
  width: 100%;
  max-width: 1210px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width : 1023px){
  .container{max-width: 480px;}
}

/*typographyc*/
ol,ul,li,h1,h2,h3,h4,h5,h6,p,q,figure,figcaption,blockquote,cite,fieldset,hr{    
  margin:0;
  padding: 0;    
  border: none;
}
ul li, ol li{list-style: none;}
a{
  text-decoration: none;
  outline: none;
  transition: .25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:-moz-any-link:focus ,
a:-moz-focusring,
a::-moz-focus-inner,
a::-moz-focus-outer{
  outline: 0!important;
  outline: none;
}
a:active {outline: none;}
a[href^="tel:"],
a[href^="mailto:"]{white-space: nowrap;}
img{
  display: block;
  max-width: 100%;
  height: auto;
}

.sec-title{
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  text-transform: uppercase;
}
.sec-title span{
  margin: 15px 0;
  font-family: 'Jost';
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #9CB1D6;
  display: block;
}
.sec-title span:first-child{margin-top: 0;}
.sec-title span:last-child{margin-bottom: 0;}
.sec-header__txt{
  padding: 22px 34px 22px 53px;
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  color: #395277;
  background-color: #fff;
  border-radius: 4px;
}
.sec-header__txt b{font-weight: 600;}
.sec-header__txt::before{
  content: '';
  display: block;
  position: absolute;
  left: 26px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFE484 0%, #FF9A02 100%);
  box-shadow: 0 0 13.5px rgba(255, 154, 2, .53);
}
@media only screen and (max-width : 1023px){
  .sec-title{
    font-size: 40px;
    line-height: 53px;
    text-align: center;    
  }
  .sec-header__txt{
    padding: 50px 24px 24px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
  .sec-header__txt::before{
    left: 50%;
    top: 22px;
    margin-top: 0;
    margin-left: -4px;
  }
}
@media only screen and (max-width : 399px){
  .sec-title{
    font-size: 34px;
    line-height: 1.2;
  }
}

@media only screen and (max-width : 1023px){
  .mob-hide{display: none !important;}
}
@media only screen and (min-width : 1024px){
  .desc-hide{display: none !important;}
}








