body{
    font-family: "Inter", sans-serif;
}
h2{
    font-weight: 700;
    color:#232F48;
}
p{
    font-size:1.12rem;
    font-weight: 400;
    color:#555555; 
}
.custom-title-before,
.custom-title-after,
.custom-title-center {
    position: relative;
}
.custom-title-before::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #7dbadc 50%, #4e86b8 50%);
    border-radius: 2px;
}
.custom-title-after::after {
    content: "";
    position: absolute;
    top:50px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #7dbadc 50%, #4e86b8 50%);
    border-radius: 2px;
}
.custom-title-center::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #7dbadc 50%, #4e86b8 50%);
    border-radius: 2px;
}
.nav-link.active{
    color:#3575F6 !important;
}
.text-sm{
    font-size:1rem;  
}
.text-md{
    font-size:1.12rem;
}
.text-lg{
    font-size:1.5rem;
}
.text-xl{
    font-size:3rem;
}
.bg-grey{
    background-color: #F4F6F7;
}
.bg-grey-200{
    background-color: #e4e8eb;
}
.bg-blue-700{
    background-color: #344974;
}
.bg-blue-600{
    background-color: #232F48;
}
.bg-blue-500{
    background-color: #2C5178;
}
.bg-blue-400{
    background-color: #405D9E;
}
.bg-blue-400-opacity{
    background-color: rgba(64, 93, 158, 0.08);
}
.bg-blue-300{
    background-color: #4E86B8;
}
.bg-blue-100{
    background-color: #D5E5F3;
}
.bg-green{
    background-color: #1F9090;
}
.text-blue-200{
    color:#3575F6;
}
.text-blue-300{
    color:#4E86B8;
}
.text-blue-400{
    color:#405D9E;
}
.text-blue-500{
    color:#7DBADC;
}
.text-blue-600{
    color:#232F48;
}
.text-blue-700{
    color:#2C5178;
}
.text-grey{
    color:#555555;
}
.text-green{
    color:#1F9090;
}
.border{
    border:1px solid #4E86B8 !important;
}
.btn-primary{
    border:none;
    background: linear-gradient(96.14deg, #3A8EF6 -10.84%, #6F3AFA 196.74%)!important;
    border-radius: 5rem;
    font-weight: 500;
    padding:12px 30px;
}
.btn-primary:hover{
    background: linear-gradient(96.14deg, #3A8EF6 -10.84%, #6F3AFA 196.74%) !important;
    transform: scale(1.03);
    transition: .8s;
}
.btn-secondary{
    border:none;
    background: #fff;
    color:#000;
    border-radius: 5rem;
    font-weight: 500;
    padding:12px 30px;
}
.btn-secondary:hover{
    background: linear-gradient(90deg, rgba(58,142,246,1) 0%, rgba(111,58,250,1) 70%) !important;
    transform: scale(1.03);
    transition: .8s;
}
.btn-whatsapp{
    background-color: #25D366;
    border:none;
    border-radius: 5rem;
    font-weight: 500;
    padding:10px 25px;
}
.btn-whatsapp:hover{
    background: #25D366 !important;
    transform: scale(1.03);
    transition: .8s;
}
.btn-location{
    background-color: #fff;
    border:1px solid #3575F6;
    border-radius: 5rem;
    font-weight: 500;
    padding:10px 25px;
}
.btn-location:hover{
    background-color: #fff;
    border:1px solid #3575F6;
    transform: scale(1.03);
    transition: .8s;
}
.card{
    border-radius: 1rem;
}
.rounded{
    border-radius: 1rem !important;
}
.rounded-top{
    border-radius: 1rem 1rem 0 0 !important;
}
.hover:hover{
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: .6s;
    transform: scale(1.01);
}

.pagination .page-link{
    color:#2C5178;
    border:0;
    background-color: transparent;
}
.pagination .page-link:active,
.pagination .page-link:focus,
.pagination .page-link:hover {
    z-index: 3;
    color: #fff;
    background-color: #4E86B8;
    box-shadow: none;
}

footer ul li a:hover{
    text-decoration: underline !important;
    color:rgba(58,142,246,1) !important;
    transition: .6s;
}
footer hr {
    border-top: #4E86B8 solid 2px;
    opacity: 1;
}
@media (min-width: 320px){
    h2{
        font-size:1.8rem;;
    }
    .bg-half {
        height: 30%;
        background-color: #405D9E;
        z-index: 0;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }
    .bg-half {
        height: 50%;
    }
}
@media (min-width: 1200px){
    h2{
        font-size:2.5rem;;
    }
    .rounded-lg-start{
        border-radius: 1rem 0 0 1rem !important;
    }
    .rounded-lg-end{
        border-radius: 0 1rem 1rem 0 !important;
    }
}
