@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

:root {
    --primary: #e52165;
    --primary-light: #e521668a;
    --secondary: #0d1137;
    --secondary-light: #0d1137be;
}

::selection {
    background-color: var(--primary);
    color: var(--secondary);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tilt Neon', cursive;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
}


.logo img {
    height: 90px;
    width: 100px;

}

nav {
    display: flex;
    align-self: center;
    justify-content: space-between;
    padding: 5px 20px;
    background-color: #fff;
    box-shadow: 2px 2px 20px rgba(90, 118, 253, 0.13);
    z-index: 1;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    text-align: center;
}

nav ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    align-items: center;
}

nav ul li a {
    height: 40px;
    line-height: 43px;
    margin: 10px;
    padding: 0px 50px;
    display: flex;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #111;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 5px 10px 30px rgba(90, 118, 253, 0.5);
    transition: all ease 0.2s;
}

nav .menu-btn {
    display: none;
}

@media (max-width:1100px) {
    nav {
        justify-content: space-between;
        height: 100px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0px;
        background-color: #fff;
        border-bottom: 4px solid var(--secondary);
        width: 100%;
        height: auto;
        align-content: center;
    }

    .menu li {
        width: 100%;
    }

    nav .menu li a {
        width: 100%;
        height: 40px;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 25px;
        border: 1px solid rgba(38, 38, 38, 0.03);
    }

    nav .menu-icon {
        cursor: pointer;
        float: left;
        padding: 40px 20px;
        position: relative;
        user-select: none;
    }

    nav .menu-icon .nav-icon {
        background-color: #333333;
        display: block;
        height: 2px;
        position: relative;
        transition: background 0.2s ease-out;
        width: 18px;
    }

    nav .menu-icon .nav-icon:before,
    nav .menu-icon .nav-icon:after {
        background: #333333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all ease-out 0.2s;
        width: 100%;
    }

    nav .menu-icon .nav-icon:before {
        top: 5px;
    }

    nav .menu-icon .nav-icon:after {
        top: -5px;
    }

    nav .menu-btn:checked~.menu-icon .nav-icon {
        background: transparent;
    }

    nav .menu-btn:checked~.menu-icon .nav-icon:before {
        transform: rotate(-45deg);
        top: 0;
    }

    nav .menu-btn:checked~.menu-icon .nav-icon:after {
        transform: rotate(45deg);
        top: 0;
    }

    nav .menu-btn {
        display: none;
    }

    nav .menu-btn:checked~.menu {
        display: block;
    }

}

/*---------------- header section-------- */

.header-content {
    width: 100%;
    height: 95px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #f1f1f1;
    margin-left: auto;
}

.logo {
    height: 100%;
    width: auto;
    margin-left: 10px;
    margin-right: 0px;
}

.nav-links {
    display: flex;
    width: 40%;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    padding-left: 0px;
}

.nav-links a {
    color: black;
}

.nav-links li::after {
    content: '';
    display: block;
    background-color: var(--primary);
    height: 2px;
    width: 100%;
    transition: 0.5s;
    transform: scale(0);
}

.nav-links li:hover::after {
    transform: scale(1);
}

.burger {
    display: none;
    cursor: pointer;
    margin-right: 2%;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.text-center {
    margin-top: 0;
    padding-top: 23rem;
    text-align: center;
    transition: .3s;
    font-size: 25px;
    width: 100%;
    height: 600px;
    color: white;

}

.text-color {
    background: linear-gradient(to right, #66ba48 0%, #1595d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: white;

}

.carousel .carousel_title {
    font-size: 70px;
    font-weight: 600;

}

.carousel p {
    font-size: 25px;
}

@media (max-width: 800px) {
    .carousel .carousel_title {
        font-size: 30px;
        margin-top: 10px;
    }
}

@media (max-width: 855px) {
    .carousel .carousel_title {
        font-size: 30px;
        margin-top: 10px;
    }
}

@media (max-width: 800px) {
    .carousel p {
        font-size: 15px;
        margin-top: 60px;
        font-weight: bolder;
    }
}

.breadcumb-overlay {
    background: rgba(22, 41, 53, 0.8) none repeat scroll 0 0;
    height: 600px;
    width: 100%;
    opacity: 50;
}

.breadcumb-overlay-light {
    background: rgba(15, 32, 43, 0.5) none repeat scroll 0 0;
    height: 620px;
    width: 100%;
    opacity: 50;
}

.page-area {
    background: url(images/DSCN1.JPG);
    background-size: cover;
    background-repeat: repeat;
    background-position: top center;
    animation-name: cleaning;
    animation-duration: 80s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes cleaning {
    0% {
        background-image: url(images/DSCN1.JPG);
        left: 0%;
    }

    15% {
        background-image: url(images/DSCN2.JPG);
        left: 0%;
    }

    25% {
        background-image: url(images/DSCN3.JPG);
        left: -100%;
    }

    40% {
        background-image: url(images/DSCN4.JPG);
        left: -200%;
    }

    55% {
        background-image: url(images/DSCN5.JPG);
        left: -200%;
    }

    70% {
        background-image: url(images/DSCN6.JPG);
        left: -300%;
    }

    85% {
        background-image: url(images/IMG-7.jpg);
        left: -300%;
    }

    100% {
        background-image: url(images/DSCN1526.JPG);
        left: -400%;
    }
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    20% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    95% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

div#slider {
    overflow: hidden;
}

div#slider figure img {
    width: 20%;
}

div#slider figure {
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 30s slidy infinite;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    width: 100%;
}

.page-area img-slider {
    width: 100vw;
    height: 600px;
}

.img-slider .slider-container {

    width: 300%;
    top: 0;
    left: 0;
    overflow: hidden;
    animation: slidy 26s infinite;
}

.img-slider .slider-container .slide {

    width: 33.33333333%;
    height: 100%;
    float: left;
    overflow: hidden
}

.img-slider .slider-container .slide img {
    display: block;
    width: 100%;
    height: 100%
}

.page-area-about {
    background: url(images/aboutusbanner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.page-area-services {
    background: url(images/services.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.page-area-contact {
    background: url(images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

/* .text-center {
    margin-top: 0;
    padding-top: 270px;
    text-align: center;
    transition: .3s;
    font-size: 20px;
    background: url(images/banner.jpg);
    background-size: cover;
    width: 100%;
    height: 700px;
} */





.text-center a {
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary);
    border-radius: 25px;
    color: #fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top: 30px;
}

.text-center a:hover {
    background-color: var(--primary-light);
    color: #fff;
    transition: 0.2s ease;
}

@media (max-width: 800px) {
    .text-center a {
        font-size: 15px;
        margin-top: 10px;
        padding: 5px 10px;
    }
}


/*----------- CLIENTS ----------*/

.client-main {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 1%;
}

.client-main img {
    height: 200px;
    width: auto;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 50px;
}

.card_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.client-main btn {
    color: #ffffff;
    padding: 0.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.client-main btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_item {
    display: block;
    padding: 1rem;
    width: 100%;
}

@media (min-width: 40rem) {
    .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_item {
        width: 33.3333%;
    }
}

.card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_content {
    padding: 1rem;
    background: linear-gradient(to bottom left, #89216b 40%, #da4453 100%);
}

.card_title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0px;
}

.card_text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.10rem;
    margin-top: 0.10rem;
    font-weight: 300;
}

.card_text_m {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 300;
}

.made_by {
    font-weight: 400;
    font-size: 13px;
    margin-top: 35px;
    text-align: center;
}

/*----------- OUR TEAM ----------*/

.container {
    width: 100%;
    background-color: #f8f8f8;
    padding: 5px;
}

.container .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    color: #222;
    letter-spacing: 1.5px;
    padding: 50px 0px;
}

.container .title h1::after {
    content: "";
    height: 3px;
    width: 100px;
    background-color: #e52165;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 10px
}

.content {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin: 30px auto;
}

.content .article {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    padding: 20px 20px;
    border-radius: 5px;
}

.content .article h2 {
    color: var(--secondary);
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.content .article p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

.content .article a {
    font-size: 22px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    border-radius: 25px;
    color: #fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top: 35px;
}

.content .article a:hover {
    background-color: #fff;
    color: var(--primary);
    transition: 0.2s ease;
}

.image-section {
    width: 100%;
    margin: auto;
}

.image-section img {
    width: 100%;
    height: auto;
}

/*-----OUR HAPPY CLIENTS---*/

.container-client {
    width: 100%;
    background-color: #fff;
    padding: 5px;
}

.container-client .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    color: #222;
    letter-spacing: 1.5px;
    padding: 50px;
}

.container-client .title h1::after {
    content: "";
    height: 3px;
    width: 200px;
    background-color: #e52165;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 10px
}


/*--------- ABOUTS US ----------*/

.text-center1 {
    margin-top: 0;
    padding-top: 270px;
    text-align: center;
    transition: .3s;
    font-size: 22px;
    /* background: url(images/aboutusbanner.jpg);
    background-size: cover; */
    width: 100%;
    height: 700px;
    letter-spacing: 1.5px;
    color: white;
}

.text-center1 a {
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary);
    border-radius: 25px;
    color: #fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top: 35px;
}

.text-center1 a:hover {
    background-color: var(--primary-light);
    color: #fff;
    transition: 0.2s ease;
}

.container1 {
    width: 100%;
    /* background-color:#eee ; */
    margin-top: 30px;
}

.container1 .title1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    color: #222;
    letter-spacing: 1.5px;
    padding: 50px 0px;
}

.container1 .title1 h1::after {
    content: "";
    height: 3px;
    width: 100px;
    background-color: #e52165;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 10px
}

.content-about {
    width: 100%;
    background: #f7f7f7;
}

.content1 {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
    margin: 30px auto;
}

.content1 .article1 {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    background-color: #eee;
    padding: 20px 20px;
    border-radius: 5px;
}

.content1 .article1 h2 {
    color: var(--secondary);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.content1 .article1 p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

/*.content1 .article1 a {
    font-size: 22px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 20px;
    background-color:var(--primary);
    border-radius: 25px;
    color:#fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top:35px;
}

.content1 .article1 a:hover{
    background-color: #fff;
    color: var(--primary);
    transition: 0.2s ease;
}*/

.image-section {
    width: 100%;
    margin: auto;
}

.image-section img {
    width: 100%;
    height: auto;
}

/*---ABOUT MAIN ----*/

.main {
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    background: #f7f7f7;
    padding: 50px 0px;
}

.main-col p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 16px;
    letter-spacing: 1.5px;
}

.row {
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 90%;

}

.main-col {
    flex-basis: 45%;
    background: var(--primary);
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    margin-bottom: 1%;
    margin-top: 1%;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.main-col:hover {
    box-shadow: 0 0 20px 0px var(--secondary);
}


.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-container .about-card {
    display: flex;
    flex-direction: column;
    background: #eee;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .5);
    border-radius: 50px 0;

}

.about-container .about-card:first-child {
    flex-direction: column-reverse;
}

.about-container .about-card .about-imgbx {
    width: 400px;
    height: 300px;
    background: #000;

}

.about-container .about-card .about-imgbx img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container .about-card .about-content {
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container .about-card .about-content div {
    padding: 20px;
    text-align: center;
}

.about-container .about-card .about-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-size: 600;
}

.about-container .about-card .about-content p {
    font-size: 14px;
    color: #000;
}

@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        margin: 50px;
    }

    .about-container .about-card {
        flex-direction: row;
        margin: 10px 0;
    }

    .about-container .about-card:first-child {
        flex-direction: row-reverse;
    }

    .about-container .about-card .about-imgbx,
    .about-container .about-card .about-content {
        width: 50%;
    }
}

@media (max-width:600px) {
    .about-container .about-card {
        flex-direction: column;
        margin: 10px 0;
    }

    .about-container .about-card:first-child {
        flex-direction: column;
    }

    .about-container .about-card .about-imgbx,
    .about-container .about-card .about-content {
        width: 100%;
    }

    .about-container .about-card .about-content {
        height: 200px;
    }
}


/*---ABOUT list ----*/

.list {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    background: #f7f7f7;
    margin-bottom: 10px;
    margin-top: 3%;

}

.box {
    width: 100%;
    border-bottom: 20px solid var(--secondary);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;

}

.box h2 {
    color: #fff;
    background-color: var(--secondary);
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.box ul {

    background-color: #fff;
}

.box ul li {
    list-style: none;
    padding: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
    transition: transform 0.5s;

}

/* .box ul:hover li {
    opacity: 0.2;
} */
.box ul li:hover {

    z-index: 100;
    background-color: var(--primary);
    color: #fff;
    opacity: 1;
}

.box ul li span {
    width: 30px;
    height: 20px;
    text-align: center;
    background-color: var(--primary);
    line-height: 20px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.box ul li:hover span {
    background: #fff;
    color: #25bcff;
}

/*--------- SERVICES SECTION -----*/

.text-center-services {
    margin-top: 0;
    padding-top: 270px;
    text-align: center;
    transition: .3s;
    font-size: 22px;
    /* background: url(images/aboutusbanner.jpg);
    background-size: cover; */
    width: 100%;
    height: 700px;
    letter-spacing: 1.5px;
    color: white;
}

.text-center-services a {
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary);
    border-radius: 25px;
    color: #fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top: 35px;
}

.text-center-services a:hover {
    background-color: var(--primary-light);
    color: #fff;
    transition: 0.2s ease;
}

/*--------- services card -------*/

.services {
    display: flex;
    justify-content: center;
    align-items: center;
}


.container-4 {
    width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}


.container-4 .mycard {
    max-width: 300px;
    height: 200px;
    background: repeating-linear-gradient(#ffdde1, #ee9ca7);
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease-in-out;
}

.container-4 .mycard:hover {
    height: 350px;
}

.container-4 .mycard .cardimg {

    width: 260px;
    height: 200px;
    top: -60px;
    /* z-index: 1;*/
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
}

.container-4 .mycard .cardimg img {
    max-width: 100%;
    border-radius: 8px;
}

.container-4 .mycard .carddetail {
    margin-top: -140px;
    padding: 10px 10px;
    text-align: center;
    color: black;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.container-4 .mycard:hover .carddetail {
    visibility: visible;
    opacity: 1;
    margin-top: -10px;
}

.container-4 .mycard .carddetail h2 {
    text-align: center;
    margin-top: 35px;
    color: var(--secondary);
}

/*--------- services card -------*/

.services-section {
    /*background:url(images/pexels-karolina-grabowska-4239146.jpg);*/
    background-size: cover;
    padding: 60px 0;
    background-color: #f8f8f8;
}

.inner-width {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
}

.border {
    width: 160px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 20px;
}

.service-main-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.service-box {
    width: 320px;
    height: 320px;
    /* max-width: 33.33%; */
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s linear;
    border-radius: 10px;
}

.service-box:hover {
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    margin-bottom: 16px;
    margin-top: 10px;
    transition: 0.3s linear;
    align-items: center;
}

.service-icon i {
    line-height: 70px;
    font-size: 26px;
}

.service-box:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.services-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-desc {
    font-size: 14px;
    text-justify: auto;
    margin-top: 10px;
    letter-spacing: 1.5;
    color: #2c2c2c;
}

@media screen and (max-width: 800px) {
    .service-box {
        max-width: 50%;
    }
}

@media screen and (max-width: 730px) {
    .service-box {
        max-width: 100%;
    }
}

/*------- contact us ----*/

.text-center-contact {
    margin-top: 0;
    padding-top: 270px;
    text-align: center;
    transition: .3s;
    font-size: 22px;
    /* background: url(images/aboutusbanner.jpg);
    background-size: cover; */
    width: 100%;
    height: 700px;
    letter-spacing: 1.5px;
    color: white;
}

.text-center-contact a {
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary);
    border-radius: 25px;
    color: #fff;
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    margin-top: 35px;
}

.text-center-contact a:hover {
    background-color: var(--primary-light);
    color: #fff;
    transition: 0.2s ease;
}



.contact-container {

    width: 100%;
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
}

.Contact-title {
    text-align: left;
    color: #000;
    margin-top: 5PX;
    border-bottom: 0.2rem #e52165 solid;
    width: 35%;
    margin-left: 15PX;
}

.contact-container .contact_data {
    background: white;
    border-radius: 02px;
    border-top: 6px solid #e52165;
    width: 100%;
    margin: 0 10px;
    background-size: cover;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.contact-container .contact_data form {
    padding: 0 1rem;
}

.contact-container .contact_data form input,
textarea {
    width: 95%;
    margin: 05px 0 0 10px;
    padding: 07px 10px;
    border: 1px solid #f8f8f8;
    font-size: 1rem;
    border-radius: 05px;
}

.contact-container .contact_data h2 {
    margin: 1.5rem;
    border-bottom: 0.2rem #e52165 solid;
    width: 25%;
}

.contact-container .contact_data label {
    display: block;
    padding-top: 15px;
    padding-left: 10px;
}

.contact-container .contact_data button {
    margin: 20px 10px;
    border: none;
    padding: 10px 20px;
    background: var(--primary-light);
    font-size: 1rem;
    border-radius: 05px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-container .contact_data button:hover {
    background: var(--primary);
    transition: 0.3s;
    color: #fff;
}

.contact-text {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px;
    margin-top: 16px;
}

.contact-container .contact_data2 {
    background: white;
    border-radius: 02px;
    border-top: 6px solid #e52165;
    width: 100%;
    margin: 0 10px;
    background-size: cover;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.contact-container .contact_data2 ul {
    list-style: none;
}

.contact-container .contact_data2 ul li {
    margin: 2.5rem 1rem;
}

.contact-container .contact_data2 ul li i {
    font-size: 1.4rem;
    color: #e52165;
}

.contact-container .contact_data2 ul li strong {
    margin-left: 10px;
    font-size: 1.2rem;
    color: #000;
}

.contact-container .contact_data2 ul li p {
    font-size: 14px;
    margin-left: 35px;
    color: #000;
}

.contact-container .contact_data2 .map iframe {
    width: 90%;
    height: 300px;
    margin-left: 3%;
    margin-right: 3%;
}


/*---------Footer Section------*/

.container3 {
    max-width: 1170px;
    margin: auto;

}

.row1 {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: #0d1137;
    padding: 30px;
    clear: both;
}

.footer-col {
    width: 20%;
    padding: 0 10px;
}

.footer-col h4 {
    font-size: 20px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500 bold;
    display: block;
}

.footer-col h4::after {
    content: '';
    display: block;
    left: 0;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 80px;
    margin-top: 5px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 12px 12px 0;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #999;
    padding: 40px;
}

.footer-bottom p {
    padding-right: 40px;
    color: #999;
}

.footer-col img {
    width: 100px;
    height: 100px;
}

hr {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 40px auto;
}

.copyright {
    text-align: center;
    margin-right: 20px;
    color: #999;
}




/*--------- header section -----*/


@media only screen and (max-width:700px) {
    .nav-links {
        /*display: none;*/
        position: absolute;
        flex-direction: column;
        background-color: var(--secondary);
        right: -10rem;
        top: 12vh;
        height: 50vh;
        width: 0%;
        padding: 1.5rem 0;
        transition: all 400ms;

    }

    .burger {
        display: block;
    }
}

.nav-show {
    width: 100%;
    right: 0px;
}

.textareahide {
    left: -15rem;
}

/*--------- our media section -------*/

@media screen and (max-width:900px) {
    .content {
        grid-template-columns: repeat(1, 1fr);

    }

    .article {
        text-align: center;
    }
}

/*--------- about media section -------*/

@media screen and (max-width:900px) {
    .content1 {
        grid-template-columns: repeat(1, 1fr);

    }

    .article1 {
        text-align: center;
    }
}

/*---ABOUT MAIN ----*/

@media screen and (max-width:850px) {
    .row {
        flex-direction: column;
    }
}

/*---contact section ----*/

@media (max-width: 1037px) {

    .contact-container .contact_data,
    .contact_data2 {
        width: 80%;
        margin: 10px 0px;
    }
}

@media (max-width: 770px) {
    .contact-container .contact_data {
        width: 80%;
        margin: 10px 0px;
    }
}


/*-----footer resposive-----*/

@media (max-width:1189px) {
    .footer-col {
        width: 40%;
        margin-bottom: 30px;
    }
}

@media (max-width:1189px) {
    .footer-col {
        width: 100%;

    }
}


@media only screen and (max-width:920px) {
    .fac:hover .fac-image {
        opacity: 0;

    }
}

/* carousel */
.carousel_inner {
    width: 100%;
    overflow: hidden;
}

.carousel_inner::after {
    content: "";
    display: block;
    clear: both;
}

.carousel_item {
    position: relative;
    float: left;
    display: none;
    width: 100%;
    margin-right: -100%;
}

/* slide effect */
.carousel_item__active,
.carousel_item__pos_next {
    display: block;
}

.carousel_item__pos_next {
    left: 100%;
}

.carousel_item__next {
    transform: translateX(-100%);
    transition: transform .5s ease-in-out;
}

/* fade effect */
.carousel__fade .carousel_item__pos_next {
    left: 0;
    opacity: 0;
}

.carousel__fade .carousel_item__next {
    transform: none;
    opacity: 1;
    transition: opacity 50s ease-in-out;
}

.carousel__fade .carousel_item__active.carousel_item__next {
    opacity: 0;
}

/* carousel */
.carousel_img {
    display: block;
    width: 100%;
}

.carousel_caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    color: #fff;

}

.carousel_title {
    font-size: 50px;
    font-weight: 600;
}

.carousel_description {
    margin-top: .75rem;
    line-height: 150%;
}