@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Meie+Script&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Inter", serif; */
@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-family: 'objectivityregular'; */

*,
*::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: "Objectivity", sans-serif;
}
.container{
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.space-between{
  justify-content: space-between;
}
.center{
  justify-content: center;
}
.space-around{
  justify-content: space-around;
}
body{
  /* font-family: 'objectivityregular'; */
  font-family: "Objectivity", sans-serif;
  font-weight: 300 !important;
  background: #070301 !important;
  overflow-x: hidden;
}
/* header */

.header-area {
  width: 100%;
  position: absolute;
  
  top: 0;
  left: 0;
  z-index: 10;
  padding: 4.375rem 0;
}
.header{
  width: 100%;
}
.menu{
  margin: 0;
  padding: 0;
  list-style: none;
  /* overflow: hidden; */
}
.dropdown-menu{
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible !important;
}
.header li a {
  color: #888381;
  font-size: 16px;
  display: block;
  padding: 5px 30px !important;
  margin-top: 45px;  
  text-decoration: none;
  transition: 0.8s;
  letter-spacing: 3px;
}
.header li .menu-button {
  border-right: none !important;
}

.header li a:hover,
.header .menu-btn:hover {
  color: #f4f4f4;
  transition: 0.8s;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  margin-right: 45px;
  text-decoration: none;

}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}
.nav-link {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 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: 0px;
    transform: translateX(-50%);
    width: 0px;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 30%;
}






.dropdown {
    position: relative;
    margin-top: 46px;
    margin-left: 10px;
    letter-spacing: 3px;
}

.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: 10.75rem;
    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;
    margin-left: 6px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link:hover {
    color: #fff !important;
    background-color: rgb(0 0 0 / 70%);;
    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;
}






/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 375px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 65em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    /* float: right; */
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

.header-area .header-text-box{
  padding: 85px 0 256px 0;
}
.header-area .header-text-box .header-text h3{
  background: #FD6F01;
  background: linear-gradient(90deg,rgba(253, 111, 1, 1) 0%, rgba(249, 129, 16, 1) 100%);
  max-width: 240px;
  width: 100%;
  font-size: 13px;
  color: #f4f4f4;
  font-weight: 400;
  text-align: center;
  letter-spacing: 10px;
  padding: 10px 0px;
}
.header-area .header-text-box .header-text{
  max-width: 625px;
  width: 100%;
  margin-left: 12px;
}
.header-area .header-text-box .header-text h1{
  font-size: 73px;
  position: relative;
  font-weight: 500;
  background: #AC4D02;
background: linear-gradient(113deg, rgba(172, 77, 2, 1) 0%, rgb(255 255 255 / 32%) 100%);  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 15px;
}
.header-area .header-text-box .header-text span {
  font-size: 133px;
  background: #FD6F00;
  font-weight: 300;
  background: linear-gradient(90deg,rgba(253, 111, 0, 1) 0%, rgba(255, 255, 255, 0.52) 100%); 
  -webkit-background-clip: text;
}
.header-area .header-text-box .header-text p{
  font-size: 19px;
  color: #918780;
  margin-top: 10px;
  line-height: 28px;
}

.bg-line{
  background: url(../images/bg-lines.png) no-repeat center center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about .explore_more{
  text-align: -webkit-right;
}
.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;
}

.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;
    font-size: 24px !important;
}
.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 ========================================= */
.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: url("../images/banner.jpg") 0 0 no-repeat #000;
}

.slider-wrapper .slider-item:nth-child(2)::before {
    background-image: url("../images/banner-2.jpg");
}

.slider-wrapper .slider-item:nth-child(3)::before {
    background-image: url("../images/banner-3.jpg");
}

.slider-wrapper .slider-item:nth-child(4)::before {
    filter: grayscale(25%) brightness(80%);
    background-image: url("../images/banner-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;
     transition: 0.5s;
    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:hover{
    background: #323232a8;
    transition: 0.5s;
}

.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 {
    line-height: 85px;
    max-width: 38.813rem;
    width: 100%;
    font-size: 4.623rem;
    letter-spacing: -0.1em;
    font-weight: 600;
    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;
}

.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: 279px;
    color: #fff;
    line-height: 4.438rem;
    text-align: center;
    backdrop-filter: blur(10px);
    font-size: 22px;
    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;
}

.icon-wrapper {
    display: inline-block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(45deg);
    overflow: hidden;
    margin-left: 0rem;
    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(170deg, #4197d1, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================ SLIDER END ========================================= */

/* about */
.about .text-slider{
  border-top: 1px solid #2D2D2D;
  border-bottom: 1px solid #2D2D2D;
}


/* header-area-slider */
.bg_color {
    position: relative;
}
.bg_color::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Bg\ about.png) no-repeat top;
    background-size: cover;
    background-position: 100% 160%;
}


.about{
  /* background: url(../images/Bg\ about.png)0 0 no-repeat;
  background-size: cover; */
  /* margin-top: 70px;  */
}
.about .about_left{
  margin: 0 auto;
  position: relative;
max-width: 47.625rem;
width: 100%;
position: relative;
/* z-index: 10; */
}

.about .about_left_img img{
    width: 1000px;
}


.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;
      font-family: "Objectivity", sans-serif;

}

.number-wrapper {
    position: relative;
    height: 6rem;
    width: 100%;
    overflow: hidden;
}

.number-wrapper span {
    font-size: 4.851rem;
    letter-spacing: -0.09em;
    font-weight: 300;
    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: 0.5rem;
}



.about .about_right{
  text-align: right;
  z-index: 0;
}
.about .roww{
    flex-direction: row;
    display: flex;
}
.about .about_right .about_right_text .about_title h3{
   background: linear-gradient(90deg, rgba(253, 111, 1, 1) 0%, rgba(249, 129, 16, 1) 100%);
    max-width: 240px;
    width: 100%;
    font-size: 13px;
    color: #f4f4f4;
    font-weight: 400;
    text-align: center;
    letter-spacing: 10px;
    padding: 10px 0px 10px 0px;
    margin-left: 315px;
}
.about .about_right{
  margin-top: 200px;
}
.about .about_right .about_right_text .about_title h2{
  font-size: 50px;
  font-weight: 100;
  color: #f4f4f4;
  /* margin-top: 20px; */
}
.about .about_right .about_right_text .about_title h2 span{
  background: #AC4D02;
  background: linear-gradient(90deg, rgba(172, 77, 2, 1) 0%, rgba(255, 255, 255, 1) 100%);
  font-weight: 400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .about_right .about_right_text .about_title p{
  font-size: 19px;
  color: #958071;
  margin-top: 20px;
  line-height: 28px;
  font-weight: 400;
}


.counter {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 3.125rem;
    margin-top: 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 .about_right .about_right_text .explore-box{
    width: 300px;
    background-color: #ffffff0d;
    text-align: center;
    margin-top: 40px;
    padding: 22px 15px;
    border: 2px solid #ffffff3b;
    margin-left: 150px;
}
.about .about_right .about_right_text .explore-box:hover{
    background: #ea55013b;
    border: 2px solid #ea55013b;
    transition: 0.8s;
}
.about .about_right .about_right_text .explore-box a{
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}
.about .about_right .about_right_text .explore-box a:hover{
    color: #EA5501;
    transition: 0.8s;
}

/* about */


/* ================================ TETXT SLIDER ========================================= */
.text-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 1.438rem 0;
    z-index: 10;
}

.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 ========================================= */



/* ================================ SERVICE ========================================= */
.service .row{
  display: flex;
  flex-wrap: wrap;
}
.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: 31.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;
    display: block ;
}
.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: 4rem;
}
.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: 2.8rem;
}
.service-content h2 span {
    font-weight: 200;
}
.service-box:nth-child(1) {
    background-image: url('../images/service-1.jpg');
    background-size: 100% 100%;
}

.service-box:nth-child(2) {
    background-image: url('../images/service-2.jpg');
    background-size: 100% 100%;

}
.service-box:nth-child(3) {
    background-image: url('../images/service-3.jpg');
}
.service-box:nth-child(4) {
    background-image: url('../images/service-4.jpg');
}
.service-box:hover {
    color: #fff;
    transition: all 0.6s ease;
    background-size: 125% 125%;
}
.service-box:nth-last-child(-n+2):hover {
    background-position: center;
    background-position: 100% 100%;
}
.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 ========================================= */


/* ================================ WORLDS FROM OUR FOUNDER ========================================= */
.bg_colors {
    position: relative;
}

.bg_colors::before {
    position: absolute;
    content: "";
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_colors.png) no-repeat center center;
    background-size: cover;
}
.worlds-from-our-founder {
    position: relative;
    padding-top: 13.938rem;
}
.worlds-from-our-founder .row{
  gap: 80px;
}
.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;
    background-position: right;
}

.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: 200;
    margin-top: 0.8125rem;
    width: 29.25rem;
}

.worlds-from-our-founder-left p {
    font-size: 18px;
    line-height: 130.23%;
    margin-top: 2.5rem;
    font-weight: 200;
}

.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.063rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 99;
    border-radius: 50%;
}

.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: 95%;
    transform: rotate(45deg);
    overflow: hidden;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    z-index: 10;
    margin-bottom: 0.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;
  font-family: "Objectivity", sans-serif;
}

.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: 300;
    font-family: "Objectivity", sans-serif;
    color: #fff;
}

.portfolio-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.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;
}
.portfolio-heading .icon-wrapper i {
    display: block;
    font-size: 50px;
    position: absolute;
    left: 0;
    top: -10px;
    color: #fff;
    width: 100%;
    height: 100%;
    transform: translateY(0%) rotate(313deg);
    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(313deg);
}
.portfolio-text {
    font-size: 1.188rem;
    line-height: 1.75rem;
    font-family: "Objectivity", 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);
}
.portfolio-text p {
    max-width: 40.625rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
}
.portfolio-tab {
    width: 100%;
    position: relative;
    padding: 0 0.375rem;
    margin-top: 2.375rem;
    margin-bottom: 5rem;
    cursor: pointer;
}
.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;
    margin-left: 57px;
    margin-right: 57px;
}

.tab-heading::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #fd6f00;
    left: 0;
    bottom: 7px;
    transition: all 0.4s ease;
}
.tab-heading:hover{
    color: #fd6f00;
}
.tab-heading:hover::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-frame-child{
    text-align: center;
}
.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 {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.3;
    transition: all 0.4s ease;
    
}
.portfolio-image-frame::before {
    top: 0.844rem;
}

.portfolio-image-frame::after {
    bottom: 0.906rem;
}

.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::before,
.portfolio-image-frame:hover::after {
    opacity: 1;
    transform: scaleX(1.05);
}

.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-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 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: "Objectivity", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 2.438rem;
}
.Photo-slide {
      border-bottom: 1px solid #424242;
      border-top: 1px solid #424242;
      margin-top: 70px;
      display: block;
      position: relative;
}
.swiper-slide {
        /* text-align: center; */
        font-size: 18px;
        /* background: #fff; */
        
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
} 
.slide-img-wrapper {
    width: 332px;
    height: 305px;
    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: 2.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: 3%;
}

.img-button-prev {
    right: 3%;
}
/* PHOTOGRAPHERS END */


/* CONTACT  */
.contact {
    width: 100%;
    height: auto;
}
.contact-text {
    max-width: 54.563rem;
    width: 100%;
    z-index: 10;
}
.contact-text h2 {
    font-size: 10.779rem;
    letter-spacing: -6px;
    font-weight: 300;
    color: #fff;
    font-family: 'Hugolers Stylish Modern';
}
.contact-text p {
    font-size: 1.188rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.5);
}
.contact .contact-arrow{
  margin-top: 45px;
}
.contact .contact-arrow .icon-wrapper i{
  font-size: 90px;
}
.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%;
    color: #fd6f00;
}

.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;
    transition: 0.8s;
}

.contact-details .contact-info:hover i {
    background-color: rgba(253, 111, 0, 0.1);
    border: 1px solid #fd6f00;
    color: #fd6f00;
    transition: 0.8s;
}

.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(313deg);
    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(313deg);
}

.contact-form {
    max-width: 953px;
    width: 100%;
    padding: 3.75rem 0;
    z-index: 10;
}

.contact-form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 53px;
    z-index: 10;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* margin-bottom: 0.875rem; */
}

.contact-form .form-group.half {
    max-width: 450px;
    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.688rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    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: 3rem;
}

.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;
}
.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%);
}

/*  CONTACT END  */



/* ================================ FOOTER ========================================= */
.footer-top .row {
    align-items: center;
}

.footer-top-text {
    max-width: 49.875rem;
    width: 100%;
    height: 12.5rem;
    font-size: 10.779rem;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    font-weight: 300;
    font-family: "Objectivity", sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.footer-top-text span {
    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;
}
.footer-bottom .text-hover-wrapper span {
    font-size: 1.125rem;
    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 {
    font-size: 25px;
    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);
}
.worlds-from-our-founder .text-hover-wrapper span {
    font-size: 1.125rem;
    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);
}
.footer-content .text-hover-wrapper span {
    font-size: 1.125rem;
    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: 113%;
    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;
    list-style: none;
}

.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-size: 1.125rem;
    line-height: 3.625rem;
    margin-bottom: 1.438rem;
}

.footer-right form input {
    width: 99%;
    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;
}

.footer-right form input:focus {
    background-color: rgba(253, 111, 0, 0.07);
}

.footer-right .button {
    font-size: 1rem;
    width: 99%;
}

.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-content .button{
    line-height: 59px;
}

/* ================================ FOOTER END ========================================= */











/* media-start */

/* max-width: 1024px start*/

@media screen and (max-width: 1024px){
    .header li a{
        margin-bottom: 15px !important;
    }
      .nav-link {
        border-right: none;
    }
    .menu{
        overflow: hidden;
    }
    .dropdown-menu{
        top: -10.5rem;
        background-color: rgb(46 46 46 / 30%);
    }
    .dropdown-link{
        margin-left: 0px;
    }
    .portfolio-tab {
        height: 5rem;
        margin-top: 1.5625rem;
        margin-bottom: 3.75rem;
    }
        .border-top {
        top: 0.3rem;
    }
        .border-bottom {
        top: 4.7rem;
    }
    .border-left {
        left: 0.3rem;
        height: 5.1rem;
    }
        .border-right {
        left: calc(100% - 0.3rem);
        height: 5.1rem;
    }
    .footer-top-text {
        font-size: 9.779rem;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2);
    }
    .portfolio-tab {
    padding: 0rem;
    }
    .tab-heading{
        padding-left: 0px;
        margin-right: -3px;
    }
    .tab-heading2{
        padding-right: 46px;
    }
    .portfolio-image-frames .row {
        justify-content: center !important;     
    }
    
    .contact-text h2 {
        font-size: 8.779rem;
    }
    .contact{
        margin: 20px;
        width: 96%;
    }
    .contact .row{
        flex-direction: row !important;
    }
    .contact .contact-arrow {
        margin-top: 5px;
    }

    .social-media-links{
        display: none;
    }
  .slider-pagination{
    display: none;
  }
    .menu{
    background: #000;
    opacity: 0.8;
  }
    .about .roww{
    flex-direction: column;
  }

    .about .about_right .about_right_text .about_title{
    margin: 0px 12px 0px 12px;
  }
  .about .about_right {
        text-align: left;
    }
    .about .about_right .about_right_text .about_title h3{
        margin-left: 0px;
    }
    .counter .row{
        flex-direction: row;
    }
    .about .explore_more {
        margin-right: 10px;
    }
    .button{
        max-width: 62.75rem;
        width: 100%;
    }
    .about .about_left_img img {
        width: 70rem;
    }
    .about .about_right {
        margin-top: 60px;
    }
        .service p {
        font-size: 1.5rem;
    }
      .worlds-from-our-founder{
    margin: 12px;
  }
  .worlds-from-our-founder-left {
        max-width: 62.25rem;
    }
    .worlds-from-our-founder-right {
        max-width: 63.1875rem;
    }
    .features{
        margin-left: 0rem;
    }
    .features .row{
        justify-content: center;
    }
    .portfolio .row{
        flex-direction: row;
    }
    .portfolio-heading h2 {
        font-size: 7.779rem;
    }
    .portfolio-tab .row{
            justify-content: space-between;
    }
    .tab-heading::after{
        bottom: 28px;
    } 
    .footer-top{
        margin: 12px;
    }
    .footer-top .row{
        flex-direction: row !important;
    }
    .footer-content{
        margin: 12px;
    }
    .footer-content .row{
        flex-direction: row !important;
    }
    .footer-bottom .row{
        flex-direction: row !important;
    }
    .footer-bottom-right {
        width: 24%;
    }
    .footer-right form input {
        width: 99%;
    }
    .portfolio{
        margin: 12px;
    }
    .slide-content{
        margin: 12px;
    }
    .slide-content .button{
        width: 20.750rem;
    }
    .footer-right{
        padding-left: 0px;
        margin-top: 10px;
        max-width: 27.813rem;
        margin-left: 17.875rem;
    }
    .about .about_right .about_right_text .about_title p {
        font-size: 15px;
    }
    .about .about_right .about_right_text .about_title h2{
        font-size: 40px;
    }
    .about .about_right .about_right_text .about_title h3{
        max-width: 190px;
    }
    .contact-text p {
        font-size: 16px;
    }
    .photographers-heading p {
        font-size: 17px;
    }
}
/* max-width: 1024px end*/












/* max-width: 768px start*/


@media screen and (max-width: 768px) {
  .about .about_left_img img{
    width: 740px;
  }
    .about .about_right {
        text-align: right;
    }
        .about .about_right {
        margin-top: 200px;
    }
  .button {
        max-width: 46.75rem;
        width: 100%;
    }
        .about .explore_more {
        margin-right: 0px;
    }
    .text-hover-wrapper span{
        font-size: 18px;
    }
    .footer-left p{
        font-size: 15px;
    }
  .worlds-from-our-founder-left {
        max-width: 48.25rem;
    }
    .portfolio-heading {
        justify-content: left;
    }
  .about .about_right .about_right_text .about_title h3{
    margin-left: 553px;
  }
  .about .explore_more{
  text-align: -webkit-center;
  }
      .tab-heading{
        padding-left: 42px;
    }
    .tab-heading2{
        padding-right: 46px;
    }

       .service-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2);
    }

  .worlds-from-our-founder .row{
    flex-direction: column;
  }
  .bg-line{
    display: block;
  }
  .worlds-from-our-founder-round .row{
    flex-direction: column;
  }
  .portfolio .row{
    flex-direction: column;
  }
    .portfolio .portfolio-tab .row{
        flex-direction: row;
        justify-content: space-between;
    }
  .portfolio-heading h2{
    font-size: 120px;
    text-align: center;
  }
  .tab-heading{
    margin-left: 0px;
    margin-right: 0px;
  }
  .portfolio .number-box{
    margin-left: 268px;
  }
  .about_left .number-box {
    left: 17px;
    bottom: -9.5rem;
  }
  .worlds-from-our-founder-round {
    margin: 70px 0px 70px 105px;
  }
  .footer-top .row{
    flex-direction: column;
  }
  .footer-content .row{
      flex-direction: column;
  }
  .counter .row{
    flex-direction: row;
  }
.tab-heading {
        font-size: 0.8rem;
        line-height: 5.438rem;
    }
    .tab-heading::after {
        bottom: 10px;
        left: 17px;
    }
    .portfolio-image-frame::before, .portfolio-image-frame::after, .portfolio-image-frame .line_top, .portfolio-image-frame .line_bot {
        left: 84px;
        width: 78%;
    }
    .portfolio-image-frame-child img{
        max-width: 325px;
        width: 100%;
    }
    .portfolio-image-frame:hover .line_top, .portfolio-image-frame:hover .line_bot {
        right:  70px;
        width: 82%;
    }
    .contact-form {
        max-width: 47.188rem; 
    }
    .portfolio-image-frame {
        padding: 2.25rem 0.187rem;
    }
    .footer-top{
        margin: 12px;
    }
    .footer-content{
        margin: 12px;
    }
    .features{
        margin-left: 254px;
    }
    .portfolio-image-frame-child::before {
        left: 8.875rem;
    }
    .portfolio-image-frame-child::after {
        right: 8.813rem;
    }
     .contact-form .form-group.half {
        max-width: 47.75rem;
        width: 100%;
    }
    .contact{
        width: 97%;
        margin: 12px;    
    }
        .footer-bottom-left {
        max-width: 100%;
    }
        .footer-bottom-right {
        width: 100%;
        margin-top: 15px;
    }
    .footer-right {
        max-width: 27.813rem;
        margin-left: 10.875rem;
    }
        .footer-top .row{
        flex-direction: column !important;
    }
    .footer-content{
        margin: 12px;
    }
    .footer-content .row{
        flex-direction: row !important;
    }
    .footer-bottom .row{
        flex-direction: column !important;
    }
    .contact-text h2 {
        font-size: 6.779rem;
    }
    .footer-center {
        padding: 0rem;
        margin-top: 30px;
    }
}
/* max-width: 768px end*/














/* max-width: 500px start*/

@media screen and (max-width: 500px){
    .heading {
        font-size: 3.623rem;
        line-height: 65px;
        margin: 7px 0;
    }
      .about .about_left_img img{
    width: 485px;
  }

    .heading span{
        font-size: 5.367rem;
    }
    .paragraph{
        font-size: 15px;
    }
    .worlds-from-our-founder-left p{
        font-size: 15px;
    }
    .photographers-heading p{
        font-size: 15px;
    }
    .contact-text p{
        font-size: 15px;
    }
    .slider-wrapper .slider-item .slide-content{
        margin: 12px;
    }
    .about_left_img{
        text-align: center;
    }
    .worlds-from-our-founder{
        margin: 12px;
    }
    .features{
        margin-left: 108px;
    }
    .about .about_right .about_right_text .about_title h3 {
        margin-left: 286px;
    }
    .service {
        margin: 12px;
    }
    .service-heading {
        font-size: 3.125rem;
    }
    .service-text {
        margin-bottom: 2.5rem;
    }
    .service-text h4::after {
        top: 38%;
        left: -2rem;
        width: 1.75rem;
    }
    .portfolio-heading h2 {
        font-size: 110px;
    }
    .portfolio-heading {
        justify-content: center;
    }
    .portfolio .number-box {
        margin-left: 126px;
    }
    .contact-text h2{
        font-size: 85px;
    }
    .contact{
        margin: 12px;
    }
    .portfolio-image-frame-child::before {
        left: 4.875rem;
        
    }
    .portfolio-image-frame-child::after {
        right: 4.813rem;
    }
        .portfolio-tab {
        padding: 0 0rem;
    }
        .tab-heading {
        font-size: 0.4rem;
    }
        .portfolio-image-frame:hover .line_top, .portfolio-image-frame:hover .line_bot {
        right: 48px;
        width: 82%;
    }
        .portfolio-image-frame::before, .portfolio-image-frame::after, .portfolio-image-frame .line_top, .portfolio-image-frame .line_bot {
        left: 55px;
        width: 78%;
    }
        .service-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2);
    }
        .tab-heading {
        padding-left: 36px;
    }
    .tab-heading2 {
        padding-right: 38px;
    }
        .contact-form {
        max-width: 29.188rem; 
    }
        .button {
        max-width: 29.188rem;
        width: 100%;
    }
        .portfolio-image-frame-child img {
        max-width: 275px;
        width: 100%;
    }
    .footer-top-text {
        font-size: 5.779rem;
    }
    .footer-right {
        max-width: 27.813rem;
        margin-left: 0.875rem;
    }
}
/* max-width: 500px end*/

/* media-end