﻿@import url(./variable.css);
/* scroll */




/* landing */
.landing {
    background-color: #eaf3ff;
    padding-top: 50px;
    padding-bottom: 30px;
}


.landing-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
}

@media only screen and (max-width: 769px) {
    .landing-text {
        align-items: center;
        margin-bottom: 30px;
    }
}

.landing h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primaryColor);
}

.landing button {
    width: 200px;
    border: none;
    background-color: var(--primaryColor);
    color: white;
    border-radius: 5px;
    height: 50px;
}

.landing {
    line-height: 30px;
}

.landing-image img {
    width: 100%;
    border-radius: 20px;
}

.landing-box {
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #5499c7;
    transition: all 1s ease;
}

    .landing-box:hover {
        background-color: #2471a3;
    }

    .landing-box svg {
        font-size: 2rem;
    }

    .landing-box div {
        font-size: 2rem;
        font-weight: bold;
    }

.first-landing-box,
.third-landing-box {
    transform: translateY(75px);
}

.second-landing-box {
    transform: translateY(30px);
}



@media only screen and (max-width: 769px) {

    .first-landing-box,
    .second-landing-box,
    .third-landing-box {
        transform: translateY(0);
        margin-top: 30px;
    }
}

/* landing */
/* tabs */
.tabs {
    margin-top: 150px;
}

.nav .row {
    width: 100%;
}

.nav-link {
    width: 100%;
    border: 1px solid var(--primaryColor);
    color: black;
}

    .nav-link:hover {
        color: black;
    }

    .nav-link.active {
        background-color: var(--primaryColor) !important;
    }

.tabs-header h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: bold;
}

.tab-pane {
    margin-top: 50px;
}

.tabs-picture img {
    width: 100%;
    border-radius: 20px;
    height: 250px;
}

.tabs-text {
    line-height: 30px;
}

/* tabs */
/* accordion */
.accor {
    margin-top: 50px;
    background-color: #eaf3ff;
    padding-top: 50px;
    padding-bottom: 50px;
   
}



.accordion-button::after {
    display: none;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--primaryColor);
        color: #fff;
    }

        .accordion-button:not(.collapsed) .accordion-icon {
            transform: rotate(180deg);
        }

.accordion-item {
    margin-top: 5px;
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordion-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

@media only screen and (max-width: 769px) {
    .accordion-title {
        text-align: center;
    }
}



.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.accordion-body {
    line-height: 25px;
    text-align: justify;
}
.accordion-text {
    text-align: right;
    line-height: 30px;
}
/* accordion */

/* slider */
.slider {
    margin-top: 50px;
}

.slider-header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: 150px;
}

.slider-box {
    display: flex;
    justify-content: center;
    background-color: #eaf3ff;
    width: 80%;
    border-radius: 20px;
    padding: 10px;
}

.slider-box-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.slider-box-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px;
    line-height: 25px;
}
.swiper-button-next::after {
    font-size: 20px;
}

.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next {
    right: -40px
}

/* slider */

/* services */
.services {
    margin-top: 50px;
    background-color: #eaf3ff;
    padding-top: 50px;
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    margin-bottom: 50px;
    background-color: white;
    transition: all 1s ease;
    min-height: 325px;
}

    .service-box:hover .service-box-image {
        background-color: #1f618d
    }

    .service-box:hover {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        background-image: linear-gradient(to top, rgb(231, 229, 229), rgb(255, 255, 255));
    }

.service-box-image {
    background-color: #2980b9;
    border-radius: 50%;
    padding: 20px;
    transition: all 500ms ease;
}

    .service-box-image img {
        width: 70px;
        height: 70px;
    }

.service-box-text {
    text-align: center;
    line-height: 30px;
    margin-top: 10px;
}
    .service-box-text{
        font-size:11pt;
    }
    .service-box-text h3 {
        font-size: 1.5rem;
        font-weight: bold;
    }

/* services */




