body {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}
.logo {
    width: 100%;
    max-width: 218px;
}
a {
    color: #32DBF2;
}
a:hover  {
   text-decoration: none;
   color: #fff;
}
.title {
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sub-title {
    font-size: 24px;
    line-height: 28px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
/*    text-transform: uppercase;*/
/*    letter-spacing: 6px;*/
}
.fs-20 {
    font-size: 20px;
}
.header {
    position: absolute;
    width: 100%;
    padding: 32px 20px;
}
.line-space {
    display: block;
    height: 1px;
    background-color: #D9D9D9;
    max-width: 464px;
    margin: 0 auto;
}
#start {
    background: rgb(29,53,117);
    background: -moz-linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    background: -webkit-linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    background: linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d3575",endColorstr="#3563db",GradientType=1);
    }
.start_full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}
.center {
    text-align: center;
}
.btn {
    min-height: 60px;
    width: 100%;
    max-width: 380px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    transition-property: background-color, color;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
}
.btn-red {
    color: #fff;
    background-color: #dc3545;
}
.btn-red:hover {
    color: #fff;
    background-color: #ff3b4e;
}
.btn-yellow {
    color: #000000;
    font-weight: 600;
    background-color: #ffffff;
}
.btn-yellow:hover {
    color: #000000;
    background-color: #ffffff95;
}

.yellow {
    color: yellow;
}
.card-box {
    display: block;
    padding: 0px 30px;
    background-color: #ffffff;
    border-radius: 5px;
    max-width: 464px;
    margin: 0 auto;
}

.card-box--title {
    color: #1D334F;
    font-size: 24px;
    font-weight: 600;
}
.color-dark {
    color: #1D334F;
}

.avatar-img {
  width: 104px;
  height: 104px;
  z-index: 10;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(29,53,117);
    background: -moz-linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    background: -webkit-linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    background: linear-gradient(138deg, rgba(29,53,117,1) 0%, rgba(53,99,219,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d3575",endColorstr="#3563db",GradientType=1);
  color: white;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-menu.show {
  transform: translateY(0);
}

.menu-link {
  font-size: 22px;
  margin: 18px 0;
  color: white;
  text-decoration: none;
}

.menu-link:hover {
  text-decoration: underline;
}

.link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.link:hover::after {
  width: 100%;
}



@media screen and (max-height: 975.98px) {
    .space-h {
        padding-top: 200px;
        padding-bottom: 130px;
    }
}

/*Laptop*/
@media screen and (max-width: 1199.98px) {
    .title {
        font-size: 40px;
    }
}

/*Tablet*/
/*
@media screen and (max-width: 991.98px) {
}
*/

/*Mobile - tablet */
@media screen and (max-width: 767.98px) {
    .title {
        font-size: 34px;
    }
/*
    .sub-title {
        font-size: 18px;
        line-height: 26px;
    }
*/
    .mob-none {
        display: none;
    }
    .btn {
        min-height: 42px;
    }
}

/*Mobile*/
@media screen and (max-width: 575.98px) {
    .title {
        font-size: 30px;
    }
/*
    .sub-title {
        font-size: 16px;
        line-height: 23px;
    }
*/

}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .start_full-height {
        height: 100vh;
    }
}
