@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #012060;
    --secondary-color: white;
    --ternary-color: #f8f8f8;
    --quaternary-color: #012060;
    /* #3b74b9 */
    --quinary-color: orange;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.primary-theme {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.quaternary-theme {
    background-color: var(--quaternary-color) !important;
    color: var(--secondary-color) !important;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.primary-border-top {
    border-top: 1px solid var(--primary-color);
}

.secondary-border-top {
    border-top: 1px solid var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
}

.card-effect {
    padding: .75rem 1.25rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

nav.custom a.nav-link {
    font-size: larger;
    color: var(--primary-color);
    font-weight: bold;
}

section {
    padding: 50px 0px;
}

section h1 {
    font-size: 44px !important;
    color: var(--quaternary-color);
    font-weight: 800;
}

section h2 {
    font-size: 44px !important;
    color: var(--quaternary-color);
    font-weight: 800;
}

@media screen and (max-width: 992px) {
    section {
        padding: 35px 0px;
    }

    section h1 {
        font-size: 34px !important;
    }
}


/* ============ dropdown view ============ */
.dropdown:hover .dropdown-menu.main {
    display: block;
}

.dropdown-item:active {
    background-color: var(--primary-color)
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .dropdown-menu .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }

    .dropdown-menu>li:hover>.submenu {
        display: block;
    }
}

/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {

    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
    .navbar-brand img{
        width: 280px !important;
    }

}

/* ============ small devices .end// ============ */



#social-links .bg-overlay-img {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--secondary-color);
    width: 100%;
    height: 100vh;
    position: relative;
}

#social-links .content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 100px;
}

#social-links .content h2 {
    font-size: 44px !important;
    font-weight: 800;
}

.round-borders-ico {
    border: 0.5rem solid var(--primary-bg);
    border-radius: 1rem;
}

.rounded-1 {
    border-radius: 1rem;
}

.fixbutts {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
}

a.btn.primary-theme.rounded.w-100{
    border-radius: 20px !important;
}

@media screen and (max-width: 768px) {
    .fixbutts {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100% !important;
    }
    .h1,
h1 {
    font-size: 2rem !important;
    font-weight: bold;
}
section {
    padding: 10px 0px !important;
}
}



/* Paragraph */
p {
    font-size: 1.1rem;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.5rem !important;
}

pre {
    font-size: 1.1rem;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.5rem !important;
}

/* Headers */
.h1,
h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.h2,
h2 {
    font-size: 1.6rem !important;
    font-weight: bold;
}

.h3,
h3 {
    font-size: 1.5rem !important;
    font-weight: bold;
}

.h4,
h4 {
    font-size: 1.25rem !important;
    font-weight: bold;
}

.h5,
h5 {
    font-size: 1.25rem !important;
    font-weight: bold;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    padding-left: 0px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.25rem;
}


.round-icon i {
    padding: 10px;
    width: 41.2px;
    height: 41.2px;
    font-size: large;
    text-align: center;
    text-decoration: none;
    border: 2px solid;
    color: white;
    border-color: white;
    background-color: var(--primary-bg);
    border-radius: 50%;
}