*, *:before, *:after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}
div, section, footer, main {
  position: relative;
}
input, textarea, select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}
button, .button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
}
button:hover, .button:hover {
  cursor: pointer;
  background-color: #d40303;
}
a {
  transition: .2s;
}
button:active, .button:active, a:active {
  transform: scale(0.9);
}
body, section, header, footer, main {
  min-width: 1200px;
}
main {
  z-index: 1;
  padding: 0;
  margin: 0;
  width: 100%;
}
a:hover, .active {
  color: #d40303;
}
#menu-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
.hide {
  display: none;
}
form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
form .half {
  width: 50%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .third {
  width: 33.33%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .half, form .fullwidth, form .third {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  transition: .3s;
}
form .half:focus-within,
form .fullwidth:focus-within, 
form .third:focus-within {
  background: #eee;
}
form .half:focus-within input,
form .fullwidth:focus-within input,
form .third:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea,
form .third:focus-within textarea {
  color: #000;
}
form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .third:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder,
form .third:focus-within textarea::placeholder {
  color: #333;
}
form .fullwidth {
  width: 100%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form input, form textarea, form select {
  border: none;
  width: 82%;
  padding: 10px;
  background: transparent;
}
form .half img, form .fullwidth img, form .third img {
  height: 26px;
}
form textarea {
  width: 90%;
  min-height: 100px;
  align-self: flex-start;
}
form .special img {
  align-self: flex-start;
}
.thin-txt {
  font-weight: 300;
}
.m-right {
  margin-right: 5%;
}
.m-left {
  margin-left: 5%;
}
.m-bottom {
  margin-bottom: 5%;
}
.m-top {
  margin-top: 5%;
}
.hidden {
  display: none;
}
.center {
  text-align: center;
}
.align-vert {
  top: 50%;
  transform: translateY(-50%);
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.img-bg {
  background-position: center;
  background-size: cover;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
  transition: .3s;
}
p, h1, h2, h3, h4, h5, h6 {
  position: relative;
}
p, li {
  line-height: 150%;
}
.modal {
  display: none;
  padding: 30px;
  min-width: 1000px;
}
.modal h3 {
  font-size: 1.8em;
}
.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

/* Loader */
#loader {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}
.gray-txt {
  color: #f2f2f2;
}
.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}
.dark-gray-txt {
  color: #636363;
}
.white-bg {
  background-color: #fff;
}
.white-txt {
  color: #fff;
}
.black-bg {
  background-color: #000;
}
.black-txt {
  color: #000;
}
.red-bg {
  background-color: #d40303;
}
.red-txt {
  color: #d40303;
}
.maroon-bg {
  background-color: #8f0101;
}
.green-bg {
  background-color: #026634;
}
.blue-bg {
  background-color: #2fbfd2;
}
.blue-txt {
  color: #2fbfd2;
}
.three60-blue-bg {
  background-color: #141b3a;
}
.three60-blue-txt {
  color: #141b3a;
}
.kalagdi-brown-bg {
  background-color: #a88624;
}
.kalagdi-brown-txt {
  color: #a88624;
}
.shout-blue-bg {
  background-color: #2f368e;
}
.shout-blue-txt {
  color: #2f368e;
}
.constantia-orange-bg {
  background-color: #f37021;
}
.mia-orange-bg {
  background-color: #fd6303;
}
/* Animations */
.invisible {
  opacity: 0;
  position: relative;
}
.visible {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hide-left {
  left: -100vw;
  opacity: 0;
  position: relative;
}
.reveal-left {
  animation-name: revealLeft;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes revealLeft {
  0% {
    left: -100vw;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
.hide-right {
  right: -100vw;
  opacity: 0;
  position: relative;
}
.reveal-right {
  animation-name: revealRight;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes revealRight {
  0% {
    right: -100vw;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.zoom-out {
  transform: scale(.8);
  opacity: 0;
  position: relative;
}
.zoom-in {
  animation-name: scaleUp;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes scaleUp {
  0% {
    transform: scale(.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.slide-left {
  left: 0 !important;
  opacity: 1 !important;
}
.hide-bottom {
  transform: translateY(80%);
  opacity: 0;
}
.reveal-bottom {
  transform: translateY(0);
  opacity: 1;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(232, 1, 1, 0.5);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5%;
  z-index: 2;
  position: relative;
  overflow: hidden;
  width: 100%;
}
header a.logo-wrap {
  position: relative;
  z-index: 3;
}
header .overlay {
  filter: opacity(.9);
}
header nav, header nav menu {
  margin: 0;
  padding: 0;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
header nav menu {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
header nav menu a {
  color: #000;
  text-decoration: none;
  font-weight: 600;;
}
header .logo {
  height: 70px;
  z-index: 3;
}
header .social {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
header .social .icon {
  height: 24px;
  margin-bottom: -3px;
}
.showHomeHeader {
  animation-name: animateHeader;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes animateHeader {
  0% {
    left: -100vw;
  }
  100% {
    left: 0;
  }
}
#work-menu .block-wrap {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#work-menu .block-wrap .block {
  height: 250px;
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  filter: grayscale(1);
}
#work-menu .block-wrap h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4em;
  transition: .3s;
}
#work-menu .block-wrap .block:hover .overlay,  
#work-menu .block-wrap .block:hover h4 {
  opacity: 0;
  cursor: pointer;
}
#work-menu .block-wrap .overlay {
  filter: opacity(.8);
}
#work-menu .block-wrap .block:hover {
  filter: grayscale(0);
}
#work-menu .block-wrap .block:active {
  transform: scale(.9);
}


/* Footer */
footer {
  overflow: hidden;
}
footer .overlay {
  filter: opacity(.85);
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 5%;
}
footer .top img.logo {
  height: 72px;
}
footer h4 {
  font-size: 4em;
  font-weight: 900;
  margin-top: 30px;
}
footer .line {
  height: 2px;
  width: 400px;
  margin: 20px auto;
  background-color: #494949;
}
footer .social {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
}
footer .social img {
  height: 24px;
  transition: .3s;
}
footer .social img:hover {
  transform: scale(1.1);
}
footer .contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
}
footer .contacts .item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  font-size: .95em;
  font-weight: 500;
}
footer .contacts .item div {
  text-align: left;
}
footer .contacts .item div h5 {
  font-size: 1.2em;
  margin-bottom: 10px;
  margin-top: 0;
}
footer .contacts .item div p {
  line-height: 100%;
  margin-bottom: 0;
  margin-top: 5px;
}
footer .contacts .item .icon {
  height: 36px;
}
footer .legal {
  padding: 20px 5%;
  text-align: center;
  font-size: .9em;
}

/* Home Page */
.home .banner {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home .banner img {
  margin-bottom: -4px;
  position: relative;
  width: 100%;
  height: auto;
  transform: scale(1.3);
}
.zoomOutbanner {
  animation-name: zoomOutImg;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes zoomOutImg {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.home .sec2 {
  padding: 50px 5%;
  z-index: 2;
}
.home .sec2 h2 {
  font-size: 2.5em;
  margin-top: 0;
}
.home .sec2 h2 span:first-of-type {
  font-weight: 300;
}
.home .sec2 p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.home .video-block {
  padding: 0px 5% 80px;
  z-index: 3;
}
.home .video-block .v-wrapper {
  padding-bottom: 44.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
  height: 0;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.home .video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home .video-block .video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#play-btn {
  border-radius: 50%;
  transition: .3s;
  background-color: #d40303;
}
#play-btn:hover {
  cursor: pointer;
  transform: rotate(360deg);
}
#play-btn:active {
  transform: scale(.9);
}

.home .sec3 {
  padding: 30px 5% 60px;
  overflow-x: visible;
  z-index: 4;
}
.home .sec3 > .overlay {
  filter: opacity(.9);
}
.home .sec3 h3 {
  font-size: 1.6em;
  padding: 10px 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-top: -55px;
  position: relative;
}
.home .sec3 .block-wrap {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.home .sec3 .block-wrap > div {
  height: 520px;
}
.home .sec3 .block-wrap .one, .home .sec3 .block-wrap .two {
  width: 25%;
}
.home .sec3 .block-wrap .three, 
.home .sec3 .block-wrap .three .bottom .left, 
.home .sec3 .block-wrap .three .bottom .right {
  width: 50%;
}
.home .sec3 .block-wrap .three .bottom {
  column-gap: 10px;
  display: flex;
}
.home .sec3 .block-wrap .three .bottom .left, 
.home .sec3 .block-wrap .three .bottom .right {
  width: 50%;
}
.home .sec3 .block-wrap .one, 
.home .sec3 .block-wrap .three {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.home .sec3 .block-wrap .one .top, 
.home .sec3 .block-wrap .three .top, 
.home .sec3 .block-wrap .one .bottom, 
.home .sec3 .block-wrap .three .bottom .left, 
.home .sec3 .block-wrap .three .bottom .right {
  height: 255px;
}
.home .sec3 .block-wrap .two, 
.home .sec3 .block-wrap .one .top, 
.home .sec3 .block-wrap .one .bottom, 
.home .sec3 .block-wrap .three .top, 
.home .sec3 .block-wrap .three .bottom .left, 
.home .sec3 .block-wrap .three .bottom .right {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  filter: grayscale(1);
}
.home .sec3 .block-wrap h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4em;
  transition: .3s;
}
.home .sec3 .block-wrap .two:hover .overlay,  
.home .sec3 .block-wrap .two:hover h4,  
.home .sec3 .block-wrap .one .top:hover .overlay, 
.home .sec3 .block-wrap .one .top:hover h4, 
.home .sec3 .block-wrap .one .bottom:hover .overlay, 
.home .sec3 .block-wrap .one .bottom:hover h4, 
.home .sec3 .block-wrap .three .top:hover .overlay, 
.home .sec3 .block-wrap .three .top:hover h4,
.home .sec3 .block-wrap .three .bottom .left:hover .overlay, 
.home .sec3 .block-wrap .three .bottom .left:hover h4, 
.home .sec3 .block-wrap .three .bottom .right:hover .overlay, 
.home .sec3 .block-wrap .three .bottom .right:hover h4 {
  opacity: 0;
  cursor: pointer;
}
.home .sec3 .block-wrap .overlay {
  filter: opacity(.8);
}
.home .sec3 .block-wrap .two:hover,    
.home .sec3 .block-wrap .one .top:hover,  
.home .sec3 .block-wrap .one .bottom:hover,
.home .sec3 .block-wrap .three .top:hover,
.home .sec3 .block-wrap .three .bottom .left:hover,
.home .sec3 .block-wrap .three .bottom .right:hover {
  filter: grayscale(0);
}
.home .sec3 .block-wrap .two:active, 
.home .sec3 .block-wrap .one .top:active, 
.home .sec3 .block-wrap .one .bottom:active, 
.home .sec3 .block-wrap .three .top:active,
.home .sec3 .block-wrap .three .bottom .left:active, 
.home .sec3 .block-wrap .three .bottom .right:active {
  transform: scale(.9);
}

.f-button {
  min-width: 0;
}
.modal {
  min-width: 100%;
  background-size: cover;
  background-position: center;
}
#contact {
  min-height: 90vh;
}
#contact .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}
.modal .overlay {
  filter: opacity(.97);
}
#contact form {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
#contact h3 {
  font-size: 2.5em;
}

.gblock .wrapper {
  min-height: 50vh;
}
.modal .photo-grid {
  display: flex;
  align-items: center;
  column-gap: 15px;
  row-gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.modal .photo-grid .photolink {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border: none;
  outline: none;
}

/* TB Check Page / Work Pages */
.three60 .banner {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5%;
}
.work .banner img {
  width: 100%;
  margin-bottom: -3px;
}
.three60 .banner img {
  width: 148px;
  padding: 8px;
  border-radius: 2px;
}
.three60 .sec2 p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.three60 .sec2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
  row-gap: 10px;
  padding-left: 0;
  margin-left: 0;
  position: relative;
}
.three60 .sec2 ul li {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 450px;
  padding: 10px 15px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  font-size: 1.1em;
}
.three60 .sec2 .videos {
  margin-top: 50px;
}
.three60 .photos {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  max-width: 1300px;
}
.three60 .photos a {
  position: relative;
  width: 15%;
  height: 182px;
}
.three60 .photos a.book {
  height: 275px;
}

.work .sec2 h1 {
  font-size: 1.8em;
  text-transform: uppercase;
}
.work .sec2 {
  padding: 40px 5% 60px;
}
.work .sec2 .overlay {
  filter: opacity(.85);
}
.work .sec2 .points {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-top: 40px;
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.work .sec2 .points .point {
  padding: 10px 15px;
}
.work .sec2 .points .point .top {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 1.3em;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.work .sec2 .points .point .bottom {
  display: none;
  margin-top: 20px;
}
.minus {
  display: none;
}
.work .sec3 {
  height: 500px;
}
.work .sec4 {
  padding: 50px 5%;
}
.work .sec4 h2 {
  margin-top: 0;
  font-size: 2.5em;
}
.work .sec4 p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.work .sec4 .tab-wrap  {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
  gap: 10px; /* Adjust this value for your desired spacing */
  padding: 3%;
  z-index: 1;
  text-align: center;
  justify-content: center;
  font-size: 1.2em;
}
.work .sec4 .tab-wrap .sm-tab, .grid .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.work .sec4 .tab-wrap .sm-tab span {
  position: relative;
  color: #fff;
  display: flex;
  z-index: 2;
  transition: .3s;
}
.work .sec4 .tab-wrap .sm-tab .overlay {
  filter: opacity(.7);
}
.work .sec4 .tab-wrap .sm-tab:hover .overlay, .work .sec4 .tab-wrap .sm-tab:hover span {
  filter: opacity(0);
}
.modal .vid-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .vid-wrap iframe {
  width: 100%;
}
.modal .grid {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Creates 6 equal columns */
  gap: 10px; /* Adjust this value for your desired spacing */
  padding: 3%;
  z-index: 1;
}
.modal .grid a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.modal .fancybox__content {
  padding: 0;
}
#modal5, #modal6, #modal11 {
  padding: 0;
}
#modal8 .grid a {
  color: #fff;
}


.work .sec5 {
  padding: 0px 5% 60px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.work .sec5 .blocks {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: nowrap;
}
.work .sec5 .blocks .block {
  width: 19%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
.work .sec5 .blocks .block span {
  position: relative;
  z-index: 3;
  display: flex;
  font-weight: 600;
  transition: .3s;
}
.work .sec5 .blocks .block:hover .overlay,  .work .sec5 .blocks .block:hover span {
  filter: opacity(0);
}
.work .sec5 .videos, .three60 .sec2 .videos {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: nowrap;
  justify-content: center;
}
.work .sec5 .videos .block, .three60 .sec2 .videos .block {
  width: 33%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: .3s;
}
.work .sec5 .videos .block .title, .three60 .sec2 .videos .block .title {
  position: relative;
  transition: .3s;
  text-transform: uppercase;
}
.work .sec5 .videos .block .overlay, .work .sec5 .blocks .block .overlay, .three60 .sec2 .videos .block .overlay {
  filter: opacity(.7);
}
.work .sec5 .videos .block:hover .overlay, .work .sec5 .videos .block:hover .title, .three60 .sec2 .videos .block:hover .overlay {
  filter: opacity(0);
}
.work .sec5 .videos .block .flex-center,  .three60 .sec2 .videos .block .flex-center {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 600;
  row-gap: 20px;
}
.work .sec5 .videos .block .flex-center .icon, .three60 .sec2 .videos .block .flex-center .icon {
  height: 72px;
  transition: .3s;
  border-radius: 50%;
}
.work .sec5 .videos .block .flex-center .icon:hover, .three60 .sec2 .videos .block .flex-center .icon:hover {
  transform: rotate(360deg);
  background-color: #d40303;
  cursor: pointer;
}
.work .sec5 .videos .block .flex-center .icon:active, .three60 .sec2 .videos .block .flex-center .icon:active {
  transform: scale(.9);
}

/* Who We Are Page */
.about .banner {
  padding: 40px 5%;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .banner h1 {
  font-size: 4em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .banner h1 span {
  position: relative;
  display: flex;
  transition: transform .5s;
}
.about .banner h1 span.space {
  width: 15px;
}
.about .banner h1 span:hover {
  transform: rotate(360deg) scale(1.2);
}
.about .sec2 {
  display: flex;
  align-items: flex-start;
  padding: 60px 5%;
  column-gap: 5%;
  flex-wrap: nowrap;
}
.about .sec2 .left, .about .sec2 .right {
  width: 47.5%;
}
.about .sec2 .left {
  position: sticky;
  top: 0px;
  height: 100vh;
  overflow: hidden;

  img {
    height: 100vh;
    object-fit: cover;
  }
}
.about .sec2 h2, .about .sec2 h3, .about .sec2 h4, .about .sec2 h5 {
  font-size: 2.5em;
  margin-bottom: 20px;
} 
.about .sec2 h2:first-of-type {
  margin-top: 0;
}
.about .sec2 p {
  font-size: 1.1em;
}
.clients .sec2 .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Creates 6 equal columns */
  gap: 10px; /* Adjust this value for your desired spacing */
  padding: 0 3%;
  z-index: 1;
}
.clients .sec2 .grid .item {
  height: 150px;
  overflow: hidden;
  filter: grayscale(1);
  transition: .3s;
}
.clients .sec2 .grid .item:hover {
  cursor: pointer;
  filter: grayscale(0);
}
.clients .sec2 .grid .item img {
  width: 100%;
}
.clients .sec2 {
  flex-direction: column;
  align-items: center;
}
.clients .sec2 h2 {
  margin-top: 0;
}

.team .sec2 .right p.big-text {
  font-size: 2em;
  font-weight: 700;
  line-height: 100%;
}