@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif !important;
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

p {
    margin: 0;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: value;
    -moz-appearance: value;
    appearance: value;
    word-wrap: break-word;
    outline: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    color: #333333;
}

.form-control,
textarea {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    background: #FFFFFF;
    font-size: 15px !important;
    border: 1px solid #999999 !important;
    border-radius: 6px !important;
    padding: 6px 15px !important;
}

textarea {
    resize: none !important;
}

.form-label sup {
    color: #D52B1E;
    font-size: 14px;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

input[type="checkbox"] {
    padding: 10px;
}

figure {
    margin: 0 !important;
}

.error,
.form-message {
    padding: 5px 0;
    color: #fa1100;
    font-weight: 500;
    font-size: 13px;
    display: none;
}

#city_new {
    margin-top: 10px;
}

.loader-form {
    position: absolute;
    margin-top: -40px;
    right: 200px;
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wrapper {
    min-height: 100%;
    padding-top: 119px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 0, 0, 1.15);
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0, 1.15);
}

.menu_smclosed .after_lg_wrp {
    padding-left: 90px;
}

.container {
    width: 1200px;
    max-width: calc(100% - 30px);
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

.whitehum .hamburger-menu {
    display: none;
}

.bbtn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all .5s;

}

.bbtn:hover {
    -webkit-animation: btnscale .5s linear 1;
    animation: btnscale .5s linear 1;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

@-webkit-keyframes btnscale {
    0% {
        transform: scale(1)
    }

    15% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

@keyframes btnscale {
    0% {
        transform: scale(1)
    }

    15% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

.btn-dpef {
    transition: all 0.3s ease-in;
}


.btn-dpef:active {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
}

.bbtn.white {
    background: #FFFFFF;
    border: 2px solid #1A6CF1;
    color: #1A6CF1;
}

.bbtn.blue {
    background: #1A6CF1;
    border: 1px solid #104498;
    color: #fff;
}

.bbtn.bb {
    padding: 14px 30px;
    font-size: 18px;
}

@keyframes ripple {
    from {
        transform: scale(0) translate(-50%, -50%);
        opacity: 1;
    }

    to {
        transform: scale(1) translate(-50%, -50%);
        opacity: 0;
    }
}

.button-effect::before {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.376);
    position: absolute;
    content: '';
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: scale(0) translate(-50%, -50%);
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;

}

.button-effect:hover::before {
    animation-name: ripple;
    animation-timing-function: linear;
    animation-duration: 0.5s;
}


.par_tt {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.553846px;
    color: #333333;
    margin-bottom: 40px;
}

.bbtn.line.bb {
    border-width: 2px;
}

.m-l-25 {
    margin-left: 25px;
}

.m-t-50 {
    margin-top: 50px;
}

.btn_grp_undown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn_line {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-decoration-line: underline;
}

.btn_line.blue {
    color: #1A6CF1;
}

.btn_grp_undown .btn_line {
    margin-top: 30px;
}

.btn_line.blue:hover {
    color: #333;
    text-decoration: none;
}

.bbtn.white:hover {
    background: #eceef6;
}

.bbtn.disabled {
    cursor: default;
    background: #999999;
    border: 1px solid #999999;
    color: #ececec;
}

.bbtn.line.disabled {
    cursor: default;
    background: transparent;
    border: 2px solid #999999;
    color: #999999;
}

.txt_btn {
    color: #1A6CF1;
    text-decoration: underline !important;
}

.txt_btn_drbl {
    color: #0B295A;
    font-size: 14px;
    text-decoration: underline !important;
}

.txt_btn:hover,
.txt_btn_drbl:hover {
    color: #333;
    text-decoration: none !important;
}

.lineNv {
    position: relative;
}

.bbtn.org {
    color: #fff;
    background: #EB5541;
}

.lineNv::before,
.navigation ul li a::before,
footer .footer_bottom .rt a::before,
footer .foot_nv li a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #EB5541;
    content: '';
    transform: scaleX(0) translateZ(0);
    transform-origin: 100% 100%;
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lineNv:hover:before,
.navigation ul li a:hover::before,
footer .footer_bottom .rt a:hover::before,
footer .foot_nv li a:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: 0 0;
    -webkit-transform: scaleX(1) translateZ(0);
    -webkit-transform-origin: 0 0;
}

.hamburger-menu {
    width: 34px;
    height: 34px;
    display: none;
    background: white;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.hamburger-menu .line {
    width: 100%;
    height: 3px;
    display: block;
    background: #FF7444;
    transition: all 0.3s ease-in;
}

.hamburger-menu.mn_open .line {
    background-color: #FF7444;
}

.hamburger-menu.mn_open .line-2 {
    opacity: 0;
}

.hamburger-menu.mn_open .line-1 {
    transform: rotate(42deg) translate(6px, 6px);
}

.hamburger-menu.mn_open .line-3 {
    transform: rotate(-46deg) translateX(5px) translateY(-5px);
}

.after_lg_wrp .hamburger-menu {
    border: 0;
    top: 10px;
    background: transparent;
}

.mr-1 {
    margin-right: 5px !important;
}

.txt_bnt_bb {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    text-decoration-line: underline !important;
    color: #EB5541;
}

.txt_bnt_bb:hover {
    color: #333;
    text-decoration: none !important;
}

.bbtn.line_btn {
    background: #fff;
    border: 1px solid #eb5541;
    color: #eb5541;
}

.bbtn.line_btn:hover {
    background: #eb5541;
    color: #fff;
}

.fs-32 {
    font-size: 32px !important;
    line-height: 1.67 !important;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

    .bbtn {
        font-size: 13px;
        padding: 8px 12px;
    }

    .bbtn.bb {
        padding: 15px 35px;
        font-size: 18px;
    }

    .wrapper {
        padding-top: 91px;
    }
}

@media (max-width: 768px) {

    .after_lg_wrp .hamburger-menu .hamburger-menu,
    .whitehum .hamburger-menu {
        display: flex;
    }

    .after_lg_wrp .hamburger-menu {
        background: #0a224a;
        display: flex;
    }

    header .lt {
        flex-direction: row-reverse;
    }

    .avian-logo {
        margin-right: 0;
        margin-left: 40px;
    }

    .bbtn {
        font-size: 18px;
        padding: 15px 35px;
    }

    .bbtn.bb {
        padding: 15px 35px;
        font-size: 18px;
        margin-left: 10px;
        text-align: center;
        line-height: 1.67;
    }

}