/* google font link here  */

/* Nunito sand font for peragraph  */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wdth,wght,YTLC@0,6..12,75..125,200..1000,440..540;1,6..12,75..125,200..1000,440..540&display=swap');
/* font-family: "Nunito Sans", sans-serif; */

/* Archivo black font for heading  */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
/* font-family: "Archivo Black", sans-serif; */

/* Predefin Css or class */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito Sans", sans-serif;
}

.bg-white {
    background-color: white;
}

.btn-primary {
    background: transparent;
    color: #22258C;
    border: 1px solid #22258C;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-wrap: nowrap;
}

.btn-primary:focus {
    background: transparent;
    color: #22258C;
    border: 1px solid #22258C;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none;
}

.btn-primary:hover {
    background: transparent;
    color: #22258C;
    transform: scale(0.8);
    transition: all 0.1s linear;
}

.icon_btn {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

/* navbar start  */
.dropdown-menu {
    position: absolute;
    z-index: 10000;
}

/* Keep your existing override for the popper-based positioning */
.dropdown-menu[data-bs-popper] {
    left: 0 !important;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    padding: 20px 0;
}

.navbar .nav-link {
    font-size: 14px;
    color: #000;
    position: relative;
    padding-right: 0 !important;
    padding-left: 0 !important;
    text-transform: uppercase;
}

.navbar .nav-item:hover .nav-link::before {
    width: 100%;
    transition: all 0.1s linear;
}

.navbar .nav-link:hover {
    color: #22258C;
}

.navbar .nav-link::before {
    content: "";
    background: #22258C;
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    width: 0%;
}

.navbar .nav-item {
    margin: 0 20px;
}

.navbar svg {
    fill: #22258C;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.contact_btn {
    margin: 0 10px;
}

/* navbar end */

/* hero section start  */
#home {
    /* padding: 200px 0; */
    /* background: url(../image/hero_2.png) center center/cover; */
}


#home p {
    font-size: 32px;
    color: white;
    font-weight: bold;
}


#carouselExampleCaptions h5 {
    font-size: 40px;
}

@media(max-width:500px) {

    #home p {
        font-size: 22px;
        margin: 20px 0;
        text-align: center;
    }

}

@media(max-width:768px) {

    #home p {
        text-align: center;
        font-size: 20px;
    }

    #carouselExampleCaptions h5 {
        font-size: 20px;
    }

}

.carousel-caption {
    bottom: 12rem;
    display: block !important;
}

.header_logo {
    margin-bottom: 240px;
    background: white;
    padding: 20px 50px;
    border-radius: 100px;
}


.header_image {
    height: 100%;
}



/* hero section end */

/* about section statr  */
#about {
    margin: 100px 0;
}

#about p {
    font-size: 18px;
    font-weight: 600;
}

#about .btn-primary {
    margin: 40px 0;
}

/* about section end */

/* service section start  */



.service_heading h2 {
    font-family: "Archivo Black", sans-serif;
    color: white;
    text-align: center;
    font-size: 40px;
    padding: 0 0 0 0;
}


.service {
    padding-block: 100px 100px;
}

.service_content {
    text-align: center;
}

.service_content-reverse {
    text-align: center;
}

.service_content-img img {
    width: 80%;
}

.service_content-text h2 {
    font-size: 16px;
}

.service_content-text p {
    font-size: 15px;
    line-height: 1.4;
}

.service_content {
    text-align: center;
    position: relative;
}

.service_content.reverse {
    top: -30%;
}

.service_row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
}

.service_row h2 {
    font-weight: 800;
}

.service_content.reverse:before {
    top: auto;
    bottom: -22px;
    height: 46%;
    border-bottom: 10px solid red;
    border-top: 0;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.service_content:before {
    position: absolute;
    content: '';
    width: 104.5%;
    height: 40%;
    border: 10px solid red;
    inset-inline: 0;
    top: -19px;
    border-radius: 200px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.service_item:nth-child(1) .service_content::before {
    border-color: #FFF817;
}

.service_item:nth-child(2) .service_content::before {
    border-color: #22258C;
}

.service_item:nth-child(3) .service_content::before {
    border-color: #FFF817;
}

.service_item:nth-child(4) .service_content::before {
    border-color: #22258C;
}

.service_item:nth-child(5) .service_content::before {
    border-color: #FFF817;
}

.service_item:nth-child(6) .service_content::before {
    border-color: #22258C;
}

.service_content-img {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;


    /* animation-duration: 2s;
    animation-name: rotate;
    animation-iteration-count: infinite;
    transition: all 0.1s linear; */
}

.rotet_down {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    -webkit-animation: spin-down 2s linear infinite;
    -moz-animation: spin-down 2s linear infinite;
    animation: spin-down 2s linear infinite;


    /* animation-duration: 2s;
    animation-name: rotate;
    animation-iteration-count: infinite;
    transition: all 0.1s linear; */
}

@keyframes spin {
    0% {
        transform: rotate(3deg);
        transition: all 0.1s linear;
    }

    100% {
        transform: rotate(360deg);
        transition: all 0.1s linear;
    }
}

@keyframes spin-down {
    0% {
        transform: rotate(-3deg);
        transition: all 0.1s linear;
    }

    100% {
        transform: rotate(-360deg);
        transition: all 0.1s linear;
    }
}

@media only screen and (max-width: 600px) {
    .service {
        padding-block: 50px 50px;
    }

    .service_row {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

    .service_content-img img {
        width: 50%;
    }

    .service_content:before {
        display: none;
    }

    .service_content.reverse:before {
        display: none;
    }

    .service_content.reverse {
        top: 0;
    }

    .service_content.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .service_item {
        padding-block: 10px;
    }
}


/* port section start  */
#port {
    background-color: #F7F7F7;
    padding: 80px 0;
}

#port h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 40px;
}

#port h3 {
    font-size: 16px;
}

#port li {
    list-style-type: decimal;
    margin: 20px 0;
}

/* port section end */

/* location section start  */
#location {
    padding: 120px 0;
}

#location h2 {
    font-family: "Archivo Black", sans-serif;
    color: #22258C;
    text-align: center;
    font-size: 40px;
    margin-bottom: 64px;
}

#location p {
    font-size: 18px;
    margin: 20px 0;
}

/* location section end */

/* Employment section start */
#employment {
    padding: 120px 0 80px 0;
}

#employment h2 {
    font-family: "Archivo Black", sans-serif;
    color: #22258C;
    text-align: center;
    font-size: 40px;
    margin-bottom: 64px;
}

#employment h3 {
    font-family: "Archivo Black", sans-serif;
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

#employment .btn-primary {
    color: black;
    border: 1px solid #000;
}


/* Employment section end */

/* contact us section start  */
#contact {
    padding: 200px 0;
}

#contact h2 {
    font-family: "Archivo Black", sans-serif;
    color: #22258C;
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

#contact .box {
    background: #F7F7F7;
}

#contact .col_1 {
    padding: 64px 0;
}

#contact .border_right {
    border-right: 1px solid #22258C;
    border-left: 1px solid #22258C;
}

#contact .icon_box {
    padding: 0 20px;
}

#contact .icon_box p {
    margin: 10px 0;
}

/* contact us section end */

/* footer start  */
#footer {
    padding: 20px 0;
    border-top: 1px solid #00000053;
    border-bottom: 1px solid #00000053;
    margin-bottom: 30px;
}

#footer .copy {
    text-wrap: nowrap;
}


/* footer end */


.contact_box {
    background-color: white;
    padding: 20px;

}

.contact_box h3 {
    font-size: 18px;
    color: #000;
}

.carousel-item {
    height: 100vh;
}

#new_serv {
    background: url(../image/fectory.png) no-repeat center center/cover;
    padding: 80px 0;
    margin: 0 0 100px 0;
}

#new_serv p {
    font-size: 16px;
    margin: 20px 0 0 0;
    color: white;
    font-weight: bold;
}