@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins:wght@400;500;600;700;800;900&display=swap');
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
a {
    font-size: 16px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #222;
}
p {
    font-size: 16px;
    line-height: 24px;
    color: #868686;
    letter-spacing: 0px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #666;
}
h1, h2, h3, h4, h5, h6 {
    letter-spacing:0px;
    font-family: 'Poppins', sans-serif;
    color: #222;
}
ul, ul li {
    font-size: 15px;
    line-height: 25px;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    letter-spacing: 0px;
    color: #222;
    font-family: 'Poppins', sans-serif;
}
a, a:hover, a:focus {
    text-decoration: none;
    transition: all 0.5s;
    outline: 0;
}



/** Utility **/
.title, .title2{
    position: relative;
    margin-bottom: 15px;
}
.title{
    text-align: center;
}
.title2{
    text-align: left;
}
.title h2, .title2 h2 {
    font-size: 32px;
    font-family: 'DM Serif Display', serif;
    color: #033802;
}
.grey-bg{
    background: #f4f4f4;
}
img{
    max-width: 100%;
}



/** Heaader **/
.logo img {
    width: 100px;
}
ul.header-contact {
    text-align: right;
}
ul.header-contact li {
    list-style: none;
}
/**
header.sticky {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 15px 0 #8c8c8c;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    -ms-transition: all 0s ease;
    transition: all 0s ease;
}
**/

/** Banner **/
.carousel.slide .container {
    position: initial;
}
.slide-text {
    width: 60%;
    position: absolute;
    top: 0;
    transform: translateY(50%);
    z-index: 2;
}
.text-new {
    right: 10%;
    position: absolute;
    bottom: 30%;
    transform: translateY(50%);
    z-index: 2;
}
.slide-text > h2 {
    padding: 0;
    color: #fff;
    font-weight: bold;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    font-size: 30px;
    font-weight: 800;
}
.slide-text > h3 {
    padding: 0;
    color: #fff;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    font-size: 50px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
}
.text-new > p {
    padding: 0;
    color: #fff;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    font-size: 27px;
    line-height: 37px;
    font-weight: 500;
    font-family: 'DM Serif Display', serif;
}
.slide-text > a {
    font-size: 18px;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #fff;
    margin-top: 5px;
    display: inline-block;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    animation-delay: 1.7s;
    -webkit-animation-delay: 1.7s;
    border-radius: 50px;
}
.slide-text > a:hover {
    background: #fff;
    color: #000;
}
.carousel.slide {
    overflow: hidden;
    position: relative;
    background: #fff;
}
.carousel.slide .bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.carousel.slide img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: 0 7%;
}


/** Banner Bottom **/
.bb-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 7px -2px rgb(0 0 0 / 50%);
}
.bb-box-c {
    flex-basis: 47%;
}
section.banner-bottom {
    margin-top: -80px;
    z-index: 1;
    position: relative;
}


/** Gaallery **/
.gallery-box {
    margin: 10px 0;
    transition: .5s ease;
    position: relative;
}
.gallery-box img {
    height: auto;
    width: 100%;
}
.gallery-box:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    transition: .5s ease;
    opacity: 0;
}
.gallery-box:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border: 1px solid #fff;
    transition: .5s ease;
    opacity: 0;
}
.gallery-box:hover:before {
    opacity: 1;
    transition: .5s ease;
}
.gallery-box:hover:after {
    height: 90%;
    width: 90%;
    transition: .5s ease;
    opacity: 1;
}
.gallery-box i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .9s ease;
}
.gallery-box:hover i {
    opacity: 0.8;
    transition: .9s ease;
}
a.readmore {
    padding: 10px 25px;
    border: 1px solid #033802;
    margin-top: 5px;
    display: inline-block;
    border-radius: 50px;
    color: #033802;

    transition: .5s ease;
}
a.readmore:hover{
    background: #033802;
    color: #fff;
    transition: .5s ease;
}



/** Stallion **/
.stallion-p {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.stallion-c {
    flex-basis: 18%;
    margin: 5px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.stallion-c img {
    transition: 0.5s ease;
}
.stallion-c h5 {
    font-size: 16px;
    margin-top: 15px;
}
.stallion-c:hover img {
    transform: scale(1.1);
    transition: 0.5s ease;
}



/** Join Us **/
.joinus {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(../img/gate.jpg);
    width: 100%;
    text-align: center;
    position: relative;
    background-size: cover;
    padding: 85px 0 65px;
    display: inline-block;
    background-attachment: fixed;
}
.joinus .title h2, .joinus p {
    color: #fff;
}
.joinus p {
    margin: 40px 0 25px;
}
.joinus a.readmore {
    border-color: #fff;
    color: #fff;
}
.joinus a.readmore:hover {
    background: #fff;
    color: #222;
}



/** footer **/
footer {
    background: #033802;
    padding: 50px 0;
}
.ft-gal {
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
}
.ft-gal a {
    flex-basis: 30%;
    margin: 0 5px 5px 0;
}
footer h4.ft-title, footer p, footer a {
    color: #fff;
}
h4.ft-title:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    background: #fff;
    left: 0;
    bottom: -10px;
}
h4.ft-title {
    position: relative;
    margin-bottom: 30px;
}
footer p, .copyright p {
    margin-bottom: 0;
}

section.copyright {
    background: #222222;
}
section.copyright p {
    color: #fff;
}
footer a:hover {
    color: #ccc;
}
ul.ft-links li {
    list-style: none;
}
.bb-box p {
    margin-bottom: 0;
}



.innersec a {
    color: #0a58ca;
    font-weight: 600;
}



/** Contact **/
.s-message img {
    width: 100%;
}
.s-message {
    background: -webkit-linear-gradient(rgba(244, 244, 244, 0.6), rgba(244, 244, 244, 0.6)), url(../img/mapbg.png);
    background-size: cover;
}
.s-message input[type="text"], .s-message input[type="email"], .s-message input[type="number"], .s-message select, .s-message input[type="date"] {
    height: 50px;
    margin-bottom: 10px;
    border-radius: 0;
    border-color: #cccccc5e;
    width: 100%;
}
.s-message textarea {
    height: 100px;
    margin-bottom: 10px;
    border-radius: 0;
    border-color: #cccccc5e;
    width: 100%;
}
.s-message input[type="submit"] {
    height: 50px;
    background: #000;
    color: #fff;
    border: 0;
    width: 35%;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
}
.s-message input[type="submit"]:hover {
    background: #033802;
}
.contactfrm {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 7px -2px rgb(0 0 0 / 50%);
}






.logo span.logo-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
    color: #033802;
    padding-left: 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'sans-serif';
}
.logo {
    position: relative;
}
.social-sticky{
    position: absolute;
    right: 0;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}
.social-sticky i {
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}
.facebook-bannericon i {
    background: #3b5998;
}
.stallion-c p {
    font-size: 14px;
    margin-bottom: 0;
}
img.ft-logo {
    width: 110px;
}
footer h4{
    color: #fff;
}


.bb-box h4 {
    font-size: 20px;
    margin-top: 5px;
}
.innerstallion img {
    height: auto;
    width: 100%;
    margin-bottom: 10px;
}
.innerstallion a:hover img {
    transform: scale(1.1);
    transition: 0.5s ease;
}
.innerstallion img {
    transition: 0.5s ease;
}
.innerstallion .row .stallionsbox {
    overflow: hidden;
    position: relative;
}
.carousel.slide .carousel-indicators {
    position: absolute;
    right: unset; 
    bottom: 100px;
    left: unset;
    z-index: 2;
    display: flex;
    justify-content: start;
    padding: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    list-style: none;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
}
.innerabout ul li{
    display: inline-block;
    width: 49%;
}

header.sticky {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 15px 0 #8c8c8c;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    -ms-transition: all 0s ease;
    transition: all 0s ease;
}
.stall-inner img {
    width: 160px;
}