@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");
/* Custom color */

:root {
    --dark-green: #157839;
    --green: #119b48;
    --red: #ed3337;
    --black: #373435;
    --orange: #f68b1f;
    --lite-green: #aeca36;
    --lite-orange: #fff2f0;
    --white: #fff;
}


/* common css */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem !important;
    border: 0;
    margin: 0;
    padding: 0;
    top: 0 !important;
}

body,
p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.6rem;
}

.common-para {
    text-align: justify;
}

a:link,
a:visited {
    text-decoration: none;
}

a {
    color: inherit;
    transition: .2s ease;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

section {
    overflow: hidden;
}

label {
    margin-bottom: 1rem;
}

input,
select {
    height: 4rem;
    font-size: 1.6rem !important;
}

textarea {
    font-size: 1.6rem !important;
}

label {
    font-weight: 600;
}


/*back to up button section*/

.go-top {
    display: none;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    width: 3.5rem;
    height: 4.4rem;
    border-radius: .2rem;
    background: var(--dark-green);
    border: .2rem solid var(--dark-green);
    color: var(--dark-green);
    opacity: 1 !important;
}

.go-top i:before {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800 !important;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol,
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

ul li {
    line-height: 28px;
}


/* common css */

.section-title {
    margin-bottom: 1.5rem;
}

ul.form-buttons {
    position: absolute;
    z-index: 999;
    right: 4rem;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

ul.form-buttons li {
    padding: 0 .7rem;
}

ul.form-buttons li a {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: var(--green);
    position: relative;
    padding: 1rem;
    font-weight: 600;
    line-height: 2.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
}

ul.form-buttons li a i {
    font-size: 1.8rem;
    line-height: 0;
}

ul.form-buttons li.white a {
    background-color: var(--white);
    color: #212529;
    box-shadow: 0 0 1.5rem -.5rem #c5c5c5;
    -webkit-box-shadow: 0 0 1.5rem -.5rem #c5c5c5;
}

ul.form-buttons li.white a i {
    color: var(--green);
}

.heading {
    font-size: 2.5rem;
    line-height: 3.4rem;
}

#our-management-section h4 {
    font-size: 1.8rem;
    margin-top: 1rem
}

.info-text,
.info-text p {
    font-size: 1.5rem;
}

.info-text span {
    font-size: 1.8rem;
}

/* custom css start */
.fixed-tab-1 {
    background-color: var(--white);
    padding: 0.5rem 1rem;
    color: var(--dark-green);
    text-decoration: none;
    top: 11.4rem;
    right: 1rem;
    z-index: 9999;
    border-radius: 0.5rem;
}

/* animation code here */

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* Firefox */

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* Webkit */

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* IE */

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* Opera */

.fixed-tab-1 {
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-animation: blink normal 1.5s infinite ease-in-out;
    /* Firefox */
    -webkit-animation: blink normal 1.5s infinite ease-in-out;
    /* Webkit */
    -ms-animation: blink normal 1.5s infinite ease-in-out;
    /* IE */
    animation: blink normal 1.5s infinite ease-in-out;
    /* Opera */
}

.fixed-tab-1:hover {
    animation: none;
}

/* header */

header {
    background-color: var(--dark-green) !important;
}


/* header top */

.header-top {
    background: #ffffff none repeat scroll 0 0;
    /* line-height: 40px; */
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ebebeb;
}

.top-social ul li {
    /* float: left; */
    display: inline-block;
    padding: 0 7.5px;
}

.top-social ul li:first-child {
    padding-left: 0;
}

.top-social ul li a {
    color: #444444;
}

.call-to-action ul li {
    display: inline-block;
}

.call-to-action ul li a {
    padding: 0 1rem;
    color: #444444;
}

.call-to-action ul li a i {
    color: red;
}


/* main-header */

#nav-menu .nav-item {
    border-bottom: 2px solid transparent;
    margin: 0 .5rem 0 .5rem;
}

#nav-menu .nav-item:hover {
    border-bottom: 2px solid var(--white);
}

#nav-menu .dropdown-toggle::after {
    display: none;
}

#nav-menu .nav-link i {
    font-size: 1.2rem;
}

#nav-menu .nav-link i::before {
    font-weight: bold !important;
}

a.dropdown-item {
    font-size: 1.4rem;
}

a.dropdown-item:hover {
    background-color: var(--lite-orange);
}

/* carousel */
.carousel-control-next,
.carousel-control-prev {
    top: 46%;
    bottom: 46%;
    background-color: var(--black) !important;
    width: 3%;
    padding: 0;
    border-radius: 50%;
    height: 4rem;
}

/* about us area */

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title h2 span {
    color: var(--red);
}


/* broucher download section */

.broucher-card {
    padding: 3rem 2rem;
}

.broucher-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
}

.broucher-btn {
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--dark-green);
    padding: .5rem 1.5rem;
    border-radius: .5rem;
}

.broucher-btn:hover {
    color: var(--white);
    background-color: var(--green);
}


/* end */


/* fact */

.fact .counter-box span.counter {
    font-size: 3rem;
    font-weight: 500;
}

.fact .counter-box i {
    font-size: 3rem;
    color: var(--white);
}

.acheivment-box {
    background: #fff;
    margin-left: -5%;
    height: 100%;
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acheivment-box p {
    font-size: 2.2rem;
    font-weight: bold;
}

.acheivment-box span {
    display: block;
    color: var(--dark-green);
    font-size: 2.2rem;
    font-weight: bold;
}


/* expo profile */

section .col-lg-4:nth-child(2n) .expo-box {
    background-color: var(--green);
}

section .expo-box {
    background-color: var(--dark-green);
    border-radius: 34px;
    min-height: 100%;
    position: relative;
    padding: 4rem 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    cursor: pointer;
}

section .expo-box:before {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    content: '';
    border: 5px solid #f9f9f5;
    border-radius: 29px;
}

.view-btn {
    border: .2rem solid var(--dark-green);
    color: var(--dark-green);
    padding: 1rem 3rem;
    border-radius: 1rem;
}

.view-btn:hover {
    background-color: var(--dark-green);
    border: .2rem solid var(--dark-green);
    color: var(--white);
    transition: 1s;
}

/*  */

.title-area {
    height: 100%;
    background: rgb(123, 187, 72);
    background: linear-gradient(90deg, rgba(123, 187, 72, 1) 0%, rgba(81, 188, 186, 1) 50%, rgba(147, 201, 150, 1) 100%);
    overflow: hidden;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

section.pgroup-wrap .item {
    background: #f2f2f2;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

section.pgroup-wrap .item:before {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-box-shadow: inset -2px -120px 50px -30px rgb(0 0 0 / 80%);
    box-shadow: inset -2px -120px 50px -30px rgb(0 0 0 / 80%);
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

section.pgroup-wrap .item p {
    position: absolute;
    z-index: 999;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: rgb(0 0 0 / 40%) 0px 4px 5px;
}

section.pgroup-wrap a {
    display: block;
    position: relative;
    z-index: 99;
}


/* footer */
.footer-top {
    background-color: var(--lite-green) !important;
    /* background: url(../img/banners/footer.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.widget-contact-content {
    background-color: var(--white);
    /* padding: 1rem 2rem; */
}

.widget-contact-content .icon {
    width: 6rem;
    height: 6rem;
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.footer-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-bottom {
    background: url(../img/footer-image-2.png) repeat-x center bottom;
    margin-top: 10px;
    padding-bottom: 15px;
    padding: 30px 0px;
}

.vl {
    border-left: .2rem solid #eee;
    height: 100%;
    left: 50%;
    margin-left: -3px;
    top: 0;
}

.fa-ul li {
    display: inline-block;
    width: 49.5%;
}

.logos .owl-nav {
    position: absolute;
    top: -6rem;
    right: 0;
    display: flex !important;
    justify-content: space-between;
    width: 7%;
    border-radius: 0.5rem;
}

.logos .owl-carousel .owl-dot,
.logos .owl-carousel .owl-nav .owl-next,
.logos .owl-carousel .owl-nav .owl-prev {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    background: var(--black);
    padding: 0.5rem;
    border-radius: 0.5rem;
}


/* inner pages css start */
.section-bg {
    background: url(../img/banners/section-bg-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-bg-2 {
    background: url(../img/banners/section-bg-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bg-img {
    background: url(../img/banners/bg.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
}

.bg-img {
    background: url(../img/banners/bg.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
}

.form-bg {
    background: url(../img/banners/section-bg-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.from-bg-img {
    /* background: url(../img/banners/registration.png); */
    background: url(../img/banners/bg.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
}

.fact {
    /* background: url(../img/banners/fact.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-banner {
    background: url(../img/banners/about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
    display: flex;
    align-items: center;
    border-top: .5rem solid var(--lite-green);
}

.inner-pages h2 {
    font-size: 4rem;
    /* text-shadow: 1px 1px 2px black; */
    text-shadow: rgb(0 0 0 / 40%) 0px 4px 5px;
}

.inner-page-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.inner-page-heading span {
    color: var(--red);
}

.small-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--red);
    font-weight: 600;
}

.ul-list {
    margin-top: 1rem;
}

.ul-list li {
    display: block;
    position: relative;
    padding: 0 0 0 2.5rem;
}

.ul-list li:hover {
    margin-left: 1rem;
    transition-duration: .9s;
    ;
}

.ul-list li::before {
    position: absolute;
    content: "\F269";
    top: 0;
    left: 0;
    font-family: 'bootstrap-icons' !important;
    color: var(--orange);
    font-size: 2rem;
}

.marketing {
    /* background: url(../img/banners/marketing.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
    display: flex;
    align-items: center;
    border-top: .5rem solid var(--lite-green);
}

.sponsorship {
    /* background: url(../img/banners/sponsorship.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20rem;
    display: flex;
    align-items: center;
    border-top: .5rem solid var(--lite-green);
}

/* form */
.submit-btn {
    padding: 0.5rem 4rem;
    color: var(--white) !important;
    background: var(--green);
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 800;
    font-family: 'Catamaran', sans-serif;
    border-radius: 5rem;
    box-shadow: -.1rem .3rem 0rem #5b5a5a;
}

.submit-btn:hover {
    background-color: var(--dark-green);
    box-shadow: -.1rem .3rem .5rem #5b5a5a;
}

/* ---------------------------------- */
.promotion {
    background-image: url('../img/banners/section-bg-3.jpg');
    background-position: center;
    background-size: auto;
}

.marketing-box {
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: var(--white);
}

.marketing-box img {
    width: 10rem;
}

.marketing-box h3 {
    width: 100%;
    display: block;
    font-weight: 700;
    color: #333333;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.marketing-box p {
    color: #878787;
    font-size: 1.2rem;
}

.marketing-box:hover {
    background-color: var(--lite-orange);
    transition: .10s;
}

/* contact */
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 1.5rem rgb(214 219 216 / 50%);
    padding: 3rem;
    border-radius: 2rem;
    height: 100%;
}

.contact .info-box i {
    font-size: 4rem;
    color: var(--red);
    border-radius: 50%;
    padding: 0.8rem;
    /* border: 2px dotted #F5A0A0; */
}

.contact .info-box h3 {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    margin: 10px 0;
}

.contact-submit {
    background-color: var(--green);
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    color: var(--white);
    border-radius: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-submit:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

/*  */
.logos .item {
    padding: 0.5rem;
}

.logos .display-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15rem;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 1px 1px 5px #c1c1c1;
    background-color: var(--white);
}

.logos .display-box img {
    width: 14rem;
}

/* whatsaap button */
.share-box {
    position: fixed;
    bottom: .1rem;
    z-index: 999;
    left: .5rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.share-box a {
    background: #25D366;
    border: 0.1rem solid var(--lite-orange);
    color: var(--white);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    
    justify-content: center;
    align-items: center;
}

.share-box a i {
 
 
 
   font-size: 3rem;
}
img.desktop{
    object-fit:cover;
    height: 100%;
    width: 100%;
}
.carousel-inner{
     height: 40rem;
}
.carousel-item{
    height: 40rem;
    overflow:hidden;
}