@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
:root {
  --bg-gradient-1: linear-gradient(to right, #00bfff, #00ff00);
  --bg-gradient-2: radial-gradient(circle, rgba(231,225,226,0.80) 30%, rgba(1,141,190,1) 79%);
  --bg-gradient-3: linear-gradient(0deg, rgba(8,40,222,0.76) 29%, rgba(26,105,133,1) 79%);

  --bg-1: #04b4f4; 
  --bg-2: #018dbe;
  --bg-3: #00457e;

 --card-bg-1:#f5a718;
 --card-bg-2:#7fa329;
 --card-bg-3:#5f65ce;
  --card-bg-4:#f6b21c;
  --card-bg-5:#018dbe;

 
  
  --white: #fff;
  --black: #060606;
  --accent-color:#f85b30;
  --dark-section:  #6f6f6f; 
  --global-color:#018dbe;
  --white-section:#f6f5f5;
  --border-color:#1F237C;
  --color-tex:#414141;
  --color-title:#1581b8;
 


  --hover-tranzitipn: all .4s cubic-bezier(.3,1,.35,1) 0s;  
}

body{
  
    direction: ltr;
    font-family: 'Changa', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0px;
    
}
h1,
h2,
h3,
h4,
h5,
p{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--hover-tranzitipn);
}
a:hover,a:focus{
    color: var(--accent-color);
}
img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.main{
    position: relative;    
    background-image: url(imagevault/bg-assets/bg-light-068a33da203d26.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding:  50px 0;
    
}
.background-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--bg-3);
    opacity: 0.7;
    transition: background 0.4s, border-radius 0.4s, opacity 0.4s;
    
}
.position{
    position: relative;
}

.blok-text-page p{
  margin-bottom: 11px;
  text-indent: 3ch;
}
.footer-linkImg {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-linkImg a img {
  max-height: 50px;
  width: auto;
  display: block;
  box-sizing: content-box;
}
@media (max-width: 575px){
  .footer-linkImg a img{
        max-height: 30px;
  }}

.blok-text-page h1{
    font-weight: 600;
    text-align: center;
    margin-bottom:  28px;
}
.blok-text-page h2{
    font-weight: 600;
    text-align: center;
    margin-bottom:18px ;
}
.blok-text-page table,.blok-text-page a{
    word-break: break-word;
    color: inherit;
}
.blok-text-page ul{
    margin: 0 25px;
    list-style: square;
}
.header_dyyt{
    padding: 20px 0 40px;
    border: none;
   border-bottom: 4px solid var(--white);
    background:  var(--bg-gradient-3);
    
    
}
.header-top{
    background-color: var(--black);
    color: var(--white);   
    padding: 9px 0 10px;
    margin-top: -19px;
    margin-bottom: 20px;
    
}
.header-col{    
    display: flex;
    justify-content: space-between;
    gap: 19px;
    flex-wrap: wrap; 
    flex-direction: row-reverse;   
}
.header-titles{
    color: var(--white);
    font-weight: 600;    
    text-shadow: 2px 0 2px var(--black), 0 2px 2px var(--black), -2px 0 2px var(--black), 0 -2px 2px var(--black);
}
.title-box{
    padding: 9px 19px;
    background-color:#edf5f8bd;
    color: var(--color-title);
    font-weight: 900;  
    margin-bottom: 50px;
    border-radius: 2px;
    text-align:center; 
     
    
}
.header-nav_gsydy{
    margin-top: 20px;
}
.sf-menu>li>a .top{
    position: absolute;
    top: -8px;
    width: 100%;
    height: 8px;
    border-right: 2px solid #95cae7;
    right: -5px;
    -webkit-transform: skew(-45deg,0);
    -moz-transform: skew(-45deg,0);
    -ms-transform: skewX(-45deg) skewY(0);
    -o-transform: skew(-45deg,0);
    transform: skew(-45deg,0);
    -webkit-backface-visibility: hidden;
     transition: var(--hover-tranzitipn);
}
.sf-menu a {
    position: relative;
    display: block;
}
.border-wrapper{
   position: relative;
}
.border-wrapper::before,.border-wrapper::after{
    content: '';
    position: absolute;
}
.border-wrapper::before{
    left: 4px;
    top: -8px;
    width: 100%;
    height: 8px;
    background-color: var(--white);
    -webkit-transform: skew(-45deg,0);
    -moz-transform: skew(-45deg,0);
    -ms-transform: skewX(-45deg) skewY(0);
    -o-transform: skew(-45deg,0);
    transform: skew(-45deg,0);
    -webkit-backface-visibility: hidden;
}
.border-wrapper::after{
    top: -4px;
    right: -8px;
    width: 8px;
    height: 100%;
    background-color: #6c9dc3;
    -webkit-transform: skew(0,-45deg);
    -moz-transform: skew(0,-45deg);
    -ms-transform: skewX(0) skewY(-45deg);
    -o-transform: skew(0,-45deg);
    transform: skew(0,-45deg);
    -webkit-backface-visibility: hidden;
}
.navbar-toggler{
    outline: none;
    background-color: #d8e5ec;
    border-radius: 0;
    border: none;
    padding: 5px 10px;
    border-top: 2px solid #95cae7;
    transition: var(--hover-tranzitipn);
}

.navbar-toggler:hover, .navbar-toggler:focus,.navbar-toggler:active{
    box-shadow:none;
    background: var(--accent-color);
    color: var(--white);

}
.offcanvas,.section-hero{
    background-color:  var(--bg-3);
}
.offcanvas-header{
    flex-direction: row-reverse;
    border-bottom: 2px solid var(--border-color);
}
.logo-mob,.nav-picture{
    display: none;
}
.hero-img-wrapper{
    
    max-width: 893px;
    background-color: #d8e5ec;
    padding: 19px 19px 23px 19px;   
    overflow: visible;
    margin: 50px auto 0;

}
.hero-img img{
    object-fit: cover;
    width: 100%;
    height:306px;
}
.wrapper{
   padding: 50px 0;   
}

.inner_sh6{
    position: relative;
    padding: 0 0 13px 13px;
    overflow: hidden;
   
    background-color: #c3cfd5;
    background-image: linear-gradient(to right,#fefefe,#c3cfd5);
    background-repeat: repeat-x;
}
.inner:before{
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    height: 100%;
    width: 15px;
    background-color: #798084;
    background-image: linear-gradient(to bottom,#a7b1b6,#333638);
    background-repeat: repeat-x;
    -moz-transform: skew(0,-45deg);
    -ms-transform: skewX(0) skewY(-45deg);
    -o-transform: skew(0,-45deg);
    transform: skew(0,-45deg);
    -webkit-backface-visibility: hidden;
} 
.wrapper-cards{
    margin: 0 8px 0px 0;
    padding: 0;
    color: #fff;
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
    padding: 11px;
  
}
.stil-card-1{
    background-color: var(--card-bg-1);
    background-image: linear-gradient(to bottom,var(--card-bg-1),var(--card-bg-1));
    background-repeat: repeat-x;
}
.stil-card-2{
    background-color: var(--card-bg-3);
    background-image: linear-gradient(to bottom,var(--card-bg-3),var(--card-bg-3));
    background-repeat: repeat-x;
}
.stil-card-3{
    background-color: var(--card-bg-5);
    background-image: linear-gradient(to bottom,var(--card-bg-5),var(--card-bg-5));
    background-repeat: repeat-x;
}
.stil-card-4{
    background-color: var(--card-bg-4);
    background-image: linear-gradient(to bottom,var(--card-bg-4),var(--card-bg-4));
    background-repeat: repeat-x;
}
.wrapper-cards::before{
    left: 4px;
    top: -8px;
    width: 100%;
    height: 8px;
    background-color: #d8e5ec;
    -webkit-transform: skew(-45deg,0);
    -moz-transform: skew(-45deg,0);
    -ms-transform: skewX(-45deg) skewY(0);
    -o-transform: skew(-45deg,0);
    transform: skew(-45deg,0);
    -webkit-backface-visibility: hidden;
}
.wrapper-cards::after{
    top: -4px;
    right: -8px;
    width: 8px;
    height: 100%;
    background-color: #6c9dc3;
    -webkit-transform: skew(0,-45deg);
    -moz-transform: skew(0,-45deg);
    -ms-transform: skewX(0) skewY(-45deg);
    -o-transform: skew(0,-45deg);
    transform: skew(0,-45deg);
    -webkit-backface-visibility: hidden;
}
.wrapper-cards::before,.wrapper-cards::after{
    content: '';
    position: absolute;
}
.card-title_hd7{
    margin: 0;
    padding: 16px 19px 19px;
    color: #fff;
    font-family: anton,sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    background-color: #eb372d;
}

.card-inner{
    padding: 19px 19px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
.card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 373px;
    min-height: 248px;
    transition: transform 0.35s ease 0s, -webkit-transform 0.35s ease 0s;

    
}
.card-img:hover img{
 transform: scale(1.05);
}
.aboutus-box_udf7{  
    background: var(--border-color);
    color: var(--white);
    border: 1px solid var(--white-section);
}
.aboutus-blok{
    padding: 70px 19px;
    background-repeat: no-repeat;    
    background-position: center center;
    background-size: cover;
    overflow: hidden;    
    background-image: url(imagevault/bg-assets/opacity_bg-068a33da203e3f.png );
}
.step-bg{
    position: relative;
    background-image: url(imagevault/bg-assets/bg-light-168a33da203d5c.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-overlay-blok{
    background-color: var(--card-bg-2);
    opacity: 0.7;
}
.aboutus-images{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 109px;
    height: 109px;
    object-fit: contain;
}


.aboutus-iner{
    display: flex;
    gap: 19px;
    align-items:  flex-start;

}
.aboutus-tex{
    text-align: center;   
    text-shadow: 2px 0 2px var(--black), 0 2px 2px var(--black), -2px 0 2px var(--black), 0 -2px 2px var(--black);

}
.ourTim{
    
    padding: 25px;
    border: 1px solid var(--white-section);
    background-color:  var(--bg-3);
    
   
}


.ourTim-item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.winner-item_0tys6{
    width: 248px;
    height: 100%;
}
.winner-image{
    background-color: #018dbe;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}
.winner-image::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-top: 40px solid #018dbe;
    border-left: 40px solid var(--bg-3);
    width: 0;
}

.winner-image img{
    width: 109px;
    height: 109px;
    object-fit: cover;
    border-radius: 0%;
    transition: 0.4s;
    border: 2px solid var(--white-section);
}

.winner-item_0tys6:hover .winner-image img{
    animation: shake 0.4s;
}
@keyframes shake{
    0% {
    transform: translate(1px, 1px) rotate(0deg);
}
10% {
    transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
    transform: translate(-3px, 0px) rotate(1deg);
}
30% {
    transform: translate(3px, 2px) rotate(0deg);
}
40% {
    transform: translate(1px, -1px) rotate(1deg);
}
50% {
    transform: translate(-1px, 2px) rotate(-1deg);
}
60% {
    transform: translate(-3px, 1px) rotate(0deg);
}
70% {
    transform: translate(3px, 1px) rotate(-1deg);
}
80% {
    transform: translate(-1px, -1px) rotate(1deg);
}
90% {
    transform: translate(1px, 2px) rotate(0deg);
}
100% {
    transform: translate(1px, -2px) rotate(-1deg);
}
}
.winner-content{
    display: flex;
    align-items: center;
    margin: 19px 0;
    color: var(--white);
    text-align: center;
    word-break: break-word;
}
.aboutus-blok .winner-image{
    
    border: 2px solid var(--white-section);
    border-radius: 4px;
    
}
.aboutus-blok  .winner-image::before{
    border: none;
}

.medal{
   
    
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
  
    
}
.bg-white{
    background: var(--white-section);
}

.page-title_gdy6{
    font-size: 41px;
    line-height: 1.2em;
    margin-bottom: 11px;
    color: var(--black);
    text-transform: uppercase;
}
.page-item_hd7{
    font-size: 19px; 
    
    color: #999;
    font-weight: 600;
   padding-right: 11px;
    text-transform: uppercase;
}
.page-item_hd7:last-child{
    padding-right: 0;
    padding-left: 11px;
}
.page-item_hd7 a{
    color: var(--color-title);
    font-weight: 600;
    transition: var(--hover-tranzitipn);
}
.page-item_hd7 a:hover{
    color: var(--accent-color);
}
.page-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cont{
    position: relative;
}
.cont::before{
position: absolute;
content: "";
width: 2px;
top: 0;
left: 0;
bottom: 0;
background: #999;
}
.contact-map_dfju6{
    width: 100%;
    height:306px;
    display: flex;   
    align-items: center;
    justify-content: center;
}
.contact-map_dfju6 iframe{
    height: 100%;
    width: 100%;  

}
.contact-wrapper_hdj7{
    margin-top: 34px;
    display: flex;
    gap: 25px;
    flex-direction:  row-reverse;
}
.contact-form{
    flex: 3;
}
.contact{
    flex: 1;
   
}
.form-input,.form-textarea,.input-user--columncontrol,.textarea-user--columncontrol{
    padding: 13px 13px 16px;
    height: 52px;
    line-height: 19px;
    width: 100%;
    background-color: #edf5f8;
     border-radius: 2px;
    color: #919293;
    box-shadow: none;
    outline: none;
    font-size: 13px;
    border: 2px solid #edf5f8;
}
.form-textarea,.textarea-user--columncontrol{
    height: 102px;
}
.grup-form{
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: 19px;
}
.contact-form-check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--color-tex);
}
.contact-list{
    display: flex;
    gap: 25px;
    flex-direction:  column-reverse;
}
.contact-item{
    background: #ddd;
    padding: 11px;
    color: var(--color-tex);
}
.contact-item a{
    
    display: block;
}
.page-img{
    max-height: 306px;
    object-fit: cover;
    border-radius: 20px;
    float: left;
    width: 37%;
    margin: 18px;
    margin-top: 0;
    margin-left: 0;
    
}

.gallery-page_dy6{
    margin-top: 50px;
    margin-bottom: 25px;
   
    
}
.gallery-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-img img{
    height: 235px;
    width: 100%;   
    cursor: pointer;
    object-fit: cover;
    transition: 0.4s ease;
}
.playing{
    height: 100vh;
    width: 100%;
}
.playing iframe{
    height: 100%;
    width: 100%;
}
.bg-page{
    background: var(--bg-1);
}
.bg-img_page_gd7{
     background-repeat: no-repeat;    
    background-position: center center;
    background-size: cover;
    overflow: hidden;    
    background-image: url(imagevault/bg-assets/opacity_bg-168a33da203e6b.png );
}

.page-content p{
    margin-bottom: 11px;
    text-indent: 3ch;
}
.page-content ul,ol{
    list-style: inside;
}
.step-wraper{
    padding: 19px;
    display: flex;
    gap: 25px;
    
}
.step-text{
    padding: 19px;
    border-radius: {number-step_6-9}px;
    display: flex;
    align-items: center;
    text-align: center;
    background: #252424c9; 
    width: 100%;  
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    box-shadow: 0px 5px 30px 0px rgba(125, 125, 238, 0.65);

}

.number-step-blok{
    position: relative;
    display: inline-block;
}
.border-layer{
    position: absolute;
    width: 160px;
    height: 160px;
    left: -10px;
    top: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 500ms ease;
    -webkit-animation: hizmet-rot 2s infinite linear;
    -moz-animation: hizmet-rot 2s infinite linear;
    -o-animation: hizmet-rot 2s infinite linear;
    animation: hizmet-rot 2s infinite linear;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
.border-layer::before{
    position: absolute;
    content: '';
    background: #fff;
    width: 12px;
    height: 12px;
    left: 15px;
    bottom: 9px;
    border-radius: 50%;
}
.number-step{
    color: #000000;
    display: inline-block;
    font-size: 70px;
    background: #fff;
    width: 140px;
    height: 140px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}
.step-wraper:hover .number-step-blok .border-layer{
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}
.step-row{
    flex-direction:  row-reverse;
}

@keyframes hizmet-rot {
    0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

.footer_gd6{
    background: var(--border-color);
    border-top: 4px solid var(--white-section);
    
}
.footer-bottom{
    padding-top: 25px;
  
    display: flex;
    gap: 19px;
    flex-direction: column-reverse;
    justify-content: center;
}
.colum-class {
    display: flex;
    flex-direction: column;
    gap: 49px;
}
.copyright_ghdu7{
    display: flex;
    align-items: center;
    justify-content: center;  
    gap: 11px;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 13px;
}
.disclaime-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.disclaime-img img{
    width: 100%;
    height: 55px;
    object-fit: contain;
}

   
.menu-footer_list{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    padding: 19px 0;
    border-top: 2px solid #4a9dea66;
    border-bottom: 2px solid #4a9dea66;

}
.menu-footer_item{
    position: relative;
    padding-right: 19px;
   
}
.menu-footer_item::before{
    top: 50%;
    width: 10px;
    height: 1px;
    content: "";
    right: 0px;
    position: absolute;
    transform: translateY(-50%);
    background: var(--white-section);
}
.footer-link {
    color: var(--white-section);
}
.menu-footer_item:last-child{
    position: inherit;
    padding-right: 0;
}
.footer-top{
    padding-top: 19px;
    padding-bottom: 19px;
    color: var(--white-section);
    font-size: 18px;
}
.footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 18px 18px 18px;   
}
.footer-logo img{
    width: 70px;
    height: 70px;
   object-fit: contain;
}
.footer-nav{   
    display: flex;
    gap: 13px;
    flex-direction: column;
    text-align: center;
}
.fot-pt{
 padding-top: 100px ;
}
.footer-img{   
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-img img{
    width: 100%;
    height: 102px;
    object-fit: contain;

   
}
.footer-tex{
    display: none;
}
.feature-image{
   
    position: relative;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.feature-image {
    display: block;
}
.feature-image  img{
    width: 100%;
    height: 248px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.category-content{
    position: absolute;
    left: 20px;
    bottom: 10px;
    width: 90%;
    z-index: 1;
}
.category2-title{
    font-size: 16px;
    color: var(--white);
    line-height: 25px;
    font-weight: 900;
    word-wrap: break-word;
}
.feature-image::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    background: linear-gradient(to bottom,rgba(4, 35, 83, 0.29) 30%,rgba(4,0,14,0.64) 100%);   
    
   

   
    transition: 0.4s;
}
.feature-image:hover img{
    transform: scale(1.1) rotate(3deg);
}
.feature-image:hover:before{
  background: linear-gradient(to top, rgba(2, 130, 66, 0.8)50%,rgba(0,0,0,0.01) 100%);   
   
   
   
   
}
.slider__item_star {
 margin-top: 13px;
 color: var(--card-bg-4);
  font-size: 25px;
  
  
}
.category2{

    flex-direction: row-reverse;
}
.category1{
    display: flex;
}
.card-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    gap: 34px;
    font-size: 19px;

}
.card-page{
    flex-direction: row-reverse;
}
.main-form_hdf7{
    display: flex;
    gap: 25px;
    flex-direction: row-reverse;
}
.main-form_blok{
    flex: 3;
    padding: 19px 19px;
}
.main-form_tex{
    flex: 1;
    padding: 19px 10px;
}
.subscribe-form{
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.subscribe-form .form-check-label {
    color: var(--black);
}
.main-form-item{
    border: 4px solid var(--white-section);
   
    background: var(--color-title);

}
.video-row{
    display: flex;
    gap: 19px;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}
.video-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
    color: var(--white);
    text-align: center;
}
.video-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-img{
    width: 100%;
    height: 109px;
    object-fit: contain;
}
.form-video{
    width: 100%;
    height: 306px;
}
.form-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 5px 25px 0px rgba(125, 125, 238, 0.65);
    border-radius: 2px;
}

.rev-iner{
    width: 100%;
    height: 100%;
    padding: 25px;
    justify-content: space-between;
    color: var(--white);
    display: flex;
    flex-direction: column-reverse;
    gap: 13px;
    text-align: center;
    background: var(--border-color);   
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    box-shadow: 0px 5px 25px 0px rgba(12 12 78 , 0.75);
    
}
.gread{
    height: 109px;
    width: 109px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 7px solid rgba(255, 255, 255, 0.5);
    border-radius:  0%;
  
}
.gread h4{
    color: var(--card-bg-2);
    font-size: 50px;
    margin: 0;
    font-weight: 900;
    line-height: 35px;
   
}
.tex_foot{
    text-align: center;
}
.avatar{
    height: 70px;
    width: 70px;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius:  0%;
    text-align: center;
    margin: 0 auto;
}
.avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:  0%;
}
.avatar-nik{
    font-size: 18px;
    color: var(--card-bg-1);
}

.disclaimer-tex{
    text-align: center;
    color: #fff;
    padding: 31px;
    margin-top: 31px;
    background-color: #310b0b;
}
@media (max-width: 575px){
   .header-col{
    justify-content: center;
    text-align: center;
   }
   .navbar>.container{
    justify-content: center;
   }
   .header-col{
    flex-direction: column;
    align-items: center;
   }
   .header-titles{
    font-size: 25px;
    margin-bottom: 25px;
   }
   
   .step-wraper{
    padding: 19px 5px;
   }
   .step-text{
    padding: 11px;
   }
   .category2{
    flex-direction: column-reverse;
   }
   .card-inner{
    font-size: 18px;
   }
   .main-form_blok{
    padding: 19px 10px;
   }
   .rev-iner{
    padding: 25px 10px;
   }
   .gread {
    width: 90px;
    height: 90px;
   }
   .gread h4{
    font-size: 34px;
   }
   .header-col{
    font-size: 13px;
   }
   .menu-footer_list{
    text-align: center;
   }
  
}


@media (max-width: 768px){
   .aboutus-iner{
    flex-direction: column-reverse;
   }
   .step-wraper,.step-row {
    flex-direction: column;
    align-items:center ;
   }
  
   .fot-pt{
    padding-top: 34px;
   }
   .card-content{
    font-size: 18px;
   }
   .card-page{
    flex-direction: column;
   }
   .page-title_gdy6 {
    font-size: 20px;
   }
   .page-item_hd7 {
    font-size: 18px;
   }
   .aboutus-iner{
    align-items: center;
   }
   .page-img{
    float: none;
    width:100%;
    margin: 0 0 19px 0;  
   }
}
@media (min-width: 768px) and (max-width: 991.98px){
    .card-content{
    font-size: 16px;
   }
   .page-title_gdy6 {
    font-size: 34px;
   }
}
@media (max-width: 992px){
   .navbar-nav .nav-links{
    padding-right: 16px;
    padding-left: 16px;
    color: var(--white);
    text-shadow: 2px 0 2px var(--black), 0 2px 2px var(--black), -2px 0 2px var(--black), 0 -2px 2px var(--black);
   }
   .logo-mob,.nav-picture{
    display: flex;
    align-items: center;
    justify-content: center;
      

   }
   .logo-mob img{
    width: 55px;
    height: 55px;
    object-fit: contain;
   }
  
   .nav-picture img{
    width: 100%;
    height: 150px;
    object-fit: contain;
   }
   .sf-menu>li>a .top {
    display: none;
   }
   .nav-item:hover{
    background: var(--accent-color);
    border-radius: 4px;
   }
   .nav-item:hover .nav-links{
    color: var(--white);
   }
   .btn-close{
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    
   }
   .offcanvas-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   }
   .contact-wrapper_hdj7{
    flex-direction:  column-reverse;
   }
   
   
   .main-form_hdf7{
    flex-direction: column-reverse;
   }
}
@media (min-width: 992px){
    .sf-menu{
        background-color: #d8e5ec;
        position: relative;
    }
    .sf-menu:before, .sf-menu:after {
        content: '';
        position: absolute;
    }
    
    .sf-menu::before{
        left: 4px;
        top: -8px;
        width: 100%;
        height: 8px;
        background-color: #fff;
        -webkit-transform: skew(-45deg,0);
        -moz-transform: skew(-45deg,0);
        -ms-transform: skewX(-45deg) skewY(0);
        -o-transform: skew(-45deg,0);
        transform: skew(-45deg,0);
        -webkit-backface-visibility: hidden;
    }
    .sf-menu:after {
    right: -8px;
    top: -4px;
    width: 8px;
    height: 100%;
    background-color: #6c9dc3;
    -webkit-transform: skew(0,-45deg);
    -moz-transform: skew(0,-45deg);
    -ms-transform: skewX(0) skewY(-45deg);
    -o-transform: skew(0,-45deg);
    transform: skew(0,-45deg);
    -webkit-backface-visibility: hidden;
}
.navbar-nav{
    width: 100%;
    background: #ddd;
}
.nav-item{
    background-color: transparent;
    border-right: 2px solid #95cae7;    
    text-align: center;
}
.nav-links{
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase; 
    transition: var(--hover-tranzitipn); 
    margin-left: -1px;
    font-size: 16px;
    
}
.navbar-expand-lg .navbar-nav .nav-links{
    padding-right: 11px;
    padding-left: 11px;
    padding-top: 13px;
    padding-bottom: 13px;
}
.nav-item:hover .nav-links{
    background: var(--accent-color);
    color: var(--white);
    text-shadow: 0 1px 0 rgba(0,0,0,.18);
}
.nav-item:hover .top{
    background-color: var(--accent-color);
    border-right-color: var(--accent-color);
}
.nav-item:hover{
   border-right: 2px solid var(--accent-color); 
}
.form-input{
    font-size: 12px;
}


}    

.btn-1 {
    background: linear-gradient(-45deg, #3f00b5, #9f69fe, #00bfa5, #3f00b5);
    background-size: 800% 400%;
    padding: 10px 19px;
    display: block;
     width: fit-content;
   
    text-align: center;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 900;
    color: white;
    transition: all .4s ease-in-out;
    animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
  }
  
  .btn-1:hover {
    animation: gradient 2s infinite;
    transform: scale(1.05);
    color: #000;
  }
  
  .btn-1:active {
    animation: gradient 2s infinite;
    transform: scale(0.8);
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  
  .btn-2 {
    padding: 10px  20px;
     display: block;
    width: fit-content;
    text-align: center;
    font-size: 18px;
     border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 2px;
  }
  
  .btn-2:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .2s ease-in-out;
   border-radius: 2px;
  }
  
  .btn-2:active,.btn-2:hover,.btn-2:focus {
    color: #FFF
  }
  
  .btn-2:active:after {
    background: transparent;
  }
  
  .btn-2:hover:before {
    opacity: 1;
  }
  
  .btn-2:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 2px;
  }
  
  @keyframes glowing {
    0% {
      background-position: 0 0;
    }
  
    50% {
      background-position: 400% 0;
    }
  
    100% {
      background-position: 0 0;
    }
  }
  
  
  
    
  .btn-3 {
    display: block;
    width: fit-content;
    text-align: center;
    font-size: 18px;
    background-color: #00c574;
    border-radius: {number-step_6-9}px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    padding: 19px 34px;
    border: none;
    color: #fff;
   cursor: pointer;
    transition: all .2s;
    outline: none;
   
  }
  
  
  
  .btn-3:hover {
   color: #fff;
    background-color: #ff9801;
  }
  
  .btn-4 {
    text-align: center;
    display: block;
    padding: 13px 25px;
    width: fit-content;
    color: #fff;
    text-transform: uppercase;
    background-color: #111;
    border: 2px solid #efdede;
   -webkit-transition: all .4s cubic-bezier(.3,1,.35,1) 0s;
    transition:all .4s cubic-bezier(.3,1,.35,1) 0s;
    border-radius: 4px;
    font-weight: 500;
    
    
  }
  
  .btn-4:hover,
  .btn-4:focus {
    background-color: #00c574;
    border-color: #00c574;
     color: #111;
  }
  
  
  .btn-5 {
    padding: 1em 2em;
    border: none;  
    display: block;
    font-style: italic;
    width: fit-content;
    background: #0e1721;
    text-align: center;
    border-radius: 2px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #fff; 
    transition:all .4s cubic-bezier(.3,1,.35,1) 0s;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline: 2px solid #fff;
  }
  
  .btn-5:hover {
    color: #fff;
    transform: scale(1.05);
    outline: 2px solid #fff;
    box-shadow: 2px 3px 10px -2px #fff;
  }
  
  .btn-5::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #00c574;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
  }
  
  .btn-5:hover::before {
    width: 200%;
  }
  
  
  