/* Vars */

:root {
    --headerfont: 'Publico';
    --bodyfont: "Compasse";
    --font4xl: 100px;
    --font4xllh: 140px;
    --font3xl: 72px;
    --font3xllh: 100px;
    --font2xl: 32px;
    --font2xllh: 48px;
    --fontxl: 30px;
    --fontxllh: 40px;
    --fontlg: 24px;
    --fontlglh: 36px;
    --fontmd: 18px;
    --fontmdlh: 25px;
    --fontsm: 16px;
    --fontsmlh: 22px;
    --fontxs: 14px;
    --fontxslh: 18px;
    --colorWhite: #ffffff;
    --colorLightGrey: #ececec;
    --colorDarkGrey: #8a8d8f;
    --colorJnfBlue: #002855;
    --colorOrange: #fe5000;
    --colorGreen: #12b76a;
    --colorSand: #fed095;
    --colorError: #f04438;
    --colorWarning: #fdb022;
    --colorSuccess: #12B76A;
    --colorPageBg: #f4f1ec;
    --colorBlack: #101828;
}

/* Elements */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headerfont);
    color: var(--colorJnfBlue);
}

h1 {
    font-size: var(--font4xl);
    line-height: var(--font4xllh);
}

h2 {
    font-size: var(--font3xl);
    line-height: var(--font3xllh);
}

h3 {
    font-size: var(--font2xl);
    line-height: var(--font2xllh);
}

h4 {
    font-size: var(--fontxl);
    line-height: var(--fontxllh);
}

h5 {
    font-size: var(--fontlg);
    line-height: var(--fontlglh);
}

a {
    color: var(--colorJnfBlue);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

        a:hover .material-icons-outlined {
            text-decoration: none;
        }

.font4xl {
    font-size: var(--font4xl);
    line-height: var(--font4xllh);
}

.fontH3 {
    font-size: var(--font2xl);
    line-height: var(--font2xllh);
    font-family: var(--headerfont);
}

/* Buttons */

.btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    min-width: 135px;
    text-decoration: none;
}

    .btn:hover {
        text-decoration: none;
    }

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--colorLightGrey);
    color: var(--colorDarkGrey);
    border: 0;
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    background-color: transparent;
    color: var(--colorDarkGrey);
    border-color: var(--colorDarkGrey);
}

.btn-xxl {
    padding: 24px 28px;
}

.btn-xl {
    padding: 18px 28px;
}

.btn-lg {
    padding: 16px 28px;
}

.btn-md {
    padding: 14px 28px;
}

.btn-sm {
    padding: 12px 28px;
}

.btn-primary {
    background-color: var(--colorJnfBlue);
    color: var(--colorWhite);
}

    .btn-primary:hover {
        border-color: var(--colorJnfBlue);
        background-color: var(--colorPageBg);
        color: var(--colorJnfBlue);
    }

.btn-secondary {
    border-color: var(--colorJnfBlue);
    background-color: transparent;
    color: var(--colorJnfBlue);
}

    .btn-secondary:hover {
        background-color: var(--colorJnfBlue);
        color: var(--colorWhite);
    }

.btn-orange {
    background-color: var(--colorOrange);
    color: var(--colorWhite);
}

    .btn-orange:hover {
        border-color: var(--colorOrange);
        background-color: var(--colorWhite);
        color: var(--colorOrange);
    }

.btn-icon {
    display: flex;
    align-items: center;
}

    .btn-icon .icon {
        font-size: 1rem;
    }

.btn-white-border {
    background-color: transparent;
    border: 1px solid var(--colorWhite);
    color: var(--colorWhite);
}

    .btn-white-border:hover {
        background-color: var(--colorWhite);
        color: var(--colorJnfBlue);
    }

.form-control {
    background-color: var(--colorWhite);
    border-color: var(--colorDarkGrey);
    padding: 17px 20px;
    font-size: var(--fontbodysm);
    font-weight: var(--fontbodysmlh);
    color: var(--colorDarkGrey);
}

/* Body / container */

body {
    color: var(--colorJnfBlue);
    font-size: var(--bodyfontmd);
    line-height: var(--bodyfontmdlh);
    font-family: var(--bodyfont);
    padding-top: 85px;
    background-color: var(--colorPageBg);
}

.container {
    max-width: 1600px;
    padding: 0 40px;
}

    .container.inner {
        max-width: 1234px;
    }

/* Navigation */

.header {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 99;
    background-color: white;
    top: 0;
    width: 100%;
}

.navbar {
    height: 85px;
}

    .navbar .navbar-brand {
        margin-right: 100px;
    }

        .navbar .navbar-brand img {
            width: 210px;
        }

    .navbar .nav-item {
        margin-right: 0.5rem;
        position: relative;
        align-items: center;
        display: flex;
    }

        .navbar .nav-item > .nav-link {
            font-size: var(--fontbodysm);
            line-height: var(--fontbodysmlh);
            font-weight: normal;
            color: var(--colorJnfBlue);
            position: relative;
            padding: 0;
            border-bottom: 3px solid transparent;
            align-items: center;
            display: flex;
            height: 100%;
            padding: 0 1rem;
        }

            .navbar .nav-item > .nav-link:hover {
                border-bottom: 3px solid var(--colorJnfBlue);
                text-decoration: none;
            }

.dropdown-toggle {
    display: flex;
    align-items: center;
}

    .dropdown-toggle::after {
        content: "\e313";
        font-family: "Material Icons";
        font-weight: normal;
        font-style: normal;
        font-size: 24px; /* Preferred icon size */
        display: inline-block;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        margin-top: -1px;
        border: 0;
    }

.dropdown-menu {
    min-width: 200px;
    padding: 10px;
    top: 65px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 8px 8px 0 rgba(16, 24, 40, 0.3);
    border: 1px solid var(--colorDarkGrey);
    border-radius: 12px;
    background-color: var(--colorWhite);
}

    .dropdown-menu .dropdown-item {
        padding: 12px;
        font-size: var(--fontbodysm);
        line-height: var(--fontbodysmlh);
        font-weight: bold;
        color: var(--colorBlack);
        border-radius: 8px;
    }

        .dropdown-menu .dropdown-item:hover {
            background-color: var(--colorSand);
            text-decoration: none;
        }

.navbar-nav li:hover .dropdown-menu {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
}

.search-wrap .search-btn {
    border: 0;
    background: none;
    margin-right: 80px;
}

    .search-wrap .search-btn img {
        width: 20px;
        height: 20px;
    }

.navbar-toggler {
    padding: 0;
    border: 0;
    margin-left: 70px;
}

/* Banner */

.banner-container {
    /* height: calc(100vh - 85px); */
    height: 930px;
    width: 100%;
    position: relative;
    background-size: cover;
}

.banner-video {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-info {
    background: rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20% 0 20%;
}

    .banner-info .title,
    .banner-info .subtitle {
        color: var(--colorWhite);
    }

/* Footer */

.footer {
    border-top: 1px solid var(--colorJnfBlue);
    padding-top: 72px;
    padding-bottom: 72px;
}
/*.footer a {
  text-decoration: none;
}*/

.image-info-block .info-box {
    padding-top: 30px;
    width: 764px;
    max-width: 100%;
    position: sticky;
    position: -webkit-sticky;
    height: 100%;
    top: 65px;
}

.image-info-block.rightimg .info-box {
    margin-right: 100px;
    order: 1;
}

.image-info-block .image-box {
    position: sticky;
    position: -webkit-sticky;
    height: 100%;
    top: 85px;
}

.image-info-block.rightimg .image-box {
    order: 2;
}

.image-info-block.leftimg .info-box {
    margin-left: 100px;
    order: 2;
}

.image-info-block.leftimg .image-box {
    order: 1;
}

.center-graphic .container {
    padding-bottom: 250px !important;
    background: url(../images/man-planting-image.png) right bottom no-repeat;
    background-size: 70%;
}

.center-graphic .head {
    max-width: 882px;
    text-align: center;
    margin: auto;
}

.center-graphic .text {
    max-width: 619px;
    text-align: center;
    margin: auto;
}

.full-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 1282px;
    width: 100%;
    overflow: hidden;
}

    .full-banner h2 {
        color: var(--colorWhite);
        line-height: 1.05;
    }

    .full-banner .overlay {
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .full-banner .text-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0 100px;
        color: var(--colorWhite);
    }

        .full-banner .text-box .text {
            max-width: 100%;
        }

            .full-banner .text-box .text .desc {
                max-width: 655px;
                font-size: var(--fontmd);
            }

.four-cards .card {
    border: 0;
    background: transparent;
}

.four-cards .card-img {
    position: relative;
}

    .four-cards .card-img .playbtn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }

.four-cards .card-img-top {
    border-radius: 10px;
    height: 322px;
    width: 100%;
    object-fit: cover;
}

.four-cards .card-date {
    color: var(--colorDarkGrey);
    font-size: 16px;
}

.four-cards .card-title {
    color: var(--colorJnfBlue);
}

.tractor-graphic {
    background: url(../images/tractor-graphic.png) right bottom no-repeat;
    padding-bottom: 250px !important;
}

/* Img carousel */

.carousel-wrap {
    margin: 50px 0 16px;
}

    .carousel-wrap .owlcarousel .item {
        position: relative;
    }

    .carousel-wrap .owlcarousel .carousel-info-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .carousel-wrap .owlcarousel .owl-item.active .carousel-info {
        bottom: 90px;
        opacity: 1;
    }

    .carousel-wrap .owlcarousel .carousel-info {
        position: absolute;
        bottom: 10px;
        padding: 0 100px;
        align-items: center;
        width: 100%;
        transition: 1.5s;
        -webkit-transition: 1.5s;
        opacity: 0;
        color: white;
        max-width: 60%;
    }

        .carousel-wrap .owlcarousel .carousel-info .desc {
            margin: 20px 0;
        }

        .carousel-wrap .owlcarousel .carousel-info .title {
            color: var(--colorWhite);
        }

        .carousel-wrap .owlcarousel .carousel-info a {
            flex: 0 0 140px;
        }

    .carousel-wrap .owlcarousel .owl-item {
        transition: 1.5s;
        -webkit-transition: 1.5s;
    }
    /* .owlcarousel .owl-item:not(.active){opacity: 0.2;} */
    .carousel-wrap .owlcarousel .carousel-image img {
        height: 520px;
        object-fit: cover;
    }

    .carousel-wrap .carousel-link {
        color: var(--white);
        display: flex;
        align-items: center;
    }

        .carousel-wrap .carousel-link span {
            font-size: 16px !important;
            margin-left: 8px;
            float: right;
        }

            .carousel-wrap .carousel-link span:after {
                content: '';
                clear: both;
                display: table;
            }

    .carousel-wrap .rounded {
        border-radius: 10px !important;
    }

    .carousel-wrap .owl-nav {
    }

        .carousel-wrap .owl-nav .owl-prev,
        .carousel-wrap .owl-nav .owl-next {
            position: absolute;
            top: 219px;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.4) !important;
            border-radius: 100%;
            border: 1px solid var(--colorWhite) !important;
            color: var(--colorWhite) !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-wrap .owl-nav .owl-prev {
            left: 50px;
        }

        .carousel-wrap .owl-nav .owl-next {
            right: 50px;
        }

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-71 {
    margin-bottom: 71px;
}

.mb-80 {
    margin-bottom: 80px;
}

.spacer {
    height: 200px;
}

.spacer-inner {
    height: 130px;
}

.spacer-100 {
    height: 100px;
}

.pagehead .pagedesc {
    max-width: 80%;
}

.pagehead p {
    font-size: var(--fontxl);
    line-height: var(--fontxllh);
}

.infotitle:before {
    content: "/";
    color: var(--colorSuccess);
    font-weight: bold;
    margin-right: 0.75rem;
}

.pageimg img {
    height: 797px;
    object-fit: cover;
}

.contact-head {
    max-width: 796px;
    margin: auto;
}

    .contact-head .contact-detail {
        margin-top: 71px;
    }

.contactus-form {
    width: 1010px;
    max-width: 100%;
    margin: auto;
}

    .contactus-form .phone-wrap {
        border: 1px solid var(--colorDarkGrey);
        border-radius: 0.375rem;
        background-color: var(--colorWhite);
    }

        .contactus-form .phone-wrap select {
            position: relative;
            z-index: 2;
            appearance: auto;
            height: 100%;
            background-color: var(--colorLightGrey);
            color: var(--colorJnfBlue);
            font-weight: bold;
            font-family: var(--fontAgenda);
        }

        .contactus-form .phone-wrap input {
            border: 0;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            margin-left: -5px;
            position: relative;
            z-index: 1;
        }

.newsimg {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.newsinfo {
    margin-left: 113px;
}

    .newsinfo .card-date {
        font-size: var(--fontsm);
        color: var(--colorDarkGrey);
    }

.feature-news .nbadge {
    background-color: var(--colorWhite);
    padding: 10px;
    position: absolute;
    left: 28px;
    top: 28px;
    text-transform: uppercase;
}

.roof-graphic {
    text-align: right;
    border-bottom: 1px solid var(--colorDarkGrey);
    margin-top: 100px;
}

.partner-box {
    margin-bottom: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--colorDarkGrey);
}

    .partner-box .partner-img {
        margin-bottom: 35px;
    }

    .partner-box .partner-info .title {
        margin-bottom: 25px;
    }

    .partner-box .websitebtn {
        margin-top: 21px;
    }

    .partner-box:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: 0;
    }

.partner-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .partner-logos img {
        margin-right: 26px;
    }

        .partner-logos img:last-child {
            margin-right: 0;
        }

.aboutbanner {
    height: 1870px;
}

    .aboutbanner .banner-info {
        justify-content: start;
        height: 100%;
    }

        .aboutbanner .banner-info .info {
            top: -150px;
            padding: 242px 0 100px 0;
            position: sticky;
            position: -webkit-sticky;
        }

.full-banner.about {
    align-items: start;
    height: 935px;
}

    .full-banner.about .whitebox {
        background: var(--colorWhite);
        border-radius: 10px;
        padding: 75px 38px;
        display: flex;
        flex-direction: column;
        width: 530px;
        display: flex;
        justify-content: space-between;
        height: 100%;
    }

    .full-banner.about .textanimate {
        height: 0;
        overflow: hidden;
        transition: 0.4s;
        margin-top: 120px;
        margin-right:200px;
    }
    /*.full-banner.about .whitebox .info{
  height: 345px;
}*/
    .full-banner.about .imganimate {
        height: 0;
        transition: 0.4s;
        width: 518px;
        margin-top: 251px;
        overflow: hidden;
    }

    .full-banner.about .seedbox {
        height: 100%;
    }

        .full-banner.about .seedbox img {
            border: 3px solid var(--colorWhite);
            border-radius: 10px;
            width: 100%;
        }

.leadershiptitle {
    position: relative;
    padding-top: 180px;
}

    .leadershiptitle .title {
        margin-bottom: 150px;
    }

.girl-graphic {
    position: absolute;
    right: 0;
    top: 0;
}

.leadership .card {
    border: 0;
}

.leadership .card, .leadership .card-img, .leadership .card-img-top {
    border-radius: 10px !important;
}

    .leadership .card .card-body {
        padding: 35px;
        text-align: center;
    }

    .leadership .card:hover .fullbio {
        opacity: 1;
        z-index: 1;
    }

.fullbio {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--colorWhite);
    padding: 2rem 2rem 4rem 2rem;
    transition: 0.4s all;
    z-index: -1;
    height: 100%;
    border-radius: 10px;
}

    .fullbio .bio {
        overflow-y: auto;
        height: calc(100% - 60px);
    }

        .fullbio .bio h5 {
            margin-bottom: 1.5rem !important;
        }

.leadership .card-img-top {
}

.leadership .mb-80 {
    margin-bottom: 80px;
}

.leadership .smalltxt {
    color: var(--colorDarkGrey);
}

/* Accessibility */

.skipsec a {
    position: fixed;
    left: -9999px;
    top: 0;
    min-width: 100px;
    z-index: 1000;
    background: #0175a0;
    color: #fff;
    padding: 7px 15px;
    display: block
}

    .skipsec a:focus {
        left: 15px
    }

/* Signup form */
.custom-form-field label, .custom-checkbox legend, .custom-checkbox strong {
    display: none;
}

.custom-form-field input, .custom-form-field select, .custom-form-field textarea {
    background-color: var(--colorWhite);
    border-color: var(--colorDarkGrey);
    padding: 17px 20px;
    font-size: var(--fontbodysm);
    font-weight: var(--fontbodysmlh);
    color: var(--colorDarkGrey);
    border-radius: var(--bs-border-radius);
    width: 100%;
}

    .custom-form-field input:focus, .custom-form-field select:focus, .custom-form-field textarea:focus {
        color: var(--bs-body-color);
        background-color: var(--bs-body-bg);
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
    }

.custom-btn .btn {
    padding: 18px 28px;
}

.form-body .row {
    align-items: center;
}

.tractor-graphic .form-body .row {
    align-items: flex-start;
}

.custom-checkbox .form-check-input {
    margin-top: 0;
}

.custom-btn button {
    background-color: var(--colorJnfBlue);
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    min-width: 135px;
    padding: 16px 28px;
}

    .custom-btn button:hover {
        border-color: var(--colorJnfBlue);
        background-color: var(--colorPageBg);
        color: var(--colorJnfBlue);
    }

/*Timeline start*/

/*.timeline {
  width: 100%;
}
.timeline .swiper-container {
  height: 848px;
  width: 100%;
  position: relative;
}
.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.timeline .slidewrap{
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.timeline .swiper-slide-image{
  width: 40%;
}
.timeline .swiper-slide-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline .swiper-slide-content {
  width: 80%;
  max-width: 310px;
  display: flex;
  justify-content: center;
  flex-direction: column;

}
.timeline .swiper-slide .kjititle {
  font-size: 100px;
  font-family: var(--headerfont);
  color: var(--colorJnfBlue);
}

.timeline .swiper-slide .timeline-title {
  color: var(--colorJnfBlue);
  margin: 20px 0;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
  padding-left: 30px;
}
.timeline .swiper-slide .timeline-title::before {
  content: '';
  background-color: var(--colorOrange);
  border: 3px solid white;
  width: 14px;
  height: 14px;
  outline: 1px solid var(--colorOrange);
  border-radius: 100%;
  position: absolute;
  left: 1px;
  top:20px;
}
.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
  font-size: var(--fontlg);
  color: var(--colorJnfBlue);
}
.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 0.7s;
}
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 0.8s;
}
.timeline .swiper-pagination {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
  width: 70px;
  display: flex;
}
.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  font-size: 18px;
  color: var(--colorJnfBlue);
  padding: 0 0 44px 0 !important;
  margin: 15px 0 0 0 !important;
  position: relative;
}
.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--colorJnfBlue);
  transition: 0.2s;
}
.timeline .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 30px;
  height: 100%;
  width: 2px;
  background-color: var(--colorJnfBlue);
}
.timeline .swiper-pagination-bullet:last-child:after {
  display: none;
}
.timeline .swiper-pagination-bullet-active {
  color: var(--colorJnfBlue);
}
.timeline .swiper-pagination-bullet-active::before {
  background-color: var(--colorOrange);
    border: 5px solid white;
  width: 20px;
    height: 20px;
    outline: 2px solid var(--colorOrange);
    left: -25px;
    top: 0;
}

.timeline .swiper-button-next1,
.timeline .swiper-button-prev1 {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
  display: none;
}
.timeline .swiper-button-prev1 {
  left: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-prev1:hover {
  transform: translateX(-3px);
}
.timeline .swiper-button-next1 {
  right: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  display: none;
}
.timeline .swiper-button-next1:hover {
  transform: translateX(3px);
}*/
/*Timeline*/


/*Zalak Timeline New Starts*/
.mainSwiper {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

    .mainSwiper .swiper-slide {
        position: relative;
        color: #fff;
        overflow: hidden;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .mainSwiper .slidewrap {
        display: flex;
        justify-content: space-between;
        height: 100%;
    }

    .mainSwiper .swiper-slide-image {
        width: 44%;
        display: flex;
        align-items: center;
    }

        .mainSwiper .swiper-slide-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

    .mainSwiper .swiper-slide-content {
        width: 80%;
        max-width: 380px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .mainSwiper .swiper-slide .kjititle {
        font-size: 72px;
        font-family: var(--headerfont);
        color: var(--colorJnfBlue);
    }

    .mainSwiper .swiper-slide .timeline-title {
        color: var(--colorJnfBlue);
        margin: 20px 0;
        opacity: 0;
        transform: translate3d(20px, 0, 0);
        transition: 0.2s ease 0.5s;
        padding-left: 30px;
    }

        .mainSwiper .swiper-slide .timeline-title::before {
            content: '';
            background-color: var(--colorOrange);
            border: 3px solid white;
            width: 14px;
            height: 14px;
            outline: 1px solid var(--colorOrange);
            border-radius: 100%;
            position: absolute;
            left: 1px;
            top: 20px;
        }

    .mainSwiper .swiper-slide .timeline-text {
        line-height: 1.5;
        opacity: 0;
        transform: translate3d(20px, 0, 0);
        transition: 0.2s ease 0.6s;
        font-size: var(--fontlg);
        color: var(--colorJnfBlue);
    }

    .mainSwiper .swiper-slide-active .timeline-title {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: 0.4s ease 0.7s;
    }

    .mainSwiper .swiper-slide-active .timeline-text {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: 0.4s ease 0.8s;
    }

    .mainSwiper .swiper-pagination {
        top: 0;
        left: 46%;
        transform: translateX(-50%);
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        font-weight: 300;
        font-size: 18px;
        z-index: 1;
        width: 100px;
        display: flex;
    }

    .mainSwiper .swiper-pagination-bullet {
        width: auto;
        height: auto;
        text-align: center;
        opacity: 1;
        background: transparent;
        font-size: 18px;
        color: var(--colorJnfBlue);
        padding: 0 0 33px 0 !important;
        margin: 15px 0 0 0 !important;
        position: relative;
    }

        .mainSwiper .swiper-pagination-bullet::before {
            content: "";
            position: absolute;
            top: 6px;
            left: -20px;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            background-color: var(--colorJnfBlue);
        }

        .mainSwiper .swiper-pagination-bullet::after {
            content: "";
            position: absolute;
            left: -16px;
            top: 30px;
            height: 100%;
            width: 2px;
            background-color: var(--colorJnfBlue);
        }

        .mainSwiper .swiper-pagination-bullet:last-child:after {
            display: none;
        }

    .mainSwiper .swiper-pagination-bullet-active {
        color: var(--colorOrange);
    }

        .mainSwiper .swiper-pagination-bullet-active::before {
            background-color: var(--colorOrange);
            border: 5px solid white;
            width: 20px;
            height: 20px;
            outline: 2px solid var(--colorOrange);
            left: -25px;
            top: 0;
        }

    .mainSwiper .swiper-button-next,
    .mainSwiper .swiper-button-prev {
        background-size: 20px 20px;
        top: 15%;
        width: 20px;
        height: 20px;
        margin-top: 0;
        z-index: 2;
        display: none;
    }

    .mainSwiper .swiper-button-prev {
        left: 8%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    }

        .mainSwiper .swiper-button-prev:hover {
            transform: translateX(-3px);
        }

    .mainSwiper .swiper-button-next {
        right: 8%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    }

        .mainSwiper .swiper-button-next:hover {
            transform: translateX(3px);
        }

.thumbSwiper {
    overflow: hidden;
    min-height: 70px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    display: none;
}

    .thumbSwiper .mob-bullet {
        background: transparent;
        font-size: 18px;
        color: var(--colorJnfBlue);
        padding: 0 0 16px 0 !important;
        position: relative;
    }

        .thumbSwiper .mob-bullet::before {
            content: "";
            position: absolute;
            left: 14px;
            bottom: -4px;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            background-color: var(--colorJnfBlue);
        }

        .thumbSwiper .mob-bullet::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 100%;
            background-color: var(--colorJnfBlue);
            margin-left: 15%;
        }

    .thumbSwiper .swiper-slide-thumb-active .mob-bullet,
    .thumbSwiper .swiper-slide-thumb-active .mob-bullet h5 {
        color: var(--colorOrange);
    }

        .thumbSwiper .swiper-slide-thumb-active .mob-bullet::before {
            background-color: var(--colorOrange);
            border: 5px solid white;
            width: 20px;
            height: 20px;
            outline: 2px solid var(--colorOrange);
            left: 10px;
            bottom: -9px;
            z-index: 1;
        }

    .thumbSwiper .swiper-slide:last-child {
        width: auto !important;
    }

        .thumbSwiper .swiper-slide:last-child .mob-bullet::after {
            display: none;
        }
/*Zalak Timeline New Ends*/




.parallaximg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 935px;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*Search Page styles Start*/
.resfound {
    font-size: var(--fontlg);
    line-height: var(--fontlglh);
}

.searchtitle {
    font-size: var(--font3xl);
    line-height: var(--font3xllh);
}

.searchresultbox {
    border-bottom: 1px solid #e3e3e3;
    padding: 0 0 1.25rem 0;
}

    .searchresultbox .resulttitle {
        font-weight: 600;
        color: var(--colorJnfBlue);
    }

    .searchresultbox .info {
        font-size: var(--fontmd);
        color: var(--colorDarkGrey);
    }

        .searchresultbox .info strong {
            font-weight: 400;
        }

.searchpagination .page-item .page-link {
    border: 0;
    font-weight: 600;
    color: var(--colorJnfBlue);
    margin-right: 1rem;
    border-radius: 5px;
}

.searchpagination .page-item.active .page-link {
    border: 2px solid var(--colorJnfBlue);
    background-color: transparent;
    border-radius: 5px;
}
/*Search Page styles Ends*/


.pageinfo .pageinfodesc a {
    text-decoration: underline;
}

/*header popup video*/
.popupvideomodal .modal-dialog {
    max-width: 60% !important;
    height: calc(80vh - 100px);
    margin: auto;
}

.popupvideomodal .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1;
    font-size: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
}

.popupvideomodal .modal-body {
    padding: 0;
    position: relative;
}

.popupvideomodal video {
    width: 100%;
    height: 100%;
    display: block;
}

.popplaybtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: none;
    border: 0;
}

    .popplaybtn .material-icons-outlined {
        color: #fff;
        font-size: 6rem;
    }

.poppausebtn {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    background: none;
    border: 0;
}

    .poppausebtn .material-icons-outlined {
        color: #fff;
        font-size: 2.5rem;
    }

/* Bug-47186 */
.four-cards .card .card-body {
    padding-left: 0;
    padding-right: 0;
}

/* Bug-47179 */
.partner-box .partner-info .title {
    font-weight: 400;
}

/* Bug-47184 */
.mb-30 {
    margin-bottom: 30px;
}

.newsimg {
    height: 304px;
}

.pageinfotitle {
    margin-top: 10px;
}
