@import url('https://fonts.googleapis.com/css2?family=Kalam&family=Poppins&family=Kadwa&family=Kantumruy&display=swap');
* {
    font: inherit;
    margin: 0;
    padding: 0;
    outline: 0;
}
body {
    padding: 0;
    margin: 0;
    outline: 0;
}
.container1 {
    max-width: 90%;
    margin: auto;
}
.container100 {
    max-width: 90%;
    margin: auto;
}
.allNavbarItems {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar {
    background-color: rgba(218, 155, 65);
    width: 100%;
    z-index: 1000;
}
.navBarList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 0;
}
.navBarList li {
    list-style-type: none;
}
.navBarList a {
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    font-family: 'Kantumruy', sans-serif;
    position: relative;
}
.navBarList a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 4px solid rgb(255, 255, 255);
    transition: .5s;
}
.navBarList a:hover:after {
    width: 100%;
}
.input-container {
    position: relative;
    display: inline-block;
}
.inputOfNavbar {
    padding: 15px;
    width: 300px;
    border-radius: 20px;
    border: 0;
    font-size: 18px;
    background: rgba(217,217,217,0.55);
}
.btnInput {
    position: absolute;
    top: 0;
    right: 1.25rem;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
}




.slider-item1 img {
    width: 100%;
    height: 90vh;
}
.sliderList {
    display: block;
    height: 90vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    
}
.slider-item1 {
    position: relative;
    opacity: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: 1s;
}
.btn-prev,.btn-next {
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border: #fff;
}

.btn-prev {
    left: 5%; 
}

.btn-next {
    right: 5%; 
}
.active {
    opacity: 1;
}
.TextSlide {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1000;
    padding-bottom: 50px;
    font-family: 'Kalam', cursive;
    width: 40%;
}
.TextSlide h1 {
    font-size: 100px;
    text-align: center;
}
.TextSlide p {
    font-size: 32px;
    padding-top: 10px;
    text-align: center;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.btn-prev .material-symbols-outlined,
.btn-next .material-symbols-outlined {
    font-size: 48px;
}
.btnAboutUs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}
.btnAboutUs button {
    padding: 12px 40px;
    font-size: 30px;
    border-radius: 35px;
    background-color: rgba(218, 155, 65, 0.92);
    border: 1px solid rgba(218, 155, 65, 0.92);
    cursor: pointer;
    font-family: 'Kalam', cursive;
}


.btnAboutUs button a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
.logo img {
    width: 2250px;
    height: 170px;
    margin-bottom: 32px;
}
.logo {
    display: flex;
    justify-content: center;
}




.headings {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    padding-top: 50px;
}
.headings h2{
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 20px;
    color: #048832;
    font-family: 'Kantumruy', sans-serif;
}
.headings p {
    text-align: center;
    font-size: 18px;
    color: rgba(194, 115, 3, 0.92);
    font-family: 'Kantumruy', sans-serif;
}
.boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    flex-wrap: wrap;
}
.box {
    border: 1px solid rgb(221, 219, 219);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    width: calc(100% / 3 - 100px);
    background-color: #fff;
}
.boxImg {
    overflow: hidden;
}
.box:hover img{
    transform: scale(1.1);
    transition: all .2s ease-in-out;
}
.box img {
    border-radius: 20px 20px 0 0;
}

.boxTexts h3 {
    text-align: center;
    font-size: 18px;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
} 
.boxTexts p {
    font-size: 16px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.boxButton {
   margin: 20px 0 30px 0;
   background-color: rgba(218, 155, 65, 0.92);
   padding: 12px 30px;
   color: #fff;
   border-radius: 30px;
   border: 1px solid rgba(218, 155, 65, 0.92);
   font-family: 'Poppins', sans-serif;
   font-size: 14px;
   cursor: pointer;
   text-decoration: none;
}
.boxButton:hover {
    background-color: #fff;
    border: 1px solid rgba(218, 155, 65, 0.92);
    transition: 1s;
    color: rgba(218, 155, 65, 0.92);
}
.boxButton a {
    color: white;
    text-decoration: none;
}


.buttonDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}
.middleBox {
    margin-top: 7%;
}
.backgroundForBoxes {
    background: rgba(255,255,255,0.7) url('https://res.cloudinary.com/dwwhktofm/image/upload/v1698503387/bck1_njwtso.jpg');
    background-blend-mode: lighten;
    margin-top: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




.parallaxBack {
    height: 40vh;
    background: rgba(0,0,0,0.5) url('https://res.cloudinary.com/dwwhktofm/image/upload/v1698495639/WhatsApp_Image_2023-10-11_at_00.55.58.jpeg_epkbkl.jpg');
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 80px 0;
    position: relative;
}
.parallaxTexts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.parallaxTexts h2 {
    font-size: 64px;
    color: #fff;
}
.parallaxTexts p {
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.backForm {
    background: rgba(255,255,255,0.85) url('https://res.cloudinary.com/dwwhktofm/image/upload/v1698503397/bck2_hrc7q1.jpg');
    background-blend-mode: lighten;
    margin-top: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 50px;
    margin-bottom: 80px;
}
.formImageBox {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 50px;
}
.formImage {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.formImage img{
    width: 70%;
    height: 45vh;
    border-radius: 30px;
    filter:brightness(.5);
    cursor: pointer;
}
.formImageText {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}
.formTexts {
    width: 60%;
}
.formTexts h2 {
    font-size: 30px;
    color: rgba(194, 115, 3, 0.92);
    line-height: 1.5;
    font-family: 'Kalam', cursive;
}
.formTexts p {
    font-size: 14px;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
}
.formTexts ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.formTexts ul {
    padding-left: 15px;
}



.headingOverlay {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    font-family: 'Kantumruy', sans-serif;
}
.headingOverlay h2 {
    font-size: 32px;
    font-weight: 600;
    color: #059236;
    text-align: center;
    padding-bottom: 10px;
    font-family: 'Kantumruy', sans-serif;
}
.headingOverlay p {
    text-align: center;
    font-size: 18px;
    color: rgba(194, 115, 3, 0.92);
    font-family: 'Kantumruy', sans-serif;
}
.overlays {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.image1 {
    position: relative;
    cursor: pointer;
    width: calc(100% / 3 - 30px);
}
.imageOverlay {
    display: block;
    width: 100%;
    height: auto;
} 
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #30be61;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 1s ease;
    border-radius: 20px;
}
  
.image1:hover .overlay {
    height: 100%;
    opacity: .6;
} 

.textOverlay {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center
}
.image1 img {
    border-radius: 20px;
}


.backFooter {
    background-image: url('https://res.cloudinary.com/dwwhktofm/image/upload/v1699532810/footer_relohu.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh;
    background-blend-mode: darken;
}
.footerContent {
    width: 100%;
    height: 100%;
    background: rgba(24, 68, 41, .7);
    background-blend-mode: darken;
}
.inputFooter {
    display: flex;
    align-items: center;
}

.inputWrapper {
    position: relative;
}

.footerInput {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 0;
}

.right-arrow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center; 
    text-decoration: none;
    color: rgba(194, 115, 3, 0.92);
}
.footerHeading {
    font-size: 18px;
    color: rgba(194, 115, 3, 0.92);
    font-family: 'Kadwa', sans-serif;
    line-height: 1.5;
    padding: 20px 0;
    width: 280px;
}
.footerContent .container1 {
    height: 100%;
    display: flex;
    justify-content: center;
}
.footerSide1 {
    display: flex;
    align-items: center;
}
.footerLogo img{
    width: 78px;
    height: 95px;
    flex-shrink: 0;
}
.footerSide2 {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    color: #fff;
    padding-left: 80px;
    padding-right: 80px;
}
.footerSide2 h3 {
    font-size: 25px;
    font-family: 'Kadwa', sans-serif;
    padding-top: 50px;
}
.footerSide2 li a {
    color: #fff;
    font-family: 'Kadwa', sans-serif;
    text-decoration: none;
}
.footerSide2 li {
    margin-bottom: 8px;
}
.footerSide3 {
    color: #fff;
    font-family: 'Kadwa', sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
.footerSide3 i {
    color: rgba(194, 115, 3, 0.92);
    padding-right: 7px;
}
.footerSide3 h3 {
    font-size: 25px;
    padding-top: 50px;
    padding-bottom: 5px;
}
.footerSide3 span {
    font-size: 14px;
}
.contactFooter {
    margin-bottom: 20px;
}



