@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #6A191E;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1314px;
    }
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: #828282;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    display: inline-block;
    padding: 0.875rem 2.5em;
    border-radius: 8px;
    line-height: normal;
    transition: 0.5s ease-in-out;
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
}


/* btn css */


/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    padding: 0 0;
    display: inline-block;
    transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 10px;
    color: var(--white);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    width: 180px;
    padding: 6px 15px;
}

.navbar .drop-down li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 4px 0px;
    text-transform: none;
    color: var(--black);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 1220px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.slideOne ul {
    display: flex;
    gap: 10px;
    padding-bottom: 1rem;
}

.slideOne ul li i {
    color: #F15A24;
    font-size: 1.5rem;
}

.mainHead {
    font-size: 7.5rem;
    text-transform: uppercase;
    line-height: 1;
    color: var(--primary);
}

.mainHead span {
    font-size: 4.125rem;
    display: block;
}

.slideOne p {
    font-size: 1.375rem;
    color: var(--white);
    padding-bottom: 10px;
}

.scroll span {
    font-size: 1.375rem;
    color: var(--white);
    writing-mode: tb-rl;
    position: relative;
}

.scroll {
    position: absolute;
    bottom: 14rem;
    left: 18rem;
}

.scroll span:before {
    content: "";
    position: absolute;
    background: var(--white);
    height: 99px;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -7rem;
}


/* slider css */


/* Rector Sec Css Start */

.main {
    position: relative;
}

.main:before {
    content: "";
    position: absolute;
    background: #F7F5F2;
    width: 100%;
    height: 95%;
    top: -12rem;
    z-index: -1;
}

.rectorSec {
    padding: 2rem 0 5rem 0;
}

.rectorHead h2 span {
    color: var(--black);
}

.rectorHead {
    background: #f7f5f2;
    margin-bottom: -5rem;
    z-index: 1;
    position: relative;
    width: 96%;
}

.rectorContent {
    text-align: center;
    padding-top: 1.52rem;
}

.rectorContent h6 {
    font-size: 1.625rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.5;
}

.rectorContent p {
    width: 86%;
    margin: auto;
}

.rectorContent .btn-group {
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rectorContent .btn-group .callBtn {
    font-size: 2.25rem;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue';
}

.rectorContent .btn-group .callBtn i {
    font-size: 1.375rem;
    color: var(--primary);
}


/* Rector Sec Css End */


/* Breed Sec Css Start */

.breedSec {
    padding: 0 5rem;
}

.secHeading {
    font-size: 6.25rem;
    color: var(--primary);
}

.secHeading span {
    color: var(--black);
}

.cattleBredd {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cattleContent h3 {
    font-size: 2.5rem;
    color: var(--black);
    position: relative;
}

.cattleContent h3:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 322px;
    height: 1px;
    left: 6rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.cattleContent p {
    font-size: 1rem;
}

.cattleContent a {
    display: grid;
}

.bulls {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    text-decoration: underline !important;
}

.cattleBtn {
    border: 1px solid var(--primary);
    width: fit-content;
    color: var(--primary);
    padding: 0.875rem 2.5em;
    margin-top: 1.2rem;
    border-radius: 8px;
    background: transparent;
}

.cattleBtn:hover {
    background: var(--primary);
    color: var(--white);
}

.breedSec figure img {
    border-radius: 20px;
}

.franchisesBreed .cattleContent {
    margin: 2rem 0 0 2rem;
}

.franchisesBreed .cattleContent h3:before {
    transform: rotateZ(90deg);
    width: 141px;
    left: -2rem;
    top: -5rem;
    margin: revert;
}

.goatContent h3:before {
    left: 10rem;
}

.breedSec h2 {
    margin: 3rem 0 5rem 18rem;
}


/* Breed Sec Css End */


/* Video Sec Css Start */

.videoSec {
    padding: 8rem 0 2rem 0;
}

.videoWraps figure img {
    border-radius: 20px;
}

.videoWraps {
    position: relative;
}

.videoIcon {
    position: absolute;
    bottom: 8rem;
    right: 9rem;
}

.videoIcon i {
    background: var(--white);
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--black);
    transition: 0.5s ease-in-out;
}

.videoIcon i:hover {
    background: var(--primary);
    color: var(--white);
}


/* Video Sec Css End */


/* Blog Sec Css Start */

.blogSec {
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}

.blogContent h5 {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    z-index: 1;
}

.blogWraps {
    position: relative;
}

.blogContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 1rem;
}

.blogContent:before {
    content: "";
    position: absolute;
    background: linear-gradient(181deg, #00000000, #000000);
    width: 100%;
    height: 100%;
    border-radius: 0 0 20px 20px;
    bottom: -1rem;
}

.blogWraps figure img {
    border-radius: 20px;
    width: 100%;
}

.blogSlider {
    overflow: visible;
    width: 93%;
    margin: 1rem auto 3rem;
}

.blogSlider .swiper-button-next:after,
.blogSlider .swiper-button-prev:after {
    font-size: 1rem;
    color: #F15A24;
}

.blogSlider .swiper-button-next,
.blogSlider .swiper-button-prev {
    background: var(--white);
    width: 78px;
    height: 78px;
    border-radius: 50px;
}

.blogSlider .swiper-button-prev {
    left: 11rem;
}

.blogSlider .swiper-button-next {
    right: 11rem;
}

.mapSec iframe {
    filter: grayscale(1);
}


/* Blog Sec Css End */


/* Contact Sec Css Start */

.contactSec {
    background: url(../images/contactBg.webp) bottom/cover no-repeat;
    padding: 4rem 0 2rem 0;
}

.contactSec h2 {
    line-height: 0.9;
}

.contactForm .form-group label {
    color: var(--white);
}

.contactForm .form-group .form-control {
    border: unset;
    border-bottom: 1px solid var(--white);
    border-radius: unset;
    background: transparent;
    color: var(--white);
}

.contactForm .form-group {
    margin-bottom: 1.5rem;
}

.contactForm .themeBtn {
    border: unset;
    background: var(--black);
}


/* Contact Sec Css End */


/* Footer Css Start */

footer {
    padding-top: 4rem;
}

.links li a {
    text-transform: uppercase;
    color: var(--black);
}

.links li+li {
    padding-top: 1.2rem;
}

.contactLinks li a {
    font-size: 1.25rem;
    color: var(--black);
}

.contactLinks li a span {
    font-weight: 600;
    margin-right: 5px;
}

.contactLinks li:nth-child(1) a {
    font-size: 1.375rem;
    color: var(--primary);
    font-family: 'Bebas Neue';
}

.contactLinks li:nth-child(1) a span {
    font-family: 'Poppins';
    font-size: 1.25rem;
    color: var(--black);
}

.copyRight p {
    color: var(--black);
    font-size: 1rem;
    margin: 0;
}

.socialLinks {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.socialLinks li a {
    color: rgb(0 0 0 / 30%);
    font-size: 1.375rem;
}

.copyRight {
    border-top: 1px solid #DBDBDB;
    margin-top: 3rem;
    padding: 1.2rem 0;
}

footer ul li a:hover {
    color: var(--primary);
}


/* Footer Css End */

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 120px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.innerBan {
    position: relative;
}

.calves-wrap {
    margin-bottom: 33px;
}

.calves-section {
    padding: 5rem 0;
}

.bulls-cntnt p {
    font-size: 1.125rem;
    color: #828282;
    line-height: 1.8;
    width: 90%;
}

section.bulls-section {
    padding: 4.5rem 0;
}

.bulls-section .mainHead span {
    color: #000;
}

.calves-section h3 {
    font-size: 100px;
}

.contact-info,
.returns-step {
    display: block;
    padding: 2rem;
}

.contact-info:hover,
.returns-step {
    background: #6A191E;
}

.contact-info span {
    font-size: 3.5rem;
    color: #fff;
}

.contact-info h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-top: 1rem;
}

.contact-info {
    background: #000;
    width: 255px;
    height: 255px;
    border-radius: 50%;
    /* border: 2px dashed #fff; */
}

.contactwrap h6 {
    color: #fff;
}

.contact-section {
    padding: 5rem 0 7rem 0;
}

.contactwrap {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactwrap::before {
    position: absolute;
    content: "";
    border: 2px dashed #707070;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    z-index: -1;
}

/* New Css Start */

.calves-wrap figure img {
    border-radius: 15px;
    height: 330px;
    width: 408px;
    object-fit: cover;
}

.calves-wrap-cont {
    text-align: center;
    margin: 1rem 0;
}

.calves-wrap-cont h5 {
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
}

/* New Css end */

.bulls-section figure img {
    border-radius: 17px;
}