/* Start Varible  */
:root {
    --main-color: #fff;
    --section-padding: 100px;
    --text-color: #777;
}

/* End Varible  */


/*  Start component */
.main-header {
    text-align: center;
}

.main-header h2 {
    font-weight: bold;
    font-size: 40px;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 20px;
}

.main-header p {
    width: 550px;
    margin: 0 auto 50px;
    max-width: 100%;
    color: var(--text-color);
    line-height: 1.6;
}

/*  End component */
/* Start Global Rules */
* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Small Screen */
@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

/* Medium Screen */
@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

/* large Screen */
@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

/* End Global Rules */


/*  */
/* Strat overlay Section*/

.overlay2 {
    background-image: url("../../images/swiper4.png");
    background-size: cover;
    height: 400px;
    position: relative;
    background-position: center center;
    width: 100%;
    min-width: 800px;
}

.overlay2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
}

.overlay2 .inter-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 320px;
    max-width: 100%;
}

.overlay2 .inter-text h2 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    text-transform: capitalize;
}

.overlay2 .inter-text p {
    line-height: 1.8;
    color: var(--main-color);
    font-style: italic;
}

/* End overlay Section*/


/* start footer section */




/* End footer section */
.contactUs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}