:root {
    --color-white: #F2F2F2;
    --color-bright-white: #FFF;
    --color-black: #000000;
    --color-blue: #0E3B8C;
    --color-rgba-blue: rgba(14, 59, 140,1);
    --color-rgba-white: rgba(242, 242, 242, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-width: 100%;
    min-height: 100vh;
    font-family: montserrat, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/*#region NAVBAR*/
nav {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 100%;
    height: 100px;
    background: var(--color-blue);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: -1px 13px 20px -5px rgba(14,59,140,0.51);
    -webkit-box-shadow: -1px 13px 20px -5px rgba(14,59,140,0.51);
    -moz-box-shadow: -1px 13px 20px -5px rgba(14,59,140,0.51);
    transition: all .6s;
}

    nav .navbar-m {
        display: none !important;
    }

    nav .nav-logo {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        width: 25%;
        height: 50%;
        justify-content: center;
        align-self: center;
    }

        nav .nav-logo img {
            width: auto;
            height: 100%;
        }

    nav .nav-links {
        width: 60%;
        margin: 0 auto;
        align-self: center;
    }

        nav .nav-links ul {
            list-style: none;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            flex: 0 0 auto;
            place-content: space-between;
            justify-content: space-between;
        }

            nav .nav-links ul li {
                text-decoration: none;
                height: 100%;
                align-self: center;
            }

                nav .nav-links ul li:hover {
                    text-decoration: none;
                    transform: scale(1.1);
                    transition: all .1s;
                }

                nav .nav-links ul li a {
                    color: var(--color-white);
                    font-size: 18px;
                    font-weight: 600;
                }

                    nav .nav-links ul li a img {
                        height: 36px;
                        width: auto;
                    }

    nav.nav-top {
        position: absolute;
        top: 2%;
        left: 0;
        background-color: transparent;
        transition: all .6s;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
/*#region NAVBAR*/
input, textarea {
    font-family: montserrat, Arial, sans-serif;
}

    input:focus, textarea:focus {
        border: none;
        outline: none;
    }

textarea {
    resize: none;
}

.btn {
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-bright-white);
}

.icon::before {
    content: ' ';
    background-color: var(--color-blue);
    mask-size: contain;
    height: 36px;
    width: 36px;
    display: flex;
    place-items: center;
    align-items: center;
}

.icon.icon-phone::before {
    -webkit-mask: url(../images/icons/phone-icon.svg) no-repeat 50% 50%;
    mask: url(../images/icons/phone-icon.svg) no-repeat 50% 50%;
}

.icon.icon-address::before {
    -webkit-mask: url(../images/icons/location-icon.svg) no-repeat 50% 50%;
    mask: url(../images/icons/location-icon.svg) no-repeat 50% 50%;
}

.icon.icon-mail::before {
    -webkit-mask: url(../images/icons/mail-icon.svg) no-repeat 50% 50%;
    mask: url(../images/icons/mail-icon.svg) no-repeat 50% 50%;
}

.icon.icon-instagram::before {
    -webkit-mask: url(../images/icons/instagram-icon.svg) no-repeat 50% 50%;
    mask: url(../images/icons/instagram-icon.svg) no-repeat 50% 50%;
}

.icon.icon-linkedin::before {
    -webkit-mask: url(../images/icons/linkedin-icon.svg) no-repeat 50% 50%;
    mask: url(../images/icons/linkedin-icon.svg) no-repeat 50% 50%;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 5;
    opacity: 1;
    transition: all 1s;
}

footer {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    background: var(--color-blue);
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    padding: 24px 0;
    margin-top: 100px;
    width: 100%;
}


    footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        width: 50%;
        justify-content: center;
        align-items: center;
    }

        footer .footer-links ul {
            list-style-type: none;
            text-decoration: none;
        }

            footer .footer-links ul li {
                margin-bottom: 14px;
            }

                footer .footer-links ul li:last-of-type {
                    margin-bottom: 0;
                }

                footer .footer-links ul li a {
                    color: var(--color-white);
                }


    footer .footer-contact {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        width: 30%;
        flex-direction: column;
        z-index: 5;
        color: var(--color-bright-white);
    }

        footer .footer-contact .icon::before {
            background-color: var(--color-bright-white);
        }

        footer .footer-contact h4 {
            font-size: 24px;
            margin-bottom: 48px;
        }

        footer .footer-contact ul {
            list-style: none;
        }

            footer .footer-contact ul li {
                display: inline-flex;
                text-decoration: none;
                margin-top: 24px;
                align-items: center;
                line-height: 1.8;
                width: 100%;
            }

                footer .footer-contact ul li span {
                    margin-right: 24px;
                }

                footer .footer-contact ul li .icon {
                    display: inline-flex;
                    width: 36px;
                    height: 36px;
                }

                footer .footer-contact ul li a {
                    color: var(--color-bright-white);
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                }

    footer .footer-logo {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 24px;
        max-height: 150px;
        justify-content: center;
        border-bottom: 1px solid var(--color-bright-white);
        padding: 0 0 24px 0;
    }

        footer .footer-logo img, footer .footer-logo a img {
            max-height: 65px;
            width: auto;
            margin-left: 24px;
        }

        footer .footer-logo img {
            margin-left: 0;
        }


.text-center {
    text-align: center !important;
    width: 100%;
}

.text-justify {
    text-align: justify !important;
}

/*#region MOBILE STYLES*/
@media (max-width: 767px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: 0px 7px 25px 3px rgb(0 0 0 / 60%);
        -webkit-box-shadow: 0px 7px 25px 3px rgb(0 0 0 / 60%);
        -moz-box-shadow: 0px 7px 25px 3px rgba(0,0,0,0.6);
        background: var(--color-blue);
        z-index: 99;
        padding: 0 24px;
    }

        nav .navbar-d {
            display: none;
            visibility: hidden;
        }

        nav .navbar-m {
            display: flex !important;
            visibility: visible;
            width: 75%;
        }

    .navbar-m .hamburger {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        flex-direction: column;
        width: 45px;
        height: 90%;
        margin: 0 14px 0 auto;
        place-content: center;
        transition: all 1s;
    }

        .navbar-m .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--color-white);
            margin: 4px 0;
            transition: all 1s;
        }

        .navbar-m .hamburger.active {
            transform: rotate(90deg);
            transition: all 1s;
        }

            .navbar-m .hamburger.active span {
                width: 75%;
                height: 2px;
                transition: all 1s;
            }

    .navbar-m ul {
        display: none !important;
        visibility: hidden;
        height: 50vh;
        width: 100%;
        transition: all .5s;
    }

        .navbar-m ul.active {
            display: flex !important;
            visibility: visible;
            transition: all .5s;
            position: absolute;
            top: 100px;
            left: 0;
            background: var(--color-blue);
            flex-wrap: wrap;
            flex: 0 0 auto;
            place-content: center;
            align-content: center;
        }

    nav .nav-links ul li {
        text-decoration: none;
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
        height: auto;
    }

    footer .footer-links, footer .footer-contact {
        width: 90%;
        padding-left: 24px;
        padding-right: 24px;
    }

    footer .footer-links {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--color-white);
    }

    footer .footer-contact {
        width: 90%;
        margin-top: 34px;
    }
}
/*#endregion MOBILE STYLES*/
