/* @import url('https://fonts.cdnfonts.com/css/gotham'); */



  @font-face {
    font-family: "Avenir-Next-Bold";
    src: url(../Fonts/AvenirNext-Bold.ttf);
  }

  @font-face {
    font-family: "Avenir-Next-Regular";
    src: url(../Fonts/avenir-next-regular.ttf);
  }

  @font-face {
    font-family: "Avenir-Next-Medium";
    src: url(../Fonts/AvenirNext-Medium.ttf);
  }

body {
  background-color: #070707 !important;
  color: #f2f2f2 !important;
  font-size: 62.5%;
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Avenir-Next-Regular', sans-serif !important;
}


.bg {
  /* background-image: url(../images/background.svg); */
  position: fixed;
  height: 100vh;
  z-index: -9999;
  width: 100%;
}


@keyframes draw-short {
  from {
    stroke-dashoffset: 0; 
  }
  to {
    stroke-dashoffset: 5000; 
  }
}

@keyframes draw-long {
  from {
    stroke-dashoffset: 0; 
  }
  to {
    stroke-dashoffset: 5000;
  }
}

.bg svg {
  fill-opacity: 0;
  opacity: 0.9;
  stroke-dashoffset: 0;
}

.top {
  animation: draw-short 20s linear infinite;
  stroke-dasharray: 1000; 
  stroke-width: 1.5;
  stroke: #B18A09;
  filter: url(#blur);
}

.base {
  animation: draw-long 22s linear infinite;
  stroke-dashoffset: 0;
  stroke-dasharray: 1000; 
  stroke-width: 1.5;
  stroke: #B18A09;
  filter: url(#blur);
}

.solid {
  opacity: 0.2;
  stroke-width: 1;
  stroke: #B18A09;
}

.logo-stiky {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 95%);
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  z-index: 99;
  padding: 40px;
}

.logo-stiky img {
  float: right;
}

  .navbar {
    margin-bottom: 0;
    border-radius: 0;
  }

  #header {
    /* display: flex; */
    /* height: 100vh !important; */
    width: 100%;
    /* align-items: center; */
    margin: 50px auto;
  }

  .portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(193px, 1fr));
    gap: 1px; /* Adjust the gap between boxes */
    margin: -0.5px; /* Compensates for the margin on .box */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px; /* Adjust the gap between boxes */
    margin: -0.5px; /* Compensates for the margin on .box */
  }
  h1 {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }
  h2 {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }
  h3 {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }
  h4 {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }
  h5 {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }

  p {
    font-family: 'Avenir-Next-Regular', sans-serif !important;
  }

  
  .box {
    float: left;
    z-index: 0;
    opacity: 1;
    margin-right: 1px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 193px; */
    height: 180px;
    border: 1px solid #d6d6d6;
    background: #1C1C1C;
    margin: 0.5px;
    text-decoration: none;
    margin-left: 1.5px;
    color: #fff; /* Optional: change text color for visibility */
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
  }

  .box h1 {
    z-index: 9999999;
    position: relative;
    width: 100%;
    text-align: center;
    color: rgb(223, 223, 223);
    text-decoration: none;
  }

  .box p {
    z-index: 9999999;
    position: relative;
    width: 100%;
    text-align: center;
    color: rgb(223, 223, 223);
    text-decoration: none;
  }

  .box:hover {
    z-index: 10;
    text-decoration: none;
  }

  .box:before,
  .box:after {
    content: "";
    display: block;
    position: absolute;
    background: #1C1C1C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    opacity: 1;
  }

  .box:before {
    width: calc(100% + 2px);
    height: 100%;
    z-index: 1;
    width: 102%;
    transition: height 1s ease, opacity 0.8s ease;
  }

  .box:after {
    height: calc(100% + 2px);
    width: 100%;
    z-index: 1;
    transition: width 1s ease, opacity 0.8s ease;
  }

  .box:hover:before,
  .box:focus:before {
    transition: height 0.2s ease, opacity 0.3s ease;
    height: 85%;
    opacity: 1;
  }

  .box:hover:after,
  .box:focus:after {
    transition: width 0.2s ease, opacity 0.3s ease;
    width: 85%;
    opacity: 1;
  }

  .box__image {
    fill: #000;
    width: 60%;
    will-change: width;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s ease;
    z-index: 2;
  }

  .vert-tab > div {
    margin-left: 1px;
    margin-right: 0px;
    width: 10%;
    cursor: pointer;
    height: 400px;
    transition: all 0.5s ease 0s;
    overflow: hidden;
  }
  .recr-content {
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #181818 !important;
    padding: 36px 28px;
    margin-top: 36px;
    border: 1px solid;
  }
  .recr-content h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    white-space: nowrap;
    transform: rotate(269deg);
  }

  .work_items_content {
    display: none;
  }

  .vert_tab_image_wrrapeer {
    display: flex;
    align-items: center;
  }
  .vert-tab-content {
    display: flex;
    align-items: center;
  }

  .vert-tab-content h2 {
    font-size: 74px;
    font-weight: 700;
    line-height: 81px;
    letter-spacing: 0em;
    text-align: left;
    transform: translateY(100%);
    opacity: 0;
    animation: slideInFromBottom 0.9s ease-out forwards;
    color: #fff;
    margin-bottom: 30px;
  }

  .vert-tab-content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    transform: translateY(100%);
    opacity: 0;
    animation: slideInFromBottom 0.7s ease-out forwards;
    color: #fff;
    margin-bottom: 20px;
  }

  @keyframes slideInFromBottom {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .vert-tab-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 96%;
    color: #f2f2f2;
    margin-left: 0px;
    margin-right: auto;
    transform: translateY(100%);
    opacity: 0;
    animation: slideInFromBottom 0.7s ease-out forwards;
  }

  .recr-content.active {
    width: 100%;
    cursor:default;
    background: #1E1D1D;
    border-color: #1E1D1D;
  }
  .recr-content.active h3 {
    display: none;
  }
  .recr-content.active .work_items_content {
    display: block;
  }
  
  .recr-content img {
    max-width: 100%;
    /* height: 426px; */
  }
  .vert-tab {
    display: flex;
  }
  
  .company-inner-left {
    width: 75%;
    animation: slideInFromBottom 0.7s ease-out forwards;
  }

  .company-inner-right {
    width: 25%;
    animation: slideInFromBottom 0.7s ease-out forwards;
  }

  @media (hover: hover) and (pointer: fine) {
    #cursor {
      z-index: 99;
      position: fixed;
      left: 0;
      top: 0;
      pointer-events: none;
      will-change: transform;
    }
  
    #cursor .cursor--inner {
      width: 5vw;
      height: 5vw;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      border: solid 1px #B18A09;
    }
  }

  #companyes {
    padding: 3% 0;
    /* height: 100vh; */
    /* display: flex;
    align-items: center; */
  }
  

  #media {
    padding: 3% 0;
    /* height: 100vh; */
    /* display: flex;
    align-items: center; */
  }

  /* <!-- third slider -->   */
  .gallery {
    display: flex;
    flex-wrap: wrap;
    border: 0 solid rgb(240, 240, 240);
  }

  .gallery div {  
    flex: 1;
    position: relative;
    text-align: center;
  }

  .gallery div:nth-of-type(1) {
    flex-basis: 75%; 
  }

  .gallery div:nth-of-type(2) {
    flex-basis: 25%; 
  }

  .gallery div::before {
    content: "";
    display: block;
    padding-top: 10px;
  }

  .gallery div:nth-of-type(1)::before {
    padding-top: 56.25%;
  }

  .gallery iframe,
  .gallery span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  .gallery a {
    display: inline-block;
    margin-top: 5px;
  }

  .gallery a:last-child {
    margin-bottom: 5px;
  }

  .gallery iframe,
  .gallery img {
    max-width: 90%;
    vertical-align: middle;
  }

  #award {
    padding: 3% 0;
  }

  #projects {
    padding: 3% 0;
    /* height: 100vh;
    display: flex;
    align-items: center; */
  }

  button {
    border: none;
    background-color: transparent;
    /* padding: 10px 50px 10px 50px; */
    text-align: left;
    color: #B18A09;
  }

  button:hover {
    color: white;
    text-decoration: underline;
  }

  #news {
    padding: 3% 0;
  }

  #quote {
    padding: 3% 0;
  }


  #social-gallery {
    padding: 3% 0;
  }

  #blog-detail {
    padding: 0% 0;
  }


  .blog-outer {
    background-color: #202020;
    width: 100%;
  }

  .blog-discription {
    width: 100%;
    padding: 30px;
  }

  .list {
    width: 100%;
    padding: 30px;
  }

  .latest-blog-header {
    display: flex;
    background-color: #302F2F;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
  }

  .latest-blog-list {
    background-color: #202020;
    width: 100%;
    
  }

  .artical-post {
    background: rgb(19,19,19);
    background: linear-gradient(90deg, rgba(19,19,19,1) 0%, rgba(19,19,19,1) 48%, rgba(32,32,32,1) 48%, rgba(32,32,32,1) 100%);
    width: 100%;
    padding: 40px;
  }

  .artical-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding-left: 30px;
  }
  .artical-discription {
    display: flex;
    margin: 20px 0;
    text-align: left;
    gap: 20px;
    flex-direction: column;
    padding-right: 90px;
  }
  


 .snip1216 {
      color: #fff;
      position: relative;
      overflow: hidden;
      width: 99.7%;
      background-color: #202020;
      color: #ffffff;
      text-align: left;
      font-size: 16px;
      padding: 0px;
  }

 .snip1216 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

 .snip1216 .image {
    max-height: 220px;
    overflow: hidden;
  }

 .snip1216 img {
    max-width: 100%;
    vertical-align: top;
    position: relative;
  }

 .snip1216 figcaption {
    padding: 25px;
    position: relative;
  }

 .snip1216 .date {
    background-color: #B18A09;
    top: 25px;
    color: #000;
    left: 25px;
    min-height: 48px;
    min-width: 48px;
    position: absolute;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
  }

 .snip1216 .date span {
    display: block;
    line-height: 24px;
  }

 .snip1216 .date .month {
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.1);
  }

 .snip1216 h3,
 .snip1216 p {
    margin: 0;
    padding: 0;
  }

 .snip1216 h3 {
    min-height: 50px;
    margin-bottom: 20px;
    margin-left: 60px;
    display: inline-block;
    overflow: hidden;
    text-transform: uppercase;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: normal;
  }

 .snip1216 p {
    font-size: 0.8em;
    /* margin-bottom: 20px; */
    line-height: 1.6em;
    overflow: hidden;
    color: #9C9C9C;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

 .snip1216 footer {
    padding: 0 25px;
    background-color:#202020;
    color: #e6e6e6;
    font-size: 0.8em;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
  }

 .snip1216 footer > div {
    display: inline-block;
    /* margin-left: 10px; */
  }

 .snip1216 footer i {
    color: rgba(255, 255, 255, 0.2);
    margin-right: 5px;
  }

 .snip1216 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
  }

 .snip1216:hover img,
 .snip1216.hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .views:hover svg{
    padding-left: 10px;
  }

  .lin-border {
    background-color: white;
    border: 0;
    height: 0.5px;
    opacity: 1;
    width: 78%;
  }

  #footer {
    margin: 40px 0;
  }

  .ftr-box-right {
    background-color: #151515;
    max-height: 300px;
    /* width: 50%; */
    padding: 64px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1px;
    flex-direction: column;
    gap: 20px;
  }

  .ftr-box-left {
    max-height: 300px;
    background-color: #1A1A1A;
    padding: 50px 70px;
  }


  .media-nav {
    min-height: 560px;
  }


/* -------------------------- Award Section -------------------------- */

  .award-left {
    background-color: #121212;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 50px;
    border-right: solid 1px #313131;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .award-left h1 {
    font-size: 2em;
    font-weight: normal;
    text-align: center;
  }

  .award-left img {
    width: 100%;
  }

  .award-thunmb {
    width: 100%;
  }

  .award-right {
    background-color: #1c1c1c;
    width: 100%;
    padding: 50px 50px;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
  }
  
  .slick-slide {
    margin: 0 5px; /* 1px margin on left and right of each slide */
  }

  .award-slider .slick-slide {
    margin: 0 10px; /* 1px margin on left and right of each slide */
  }

  .award-info-outer {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    top: -25px;
    left: 23px;
  }

  .award-info {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .award-info span{
    color: #a09a91;
  }

  .space {
    margin-right: 1px;
  }

  .award-slider {
    display: flex;
    width: 100%;
  }

  .slider-arrow {
    position: absolute;
    z-index: 9;
    right: 50px;
    top: -33px;
    cursor: pointer;
    transition: fill 0.3s ease; /* Smooth transition for color change */
  }

  .slider-nav {
    fill: #313131;
    stroke: #313131;
  }

  .slider-nav:hover {
    fill: #B18A09;
  }

.project-main-outer {
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(47,47,47,0) 22%, rgba(9,9,121,1) 22%, rgba(28,28,28,1) 22%, rgba(28,28,28,1) 100%);
  margin-top: 70px;
}

.project-sub-outer {
  /* background-color: #1C1C1C; */
  /* background: linear-gradient(to right, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 1) 70%); */
  top: -70px;
  position: relative;
  width: 100%;
}

.project-info {
  position: relative;
  width: 100%;
  padding: 22% 8% 0% 8%;
  display: flex;
  gap: 26px;
  flex-direction: column; 
}

/* .project-info {
  background-color: #1C1C1C;
  position: relative;
  width: 70%;
  padding: 8% 8% 8% 20%;
  display: flex;
  gap: 26px;
  flex-direction: column; 
  bottom: -79px;
  right: -401px;
} */

.project-info h1 {
  color: #ffffff;
  text-transform: uppercase;
}
  
.project-thumbnail {
  position: relative;
  top: 0;
  width: 100%;
  /* top: -50px;   */
}

.project-arrow-media {
  cursor: pointer;
  transition: fill 0.3s ease;
  position: relative;
  top: -0px;
  left: -15px;
}

/* .project-thumbnail img {
  position: relative;
  z-index: 9;
  width: 100%;
} */

.project-info-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0px 0px;
}

.project-info-inner p {
  color: #B18A09;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.project-info a {
  color: #B18A09;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.project-info a:hover {
  color: #ded4c7;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.media-list {
  /* max-height: 520px; */
  /* overflow: hidden; */
}

.media-list .sub-media-list {
  background-color: #1E1E1E;
  color: white;
  /* display: flex; */
  /* align-items: center; */
  padding: 10px;
  /* gap: 20px; */
  margin-left: 1px;
  /* margin-bottom: 1px; */
}

.sub-media-list:hover {
  background-color: #373737;
  color: white;
  /* display: flex; */
  /* align-items: center; */
  padding: 10px;
  /* gap: 20px; */
  margin-left: 1px;
  /* margin-bottom: 1px; */
}

.media-list .sub-media-list a {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.slick-active .media-list .sub-media-list  {
  background-color: #616161;
  color: white;
}

.slick-slide {
  width: 100%;
  margin: 0;
}

.media-for {
  position: relative;
  width: 100%;
  height: 100%;
}

.media-for iframe {
  width: 100%;
  height: 520px;
}

/* Style for the media-nav */
.media-nav .sub-media-list img {
  cursor: pointer;
  width: 140px;
  height: auto;
}

.slider-arrow-media {
  cursor: pointer;
  transition: fill 0.3s ease;
  z-index: 9;
  right: 50px;
  top: -33px;
}

.new-slider-arrow-media {
  cursor: pointer;
  transition: fill 0.3s ease;
  z-index: 9;
  right: 50px;
  top: -33px;
}

.media-slider-nav {
  fill: #313131;
  stroke: #313131;
}

.phone-type {
  display: none;
}
.desktop-type {
  display: inline;
}

.news-nav-left path:hover {
  fill: #B18A09;
}
.news-nav-right path:hover {
  fill: #B18A09;
}

.quote-nav-left path:hover {
  fill: #B18A09;
}
.quote-nav-right path:hover {
  fill: #B18A09;
}

.social-nav-left path:hover {
  fill: #B18A09;
}
.social-nav-right path:hover {
  fill: #B18A09;
}

.blog-nav-left path:hover {
  fill: #B18A09;
}
.blog-nav-right path:hover {
  fill: #B18A09;
}


.mag-slider-nav-left path:hover {
  fill: #B18A09;
}
.mag-slider-nav-right path:hover {
  fill: #B18A09;
}

.slider-nav-left path:hover {
  fill: #B18A09;
}
.slider-nav-right path:hover {
  fill: #B18A09;
}
.project-nav-left path:hover {
  fill: #B18A09;
}
.project-nav-right path:hover {
  fill: #B18A09;
}
.media-slider-nav-left path:hover {
  fill: #B18A09;
}
.media-slider-nav-right path:hover {
  fill: #B18A09;
}

.project-for .slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-for .slick-current {
  opacity: 1;
}

.project-nav .slick-slide {
  opacity: 0;
}

.project-nav .slick-current {
  opacity: 1;
}

.slick-disabled {
  opacity: 0.6;
  cursor:default;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.slick-disabled path:hover{
  fill: #575757 !important;
}


/* .disabled {
  opacity: 0.4;
  cursor:default;
} */

.project-info a {
  color: #B18A09;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.desktop-layout {
  display: inherit;
}

.phone-layout {
  display: none;
}

.button-text {
  color: #B18A09;
  font-size: 14px;
  letter-spacing: 5px;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.button-text:hover {
  color: #B18A09;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.icon-bar {
  position: fixed;
  top: 30%;
  z-index: 99;
  right: 1px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
}

.icon-bar a:hover {
  background-color: rgb(255, 255, 255);
  fill: black;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  fill: white;
}

.twitter svg {
  fill: white;
}

.twitter:hover svg {
  fill: black;
}

.insta {
  background: #EE3F76;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.google svg {
  fill: white;
}

.google:hover svg {
  fill: black;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.svg-container {
  position: relative;
  display: inline-block;
}

.shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through the shine */
  overflow: hidden;
}

.shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%);
  animation: shineAnimation 2s infinite linear;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #232222 !important;
  background-clip: padding-box;
  border: 1px solid rgb(56 55 55 / 20%);
  border-radius: .3rem;
  outline: 0;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem;
  border-top: 1px solid #303030 !important;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #303030 !important;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}

/* -------------------------------------- MAGAZINES ------------------------------------------ */



#magazines {
  padding: 3% 0;
}

.magazines-right {
  /* background-color: #1c1c1c; */
  width: 100%;
  padding: 0px 20px 44px;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
}

.mag-shelf {
  width: 100%;
  height: 20px;
  background-color: #464646;
  position: relative;
  z-index: -1;
  bottom: 138px;
  border-radius: 15px;

}

.mag-card {
  background-color: #121212;
  padding: 30px;
  transition: 1.10s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mag-card:hover {
  background-color: #1C1C1C;
  padding: 30px;
  
}


.mag-discription {
  display: flex;
  margin: 20px 0;
  padding: 0 0%;
  text-align: left;
  gap: 20px;
  flex-direction: column;
}



.mag-slider-arrow {
  z-index: 9;
  cursor: pointer;
  transition: fill 0.3s ease; /* Smooth transition for color change */
}

.magazines-info-outer {
  display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    top: 15px;
    min-height: 80px;
    left: 0px;
}

.magazines-info {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 20px;
}

.magazines-info p {
  text-transform: uppercase;
}

.magazines-info a{
  color: #B18A09;
}

.magazines-info a:hover{
  color: #B18A09;
  text-decoration: underline;
}

.magazines-thunmb {
  width: 288px;
  border-radius: 22px;
  filter: drop-shadow(10px -7px 1px rgba(44, 44, 44, 0.373));
  padding: 10px;
}




@keyframes shineAnimation {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}



  .quote-card {
    background-color: #202020;
    padding: 30px;
    margin-right: 1px;
    opacity: 0.6;
  }

  .quote-card:hover {
    opacity: 0.9;
  }


  .slick-current .quote-card {
    opacity: 0.9;
  }

  .auther {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    margin-top: 40px;
  }






  .media-nav {
    min-height: 560px;
  }







/* -------------------------------------------------Tabs Start------------------------------------------------- */



.tabs-container {
  width: 100%;
  height: auto; /* Make the height flexible */
  overflow: hidden;
  position: relative;
}

.tabs {
  padding: 10px 20px 15px 20px; /* Increased padding */
}

.tab-links {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  /* border-bottom: 1px solid #f0f0f0; */
}

.tab-link {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 15px; /* Increased padding for spacing */
  color: #ccc;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-link.active,
.tab-link:hover {
  color: #B18A09; /* Gradient purple */
  text-decoration: none;
}

.tab-link i {
  margin-right: 10px;
}

.tab-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -1px;
  left: 50%;
  background: linear-gradient(45deg, #B18A09, #B18A09); /* Purple gradient */
  transition: all 0.4s ease;
}

.tab-link.active::after {
  width: 100%;
  left: 0;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
  padding: 5px 10px 15px 10px;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.cta-btn {
  display: inline-block;
  padding: 12px 25px; /* More padding */
  background: linear-gradient(45deg, #B18A09, #B18A09); /* Purple gradient */
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s ease;
  font-weight: 500;
  margin-top: 20px;
}

.cta-btn:hover {
  background: linear-gradient(45deg, #B18A09, #B18A09); /* Darker gradient on hover */
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px; /* Increased padding for inputs */
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #B18A09;
  outline: none;
}

/* FAQ List */
.faq-list {
  padding: 0;
  list-style: none;
}

.faq-list li {
  margin-bottom: 10px;
}

.faq-list li strong {
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .tab-links {
    /* flex-direction: column; */
    align-items: center;
  }

  .tab-link {
    text-align: center;
    width: 100%;
    padding: 15px 0;
  }
}

/* -------------------------------------------------Tabs End------------------------------------------------- */




/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {

  body {
    /* background-size: inherit; */
    background-size: 370%;
    background-attachment: fixed;
    height: 100vh;
  }
  .desktop-layout {
    display: none;
  }

  .phone-layout {
    display: inherit;
  }

  #news {
    margin: 50px 0;
  }

  #footer {
    margin: 50px 0;
  }

  #media {
    margin: 50px 0;
  }
  
  #award {
    margin: 50px 0;
  }
  
  #companyes {
    margin: 10px 0 50px 0;
  }
  #header {
    margin: 20px auto;
  }

  .project-sub-outer {
    top: 0px;
    padding: 0px 0;
    position: relative;
    width: 100%;
  }

  .project-main-outer {
    /* background: #1C1C1C; */
    margin-top: 30px;
  }

  .project-arrow-media {
    top: -36px;
    left: 19px;
  }

  .project-info {
    padding: 0;
    gap: 10px;
  }
  .project-info h1 {
    font-size: 28px;
  }
  .project-info-inner {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .vert-tab {
    display: flex;
    flex-direction: column;
  }
  .recr-content h3 {
    transform: rotate(0deg);
  }

  .vert-tab-content {
    display: flex;
    align-items: center;
    flex-direction: row;
}
  .recr-content {
    margin-top: 1px;
    border: 1px solid;
  }
  .vert-tab > div {
    width: 100%; 
    height: auto;
  }
  .company-inner-left {
    width: 100%;
  }
  .company-inner-right {
    width: 65%;
    animation: slideInFromBottom 0.7s ease-out forwards;
  
  }
  .recr-content h3 {
    margin: 0px 0 0px;
  }
  .cstm-sm-none {
    display: none;
  }


}

@media only screen and (max-width: 768px) { 


  #header {
    margin: 0px auto;
    padding: 40px 0px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.9430365896358543) 0%, rgba(2,0,36,0) 100%);
  }




  .mag-card {
    flex-direction: column;
  }

  .artical-card {
    flex-direction: column;
    padding-left: 0px;
  }

  .artical-post {
    background: rgb(19, 19, 19);
    background: linear-gradient(180deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 1) 48%, rgba(32, 32, 32, 1) 48%, rgba(32, 32, 32, 1) 100%);
    padding: 12px;
  }

  .mag-discription {
    padding: 0 2%;
  }
  .desktop-layout {
    display: none;
  }

  .phone-layout {
    display: inherit;
  }
  
  .portfolio {
      grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
  }

  .project-main-outer {
    background: #1C1C1C;
  }

  .project-sub-outer {
    top: 0px;
    padding: 0 0 0px 0;
    position: relative;
    width: 100%;
  }

  .project-arrow-media {
    top: -36px;
    left: 19px;
  }

  .project-info {
    padding: 0;
    gap: 10px;
  }
  .project-info h1 {
    font-size: 28px;
  }
  .project-info-inner {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .cstm-sm-none {
    display: none;
  }

  .award-left {
    border-right: solid 0px #313131;
  }

  .award-right {
    padding: 50px 50px 0 45px;
  }

  #footer {
    margin: 0px 0;
  }

  #companyes {
    margin: 50px 0;
  }


  #award {
    margin: 50px 0;
  }

  #media {
    margin: 50px 0;
  }

  #news {
    margin: 50px 0;
  }

  .media-for iframe {
    width: 100%;
    height: 219px;
  }

  .ftr-box-left {
    padding: 64px 40px;
  }

  .ftr-box-right {
    padding: 50px 40px;
  }

  @keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  body {
    /* background-size: inherit; */
    background-size: 500%;
    background-attachment: fixed;
    height: 100vh;
  }
  .vert-tab {
    display: flex;
    flex-direction: column;
  }
  .recr-content h3 {
    transform: rotate(0deg);
  }

  .vert-tab-content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .recr-content {
    margin-top: 1px;
    border: 1px solid;
  }
  .vert-tab > div {
    width: 100%; 
    height: auto;
  }
  .company-inner-left {
    width: 100%;
  }
  .company-inner-right {
    width: 65%;
    animation: slideInFromBottom 0.7s ease-out forwards;
  
  }
  .recr-content h3 {
    margin: 0px 0 0px;
  }

  .media-list .sub-media-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .award-left img {
    width: 60%;
  }

  #news .snip1216 img {
    width: 100%;
  }

  .lin-border {
    display: none;
  }

  .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px !important;
    line-height: 50px !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #ffffff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #B18A09 !important;
  }


  .slick-dots {
    bottom: -15px !important;
  }
  .slick-dots li {
    width: 10px !important;
  }

  .icon-bar a {
    display: block;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
    width: inherit;
  }

  .icon-bar {
    position: fixed;
    bottom: -3%;
    top: inherit;
    display: flex;
    z-index: 99;
    margin: 0 auto;
    right: auto;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
  }

  .vert-tab-content p {
    margin-bottom: 30px;
  }

  .slider-arrow-media {
    display: none;
  }

  .phone-type {
    display: inline;
    text-align: center;
  }

  .desktop-type {
    display: none;
  }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {


}