/* dm-sans-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/dm-sans-v14-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-500italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/dm-sans-v14-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-600italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/dm-sans-v14-latin-600italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


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

body {
    font-family: 'DM Sans';
    letter-spacing: -0.0020em;
}

/*CLASSES*/
.spacing-100 {
    display: block;
    height: 100px;
}

@media (max-width:992px) {
    .spacing-100 {
        height: 30px;
    }
}
/*TYPO*/
.lead {
    font-size: 3vw;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    display: block;
}

h2.sub-lead {
    color: #174573;
    font-size: 30px;
}

h3.text-headline {
    font-size: 20px;
}

ul.text-block {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

ul.text-block li {
    border: 1px solid #97A2B7;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

ul.text-block li i {
    margin-right: 5px;
}

.text-block span {
    display: block;
    font-weight: 600;
    color: #174573;
    margin-bottom: 10px;
    font-size: 18px;
}

.text-block p {
    min-height: 125px;
    margin: 0;
    color: #5E5E5E;
    display: block;
}

@media (max-width:1200px) {
    .text-block span {
        min-height: 70px;
        display: block;
    }
    .text-block p {
        min-height: 150px;
        display: block;
    }
}

@media (max-width:992px) {
    .text-block span {
        min-height: auto;
    }

    .text-block p {
        min-height: auto;
    }
}


/*LEAD*/
@media (min-width:1500px) {
    .lead {
        font-size: 44px;
    }
}


@media (max-width:992px) {
    .lead {
        font-size: 30px;
    }
}

h2 {
    font-size: 24px;
    color: #2EA3F2;
    display: block;
    margin-bottom: 30px;
}

/*BTN*/
.btn-primary {
    background-color: #2EA3F2;
    border-color: #2EA3F2;
    padding: 10px 20px;
    margin: 0;
    transition: all ease-in-out .1s;
}

.btn-primary:hover {
    background-color: #174573;
    border-color: #174573;
}

.btn-primary i {
    margin-right: 5px;
}

.btn-info {
    background-color: #2EA3F2;
    border-color: #2EA3F2;
    padding: 15px 30px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all ease-in-out .1s;
}

.btn-info:hover {
    background-color: #174573;
    border-color: #174573;
    color: #fff;
}

@media (max-width:992px) {
    .btn-info {
        font-size: 16px;
    }
}

/*ALERT*/
.alert-primary {
    background-color: #2EA3F2;
    color: #fff;
}

.alert-secondary {
    background-color: #174573;
    color: #fff;
}

/*TOP BAR*/
.topBar {
    background-color: #EDEDED;
    color: #5E5E5E;
    font-size: 14px;
}

.topBar p {
    margin: 0;
    padding: 0;
}

.topBar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 10px 0;
}

.topBar ul li.first {
    margin-right: 30px;
}

.topBar a {
    color: #5E5E5E;
    text-decoration: none;
}

@media (max-width:992px) {
    .topBar {
        font-size: 12px;
    }
}


/*HEADER*/
header {
    padding: 30px 0;
}

header .logo {
    width: 120px;
}

header nav ul {
    list-style: none;
    margin-left: 40px;
    margin-top: 30px;
    background-color: #fff;
}

header nav ul li {
    display: inline-block;
    margin-right: 35px;
    position: relative;
    padding-bottom: 15px;
}

header nav ul li.has-submenu::before {
    font-family: "bootstrap-icons";
    content: " \F282";
    position: absolute;
    right: -17px;
    top:6px;
    font-size: 10px;
}

header nav ul li a {
    color: #696E77;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    color: #2EA3F2;
}

/*SUBMENU HEADER*/
header nav ul ul {
    position: absolute;
    left: 0;
    margin-top: 15px;
    width: 200px;
    margin-left: -15px;
    padding: 0;
    display: none;
    z-index: 999;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow:
        0px 0.8px 2.6px rgba(0, 0, 0, 0.05),
        0px 6px 21px rgba(0, 0, 0, 0.1);
}

header nav ul ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding: 6px 15px;
}

header nav ul ul li:last-child {
    border: 0;
}

header nav ul ul li a {
    display: block;
    margin: 0;
}


/*HOVER SUBMENU*/
header nav ul ul li:hover {
    background-color: #EDEDED;
}

header nav ul li:hover ul {
    display: block;
}

@media (max-width:1400px) {
    header nav ul {
        margin-left: 0px;
        background-color: transparent;
    }
    header nav ul li a {
        font-size: 15px;
    }

    header nav ul li {
        margin-right: 30px;
    }
    header nav ul li a.home {
        display: none;
    }

    header .contact { 
        font-size: 13px;
    }
}


@media (max-width:1200px) {
    header nav ul {
        margin-left: 0px;
        background-color: transparent;
    }
    header nav ul li a {
        font-size: 14px;
    }

    header nav ul li {
        margin-right: 30px;
    }
    header nav ul li a.home {
        display: none;
    }

    header .contact { 
        font-size: 13px;
    }
}

@media (max-width:1199px) {
    header .logo {
        width: 100px;
    }
   
    header nav ul {
        margin-left: 10px;
    } 
    header nav ul li {
        margin: 0 8px 0;
    }

    header nav ul li:last-child {
        margin: 0;
    }
    header nav ul li a {
        font-size: 14px;
    }

    header nav ul li.has-submenu::before {
        content: none;
    }

    header .contact {
        font-size: 15px;
        padding: 6px 15px;
        margin-top: -5px;
    }
}


@media (max-width:992px) {
    header nav ul li a.home {
        display: none;
    }
    header nav ul {
        margin-left: 0px;
        padding: 0;
        text-align: right;
    } 
    header nav ul li {
        margin: 0 5px 0;
    }

    header nav ul li a {
        font-size: 13px;
    }

    header nav ul ul {
        text-align: left;
    }

}

@media (max-width:767px) {
    header nav {
        display: none;
    }
    header nav ul li a {
        font-size: 16px;
    }

    header nav ul li a.home {
        display: block;
    }

    header nav ul {
        display: block;
        margin: 30px 0 0 0;
        padding: 0;
        border-top: 1px solid #ccc;
        text-align: left;
    }

    header nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #ccc;
        padding: 8px 0;
        position: relative;
    }

    header nav ul ul {
        position: relative;
        display: none;
        box-shadow: none;
        border:0;
        width: auto;
        padding: 0;
        margin: 10px 0 30px 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    header ul ul li {
        background-color: #eee;
    }

    header nav ul ul li a {
        font-size: 14px;
        padding: 3px 0;
    }

    header nav ul li.has-submenu::before {
        font-family: "bootstrap-icons";
        content: " \F282";
        position: absolute;
        right: 0px;
        top:10px;
        font-size: 15px;
        display: block;
    }

    /*HAMBURGER MENU*/
    /*hamburger-menu*/
    .hamburger {
        position: absolute;
        right:15px;
        top: 30px;
        z-index: 999;
    }

    .hamburger .line1 {
        width: 35px;
        height: 3px;
        background-color: #696E77;
        display: block;
        margin: 8px auto;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .hamburger:hover {
        cursor: pointer;
    }

    #hamburger-6.is-active {
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #hamburger-6.is-active .line1:nth-child(2) {
        width: 0;
    }

    #hamburger-6.is-active .line1:nth-child(1),
    #hamburger-6.is-active .line1:nth-child(3) {
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
    }

    #hamburger-6.is-active .line1:nth-child(1) {
        -webkit-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
        background-color: #696E77;
    }

    #hamburger-6.is-active .line1:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(90deg);
        -ms-transform: translateY(-9px) rotate(90deg);
        -o-transform: translateY(-9px) rotate(90deg);
        transform: translateY(-10px) rotate(90deg);
        background-color: #696E77;
    }
}



/*FOOTER*/
footer {
    background-color: #16233D;
    color: #fff;
    padding: 60px 0 30px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 90px;
}

footer span {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

footer p, .end {
    color: #97A2B7;

}

footer a {
    color: #97A2B7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .social {
    display: flex;
}

footer .social a {
    background-color: #fff;
    color: #16233D;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    margin-right: 10px;
    transition: all ease-in .2s;
}

footer .social a:hover {
    background-color: #97A2B7;
}

@media (max-width:992px) {
    footer span {
        font-size: 18px;
    }

    footer, .end {
        font-size: 14px;
    }
}

@media (max-width:767px) {
    footer span {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    footer > div {
        margin-bottom: 30px;
    }
}