* {
    margin: 0;
    padding: 0;
}

.custom-navbar-color {
    background-color: #aac5dd !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


.navbar-nav .nav-link {
    animation: scaleIn 0.3s ease;
    color: #17549f !important;
    font-weight: bold;
    padding-left: 10px;
    font-size: large;
    padding: 14px !important;
    margin: 0 40px !important;
}


.navbar-nav .nav-link:hover {
    border: 1px solid #144989;
    border-radius: 5px;
    background-color: #144989;
    color: #aac5dd !important;
    transition: 0.2s ease-in;
}



.block {
    height: 50px;
    width: 55px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    transition: all 1s ease;
    background-image: linear-gradient(90deg, #7494c0, #3b5d87);
    box-shadow: 0 2px 18px 0 rgba(230, 245, 255, 0.5), 0 1px 2px 0 rgba(230, 245, 255, 0.3);
}

.cta {
    height: 50px;
    width: 60px;
    cursor: pointer;
}

.toggle-btn {
    height: 2px;
    width: 25px;
    background-color: #fff;
    position: relative;
    top: 50%;
    left: 0;
    margin: auto;
    transition: all 0.3s ease-in-out;
}

.toggle-btn:before {
    content: "";
    height: 2px;
    width: 25px;
    box-shadow: 0 -10px 0 0 #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.toggle-btn:after {
    content: "";
    height: 2px;
    width: 25px;
    box-shadow: 0 10px 0 0 #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.active .toggle-btn {
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.active .toggle-btn:before {
    top: 0;
    transition: all 0.3s ease-in-out;
}

.active .toggle-btn:after {
    top: 0;
    transition: all 0.3s ease-in-out;
}

.active .type16 {
    transform: rotate(360deg);
    transition: all 0.6s ease-in-out;
}

.active .type16:before {
    left: 6px;
    transform: translateY(6px) rotate(-45deg);
}

.active .type16:after {
    left: 6px;
    transform: translateY(-8px) rotate(45deg);
}

.service-1 img {
    width: 700px;
    height: 400px;
    margin: 90px 20px;
}

.service-2 img {
    width: 700px;
    height: 400px;
    margin: 100px 20px;
}

.service-3 img {
    width: 700px;
    height: 400px;
    margin: 100px 20px;
}

.service-4 img {
    width: 700px;
    height: 400px;
    margin: 10px 20px;
}

li {
    font-size: 20px;
}

.site-footer {
    display: flex;
    justify-content: center;
    background-color: #aac5dd;
    padding-top: 15px;
    text-align: center;
    color: #333;
    margin-top: 95px;
}

@media (max-width: 768px) {


    .service-1 img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin: 0 1px;
    }

    .service-1-text {
        margin-bottom: 45px;
    }

    .service-2 img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin: 0 1px;
    }

    .service-2-text {
        margin-bottom: 45px;
    }

    .service-3 img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin: 0 1px;
    }

    .service-3-text {
        margin-bottom: 45px;
    }

    .service-4 img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin: 0 1px;
    }

}


@media (min-width: 768px) {
    .service-1-text {
        margin-top: 105px;
    }

    .service-2 {
        margin-top: 150px;
        margin-bottom: 13.5rem;
    }

    .service-2-text {
        margin-top: 100px;
    }

    .service-3 {
        margin-top: 150px;
        margin-bottom: 13.5rem;
    }

    .service-3-text {
        margin-top: 100px;
    }

    p {
        font-size: 20px;
    }


}