* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
p {
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
ul, ol {
    list-style: none;
}
input, textarea, select {
    font-family: inherit;
    box-shadow: none;
    border-radius: 0;
}
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
}
input::placeholder, textarea::placeholder {
    opacity: 1;
}
button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    color: inherit;
}
button::-moz-focus-inner {
    border: 0;
}
input[type="submit"], button[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-size: 1em;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}


/* Fonts */

@font-face {
    font-family: 'AcuminPro';
    src: url('../fonts/AcuminPro-Medium.ttf.txt') format('truetype'),
    url('../fonts/AcuminPro-Medium.woff') format('woff'),
    url('../fonts/AcuminPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AcuminPro';
    src: url('../fonts/AcuminPro-LightItalic.ttf.txt') format('truetype'),
    url('../fonts/AcuminPro-LightItalic.woff') format('woff'),
    url('../fonts/AcuminPro-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'AcuminPro';
    src: url('../fonts/AcuminPro-Light.ttf.txt') format('truetype'),
    url('../fonts/AcuminPro-Light.woff') format('woff'),
    url('../fonts/AcuminPro-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* Main Styles */

.stretch{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.link{
    color: #FF893A;
    text-decoration: underline;
    transition: color .3s ease;
}

.link:hover{
    color: #FEB27F;
}

.imt_splash-page{
    min-height: 100vh;
    position: relative;
}

.imt_banner{
    object-fit: cover;
    object-position: center;
}

.imt_front-part{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.imt_header-part{
    position: relative;
    padding-bottom: 250px;
}

.top_row{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
    background-color: #012950;
}

.imt_logo-box{
    position: relative;
    z-index: 10;
    background-color: rgba(0,27,43, 0.5);
    width: 260px;
    margin: 0 auto;
    padding-top: 120px;
}

.imt_logo-wrap{
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imt_logo{
    width: 65%;
}

.imt_logo .logo{
    width: 100%;
}

.border-top-line{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background-color: #FF893A;
}

.imt_footer-part{
    display: flex;
    background-color: #012950;
}

.imt_footer-left,
.imt_footer-right{
    padding: 40px 85px;
}

.imt_footer-left{
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.imt_contact-box{
    flex-basis: 60%;
    position: relative;
    padding-right: 100px;
}

.imt_contact-box::before{
    position: absolute;
    content: '';
    right: 0;
    top: -6px;
    width: 1px;
    height: calc(100% + 6px*2);
    background: rgba(204,208,207, 0.25);
}

.imt_address-box{
    flex-basis: 40%;
    padding-left: 100px;
}

.imt_contact{
    font-family: "AcuminPro",sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
}

.imt_address{
    font-family: "AcuminPro",sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
}


.imt_footer-right{
    min-width: 400px;
    display: flex;
    align-items: center;
    background-color: #001B2B;
}

.imt_copyright{
    font-family: "AcuminPro",sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #66798A;
    line-height: 1.5;
    margin-bottom: 4px;
}

.imt_author{
    font-family: "AcuminPro",sans-serif;
    font-weight: 300;
    font-style: italic;
    color: #66798A;
    font-size: 11px;
    line-height: 1.5;
}

.author_link{
    transition: color .3s ease;
}

.author_link:hover{
    color: #FF893A;
}



@media (min-width: 1921px){
    .imt_contact,
    .imt_address{
        font-size: calc(14px + (14 - 16) * (100vw - 1921px) / (1921 - 2560));
    }

    .imt_copyright{
        font-size: calc(13px + (13 - 15) * (100vw - 1921px) / (1921 - 2560));
    }

    .imt_author{
        font-size: calc(11px + (11 - 14) * (100vw - 1921px) / (1921 - 2560));
    }

    .imt_logo-box{
        width: calc(260px + (260 - 320) * (100vw - 1921px) / (1921 - 2560));
    }
}

@media (min-width: 2560px){
    .imt_contact,
    .imt_address{
        font-size: 16px;
    }

    .imt_copyright{
        font-size: 15px;
    }

    .imt_author{
        font-size: 14px;
    }

    .imt_logo-box{
        width: 320px;
    }
}

@media (max-width: 1919px){
    .imt_contact,
    .imt_address{
        font-size: calc(14px + (14 - 13) * (100vw - 1919px) / (1919 - 767));
    }

    .imt_copyright{
        font-size: calc(13px + (13 - 12) * (100vw - 1919px) / (1919 - 767));
    }

    .imt_logo-box{
        width: calc(260px + (260 - 200) * (100vw - 1919px) / (1919 - 767));
    }

    .imt_logo-wrap{
        padding: 30px 0;
    }

    .imt_footer-left,
    .imt_footer-right{
        padding: 30px 60px;
    }

    .imt_address-box{
        flex-basis: 30%;
        padding-left: 60px;
    }

    .imt_contact-box{
        flex-basis: 70%;
        padding-right: 60px;
    }
}

@media (max-width: 1600px){
    .imt_footer-right{
        min-width: 290px;
    }
}

@media (max-width: 1500px){
    .imt_address-box{
        flex-basis: 300px;
        padding-left: 40px;
    }

    .imt_contact-box{
        flex-basis: calc(100% - 300px);
        padding-right: 40px;
    }

    .imt_footer-left,
    .imt_footer-right {
        padding: 30px 40px;
    }

}

@media (max-width: 1350px){
    .imt_address-box{
        flex-basis: 260px;
    }

    .imt_contact-box{
        flex-basis: calc(100% - 260px);
    }
}

@media (max-width: 1080px){
    .imt_footer-left{
        display: block;
    }

    .imt_contact-box{
        padding: 0;
        margin-bottom: 20px;
        flex-basis: 100%;
    }

    .imt_contact-box::before{
        display: none;
    }

    .imt_address-box{
        padding: 0;
        flex-basis: 100%;
    }
}

@media (max-width: 992px){
    .imt_footer-part{
        display: block;
        text-align: center;
    }

    .imt_footer-right{
        min-width: 100%;
        justify-content: center;
    }

    .imt_footer-left,
    .imt_footer-right{
        padding: 30px 30px;
    }

    .top_row{
        height: 100px;
    }

    .imt_logo-box{
        padding-top: 100px;
    }
}

@media (max-width: 767px){
    .imt_contact,
    .imt_address{
        font-size: 13px;
    }

    .imt_copyright{
        font-size: 12px;
    }

    .imt_logo-box{
        width: 200px;
    }
}





