@font-face {
    font-family: 'HudsonNY';
    src: url('/assests/fonts/HudsonNY.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF';
    src: url('/assests/fonts/SF-Pro-Display-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font-fam-SF {
    font-family: 'SF';
}

h1 {
    font-family: 'HudsonNY';
    font-style: normal;
}

.tooltip-div {
    z-index: 99;
}

header {
    transition: all .5s ease-in-out !important;

    &.scroll-up {
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
        height: 60px;
    }

    &.scroll-down {
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    }
}

.gradient-text {
    background: var(--heading-gradient, linear-gradient(270deg, #05B08D 20%, #33B452 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Ensures background is properly applied */
}

/* magnetic btn==================================== */

.magnetic {
    margin-top: -30px;
    margin-left: -30px;
}

/* ================================================== */

.brown-svg,
.hero-svg,
.hero-img {
    opacity: 0;
    transform: scale(0);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}
.animate-spin-slow {
  animation: rotate-reverse 80s linear infinite;
  transform-origin: center;
}

.about-circle-large {
    transform-origin: center center;
    animation: rotate 80s linear infinite;
}

.about-hero-svg {
    transform-origin: center center;
    animation: rotate-reverse 80s linear infinite;
}


.image-frame {
    transform-origin: center center;
    animation: rotate 80s linear infinite;
    /* transition: animation-duration 2s ease-in-out; */
}

@keyframes reverse-rotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
        animation-timing-function: ease-out;
    }
}

.footer-svg {
    transform-origin: center center;
    animation: rotate 80s linear infinite;
}

.brown-svg {
    animation: fade-in 1s ease forwards;
    animation-delay: 1s;
}

.hero-svg {
    transform-origin: center center;
    animation: fade-in 1s ease forwards, rotate 80s linear infinite;
    animation-delay: 1s, 2s;
}

.hero-img {
    animation: fade-in 1s ease forwards;
    animation-delay: 0.5s;
}

/* history slider img animation====================================================================== */

.history-slider-img {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.history-slider .slick-active .history-slider-img {
    opacity: 1;
    transition-delay: 0.3s;
}

/* ============================================== */

/* ========================================================= */

a {
    transition: color 0.3s ease;
}

#menu .nav-item,
#menu .nav-item-2 {
    transition: all 0.3s ease;
}

#menu {
    position: absolute;
    right: 0;
    background: white;
    list-style-type: none;
    transition: all 0.5s;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.10), 0px 8px 10px -6px rgba(0, 0, 0, 0.10);
    display: none;
    transform: translateY(-50px);
}

.timeline-div li {
    list-style-type: disc;
    box-shadow: none;
}

/* search Toggle=================================================== */

#searchmenu {
    transition: all 0.5s ease-in-out;
    /* top: -100% !important; */
}

.container {
    max-width: calc(100vw - 24px);
}

.section-space {
    margin: 64px 0px;
}

.half-div {
    background: linear-gradient(to right, white 50%, #C7C2B5 50%);
}

/* slick arrow=========================== */

.history-slider .slick-arrow {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    content: "";
    background-color: #7B060D;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 9;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    top: 100%;
    margin-top: 20px;
}

.history-slider .slick-arrow::before {
    display: none;
}

.history-slider .slick-arrow::after {
    position: absolute;
    content: url(../icon/slider-arrow.png);
}

.history-slider .slick-prev::after {
    transform-origin: center;
    transform: rotate(180deg);
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    cursor: auto;
}

.slick-prev.slick-disabled::after,
.slick-next.slick-disabled::after {
    opacity: 0.61;
}

.history-slider .slick-next {
    right: calc(50% - 85px);
}

.history-slider .slick-prev {
    left: calc(50%);
}

.first-section {
    margin-top: 80px;
}

/* timeline=========================================== */

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    left: 50%;
    width: 2px;
    top: -20px;
    background: #E4E4E7;
    z-index: 1;
}

.timeline {
    position: relative;
    /* margin: 50px auto;
    width: 1000px; */
    padding: 30px 0;
}


.timeline ul {
    margin: 0;
    padding: 0;
}

.timeline ul li {
    list-style: none;
    box-sizing: border-box;
    line-height: normal;
    position: relative;
    width: 50%;
    padding: 0px 30px 50px 30px;
}

.timeline ul li .right_content h2 {
    color: #7B060D;
    padding: 0px 2px 18px 0px;
}

.timeline ul li:nth-child(even) {
    float: left;
    text-align: right;
    clear: both;
}

.timeline ul li:nth-child(odd) {
    float: right;
    text-align: left;
    clear: both;
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #7B060D;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #CD0A151A;
    right: -6px;
    top: 24px;
    z-index: 1;
}

.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #7B060D;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #CD0A151A;
    left: -6px;
    top: 24px;
    /* z-index: 9; */
}

.timeline ul li:nth-child(even) .left_content {
    position: absolute;
    top: 6px;
    right: -165px;
    /* box-shadow: 0 0 0 3px #CD0A151A; */
}

.timeline ul li:nth-child(odd) .left_content {
    position: absolute;
    top: 6px;
    left: -165px;
    padding: 8px 20px;
    /* box-shadow: 0 0 0 3px #CD0A151A; */
    border-radius: 12px;
    background-color: #CD0A151A;

}

.timeline-div {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
}


@media (max-width: 1000px) {

    .timeline {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .timeline {
        width: 100%;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline ul li:nth-child(even),
    .timeline ul li:nth-child(odd) {
        width: 100%;
        text-align: left;
        padding-left: 50px;
    }

    .timeline ul li:nth-child(even):before {
        top: -18px;
        left: 16px;

    }

    .timeline ul li:nth-child(odd):before {
        top: -18px;
        left: 16px;
    }

    .timeline ul li:nth-child(even) .left_content,
    .timeline ul li:nth-child(odd) .left_content {
        top: -30px;
        left: 50px;
        right: inherit;
    }
}

/* ============================================= */

/* fonts================================================================== */
.section-title {
    color: #3F3F46;
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: -1.8px;
    max-width: 590px;
    font-family: 'SF';
    text-transform: capitalize;
}

.section-sub-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.72px;
    color: #B3A586;
    font-family: 'SF';
    text-transform: capitalize;
}

.section-p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #3F3F46;
}

.font-lightgray-18 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #71717A;
}

.font-black-18 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #09090B;
}

.font-green-20 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #05B08D;
    font-family: 'SF';
    text-transform: uppercase;
}

.font-black-20 {
    font-size: 16px;
    line-height: 24px;
    color: black;
    font-weight: 600;
}

.font-white-20 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #FAFAFA;
}

.font-white-16 {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #FAFAFA;
}

.font-24-500 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.font-black-24 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: black;
    font-family: 'SF';
}

.font-gray-14 {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #3F3F46;
}

.font-black-48 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    font-family: 'SF';
    letter-spacing: -0.96px;
}

.font-48-80 {
    font-size: 24px;
    line-height: 40px;
}

.font-32-40 {
    font-size: 32px;
    line-height: 40px;
}

.font-32-44 {
    font-size: 32px;
    line-height: 44px;
}

/* ================================================ */

/* tabs=================================== */
* {
    box-sizing: border-box;
    position: relative;
}

#slides {
    height: 100%;
}

.toggle {
    width: 20%;
    float: left;
    padding: 10px;
    color: white;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.toggle img {
    transition: width 0.5s ease;
    width: 260px;
}

/* Slides default */
.slide {
    width: 100%;
    height: 100%;
    display: none;
    top: 430px;
    position: absolute;
}

/* Default visible slide */
#slide-1 {
    display: block;
}

#toggle-1 img {
    width: 300px;
}

/* Hide slide-1 when hovering on any toggle */
.toggle:hover~#slide-1 {
    display: none;
}

.toggle:hover~#first-img {
    width: 260px !important;
}

/* Show correct slide when hovering over toggle */
.toggle:hover img {
    width: 300px;
}

#toggle-1:hover~#slide-1 {
    display: block;
}

#toggle-2:hover~#slide-2 {
    display: block;
}

#toggle-3:hover~#slide-3 {
    display: block;
}

#toggle-4:hover~#slide-4 {
    display: block;
}

#toggle-5:hover~#slide-5 {
    display: block;
}

/* Keep the slide visible when hovering on the slide itself */
#slide-1:hover {
    display: block;
}

#slide-2:hover {
    display: block;
}

#slide-3:hover {
    display: block;
}

#slide-4:hover {
    display: block;
}

#slide-5:hover {
    display: block;
}

/* login===================== */

.login-input:focus {
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #7B060D;
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* .radio-btn input:checked + svg path{
    stroke: white !important;
}

.radio-btn input:checked + svg path{
    fill: white !important;
} */

.radio-btn input:checked~div svg path {
    stroke: white !important;
}

/* circle slider==================================================================== */

.sector path {
    transition: transform 0.2s;
    cursor: pointer;
}

.sector path:hover {
    transform: scale(1.05);
}

.active path {
    transform: scale(1.05);
}

.sector image {
    width: 100px;
    pointer-events: none;
    cursor: pointer;
}

/* ================================================== */

