/* Core styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: sans-serif;
    margin: 0;
}
a {
    transition: all 0.3s ease-in-out;
}
.container {
    width: 1140px;
    margin: 0 auto;
}
.to_uppercase {
    text-transform: uppercase;
}
.clearfix {
    clear: both;
}
.button:hover {
    background-position: right center;
}
.section-subtitle {
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 0.625rem;
    color:#797979;
    text-transform: uppercase;
}
.section-title {
    margin-top: 0.32rem ;
    font-size: 2.62rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #053640;
}
.button {
    border: none;
    background-color: #1C44E4;
    background: linear-gradient(to right ,#1345e6 0%, #ed239f 51%, #1345e6 100%);
    background-size: 200% auto;
    color:#FFF;
    font-weight: 500;
    font-size: 0.87rem;
    padding: 1.26rem 2.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.blur-line {
    display: inline-block;
    position: relative;
    top: -3px;
    margin-left: 0.32rem;
    height: 4px;
    width: 80px;
    background-color: rgba(237, 35, 159, 0.6);
    filter: blur(4px);
    border-radius: 4px;

}
/* Main header */
.main-header {
    position: fixed;
    background-color: #FFF;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 3px 16px 0px rgb(0 0 0/10%);
    z-index: 10;
}
.main-header .container {
    display: flex;
    align-items: center;
}

.main-header__brand img {
    width: 64px;
}



.main-navigation__item {
    display: inline-block;
    padding: 0.625rem;
}
.main-navigation__item a{
    color: #05364d;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
}
.main-navigation__item a:hover {
    color: #efb6df
}

.main-navigation__item.active a{
    color: #efb6df;
}

/* Footer section styles */


.footer {
    margin-top: 50px;
    padding: 50px 0;
    background-color: #021017;
    text-align: center;
}

.footer__brand img {
    width: 120px;
}

.footer__navigation-items {
    margin-bottom: 50px;
}
.footer__navigation-item {
    display: inline-block;
    padding: 0 10px;
}

.footer__navigation-item a {
    color: white;
    text-decoration: none;
}
.footer__navigation-item a:hover {
    color: #efb6df
}
.footer__socials {
    list-style: none;
}

.footer__social {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: white;
    border-radius: 36px;
    color: #05364d;
    font-size: 1.25rem;
    margin-right: 12px;    
}

.footer__social a {
    color: #021017;
}
.footer__social:hover {
    background: linear-gradient(90deg, #1345e6 0%, #ed239f 100%);
}
.footer__social:hover i {
    color: white;
}
.footer__text {
    color: #797979;
}
@media only screen and (max-width:991px) {
    .container {
        width: 90%; 
    }
    /* Navigation */
    .main-navigation {
        display: none;
    }
    /* Footer */
    .footer__navigation {
        display: none;
    }
}
@media only screen and (max-width:767px) {
    .container {
        width: 92%;
    }
}


