/* ================================ FONT ========================================= */
/* Clash Display Variable */
@import url('https://unpkg.com/@fontsource-variable/clash-display@latest/index.css');

/* Montagu Slab */
@import url('https://unpkg.com/@fontsource/montagu-slab@latest/index.css');

/* Inika */
@import url('https://unpkg.com/@fontsource/inika@latest/index.css');

@font-face {
    font-family: 'objectivityregular';
    src: url('objectivity.regular.woff2') format('woff2'),
        url('objectivity.regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'objectivitylight';
    src: url('objectivity.light.woff2') format('woff2'),
        url('objectivity.light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ================================ FONT END ========================================= */

/* ================================ BASIC STYLING END ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    line-height: normal;
    list-style: none;
    outline: none;
}

html,
body {
    overflow-x: hidden;
    background: #000;
    scroll-behavior: smooth;
    position: relative;
    font-family: "objectivitylight", sans-serif;
}

::selection {
    background: #fd6f00;
}

/* SCROLLBAR */
::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    background-color: #fd6f00;
}

/* SCROLLBAR END */

/* ================================ BASIC STYLING END ========================================= */

/* ================================ LAYOUT ========================================= */
.container {
    width: 100%;
    max-width: 82.5rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-space-between {
    justify-content: space-between;
}

/* ================================ LAYOUT END ========================================= */


/* ================================ NAVBAR ========================================= */
header {
    font-family: "Clash Display Variable", sans-serif;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 4.375rem 0;
}

nav {
    padding: 2.8rem 1.5rem;
}

.logo {
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    font-size: 1.069rem;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 1rem;
    border-right: 2px solid #fff;
    position: relative;
}

.nav-item:first-child .nav-link {
    color: #fff;
}

.nav-item:nth-child(5) .nav-link {
    border-right: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 30%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 2.500rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 13.750rem;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: capitalize;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-right: none !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 1.8rem;
}

.nav-link img {
    width: 1rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
    filter: brightness(0.8);
}

.dropdown:hover .nav-link img {
    transform: rotate(180deg);
    filter: brightness(1);
}

.dropdown:hover>.nav-link {
    color: #fff !important;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    height: 3.125rem;
}

/* ================================ NAVBAR END ========================================= */

/* ================================ SLIDER ========================================= */
.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper .slider-item {
    position: relative;
    width: 100%;
    min-height: 56rem;
    display: flex;
    align-items: center;
}

.slider-wrapper .slider-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    background-size: cover;
    background-position: center;
    background-image: url("../images/banner-image-1.jpg");
}

.slider-wrapper .slider-item:nth-child(2)::before {
    background-image: url("../images/banner-image-2.jpg");
}

.slider-wrapper .slider-item:nth-child(3)::before {
    background-image: url("../images/banner-image-3.jpg");
}

.slider-wrapper .slider-item:nth-child(4)::before {
    filter: grayscale(25%) brightness(80%);
    background-image: url("../images/banner-image-4.jpg");
}

.slider-wrapper .slider-item .slide-content {
    z-index: 100;
}

.slider-controls {
    position: absolute;
    top: 0;
    right: 0;
    width: 4.688rem;
    font-family: 'Montagu Slab', serif;
    color: #fff;
    font-size: 1.250rem;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    z-index: 10;
}

.slider-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-tab {
    position: relative;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 35.94%;
    height: 28.13%;
    width: 1px;
    background-color: #fd6f00;
    opacity: 0;
}

.slider-tab.current::before {
    opacity: 1;
}

.slider-tab span {
    opacity: 0.5;
}

.slider-tab.current span {
    opacity: 1;
}

.social-media-links {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 4.688rem;
    height: 100%;
    font-family: 'Montagu Slab', serif;
    z-index: 10;
}

.social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in;
}

.social-media-link:last-child {
    border-bottom: none;
}

.social-media-link:hover {
    color: #000;
    background: #fff;
}

.social-media-label {
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    transform: rotate(-90deg);
    letter-spacing: 0.5rem;
}

.subheading {
    display: inline-block;
    line-height: 26px;
    background: linear-gradient(87.11deg, #fd6f00, #f79420);
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 1.11em;
    padding-left: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

.heading {
    max-width: 38.813rem;
    width: 100%;
    font-size: 4.623rem;
    letter-spacing: -0.1em;
    font-weight: 500;
    background: linear-gradient(90deg, #ac4d02, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 13px 0;
}

.heading span {
    background: linear-gradient(90deg, #fd6f00, rgba(255, 255, 255, 0.52));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8.367rem;
    font-weight: 300;
    line-height: 6.1rem;
}

.paragraph {
    max-width: 38.813rem;
    width: 100%;
    font-size: 1.188rem;
    font-weight: 300;
    line-height: 1.750rem;
    color: rgba(255, 255, 255, 0.5);
}

.button {
    display: block;
    width: 20.750rem;
    color: #fff;
    line-height: 4.438rem;
    text-align: center;
    backdrop-filter: blur(10px);
    font-size: 1.516rem;
    font-weight: 200;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 2.188rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, border-color 0.4s ease;
    font-family: "objectivitylight", sans-serif;
}

.icon-wrapper {
    display: inline-block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(45deg);
    overflow: hidden;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.icon-wrapper i {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0%) rotate(-90deg);
    transition: transform 0.4s ease, color 0.4s ease;
    text-align: center;
}

.icon-wrapper i:nth-child(2) {
    top: 100%;
    color: #fd6f00;
}

.button:hover {
    background-color: rgba(253, 111, 0, 0.05);
    border: 1px solid rgba(253, 111, 0, 0.2);
    color: #fd6f00;
}

.button:hover .icon-wrapper i:nth-child(1),
.button:hover .icon-wrapper i:nth-child(2) {
    transform: translateY(-100%) rotate(-90deg);
}

.slider-wrapper .slider-item:nth-child(2) .slide-content .heading {
    background: linear-gradient(90deg, #1388d6, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper .slider-item:nth-child(2) .slide-content .heading span {
    background: linear-gradient(90deg, #1388d6, rgba(255, 255, 255, 0.52));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper .slider-item:nth-child(3) .slide-content .heading {
    background: linear-gradient(90deg, #fd6f00, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper .slider-item:nth-child(3) .slide-content .heading span {
    background: linear-gradient(90deg, #f79420, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper .slider-item:nth-child(4) .slide-content .heading {
    background: linear-gradient(90deg, #4b9fff, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper .slider-item:nth-child(4) .slide-content .heading span {
    background: linear-gradient(90deg, #4197d1, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================ SLIDER END ========================================= */

/* ================================ TETXT SLIDER ========================================= */
.text-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 1.438rem 0;
    z-index: 10;
    border-top: #2D2D2D 1px solid;
    border-bottom: #2D2D2D 1px solid;

}

.text-slider-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    gap: 1.875rem;
}

.text-slider-item h2 {
    display: inline-flex;
    align-items: center;
    font-size: 1.063rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    margin: 0 0.938rem;

}

.text-slider-item h2 i {
    font-size: 0.625rem;
    width: 2.063rem;
    line-height: 2.063rem;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: rotate(-45deg);
    margin-left: 1rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================ TETXT SLIDER END ========================================= */

/* ================================ ABOUT ========================================= */
.bg-1 {
    position: relative;
}


.bg-1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg-gradients.png) no-repeat top;
    background-size: cover;
    background-position: 100% 160%;
}

.about-left {
    max-width: 47.625rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.number-box {
    width: 14.250rem;
    height: 14.250rem;
    backdrop-filter: blur(3.750rem);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.17);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-wrapper {
    position: relative;
    height: 6rem;
    width: 100%;
    overflow: hidden;
}

.number-wrapper span {
    font-size: 4.851rem;
    letter-spacing: -0.09em;
    font-weight: 100;
    display: block;
    line-height: 6rem;
    text-align: center;
    transition: transform 0.4s ease, color 0.4s ease;
    position: absolute;
    left: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.28);
}

.number-wrapper span:nth-child(1) {
    top: 0;
    transform: translateY(0%);
}

.number-wrapper span:nth-child(2) {
    top: 100%;
    color: #fd6f00;
    transform: translateY(0%);
}

.number-box:hover {
    background-color: rgba(253, 111, 0, 0.07);
    border: 1px solid rgba(253, 111, 0, 0.17);
}

.number-box:hover span:nth-child(1) {
    transform: translateY(-100%);
}

.number-box:hover span:nth-child(2) {
    transform: translateY(-100%);
}

.about-left .number-box {
    position: absolute;
    left: 0;
    bottom: 4.5rem;
}

.about-right {
    max-width: 33.625rem;
    width: 100%;
    text-align: right;
    padding-top: 12.063rem;
    z-index: 10;
}

.about-right .subheading {
    text-align: right;
}

.about-right .about-heading {
    width: 17.750rem;
    font-size: 4.125rem;
    letter-spacing: -0.09em;
    font-weight: 300;
    color: #fff;
    text-align: right;
    margin-left: auto;
}

.about-right .button {
    margin-left: auto;
}

.about-right .about-heading span {
    background: linear-gradient(89.99deg, #ac4d02, rgba(255, 255, 255, 0.49));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-right p {
    font-size: 1.188rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin: 65px 0;
}

.counter {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 3.125rem;
}

.counter-box h4 {
    font-size: 1.788rem;
    font-weight: 300;
}

.counter-box p {
    font-size: 1.146rem;
    letter-spacing: -0.07em;
    text-transform: capitalize;
    font-weight: 300;
    margin: 0;
}

/* ================================ ABOUT END ========================================= */

/* ================================ SERVICE ========================================= */
.service p {
    font-family: "Inika", sans-serif;
    width: 100%;
    font-size: 2.5rem;
    margin: 3.625rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.service p span {
    color: #fff;
    font-family: 'Hugolers Stylish Modern';
}

.service-text {
    max-width: 30.188rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.service-text h4 {
    font-size: 1.313rem;
    letter-spacing: 0.43em;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 3.875rem;
    position: relative;
    z-index: 10;
}

.service-text h4::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -5rem;
    width: 3.75rem;
    height: 2px;
    background: #fff;
}

.service-text .number-box {
    margin-bottom: 1.875rem;
}

.service-heading {
    width: 100%;
    font-size: 4.125rem;
    letter-spacing: -0.09em;
    font-weight: 300;
    color: #fff;
    text-align: center;
    z-index: 10;
}

.service-heading span {
    background: linear-gradient(89.99deg, #ac4d02, rgba(255, 255, 255, 0.49));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.851rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: auto;
    overflow: hidden;
}

.service-box {
    width: 100%;
    height: 39.875rem;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: all 0.6s ease;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, transparent 70%);
    transition: background 0.6s ease;
}

.service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.6s ease;
    text-transform: capitalize;
    color: #fff;
    padding: 6rem;


}

.service-content h3 {
    width: 100%;
    position: relative;
    font-size: 2.875rem;
    letter-spacing: -5px;
    font-weight: 100;
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
}

.service-content h3::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 1.25rem;
    height: 2px;
    background: #fff;
}

.service-content h2 {
    font-size: 3.125rem;
    letter-spacing: -5px;
    text-transform: capitalize;
    text-align: center;
    font-weight: bold;
    line-height: 1.8rem;
}

.service-content h2 span {
    font-weight: 300;

}

.service-box {
    transition: all 0.6s ease;
}

.service-box:nth-child(1) {
    background-image: url('../images/service-img-1.jpg');
    background-size: 100% 100%;
}

.service-box:nth-child(2) {
    background-image: url('../images/service-img-2.jpg');
    background-size: 100% 100%;
}

.service-box:nth-child(3) {
    background-image: url('../images/service-img-3.jpg');
}

.service-box:nth-child(4) {
    background-image: url('../images/service-img-4.jpg');
}

.service-box:hover {
    color: #fff;
    transition: all 0.4s ease;
    background-size: 125% 125%;
}

.service-box:nth-last-child(-n+2):hover {
    background-position: center;
    background-position: 100% 100%;
}

.service-box:nth-child(1):hover .service-box:nth-child(2):hover {
    background-position: center;
    background-position: 50% 50%;
    transition: all 0.4s linear !important;
}

.service-box:hover::before {
    background: linear-gradient(180deg, rgba(251, 131, 0, 0) 38.65%, rgba(247, 148, 32, 0.52) 75%, #fd6f00);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-box:hover h2 {
    margin-bottom: 1rem;
}

.service-box:hover .explore {
    display: inline-flex;
    font-size: 1.188rem;
    font-weight: 400;
    letter-spacing: -2px;
    cursor: pointer;
    position: relative;
    user-select: none;
    color: white;
    flex-direction: column;
    align-items: center;
    transform: translateY(3.125rem);
    gap: 10px;
    text-transform: capitalize;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.service-box:hover .explore::before {
    content: "↑";
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -10px;
    color: white;
    user-select: none;
    transition: all 0.6s ease;

}

.explore {
    display: none;
}

.service-box:hover .explore {
    display: inline-flex;
}

.service .text-slider {
    background: rgb(253, 111, 0);
}

/* ================================ SERVICE END ========================================= */

/* ================================ BG 2 ========================================= */
.bg-2 {
    position: relative;
}


.bg-2::before {
    position: absolute;
    content: "";
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg-gradient-2.png) no-repeat center center;
    background-size: cover;
}

/* ================================ WORLDS FROM OUR FOUNDER ========================================= */
.worlds-from-our-founder {
    position: relative;
    padding-top: 13.938rem;
    z-index: 10;
}

.worlds-from-our-founder::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: url(../images/bg-gradients-3.png) no-repeat right center;
    background-size: cover;
}

.worlds-from-our-founder-left {
    max-width: 28.25rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    z-index: 50;
}

.worlds-from-our-founder-left h2 {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
}

.worlds-from-our-founder-left h3 {
    letter-spacing: 0.33em;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 0.8125rem;
}

.worlds-from-our-founder-left p {
    font-size: 1.25rem;
    line-height: 130.23%;
    margin-top: 2.5rem;
}

.worlds-from-our-founder-left img {
    margin-top: 3.75rem;
}

.worlds-from-our-founder-right {
    max-width: 49.1875rem;
    text-align: right;
    width: 100%;
    z-index: 50;
}

.worlds-from-our-founder-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features {
    margin: 5.3125rem 0;
}

.button-2 {
    position: relative;
    cursor: pointer;
    background: transparent;
    padding: 0;
    width: 16.063rem;
    height: 16.313rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 99;
    border-radius: 50%;
    margin-bottom: 1.875rem;
}

.button-2 .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    display: block;
    margin: 0;
    width: 0.625rem;
    position: absolute;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    height: 0.625rem;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
}

.button-2 .icon-wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
    transform: rotate(45deg);
    overflow: hidden;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    z-index: 10;
    margin-bottom: 1.75rem;
}

.button-2 .icon-wrapper i {
    display: block;
    position: absolute;
    left: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    transform: translateY(0%) rotate(-90deg);
    transition: transform 0.4s ease, color 0.4s ease;
    text-align: center;
}

.button-2 .icon-wrapper i:nth-child(2) {
    top: 100%;
    color: #fd6f00;
}

.button-2:hover .icon-wrapper i:nth-child(1),
.button-2:hover .icon-wrapper i:nth-child(2) {
    transform: translateY(-100%) rotate(-90deg);
}

.button-2:hover .circle {
    width: 100%;
    top: 0;
    height: 100%;
}

.button-2 .text-hover-wrapper {
    font-size: 1.25rem;
    letter-spacing: -0.09em;
    text-transform: capitalize;
    font-weight: 300;
    margin: 0 auto;

}

.button-2 .text-hover-wrapper span:nth-child(1) {
    top: 0;
    transform: translateY(0%);
    color: rgba(255, 255, 255, 0.5) !important;
}

.button-2 .text-hover-wrapper span:nth-child(2) {
    top: 100%;
    color: rgba(0, 0, 0, 0.5);
    transform: translateY(0%);
}

.button-2:hover .text-hover-wrapper span:nth-child(1) {
    transform: translateY(-100%);
}

.button-2:hover .text-hover-wrapper span:nth-child(2) {
    transform: translateY(-100%);
}

.button-2-text {
    display: block;
    text-align: center;
    font-size: 1.625rem;
    letter-spacing: -0.09em;
    font-weight: 300;
    color: #fff;
    margin: 0 auto;
}

.button-2:hover .button-2-text {
    color: #000;
}

/* ================================ WORLDS FROM OUR FOUNDER END ========================================= */

/* ================================ PORTFOLIO ========================================= */
.portfolio-heading h2 {
    font-size: 10.779rem;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    font-weight: 100;
    color: #fff;
}

.portfolio-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.portfolio-heading .icon-wrapper {
    display: inline-block;
    position: relative;
    width: 5.938rem;
    height: 5.75rem;
    transform: rotate(45deg);
    overflow: hidden;
    font-size: 6.25rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    z-index: 10;
}

.portfolio-heading .icon-wrapper i {
    display: block;
    position: absolute;
    left: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    transform: translateY(0%) rotate(-90deg);
    transition: transform 0.4s ease, color 0.4s ease;
    text-align: center;
}

.portfolio-heading .icon-wrapper i:nth-child(2) {
    top: 100%;
    color: #fd6f00;
}

.portfolio-heading .icon-wrapper:hover i:nth-child(1),
.portfolio-heading .icon-wrapper:hover i:nth-child(2) {
    transform: translateY(-100%) rotate(-90deg);
}

.portfolio-text {
    font-size: 1.188rem;
    line-height: 1.75rem;
    font-family: "objectivityregular", sans-serif;
    color: #fff;
    text-align: left;
    margin-top: 3.4375rem;
    padding: 2.438rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.portfolio-text p {
    max-width: 40.625rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-tab {
    width: 100%;
    position: relative;
    padding: 0 4.375rem;
    margin-top: 2.375rem;
    margin-bottom: 5rem;

}

.border-top {
    position: absolute;
    top: 0.469rem;
    left: -0.031rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 0.063rem;
}

.border-bottom {
    position: absolute;
    top: 5.906rem;
    left: -0.031rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 0.063rem;
}

.border-left {
    position: absolute;
    top: -0.031rem;
    left: 0.469rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    width: 0.063rem;
    height: 6.5rem;
}

.border-right {
    position: absolute;
    top: -0.031rem;
    left: 81.969rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    width: 0.063rem;
    height: 6.5rem;
}

.tab-heading {
    display: inline-block;
    position: relative;
    font-size: 1.125rem;
    color: #fff;
    line-height: 6.438rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

.tab-heading::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #fd6f00;
    left: 0;
    bottom: 7px;
    transition: all 0.4s ease;
}

.tab-heading:hover,
.tab-heading.active {
    color: #fd6f00;
}

.tab-heading:hover::after,
.tab-heading.active::after {
    width: 100%;
}

.portfolio-image-frame {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 2.25rem 2.187rem;
    margin-bottom: 0.75rem;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.portfolio-image-frame::before,
.portfolio-image-frame::after,
.portfolio-image-frame .line_top,
.portfolio-image-frame .line_bot {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.portfolio-image-frame .line_top,
.portfolio-image-frame .line_bot {
    left: auto;
    right: 0;
    background-color: #fff;
    width: 0;
}

.portfolio-image-frame::before,
.portfolio-image-frame .line_top {
    top: 0.844rem;
}

.portfolio-image-frame::after,
.portfolio-image-frame .line_bot {
    bottom: 0.906rem;
}

.portfolio-image-frame:hover .line_top,
.portfolio-image-frame:hover .line_bot {
    left: auto;
    right: 0;
    width: 100%;
}

.portfolio-image-frame-child::before,
.portfolio-image-frame-child::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.portfolio-image-frame-child::before {
    left: 0.875rem;
}

.portfolio-image-frame-child::after {
    right: 0.813rem;
}

.portfolio-image-frame:hover .portfolio-image-frame-child::before,
.portfolio-image-frame:hover .portfolio-image-frame-child::after {
    opacity: 1;
    transform: scaleY(1.05);
}

/* ================================ PORTFOLIO END ========================================= */

/* ================================ PHOTOGRAPHERS ========================================= */
.photographers {
    width: 100%;
    margin: 7.5rem 0;
    position: relative;
}

.photographers-heading {
    margin: 0 auto;
    text-align: center;
}

.photographers-heading p {
    font-size: 1.188rem;
    line-height: 1.75rem;
    font-family: "objectivityregular", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 2.438rem;
}

.photographers-slider-container {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 79px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    gap: 30px;
}

.slide-img-wrapper {
    width: 332px;
    height: 332px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
    border: 5px solid transparent;
}

.slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-img-wrapper .image-overlays {
    width: 15.625rem;
    height: 15.625rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.slide-img-wrapper:hover .image-overlays {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.image-overlays h2 {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.06em;
}

.image-overlays p {
    font-size: 1.063rem;
    letter-spacing: -0.06em;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
}

.image-overlays i {
    color: #fd6f00;
    margin-top: 20px;
    font-size: 28px;
    transform: rotate(-45deg);
}

.slide-img-wrapper:hover {
    border: 5px solid #fff;
}

.img-button-prev,
.img-button-next {
    background-color: transparent;
    width: 7.5rem;
    height: 7.5rem;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #444;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
}

.button-box {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
}

.button-elem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    color: #fff;
    font-size: 2.063rem;
}

.img-button-prev:hover .button-box {
    transform: translateX(-100%);
}

.img-button-next:hover .button-box {
    transform: translateX(-100%);
}

.img-button-prev i,
.img-button-next i {
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 7.5rem;
    font-size: 4.063rem;
}

.img-button-prev::before,
.img-button-prev::after,
.img-button-next::before,
.img-button-next::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    opacity: 0;
}

.img-button-prev::before,
.img-button-next::before {
    top: 0;
    right: 0;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transition: width 0.2s 0.5s ease-out, height 0.15s 0.35s linear, opacity 0s 0.7s;
    border-radius: 50%;
}

.img-button-prev::after,
.img-button-next::after {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: width 0.2s 0.15s linear, height 0.15s ease-in, opacity 0s 0.35s;
    border-radius: 50%;
}

.img-button-prev:hover::before,
.img-button-prev:hover::after,
.img-button-next:hover::before,
.img-button-next:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.img-button-prev:hover::before,
.img-button-next:hover::before {
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s;
}

.img-button-prev:hover::after,
.img-button-next:hover::after {
    transition: width 0.2s 0.35s linear, height 0.15s 0.5s ease-out, opacity 0s 0.3s;
}

.img-button-next {
    left: 8%;
}

.img-button-prev {
    right: 8%;
}

/* ================================ PHOTOGRAPHERS END ========================================= */

/* ================================ CONTACT ========================================= */
.contact {
    width: 100%;
    height: auto;
    z-index: 10;
}

.contact-text {
    max-width: 54.563rem;
    width: 100%;
    z-index: 10;
}

.contact-text h2 {
    font-size: 10.779rem;
    letter-spacing: -0.05em;
    font-weight: 100;
    color: #fff;
}

.contact-text p {
    font-size: 1.188rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-details {
    width: 100%;
    height: auto;
    z-index: 99;
    margin-top: 80px;
}

.contact-details .contact-info {
    max-width: 25rem;
    width: 100%;
    z-index: 99;
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.contact-details .contact-info .text-hover-wrapper {
    width: 100%;
}

.contact-details .contact-info i {
    width: 4.375rem;
    height: 4.375rem;
    line-height: 4.375rem;
    border-radius: 50%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 22px;
    font-size: 22px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-details .contact-info:hover i {
    background-color: rgba(253, 111, 0, 0.1);
    border: 1px solid #fd6f00;
    color: #fd6f00;
}

.contact .button {
    width: 17.5rem;
    line-height: 4.5rem;
}

.contact-arrow .icon-wrapper {
    display: inline-block;
    position: relative;
    width: 5.938rem;
    height: 5.75rem;
    transform: rotate(45deg);
    overflow: hidden;
    font-size: 6.25rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    z-index: 10;
}

.contact-arrow .icon-wrapper i {
    display: block;
    position: absolute;
    left: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    transform: translateY(0%) rotate(-90deg);
    transition: transform 0.4s ease, color 0.4s ease;
    text-align: center;
}

.contact-arrow .icon-wrapper i:nth-child(2) {
    top: 100%;
    color: #fd6f00;
}

.contact-arrow .icon-wrapper:hover i:nth-child(1),
.contact-arrow .icon-wrapper:hover i:nth-child(2) {
    transform: translateY(-100%) rotate(-90deg);
}

.contact-form {
    max-width: 59.0625rem;
    width: 100%;
    padding: 3.75rem 0;
    z-index: 10;
}

.contact-form .row {
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.875rem;
}

.contact-form .form-group.half {
    max-width: 28.125rem;
    width: 100%;
}

.contact-form .form-group.full {
    width: 100%;
}

.contact-form label {
    font-size: 1.063rem;
    letter-spacing: 0.11em;
    color: #fff;
    margin-bottom: 1.875rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 3.625rem;
    backdrop-filter: blur(76.4px);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid #4e4e4e;
    padding: 0 1.25rem;
    color: #fff;
    font-size: 1.125rem;
}

.contact-form textarea {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgba(253, 111, 0, 0.07);
    outline: none;
}

.contact-form .btn {
    margin-top: 1.875rem;
    width: 18.313rem;
    line-height: 5.813rem;
}

/* ================================ CONTACT END ========================================= */

/* ================================ FOOTER ========================================= */
.footer-top .row {
    align-items: center;
}

.footer-top-btn .button-2 {
    margin-bottom: 0;
}

.footer-top-text {
    max-width: 49.875rem;
    width: 100%;
    height: 11.5rem;
    font-size: 10.779rem;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    font-weight: 100;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.footer-top-text span {
    font-family: "objectivitylight", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: fadeSlide 20s infinite;
}

.footer-top-text span:nth-child(1) {
    animation-delay: 0s;
}

.footer-top-text span:nth-child(2) {
    animation-delay: 4s;
}

.footer-top-text span:nth-child(3) {
    animation-delay: 8s;
}

.footer-top-text span:nth-child(4) {
    animation-delay: 12s;
}

.footer-top-text span:nth-child(5) {
    animation-delay: 16s;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    25% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.footer-content {
    padding: 4.688rem 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Objectivity", sans-serif;
}

.footer-left {
    max-width: 27.813rem;
    width: 100%;
    padding-right: 1.875rem;
}

.footer-left p {
    font-size: 1.188rem;
    line-height: 1.75rem;
    font-family: "Objectivity", sans-serif;
    text-align: left;
    margin-top: 1.875rem;
    margin-bottom: 2.5rem;
}

.text-hover-wrapper {
    position: relative;
    height: 1.5rem;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.text-hover-wrapper span {
    font-size: 1.188rem;
    line-height: 1.75rem;
    font-family: "Objectivity", sans-serif;
    display: block;
    transition: transform 0.4s ease, color 0.4s ease;
    position: absolute;
    left: 0;
    width: 100%;
    color: rgb(255, 255, 255);
}

.text-hover-wrapper span:nth-child(1) {
    top: 0;
    transform: translateY(0%);
}

.text-hover-wrapper span:nth-child(2) {
    top: 100%;
    color: #fd6f00;
    transform: translateY(0%);
}

.text-hover-wrapper:hover span:nth-child(1) {
    transform: translateY(-100%);
}

.text-hover-wrapper:hover span:nth-child(2) {
    transform: translateY(-100%);
}

.footer-left a {
    display: block;
    margin-top: 2.5rem;
    font-size: 1.125rem;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    font-family: "Objectivity", sans-serif;
    color: rgba(255, 255, 255, 0.5);
}


.footer-center {
    max-width: 27.813rem;
    width: 100%;
    padding: 0 1.875rem;
}

.footer-center ul {
    margin: 0 1.875rem;
}

.footer-center ul li h2 {
    font-size: 1.063rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-center ul li a {
    display: inline-block;
    font-size: 1.063rem;
    letter-spacing: -0.05em;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-family: "Objectivity", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.4s ease;
}

.footer-center ul li a::after {
    content: "→";
    position: absolute;
    left: -1.5rem;
    top: -50%;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: "Objectivity", sans-serif;
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
}

.footer-center ul li a:hover {
    transform: translateX(1rem);
    color: #fd6f00;
}

.footer-center ul li a:hover::after {
    opacity: 1;
}

.footer-right {
    max-width: 26.813rem;
    width: 100%;
    padding-left: 1.875rem;
}

.footer-right p {
    font-family: "objectivitylight", sans-serif;
    font-size: 1.125rem;
    line-height: 3.625rem;
    margin-bottom: 1.438rem;
}

.footer-right form input {
    max-width: 373px;
    width: 100%;
    height: 54px;
    backdrop-filter: blur(76.4px);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid #4e4e4e;
    padding: 0 1.25rem;
    color: #fff;
    font-size: 1.125rem;
    margin: 0 auto;
}

.footer-right form input:focus {
    background-color: rgba(253, 111, 0, 0.07);
}

.footer-right .button {
    max-width: 24.0625rem !important;
    width: 100%;
    line-height: 56px;
    font-size: 1rem;
}

.footer-right .button .icon-wrapper {
    font-size: 1.5rem;
}

.footer-right p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 300;
    text-align: left;
}

.footer-bottom {
    width: 100%;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

.footer-bottom-left {
    max-width: 34.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-bottom-left a {
    display: inline-flex;
    width: 100%;
}

.footer-bottom-right {
    width: 20%;
}

/* ================================ FOOTER END ========================================= */

.bg-line {
    width: 100%;
    height: 100%;
    background: url(../images/bg-lines.png) no-repeat bottom center;
    z-index: 1;
}