:root {
    --color1: #c3a894;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 15px;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    transition: 0.6s ease;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ol,
ul {
    padding: 0;
    margin: 0;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 591px;
}

.header {
    background: #000;
    padding: 8px 0;
    border-bottom: #917462 solid 5px;
    position: fixed;
    width: 100%;
    z-index: 9;
}

.navbar-link a {
    color: var(--color1);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: 'Roboto Slab', serif;

}

a:hover,
a:focus {
    text-decoration: none;
}

a {
    text-decoration: none;
}

.patten {
    position: fixed;
    left: 0;
    top: 95px;
    z-index: 1;
}

.patten img {
    width: 300px;
    opacity: 0.5;
}

.patten.left {
    position: fixed;
    right: 0;
    left: auto;
    transform: rotate(180deg);
    bottom: 0;
    top: auto;
    z-index: 1;
}

.close_icon {
    display: none;
}

.respo_icon {
    display: none;
}

@media (max-width:768px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .patten img {
        width: 163px;
        opacity: 0.5;
    }

    .navbar {
        list-style: none;
        position: fixed;
        display: block;
        justify-content: initial;
        top: 0;
        background: #000;
        width: 65%;
        left: -257px;
        height: 100%;
        text-align: center;
        transition: 0.6s ease;
    }

    .navbar.open {
        transition: 0.6s ease;
        left: 0px;
    }

    li.navbar-link {
        padding: 30px 0;
    }

    .close_icon {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 123;
        cursor: pointer;
    }

    .close_icon i {
        color: var(--color1);
        font-size: 45px;
    }

    .respo_icon {
        display: block;
    }

    .respo_icon i {
        font-size: 37px;
    }
}

.white {
    color: #fff;
}

.w-100 {
    width: 100%;
}

.center {
    text-align: center;
}

.container {
    width: 1350px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

.title_section {
    font-size: 30px;
    /* color: var(--color1); */
    font-family: 'Roboto Slab', serif;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--color1) 20%, #bba393 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

section {
    padding-top: 100px;
}

.title_section::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color1);
    width: 100px;
    height: 2px;
}

.header-section.center {
    padding-bottom: 35px;
}

.content p {
    text-align: justify;
}

.justify {
    text-align: justify;
}

.alt {
    list-style: none;
}

.alt li {
    padding: 0.5em .5em;
    border-bottom: var(--color1) solid 1px;
    position: relative;
}

.alt li::before {
    content: "\f1ce";
    font: normal normal normal 14px/1 FontAwesome;
    padding-right: 5px;
    color: var(--color1);
}

.icon-container {
    display: flex;
    justify-content: space-between;
    margin-top: -50px;
    background: #fff;
    padding: 10px;
    position: relative;
    box-shadow: -3px 6px 20px 0px #0000003d;
}

.icon {
    border-left: 5px solid var(--color1);
    padding-left: 15px;
    width: 300px;
    height: auto;
    text-align: justify;
	margin: 10px;
}

.icon-container .icon-title {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--color1);
    text-transform: uppercase;
}

.mobile {
    display: none;
}

@media (max-width:768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container {
        width: 94%;
        margin: 0 auto;
    }

    .icon-container {
        display: block;

    }

    .banner {
        margin-top: 94px;
    }
    section {
        padding-top: 58px;
    }
}


.mySlides {
    display: none
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgb(255 255 255 / 80%);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}


.leftside, .rightside {
	
	height: 100%;
	width: 100%;
	
}


.leftside{
	background: #fff;
	
}

.rightside{
	background: #fff
}

.footerMain .white {
    color: #6a6268 !important;
    text-align: center;
    margin-top: 10px;
	
}
	























