body{
    font: 400 16px/1.1 var(--font);
    color: var(--text_color);
    margin: 0;
}
h1 {
    font: 500 55px var(--font_title);
    color: var(--title_color);
    line-height: 1.14;
    letter-spacing: 0.01em;
}
h2 {
    font: 500 60px var(--font_title);
    color: var(--title_color);
    line-height: 1.2;
    letter-spacing: 0.03em;
}
h3 {
    font: 500 25px var(--font_title);
    color: var(--title_color);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: left;

}
h4 {
    font: 400 28px var(--font_title);
    color: var(--title_color);
    font-weight: 700;
}
h5 {
    font: 400 24px var(--font_title);
    color: var(--title_color);
}
h6 {
    font: 400 18px var(--font_title);
    color: var(--title_color);
}
.text-gradient{
    transition: .3s;
    background: -webkit-linear-gradient(0deg, #000 0%, #000 112.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-align: center;
    color: #00448B;
}
.title-gradient {
    background: linear-gradient(90.47deg, #049CFF -4.07%, #4E0AFF 104.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px 0;
}

.text-gradient-hover {
    position: relative;

    background-image: linear-gradient(282.3deg,#fff,#fff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.text-gradient-hover::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(282.3deg, #4470FF 0.07%, #00C2FF 112.91%);
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.text-gradient-hover:hover::before {
    opacity: 1;
}

.button_basic{
    display: inline-block;
    padding: 11px 30px 9px;
    font-size: 20px;
    line-height: 1;
    background-color: var(--active_color);
    color: var(--white_color);
    cursor: pointer;
    border-radius: 50px;
    transform: none;
    border: 2px solid #0D88F5;
}
.button_basic:hover {
    background: transparent;
    color: #fff;
    /*transform: scale(1.1) translateZ(0px);*/
}
.button_gradient {
    display: inline-block;
    font: 400 15px / 1.4 var(--font);
    border: 0;
    background: var(--gradient_button);
    border-radius: 28px;
    color: #fff;
    padding: 3px 19px;
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: all 0.3s linear;
}
.button_gradient:hover {
     background-position: 100%;
}
.header-padding {
    padding-top: 110px;
}
.header-padding-big {
    padding-top: 140px;
}
input.form-control::-moz-placeholder,
textarea::-moz-placeholder{
    color: #7D7D7D;
    opacity: 1!important;
}
input.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color: #7D7D7D;
}
a,
a:hover,
a:focus{
    text-decoration: none;
}
ul,
ol{
    list-style-position: inside;
}
header ul,
header ol,
footer ul,
footer ol{
    padding: 0;
    margin: 0;
}
header ul,
footer ul{
    list-style: none;
}
/*End Start Settings*/

/*Standart Settings*/

.container{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1160px;
}

*,
:after,
:before{
    box-sizing: border-box;
}
.customClear:before,
.customClear:after{
    content:"";
    display:block;
    height:0;
    overflow:hidden;
    clear:both;
}
a,
button,
input[type="submit"],
a img{
    transition:all 0.3s linear;
}
input:not([type="checkbox"]),
select{
    -moz-appearance: none;
    -webkit-appearance: none;
}
iframe,
img{
    max-width: 100%;
}
img{
    vertical-align: middle;
}
a img{
    border: none;
}
input,
textarea,
select{
    border-radius: 0;
    border: none;
    box-shadow: none;
}

@media(max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

@media(max-width: 767px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    body {
        font-size: 14px;
    }
    .button_gradient {
        font: 400 11px / 1.4 var(--font);
        padding: 3px 7px;
    }

}