/********** Template CSS **********/
:root {
    --primary: #003d55;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

@font-face {
    font-family: Metropolis;
    src: url(../fonts/metropolis.regular.otf);
}

h1, h2, h3, h4, h5, h6{
    font-family: Metropolis;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 22px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF !important;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-image: url('../img/Agriculture.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    /*background: rgba(0, 0, 0, .7);*/
    height:100vh;
    display:flex;
    justify-content:center;
    flex-direction:column;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/agri-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item{
        background-color: #fff;
        padding: 10px;
        border-radius: 20px;
        color:#000;
    img{
        clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
        /* border-bottom: 1px solid #000; */
        padding-bottom: 15px;
    }

    b{
        color: #003d55;
    }
}


.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/agri-banner.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer img{
        max-width: 100px;
    margin-bottom: 15px;
}

.navbar-brand .img-logo{
    max-width: 280px;
    top: -28px;
    position: relative;
}

.sticky-top.scroled .navbar-brand .img-logo{
    max-width: 200px;
    top: 0px;
    position: relative;
}

/* .btn-se{
    display: flex;
    gap:20px;

    a{
        width: 50%;
    }
} */

.bt-m-1{
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    box-shadow: 1px 1px 4px #00000020;
    border-radius: 30px;

    p{
        margin: 0px;
        padding: 15px 20px 15px 0px;
        color:#0B2154;
        font-weight: 500;
    }
    i{
        border-radius: 50%;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px dashed #000;
    }

}

.bor-b{
    border-bottom: 1px dotted #adadad;
}

.navbar{
    /*box-shadow: 0px 4px 4px #00000020;*/
}

.bg-nav1{
    background-color: #003d55;
    border-radius: 0px 0px 60px 0px;
    position: relative;
}

.bg-nav1::before {
    content: "";
    display: block;
    width: 58px;
    height: 58px;
    position: absolute;
    top: -4px;
    left: -53px;
    box-shadow: #003d55 28px 28px 0px 0px;
    transform: rotate(-115deg);
    z-index: 1;
    border-radius: 50%;

}

.bor-r{
    border-right: 1px dashed #fff;
}

.bg-nav{
    background: RGBA(48, 48, 48, 0.8);
background: linear-gradient(0deg, rgb(48 48 48 / 0%) 0%, rgb(0 0 0) 100%);
    /*background-color: #ffffff00;*/
        position: absolute;
    width: 100%;
    z-index: 99;
    top:0;
    left:0;
        padding-bottom: 50px;
}
.text-shadow{
    text-shadow:2px 2px 6px #00000040;
}
.btn-1{
    background-color: transparent;
    border: 1px solid #fff;
    color:#fff;
    padding: 8px 18px;
}

.color-1{
    color:#f8f1c8;
}

.text-justify{
    text-align: justify;
}

.afp{
    position: relative;
}

.afp::after{
    content: '+';
    position: relative;
}
.my-h::after{
    content:'';
height:2px;
width:50px;
background:#1a2154;
margin:10px 0;
display:block;
position:relative;
margin-bottom:15px;
}
.my-h-center{
     line-height:1;
}
.my-h-center::after{
    content:'';
height:2px;
width:50px;
background:#1a2154;
margin:10px auto;
display:block;
position:relative;
margin-bottom:15px;
line-height:1;
}




 .my-h-1::after{
    content:'';
height:2px;
width:50px;
background:#fff;
margin:10px 0;
display:block;
position:relative;
margin-bottom:15px;
}
.my-h-1-center{
     line-height:1;
}
.my-h-1-center::after{
    content:'';
height:2px;
width:50px;
background:#fff;
margin:10px auto;
display:block;
position:relative;
margin-bottom:15px;
line-height:1;
}

.wh-us{
    background:#003d55;
    padding: 0px;
    border-radius:20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 1px 1px 6px #00000020;
    position: relative;

    .con{
        padding:60px 20px 20px 20px;
        position: absolute;
        bottom:0px;
        background: RGBA(48, 48, 48, 0.8);
background: linear-gradient(180deg,rgba(48, 48, 48, 0) 0%, rgba(0, 61, 85, 0.85) 100%);
        
        h5{
            color:#fff;
        }

        h5::after{
            content:'';
        height:2px;
        width:50px;
        background:#fff;
        margin:10px 0;
        display:block;
        position:relative;
        margin-bottom:8px;
        }

        p{
            color: #fff;
            margin: 0px;
        }
    }
}

.borr{
    border-right:1px solid var(--secondary);
    padding-right: 20px;
}

.programebg{
    background: url('../img/programe-bg.jpg');
    padding-block: 40px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #f2f2f2;
    overflow: hidden;
}

.vimi{

    .conn{

        img{
            max-width: 40px;
        }

    h3{
        color:#fff;
        font-weight:500;
    }
    p{
        color: #fff;
        text-align: justify;
    }
}
}

.logo-carousel{

    .logo-item{
        box-shadow: 2px 2px 6px #00000020;
        margin: 10px;
        border-radius: 20px;
        overflow: hidden;
        padding: 20px;
    }
}

.bg-muu{
    background: url('../img/bg-muu.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.testimonial-item{
    padding-top: 60px;
    position: relative;
    .testimonial-text{
        border-radius: 20px;
     p{
        text-align: justify;
    }
    }

    img{
        border: 4px double var(--primary);
        width: 120px !important;
        height: 120px;
        display: inline-block;
    }
}

.testimonial-item:after{
    content: '';
    background: url('../img/quoto.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: 0px;
    left: 25%;
    transform: translateX(-50%);
    width: 75px;
    height: 150px;
    opacity: 0.1;
    z-index: -1;
}

.gallery{
    img{
        height:100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 2px 2px 6px #00000020;
    }
}
.bol{
    border-left: 1px dashed var(--primary);
    margin-left: 12px;

    p{
        margin:0px;
    }
}

.padding-top-80{
    padding-top:80px;
    padding-bottom:80px;
}
.intro-c{
    h2{
        color:#003d55;
    
        }
        
        p{
            color:#000;
        }
        
        h5{
             color:#003d55;
        }
}




.intro-t h5{
     color:#003d55;
}
.intro-t i{
    margin-right:10px;
   color:#003d55;
}

.intro-t {
    margin-top:20px;
}
.intro-t p{
    color:#000;
}

.icon-hp{
            align-items: center;
            box-shadow: 2px 2px 8px #00000030;
            border-radius: 10px;
            padding: 15px;
            height: 100%;
            background: #fff;
}
.icon-hp p{
    margin:0;
}

.padding-bottom-80{
   padding-bottom: 80px;
    background: #f2f2f2;
    padding-top: 50px;
}


.icon-hp i{
    margin-right:10px;
   color:#003d55;
}

.padding-bottom-80 h2{
  color:#003d55;
  text-align:center;
}


.ga-ga-img img{
                
                border-radius: 80px 0px 80px 0px;
}





 .ab-sec{
        img{
        border-radius:0 0 50px 0px;
        /*border-radius:0 0 0px 50px;*/
  /*       -webkit-transform: scaleX(-1);*/
  /*transform: scaleX(-1);*/
    }
    }
    .sec2{
    padding: 2% 0!important;
}
.sec2 h2{
    text-align: center;
    font-size: 3em;
    line-height: 1.5em;
    font-weight: 300;
}
.sec2 h2:before {
    content: '';
    position: relative;
    background: transparent linear-gradient(270deg, #FFCC2900 0%, #FFCC29 49%, #FFCC2900 100%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    height: 4px;
    display: block;
    width: 100%;
}
.sec2 h2:after {
    content: '';
    position: relative;
    background: transparent linear-gradient(270deg, #FFCC2900 0%, #FFCC29 49%, #FFCC2900 100%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    height: 4px;
    display: block;
    width: 100%;
}



.sec-booo:before {
    content: '';
    position: relative;
    background: transparent linear-gradient(270deg, #FFCC2900 0%, #FFCC29 49%, #FFCC2900 100%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    height: 4px;
    display: block;
    width: 100%;
}
.sec-booo:after {
    content: '';
    position: relative;
    background: transparent linear-gradient(270deg, #FFCC2900 0%, #FFCC29 49%, #FFCC2900 100%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    height: 4px;
    display: block;
    width: 100%;
}

.course-bg{
    background:url('../img/co-bg-2.jpg');
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    
    .course-bg-col{
    background:transparent;
    padding-block:100px 50px;
    

    
    .co-ov{
    clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
    background:#ffffffbb;
    text-align:center;
    padding:20px;
    height:100%;
    box-shadow:inset 0px 0px 6px 0px #00000050;
    
    img{ 
    max-width: 70px;
                margin-bottom: 15px;
                filter: contrast(0.1);
}
    
    p{
    margin:0px;
    color:#000;
}
    
}

    .co-ovv{
    clip-path:polygon(9% 0, 91% 0, 100% 20%, 100% 80%, 91% 100%, 9% 100%, 0 80%, 0 20%) !important;
}
    
}
}
.image-content{
       text-align: justify;
    border-radius: 20px 90px 0 0;
    padding: 8px 10px 12px 12px;
    box-shadow: 2px 2px 8px #00000030;
    height: 100%;
    position: relative;
}
.image-content img{
    border-radius: 20px 90px 0 0;
}
.image-content:hover{
  
    
}


.image-content h4{
     color:#003d55;
     margin-top:20px;
}

.dash-border{
    display:block;
    width:100%;
    height:1px;
    border:1px dashed #fff;
    margin-block:30px;
}

.wh-gran{
    background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0.1135884831460674) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.1051615168539326) 100%);
text-align:center;
display:block;
padding:10px;
}

.agri-bg{
    background:url('../img/agri-bg.webp');
     background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    border-radius:0 0 80px 80px;
    overflow:hidden;
    
    .agri-bg-col{
    background:#00000090;
    padding-block:70px;
    
    .bor-r{
    border-right:1px dashed #fff;
}
 
 .obje{
     display:flex;
     align-items: center;
            gap: 8px;
                        padding: 10px;
            box-shadow: 1px 1px 5px #00000060;
            backdrop-filter: blur(2px);
            background: #ffffff10;
            border-radius: 10px;
     
    img{
    max-width:60px;
    
 }
    h6{
    color:#fff ;
    font-weight:400;
    border-left:1px dashed #fff;
    padding-left:8px;
}

}
    
}
}

.tentt{
    text-align:center;
    padding:20px;
    border:1px solid #eee;
    border-radius:20px;
    transition:.5s all;

    
    img{
    margin-bottom:15px;
    max-width:150px !important;
}
}

.tentt:hover{
    border:1px solid #003d55;
    box-shadow:1px 1px 6px #00000030;
}

.bgg{
    background:url('../img/bgg.jpg');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

@media(max-width:992px){
    .navbar-brand .img-logo {
    max-width: 200px;
    top: 0px;
    position: relative;
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: #fff;
    background:#fff;
    border-radius: 10px;
}
.page-header{
    background-image: url('../img/agri-bg-mob.jpg') !important;
}
.page-header-inner{
    height:80vh;
}

.sec2 h2{
        font-size: 24px !important;
}
.course-bg{
    max-width:100vw;
    overflow: hidden;
}

}

/*.image-content h4:before {*/
/*    content: "";*/
/*    background: #0b7c9e;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    border-radius: 5px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;}*/
