@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-item .nav-link {
    color: black;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
}
.nav-item .nav-link:hover{
    color: #4974E7;
}
.contact-btn {
    color: black;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid black;
    padding: 7px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-bg {
    background: white;
}

.tilt-container {
    perspective: 1000px;
}

.tilt-element {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.1s ease;
}

.tilt-element .content {
    position: absolute;
    transition: transform 0.1s ease;
}

.hero-h1 {
    color: black;
}

.hero-p {
    color: black;
    font-size: 20px;
    line-height: 30px;
}

.hero-contact-btn {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    color: black;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.blu-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

p {
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
}

.blu-div {
    background: #4974E7;
    color: white;
    display: inline-block;
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    position: absolute;
    animation: updown 4s ease infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon-2 {
    transition: 0.6s ease;
}

.icon-2:hover {
    transform: rotate(360deg);
}

.contact-cta-bg {
    background: url('../assets/images/cta-bg.webp');
    background-size: cover;
    background-position: right top;
}

.brand-h1 {
    color: black;
    font-weight: 700;
    font-size: 2.3rem;
    text-transform: uppercase;
}

.learn-more-btn {
    border: 1.4px solid #4974E7;
    border-radius: 50px;
    padding: 10px 20px;
    color: black;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.4s ease;
}

.learn-more-btn:hover {
    gap: 20px;
    color: #4974E7;
}

.blue-line-set {
    width: 7%;
    height: 100%;
}

.after-border {
    position: relative;
}

.after-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90px;
    height: 1.4px;
    background: #ffffff80;
}

.swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.slider-p {
    font-size: 16px;
    line-height: 26px;
    color: black;
    text-align: center;
}

.hover-opacity,
.hover-opacity-2,
.hover-opacity-3 {
    position: relative;
}

.overly-blu,
.overly-blu-3 {
    position: absolute;
    top: 0;
    left: 0;
    background: #BB86DE;
    width: 0;
    height: 100%;
    z-index: 1;
}

.hover-opacity img,
.hover-opacity-3 img {
    opacity: 0.5;
    transition: 2s ease;
}

.hover-opacity:hover img,
.hover-opacity-3:hover img {
    opacity: 1;
}

.content-box,
.content-box-3 {
    position: relative;
    opacity: 0;
    z-index: 2;
}

.overly-white,
.overly-white-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #19539F;
    z-index: 2;
}

/* second */

.overly-blu-2 {
    position: absolute;
    top: 0;
    left: 0;
    background: #BB86DE;
    width: 0;
    height: 100%;
    z-index: 1;
}

.hover-opacity-2 img {
    opacity: 0.5;
    transition: 2s ease;
}

.hover-opacity-2:hover img {
    opacity: 1;
}

.content-box-2 {
    position: relative;
    opacity: 0;
    z-index: 2;
}

.overly-white-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #19539F;
    z-index: 2;
}
.form-control:focus,
.btn-close:focus{
    box-shadow:none !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
