@import url('css2.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
	max-width: 100vw;
	overflow-x: hidden;
	overflow-y: hidden scroll;
	position: relative;
}

.dark-bg {
    background: #2c3e50;
}

.base-bg {
    background: #e74c3c;
}

.white-bg {
    background: #ffffff;
}

.dark-color {
    color: #2c3e50;
}

.base-color {
    color: #e74c3c;
}

.white-color {
    color: #ffffff;
}

/* Hero Section */
.top-heading {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.top-heading a {
    margin-right: 20px;
}

.top-heading h2 {
    font-size: 35px;
    color: #fff;
    text-transform: capitalize;
    font-family: Algerian;
    margin-left: 0;
}

/* Hero Section 2 */
.top-heading_1 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	margin-bottom: 25px;	
}

.top-heading_1 a {
    margin-right: 20px;
}

.top-heading_1 h2 {
    font-size: 35px;
    color: #fff;
    text-transform: capitalize;
    font-family: Algerian;
    margin-left: 0;
}

.wrapper {
    width: 100vw;
    height: auto;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff !important;/* Changed from #e3e3e3 to #fff */
	overflow-x: hidden scroll;
    overflow-y: hidden scroll;
}

@media all and (max-width: 993px) {
    .wrapper {
	padding: 0px 0;
	margin-top: 0px;
    }
    .wrapper > mega-menu-item > ul > li {
	padding: 0px 0;
	margin-top: 0px;
    }	
    .wrapper > ul > li > mega-menu-item > ul > li {
	padding: 0px 0;
	margin-top: 0px;
    }	
}

.wrapper h1 {
    font-size: 35px;
    color: #e74c3c;
}

.wrapper > ul {
    list-style: none;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 0px;
}

.wrapper > ul > li {
	margin-top: 5px;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
}

.wrapper > ul > li > a {
    color: #202020;
    font-weight: 600;
    display: block;
    text-decoration: none;
    border-radius: 3px;
    text-transform: capitalize;
    border: 0px solid #202020;
}

.wrapper > ul > li > a > img {
    width: 100%;
    max-width: auto; /* Ensure a maximum width for large screens */
}

@media all and (max-width: 993px) {
    .wrapper > ul {
        width: 100%;
    }
    .wrapper > ul > li {
        width: 100%;
    }
    .wrapper > ul > li > a > img {
        width: 100%;
    }
}

@media all and (max-width: 993px) {
    .wrapper > ul {
        flex-direction: column;
    }
    .wrapper > ul > li {
        width: 100%;
    }
    .wrapper > ul > li > a > img {
        max-width: 100%;
    }
}

.demo-wrapper {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-wrapper .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
}

.demo-wrapper .container h1 {
    font-size: 35px;
    margin-bottom: 15px;
}
