@font-face {
    font-family: 'GillSans';
    src: url('../fonts/Gill Sans.otf');
}

@font-face {
    font-family: 'GillSansHeavy';
    src: url('../fonts/Gill Sans Heavy.otf');
}

@font-face {
    font-family: 'GillSansBold';
    src: url('../fonts/Gill Sans Bold.otf');
}

@font-face {
    font-family: 'GillSans';
    src: url('../fonts/Gill Sans.otf');
}

@font-face {
    font-family: 'GillSansMedium';
    src: url('../fonts/Gill Sans Medium.otf');
}

@font-face {
    font-family: 'GillSansLight';
    src: url('../fonts/Gill Sans Light.otf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #E9EBF0;
}

.btn {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

#layout-header {
    width: 100%;
    height: 110px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0px 2px 10px 0px #888888;
}

#layout-header-top {
    width: 100%;
    height: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 2fr;
}

#layout-header-top div:nth-child(1) {
    background-color: #E68732;
    height: 100%;
}

#layout-header-top div:nth-child(2) {
    background-color: #89C3D0;
    height: 100%;
}

#layout-header-top div:nth-child(3) {
    background-color: #4FACBD;
    height: 100%;
}

#layout-header-top div:nth-child(4) {
    background-color: #00718D;
    height: 100%;
}

#layout-content {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 0px !important;
}

@media(max-width: 1514px) {
    #layout-content {
        width: 100%;
    }
}

#layout-header-img-1 {
    width: 150px;
    margin-top: 15px;
    margin-left: 20px;
}

#layout-header-img-2 {
    width: 150px;
    margin-top: 15px;
    margin-left: 10px;
}

#layout-header-img-3 {
    width: 80px;
    margin-top: 10px;
    margin-left: 10px;
}


#layout-header .menu {
    font-family: GillSansMedium, serif;
    color:  #9EB3F0;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 3px;
    float: right;
    margin-top: 35px;
    text-align: left;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 1390px) {
    #layout-header .menu {
        font-size: 12px;
    }

    #layout-header-img-1 {
        width: 110px;
    }

    #layout-header-img-2 {
        width: 110px;
    }

    #layout-header-img-3 {
        width: 70px;
    }
}

@media (max-width: 1210px) {
    #layout-header .menu {
        font-size: 11px;
        padding-left: 7px;
        padding-right: 7px;
    }

    #layout-header-img-1 {
        width: 95px;
    }

    #layout-header-img-2 {
        width: 95px;
    }

    #layout-header-img-3 {
        width: 55px;
    }
}


#layout-header .menu-double {
    margin-top: 29px;
}

#layout-header .menu-2 {
    text-align: center;
    font-family: GillSansBold;
    border-bottom: solid 2px #F28B2E;
    border-top: solid 2px #F28B2E;
    padding-top: 5px;
    padding-bottom: 3px;
    margin-top: 30px;
}

#layout-menu-icon {
    width: 60px;
    height: 60px;
    /*background-color: grey;*/
    position: fixed;
    top: 35px;
    right: 5px;
    color:  #00718D;
    font-size: 40px;
    text-align: center;
}

#layout-menu-mask {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 113, 141, 0.88);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
}

.layout-menu-mask-open {
    display: block !important;
}

@media (min-width: 977px) {
    #layout-menu-icon {
        display: none;
    }

    #layout-menu-mobile {
        display: none;
    }


}

@media (max-width: 976px) {
    #layout-header .menu {
        display: none;
    }
}

@media (max-width: 572px) {
    #layout-header .menu {
        display: none;
    }

    #layout-header-img-1 {
        width: 26%;
    }

    #layout-header-img-2 {
        width: 26%;
    }

    #layout-header-img-3 {
        width: 18%
    }
}

.href {
    display:inline-block;
    width:100%;
    height:100%;
    text-decoration: none;
    color: #008FA6;
}

#layout-header .menu:hover {
    color: #00718D;
}

#layout-header .menu a:hover {
    color: #00718D;
}

#layout-menu-mobile .menu a:hover {
    color: #00718D;
}

.menu-selected {
    font-family: GillSansBold, serif;
    color: #00718D;
}

.menu-selected a {
    font-family: GillSansHeavy, serif;
    color: #00718D;
    border-bottom: solid 2px #F28B2E;
}

#layout-menu-mobile {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: -620px;
    transition: all .5s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#layout-menu-mobile .menu {
    color: #ffffff;
    font-size: 20px;
    width: 100%;
    height: 80px;
    text-align: center;
    padding-top: 35px;
}
#layout-menu-mobile .right {
    border-bottom: solid 1px;
}

.layout-menu-mobile-open {
    top: 100px !important;
    z-index: 1000;
}



#layout-footer {
    width: 100%;
    background-color: #F28B2E;
    padding: 60px 10%;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media(max-width: 900px) {
    #layout-footer {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }
}

.layout-footer-title {
    font-family: GillSansHeavy;
    color: #014651;
    font-size: 24px;
    width: 100%;
}

.layout-footer-cont {
    position: relative;
    padding-left: 20px;
}

.layout-footer-item {
    font-family: GillSansBold;
    font-weight: 550;
    color: #FFFFFF;
    font-size: 20px;
}

.layout-footer-click {
    cursor: pointer;
}

.layout-footer-item a {
    color: #FFFFFF;
    text-decoration: none;
}

.layout-footer-item2 {
    font-family: GillSansMedium;
    color: #FFFFFF;
    font-size: 20px;
}

.layout-footer-sep {
    position: absolute;
    height: 100%;
    width: 3px;
    right: 0;
    top: 0;
    background-color: #F5A258;
}
