@font-face {
    font-family: 'merriweather_lightregular';
    src: url('../fonts/merriweather_light-webfont.woff2') format('woff2'),
        url('../fonts/merriweather_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherultrabold';
    src: url('../fonts/merriweather_ultrabold-webfont.woff2') format('woff2'),
        url('../fonts/merriweather_ultrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherbold';
    src: url('../fonts/merriweather-bold-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherbold_italic';
    src: url('../fonts/merriweather-boldit-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-boldit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatheritalic';
    src: url('../fonts/merriweather-italic-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherlight_italic';
    src: url('../fonts/merriweather-lightit-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-lightit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherregular';
    src: url('../fonts/merriweather-regular-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweatherultrabold_italic';
    src: url('../fonts/merriweather-ultrabdit-webfont.woff2') format('woff2'),
        url('../fonts/merriweather-ultrabdit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root{
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-paragrap: #111827;
    --primary-bodybg: #007ca8;
}

*{
    padding: 0;
    margin: 0;
    border: 0;
}

body{
    font-size: 16px;
    line-height: 1.4;
    background: var(--primary-bodybg);
    color: var(--primary-white);
    overflow-x: hidden;
    word-break: break-word;
    font-family: 'merriweatherregular';
}

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, font, ins, kbd, q, s, samp, small, strike, strong, 
sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, 
thead, tr, th, td {
    border: 0;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    font-family: 'merriweatherregular';
}

ol, ul{
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 30px;
}

li{
    margin-bottom: 10px;
    font-size: 14px;
}

strong{
    font-weight: bold;
}

:focus{
    outline: none;
}

input, textarea {
    -webkit-border-radius: 0px;
}

/* Firefox */
::placeholder {
    color: #8e8e8e;
    opacity: 1; 
}

:-ms-input-placeholder { 
    color: #8e8e8e;
}

::-ms-input-placeholder { 
    color: #8e8e8e;
}

input[type="text"], input[type="email"], input[type="search"], input[type="password"], textarea {
-moz-appearance: none !important; -webkit-appearance: none !important; appearance: none !important;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea, select {
    padding: 12px 10px;
    border: 1px solid #007fad;
    background-color: var(--primary-white);
    color: #8e8e8e;
    width: 100%;
    margin: 0;
    border-radius: 5px;
    height: 45px;
    font-size: 15px;
    font-family: 'merriweatherregular';
}

input[type="reset"], input[type="button"], input[type="submit"], .button, button {
    display: inline-block;
    margin: 15px 0px;
    padding: 16px 38px 16px;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    background: var(--primary-white);
    border: 1px solid #314061;
    color: #007fad;
    border-radius: 5px;
    font-size: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
    font-family: 'merriweatherregular';
    -webkit-box-shadow: 0px 4px 9px 0px rgba(2, 2, 2, 0.08);
    box-shadow: 0px 4px 9px 0px rgba(2, 2, 2, 0.08);
}

input[type="reset"]:hover, input[type="button"]:hover, input[type="submit"]:hover, .button:hover, button:hover {
    color: #fff; background: #314061;
}

input[type="reset"]:active, input[type="button"]:active, input[type="submit"]:active {
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
}

.btn {
    color: #007fad;
    background: var(--primary-bodybg);
    border-radius: 0px;
    padding: 11px 55px 9px 18px;
    font-size: 16px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    margin: 0;
    position: relative;
    font-family: 'merriweatherregular';
    display: inline-flex;
    border-radius: 5px;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
    outline: none;
    color: var(--primary-white);
}

.btn:hover {background: var(--primary-black);  color: var(--primary-black);}

a {color: var(--primary-black); text-decoration: none; cursor: pointer; font-family: 'merriweatherregular';}

a:focus, a:active, a:hover {text-decoration: none;}

a:hover {color: var(--primary-black);}

figure {margin: 0; text-align: center;}

img {max-width: 100%; height: auto; vertical-align: top;}

p{color: var(--primary-paragrap); font-size: 14px;}

h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px 15px 0px;
    padding: 0px;
    line-height: 1.2; 
    font-family: 'merriweatherregular';
    
}

h1 {font-size: 38px; text-transform: uppercase;}
h2 {font-size: 22px; text-transform: uppercase;}
h3 {font-size: 21px;}
h4 {font-size: 17px;}
h5 {font-size: 16px;}
h6 {font-size: 15px;}

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.container {
    max-width: 1180px; 
    margin: 0 auto; 
    width: 100%;
    padding: 0 30px;
}

.heading{
    text-align: center;
}

.header__inner{
    background: url(../images/header_bg.jpg) no-repeat;
    width: 100%;
    min-height: 300px;
    height: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header__inner:after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    opacity: 0.7;
    content: '';
}

.header__inner .heading{
    z-index: 5;
    position: relative;
}

.body__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 0 10px;
}

.body__input{
    /* display: flex;
    justify-content: space-between;
    gap: 0 30px; */

    /* width: 380px; */
    width: 100%;
}

.body__input--button{
    /* width: calc(100% - 360px); */
    display: flex;
    justify-content: space-between;
}

.body__input--button button{
    margin: 0;
    min-width: 90px;
    height: 45px;
    padding: 13px 12px 12px;
    font-size: 15px;
    margin-right: 10px;
}

.body__input--button button:last-child{
    margin-right: 0;
}

.body__inner {
    background: #2f89a9;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 640px;
    margin: 60px auto;
}

ul{
    padding: 0;
}

.body__ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #cae1e9;
    color: #007fad;
    padding: 12px 15px;
    border-radius: 10px;
}

.body__ul button{
    margin: 0;
    min-width: 60px;
    height: 100%;
    padding: 10px 10px 9px;
    font-size: 10px;
}

.body__ul li:last-child{
    margin-bottom: 0;
}

.body__ul li.hide{
    display: none;
}

.body__ul .list{
    display: flex;
    align-items: center;
    justify-content: center;
}

.body__ul li:hover{
    background: #007ca8;
    color: #fff;
}

.visible{display:block !important}

@media(max-width: 480px){
    .container{
        padding: 0 15px;
    }

    .body__inner {
        border-radius: 10px;
        padding: 30px 15px;
    }

    input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea, select{
        height: 40px;
        font-size: 13px;
    }

    .body__input--button button{
        height: 40px;
        padding: 14px 22px 12px;
        font-size: 13px;
    }

    .heading h1{
        font-size: 24px;  
    }

    .header__inner{
        min-height: 175px;
    }

    .body__input {
        gap: 0 15px;
    }
}