*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
body{
  background-color: #fff;
}
.Aboutus-banner{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.Aboutus-banner img{
    width: 100%;
    display: block;
}
.Aboutus-banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}
.banner-content{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -45%); 
    text-align: center;
    color: white; 
    z-index: 2; 
    font-family: "Rosarivo", serif;
}
.banner-title{
    font-family: "Rosarivo", serif;
    font-weight: 300;
    font-size: 60px;
}
.about-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 60px;
    padding: 50px;
    max-width: 1500px; 
    margin: 0 auto; 
    margin-bottom: 40px;
}
.about-left-container img {
    width: 100%;
}
.about-right-container { 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}
.about-right-container h3{
    font-size: 28px;
    font-weight: 300;
    color: #D5A021;
    margin-bottom: 15px;
}
.about-right-container p{
    font-size: 24px;
    font-weight: 400;
    color: #484847;
    margin-bottom: 15px;
    width: 700px;
}
.Contact-btn{
    font-size: 21px;
    font-weight: 400;
    padding: 10px;
    width: 180px;
    border-radius: 50px;
    border: solid 1px;
    border-color: #20856B;
    background-color: #fff;
    transition: background-color 0.3s;
}
.Contact-btn:hover{
    background-color: #20856B;
    border: solid 1px;
    border-color: #20856B;
    color: #fff;
    cursor: pointer;
}
.Title-text-section{
    text-align: center;
    max-width: 80%;
    position: relative;
    margin: 40px auto;
}
.bg-text-section{
    background-color: #EDF6F4;
    padding: 10px 0px ;
}
.Title-text-section h4{
    font-size: 25px;
    color: #D5A021;
    font-weight: 300;
    margin-bottom: 5px;
}
.Title-text-section h1{
    font-family: "Rosarivo", serif;
    font-size: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.Title-text-section p{
    font-size: 22px;
    margin-bottom: 20px;
    color: #484847;
}
.about-container-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto;
}
.about-left-container-2 {
    flex: 1.2;
}
.about-left-container-2 h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
}
.about-left-container-2 p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}
.about-right-container-2{
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-right-container-2 img {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.progress-container {
    width: 100%;
    max-width: 700px;
}
.progress-item {
    margin-bottom: 20px;
    position: relative;
}
.label {
    font-size: 20px;
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
}
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #5C5C5C;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.progress-fill {
    height: 100%;
    width: 0;
    background-color: #D5A021;
    transition: width 1.5s ease-in-out;
}
.percentage {
    position: absolute;
    top: -5px;
    right: 0;
    font-weight: 400;
    font-size: 18px;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
.container {
	margin: 50px auto;
	max-width: 1300px;
	max-height: 100vh;
	background-color: white;
}
.empty{
    height: 100px;
}

/* Useful Classes */
.xy-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.transition {
	transition: all 350ms ease-in-out;
}

.r-3-2 {
	width: 100%;
	padding-bottom: 66.667%;
	background-color: #ddd;
}

.image-holder {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Main Styles */
.gallery-wrapper {
	position: relative;
	overflow: hidden;
}

.gallery {
	position: relative;
	white-space: nowrap;
	font-size: 0;
}

.item-wrapper {
	cursor: pointer;
	width: 23%; /* arbitrary value */
	display: inline-block;
	background-color: white;
}

.gallery-item { opacity: 0.5; }
.gallery-item.active { opacity: 1; }

.controls {
	font-size: 0;
	border-top: none;
}
.move-btn {
	display: inline-block;
	width: 50%;
	border: none;
  color: #ccc;
	background-color: transparent;
	padding: 0.2em 1.5em;
}
.move-btn:first-child {border-right: none;}
.move-btn.left  { cursor: w-resize; }
.move-btn.right { cursor: e-resize; }






@media(max-width: 1630px){
    .about-container-2{
        max-width: 1400px;
        margin: 50px 100px;
    }
    .about-left-container-2 {
        flex: 1.1;
    }
    .about-left-container-2 h2 {
        font-size: 42px;
    }
    .about-left-container-2 p {
        font-size: 20px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.7;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width:650px;
    }    
}

@media(max-width: 1440px){
    .banner-title{
        font-size: 55px;
    }
    .Title-text-section{
        max-width: 80%;
        margin: 80px auto;
    }
    .Title-text-section h4{
        font-size: 23px;
        margin-bottom: 5px;
    }
    .Title-text-section h1{
        font-size: 36px;
        margin-bottom: 25px;
    }
    .Title-text-section p{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .about-container {
        max-width: 1200px; 
    }
    .about-left-container img {
        width: 100%;
    }
    .about-right-container h3{
        font-size: 24px;
    }
    .about-right-container p{
        font-size: 21px;
        width: 600px;
    }
    .Contact-btn{
        font-size: 19px;
        padding: 8px;
        width: 170px;
    }
    .about-container-2{
        gap: 40px;
        max-width: 1400px;
        margin: 50px 100px;
    }
    .about-left-container-2 {
        flex: 1;
    }
    .about-left-container-2 h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .about-left-container-2 p {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.7;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width:610px;
    }
    .progress-item {
        margin-bottom: 12px;
    }
    .label {
        font-size: 19px;
        font-weight: 400;
        margin-bottom: 5px;
    } 
    .progress-bar {
        width: 100%;
        height: 8px;
        background-color: #5C5C5C;
    } 
    .progress-fill {
        height: 100%;
        width: 0;
    }  
    .percentage {
        position: absolute;
        top: -5px;
        right: 0;
        font-weight: 400;
        font-size: 18px;
    }   
}

@media(max-width: 1250px){
    .banner-title{
        font-size: 45px;
    }
    .Title-text-section{
        max-width: 80%;
        margin: 70px auto;
    }
    .Title-text-section h4{
        font-size: 21px;
        margin-bottom: 7px;
    }
    .Title-text-section h1{
        font-size: 33px;
        margin-bottom: 25px;
    }
    .Title-text-section p{
        font-size: 17px;
        margin-bottom: 20px;
    }
    .about-container {
        gap: 45px;
        padding: 50px;
        max-width: 1200px; 
        margin-bottom: 25px;
    }
    .about-left-container img {
        width: 100%;
    }
    .about-right-container h3{
        font-size: 20px;
    }
    .about-right-container p{
        font-size: 17px;
        font-weight: 400;
        width: 550px;
    }
    .Contact-btn{
        font-size: 16px;
        padding: 6px;
        width: 155px;
    }
    .about-container-2{
        gap: 40px;
        max-width: 1400px;
        margin: 50px 100px;
    }
    .about-left-container-2 {
        flex: 1;
    }
    .about-left-container-2 h2 {
        font-size: 35px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .about-left-container-2 p {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.8;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width:460px;
    }
    .progress-item {
        margin-bottom: 10px;
    }
    .label {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .progress-bar {
        width: 100%;
        height: 7px;
    }
    .percentage {
        top: 0px;
        font-size: 16px;
    }
}

@media(max-width: 1024px){
    .banner-title{
      font-size: 38px;
    }
    .Title-text-section{
        max-width: 85%;
        margin: 60px auto;
    }
    .Title-text-section h4{
        font-size: 19px;
        margin-bottom: 7px;
    }
    .Title-text-section h1{
        font-size: 28px;
        margin-bottom: 25px;
    }
    .Title-text-section p{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .about-container {
        gap: 50px;
        padding: 50px;
        max-width: 800px; 
        margin-bottom: 25px;
    }
    .about-left-container img {
        width: 100%;
    }
    .about-right-container h3{
        font-size: 17px;
        margin-bottom: 5px;
    }
    .about-right-container p{
        font-size: 13px;
        font-weight: 400;
        width:330px;
    }
    .Contact-btn{
        font-size: 13px;
        padding: 5px;
        width: 140px;
    }
    .about-container-2{
        gap: 40px;
        max-width: 900px;
        margin: 50px 60px;
    }
    .about-left-container-2 {
        flex: 1.2;
    }
    .about-left-container-2 h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .about-left-container-2 p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.9;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width:460px;
    }
    .progress-item {
        margin-bottom: 8px;
    }
    .label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .progress-bar {
        width: 100%;
        height: 7px;
    }
    .percentage {
        top: 0px;
        font-size: 14px;
    }
}

@media(max-width: 768px){
    .banner-title{
        font-size: 30px;
    }
    .Title-text-section{
        max-width: 85%;
        margin: 35px auto;
    }
    .Title-text-section h4{
        font-size: 17px;
        margin-bottom: 7px;
    }
    .Title-text-section h1{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .Title-text-section p{
        font-size: 11px;
        margin-bottom: 15px;
    }
    .about-container {
        gap: 20px;
        padding: 35px;
        max-width: 550px; 
        margin-bottom: 25px;
    }
    .about-left-container img {
        width: 100%;
    }
    .about-right-container h3{
        font-size: 12px;
        margin-bottom: 5px;
    }
    .about-right-container p{
        font-size: 10px;
        font-weight: 400;
        width:200px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .Contact-btn{
        font-size: 9px;
        padding: 4px;
        width: 100px;
    }
    .about-container-2{
        display: block;
        max-width: 1400px;
        margin: 50px 80px;
        max-width: 1400px;
        text-align: center;
    }
    .about-left-container-2 {
        flex: 1;
    }
    .about-left-container-2 h2 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .about-left-container-2 p {
        font-size: 14px;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.8;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width: 100%;
        margin: 0px auto 45px;
        text-align: left;
    }
    .progress-item {
        margin-bottom: 12px;
    }
    .label {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .progress-bar {
        width: 100%;
        height: 7px;
    }
    .percentage {
        top: 0px;
        font-size: 16px;
    }
}

@media(max-width: 500px){
    .Aboutus-banner img{
        width: 150%;
    }
    .banner-title{
        font-size: 30px;
    }
    .Title-text-section{
        max-width: 85%;
        margin: 25px auto;
    }
    .Title-text-section h4{
        font-size: 14px;
        margin-bottom: 7px;
    }
    .Title-text-section h1{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .Title-text-section p{
        font-size: 9px;
        margin-bottom: 10px;
    }
    .about-container {
        display: block;
        text-align: center;
        align-items: center;
        gap: 20px;
        padding: 35px;
        max-width: 550px; 
        margin-bottom: 25px;
    }
    .about-left-container img {
        width: 90%;
    }
    .about-right-container h3{
        font-size: 13px;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    .about-right-container{
        align-items: center;
    }
    .about-right-container p{
        font-size: 11px;
        font-weight: 400;
        width: auto;
        max-width:400px;
        line-height: 14px;
        margin-bottom: 15px;
    }
    .Contact-btn{
        font-size: 10px;
        padding: 5px;
        width: 100px;
        color: black;
    }
    .about-container-2{
        display: block;
        max-width: 1400px;
        margin: 50px 30px;
        max-width: 1400px;
        text-align: left;
    }
    .about-left-container-2 {
        flex: 1;
    }
    .about-left-container-2 h2 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .about-left-container-2 p {
        font-size: 14px;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .about-right-container-2{
        flex: 0.8;
    }
    .about-right-container-2 img {
        width: 100%;
        max-width: 450px;
    }
    .progress-container {
        width: 100%;
        max-width: 100%;
        margin: 0px auto 45px;
        text-align: left;
    }
    .progress-item {
        margin-bottom: 12px;
    }
    .label {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .progress-bar {
        width: 100%;
        height: 7px;
    }
    .percentage {
        top: 0px;
        font-size: 16px;
    }
}
