@font-face {
   font-family: "qand";
   font-style: normal;
   src: local("qanduchia"), local("qanduchia", sans-serif), url("font/Qanduchia.woff2") format("woff2"); font-display: swap;
}

@font-face {
  font-family: 'rale-thin';
   font-style: normal;
   src: local("Raleway-Thin"), local("Raleway-Thin", sans-serif), url("font/Raleway-Thin.woff2") format("woff2"); font-display: swap;
}

@font-face {
  font-family: 'rale-med';
   font-style: normal;
   src: local("raleway-medium"), local("raleway-medium", sans-serif), url("font/Raleway-Medium.woff2") format("woff2"); font-display: swap;
}

@font-face {
    font-family: 'rale-semi';
    font-style: normal;
    src: local("raleway-semibold"), local("raleway-semibold", sans-serif), url("font/Raleway-SemiBold.woff2") format("woff2"); font-display: swap;
}
 
:root {
    --ekam-purple: #922780;
    --ekam-orange: #e76e33;
    --ekam-beige: #fff2e6;
    --ekam-gray: #58615e;
    --ekam-white: #ffffff;

    --ekam-lt-orange: #ffaa00;
    --ekam-dk-beige: #ffd48f;

    --ekam-headline-font: 10rem;
    --ekam-sub-headline-font: 4rem;
    --ekam-body-copy-font: 1.35rem;
    --ekam-footer-body-font: 1.22rem;
    --ekam-buttons: 1.6rem;


    --ekam-headling-leadig: 10.5rem;
    --ekam-sub-headline-leadig: 4rem;
    --ekam-body-copy-leadig: 2.6rem;
}
 
body {
    background: none;
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
     
html {
       font-family: "rale-med";
}

/* new ham menu start */

#ham {
  position: fixed;
  cursor: pointer;
  height: 1.8rem;
  width: 1.8rem;
  overflow: visible;
  display: flex;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 100;
}

#ham span,
#ham span:before,
#ham span:after {
  background-color: var(--ekam-lt-orange);
  border-radius: 1rem;
  display: block;
  height: .27rem;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
  mix-blend-mode: overlay;
}

#ham span:before,
#ham span:after {
  content: "";
}

#ham span:before {
  left: 0rem;
  top: -.6rem;
  width: 1.8rem;
}

#ham span {
  top: .6rem;
  width: 1.8rem;
}

#ham span:after {
  left: 0rem;
  top: .6rem;
  width: 1.8rem;
}

#ham.close span:before {
  top: 0rem;
  transform: rotate(90deg);
  width: 1.8rem;
}

#ham.close span {
  transform: rotate(-45deg);
  top: 1rem;
  width: 1.8rem;
}

#ham.close span:after {
  top: 0rem;
  left: 0rem;
  transform: rotate(90deg);
  opacity: 0;
  width: 0rem;
}

#sidemenu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  top: 4.5rem;
  right: 1.5rem;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 110;
}

#sidemenu a {
  font-size: 1.5rem;
  line-height: 3.6rem;
  font-family: qand;
  color: var(--ekam-purple);
  text-decoration: none;
  text-align: right;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  border-bottom: .1rem solid var(--ekam-orange);
}

#sidemenu a:hover {
  color: var(--ekam-orange);
  border-bottom: .1rem solid var(--ekam-purple);
  transition: all 0.3s ease-in-out;
}

#sidemenu a:nth-child(6) {
  border-bottom: none;
}

#sidemenu.overlay {
  visibility: visible;
  opacity: 1;
  padding-top: .4rem;
  background: var(--ekam-white);
  overflow-x: hidden;
}

/* MENUBAR AND LOGO */

#ekamatibackground {
  width: 100%;
  height: 100vh;
  /* position: relative; */
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: -1;
}

.logo {
  /* width: 100%; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  gap: 4rem;
}

.testimonial-logo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  gap: 4rem;
}


.ekamati-logo {
  display: grid;
  width: 100%;
  z-index: 1;
}

.logo-head {
  width: 100%;
  position: absolute;
  display: flex;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  text-align: center;
}





/* LOGO AND ITS DESCRIPTION */

.logos-and-description {
   width: 65%;
   height: 100vh;
   display: grid;
   grid-template-columns: 30% 70%;
   justify-items: center;
   align-items: center;
   margin: 0 auto;
 }

.old-logo {
  height: 62%;
   padding-right: 5rem;
   text-align: center;
   border-right: .1rem solid var(--ekam-orange);
 }

.old-logo-description {
   font-size: var(--ekam-body-copy-font);
   line-height: var(--ekam-body-copy-leadig);
   color: var(--ekam-gray);
 }


.landing-pg-logo {
   padding-bottom: 4rem;
 }

.ekamati-description p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
   color: var(--ekam-gray);
   padding-bottom: 2rem;
 }






 /* LANDING PAGE SECTION */
 
#firstpagebackground {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  /* align-items: stretch; */
  overflow: hidden;
}


.firstpage-section {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
}

.first-page-design-captions {
  display: grid;
  align-items: center;
}

.firstpage-designcontent {
  display: grid;
  width: 100%;
  height: 100%;
  max-height: 50%;
  padding-right: 5rem;
  align-items: center;
}

.recognized, .distinct, .schedule, .untold {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-bottom: 2rem;
}

.opaque {
  display: grid;
  text-align: right;
  gap: 1rem;
  font-size: 5rem;
  font-family: qand;
  color: var(--ekam-purple);
}

.attribute {
  text-align: left;
  gap: 1rem;
  font-size: 5rem;
  font-family: qand;
  color: var(--ekam-orange);
}

.opaque-punch {
  display: grid;
  text-align: right;
  font-size: 8.7rem;
  font-family: qand;
  color: var(--ekam-purple);
}

.attribute-punch {
  text-align: left;
  font-size: 8.7rem;
  font-family: qand;
  color: var(--ekam-orange);
}

.op25 {
  opacity: .25;
}
.op50 {
  opacity: .50;
}
.op75 {
  opacity: .75;
}

.recognized, .distinct, .schedule, .untold {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1rem;
  padding-bottom: .8rem;
}

.untold {
  padding-top: 2rem;
}

/* BUTTON SECTION */

.button-section {
  height: 90%;
  display: flex;
  align-items: end;
  gap: 2rem;
  padding-left: 3.5rem;
  padding-bottom: 1.5rem;
}

.works-button {
  width: 100%;
  max-width: 17rem;
  height: 4.5rem;
  display: grid;
  align-items: center;
  justify-self: right;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.reach-button {
  width: 17rem;
  height: 4.5rem;
  display: grid;
  align-items: center;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.works-button a {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1.5rem 0rem;
}

.reach-button a {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1.5rem 4.5rem;
}

.works-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}
.reach-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}





/* PAGEONE ANIMATION SECTION STARTS */

.landingpagecarousel {
  height: 100%;
  display: grid;
  grid-template-rows: 80% 20%;
  align-items: end;
}

.landingpagecarousel .landingpagelist {
    position: absolute;
    top: 7%;
    width: 80%;
    max-width: 75%;
    height: 90%;
    left: 60%;
    transform: translateX(-50%);
    z-index: 0;
}

.landingpagecarousel .landingpagelist .landingpageitems {
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(n + 6){
    opacity: 0;
}

.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) {
    z-index: 10;
    transform: translateX(0);
}

.landingpagecarousel .landingpagelist .landingpageitems img {
    width: 60%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}

.landingpagetitles {
  position: absolute;
    width: 80%;
    max-width: 75%;
    height: 95%;
    right: -80%;
    top: 7rem;
    transform: translateX(-50%);
    font-size: 3.5rem;
    font-family: qand;
    line-height: 1.56rem;
    color: var(--ekam-purple);
}

.onepage-color-titles {
  font-size: 1.25rem;
    font-family: rale-semi;
    line-height: .5rem;
    color: var(--ekam-orange);
}

/* .landingpagecarousel .landingpagelist .landingpageitems .onepagedescription{
    opacity: 0;
    pointer-events: none;
} */

/* .landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription{
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
} */

.landingpagecarousel .landingpagelist .landingpageitems .onepagedescription .onepagetitle{
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
    font-family: rale-semi;
    color: var(--ekam-orange);
}

.landingpagecarousel .landingpagelist .landingpageitems .onepagedescription .onepagetopic{
  font-size: var(--ekam-sub-headline-font);
}

/* .landingpagecarousel .landingpagelist .landingpageitems .onepagedescription .onepagedescription{
    color: var(--ekam-purple);
} */

.landingpagecarousel .landingpagelist .landingpageitems:nth-child(1){
    transform: var(--onepage1-transform);
    filter: var(--onepage1-filter);
    z-index: var(--onepage1-zIndex);
    opacity: var(--onepage1-opacity);
    pointer-events: none;
}

.landingpagecarousel .landingpagelist .landingpageitems:nth-child(3){
    transform: var(--onepage3-transform);
    filter: var(--onepage3-filter);
    z-index: var(--onepage3-zIndex);
}

.landingpagecarousel .landingpagelist .landingpageitems:nth-child(4){
    transform: var(--onepage4-transform);
    filter: var(--onepage4-filter);
    z-index: var(--onepage4-zIndex);
}

.landingpagecarousel .landingpagelist .landingpageitems:nth-child(5){
    transform: var(--onepage5-transform);
    filter: var(--onepage5-filter);
    opacity: var(--onepage5-opacity);
    pointer-events: none;
}

/* animation text in item2 */
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription .onepagetitle,
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription .onepagetopic,
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription .onepagedescription {
    opacity: 0;
    animation: onepageContent 0.5s 1s ease-in-out 1 forwards;
}

@keyframes onepageContent{
    from{
        transform: translateY(-1.85rem);
        filter: blur(.6rem);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0rem);
    }
}
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription .onepagetopic{
    animation-delay: 1.2s;
}
.landingpagecarousel .landingpagelist .landingpageitems:nth-child(2) .onepagedescription .onepagedescription{
    animation-delay: 1.4s;
}

/* next click */
.landingpagecarousel.pagenext .landingpageitems:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--onepage2-transform);
        filter: var(--onepage2-filter);
        opacity: var(--onepage2-opacity);
    }
}
.landingpagecarousel.pagenext .landingpageitems:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--onepage3-transform);
        filter: var(--onepage3-filter);
        opacity: var(--onepage3-opacity);
    }
}
.landingpagecarousel.pagenext .landingpageitems:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--onepage4-transform);
        filter: var(--onepage4-filter);
        opacity: var(--onepage4-opacity);
    }
}
.landingpagecarousel.pagenext .landingpageitems:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--onepage5-transform);
        filter: var(--onepage5-filter);
        opacity: var(--onepage5-opacity);
    }
}
/* previous */
.landingpagecarousel.pageprev .landingpagelist .landingpageitems:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.landingpagecarousel.pageprev .landingpagelist .landingpageitems:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.landingpagecarousel.pageprev .landingpagelist .landingpageitems:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.landingpagecarousel.pageprev .landingpagelist .landingpageitems:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--onepage1-transform);
        filter: var(--onepage1-filter);
        opacity: var(--onepage1-opacity);        
    }
}

/* detail  
.landingpagecarousel .landingpagelist .landingpageitems .detail{
    opacity: 0;
    pointer-events: none;
}
*/

/* showDetail */
/* 
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(3),
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2){
    width: 100%;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .onepagedescription{
    opacity: 0;
    pointer-events: none;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) img{
    right: 50%;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail{
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .onepagetitle{
    font-size: 4em;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .specifications{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid var(--ekam-orange);
    margin-top: 20px;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .specifications div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .specifications div p:nth-child(1){
    font-weight: bold;
}

.landingpagecarousel.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .checkout button{
    font-family: rale-med;
    background-color: transparent;
    border: 1px solid var(--ekam-purple);
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.landingpagecarousel.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .checkout button:nth-child(2){
    background-color: #693EFF;
    color: #eee;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail  .onepagetitle,
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail  .onepagedescription,
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .specifications,
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .checkout{
    opacity: 0;
    animation: onepageContent 0.5s 1s ease-in-out 1 forwards;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail  .onepagedescription{
    animation-delay: 1.2s;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .specifications{
    animation-delay: 1.4s;
}
.landingpagecarousel.showDetail .landingpagelist .landingpageitems:nth-child(2) .detail .checkout{
    animation-delay: 1.6s;
} */

.onepagearrows {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1.5rem;
  display: none;
}

#onepageprev,
#onepagenext {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-family: rale-semi;
    border: none;
    font-size: var(--ekam-body-copy-font);
    line-height: var(--ekam-body-copy-leadig);
    background: var(--ekam-orange);
    color: var(--ekam-beige);
    bottom: 20%;
    left: 50%;
}
#onepagenext{
    left: unset;
    right: 10%;
}
/* #back{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #555;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.5s;
} */
/* 
.landingpagecarousel.showDetail #back{
    opacity: 1;
}
.landingpagecarousel.showDetail #onepageprev,
.landingpagecarousel.showDetail #onepagenext{
    opacity: 0;
    pointer-events: none;
} */

.landingpagecarousel::before {
    width: 35rem;
    height: 30rem;
    content: '';
    background-image: linear-gradient(70deg, var(--ekam-orange), var(--ekam-purple));
    z-index: 0;
    position: absolute;
    border-radius: 50% 80% 1000% 30%;
    filter: blur(150px);
    opacity: .6;
    top: 63%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}

/* .landingpagelistbackground {
    width: 35rem;
    height: 30rem;
    content: '';
    background-image: linear-gradient(70deg, var(--ekam-orange), var(--ekam-purple));
    z-index: 0;
    display: grid;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50% 80% 1000% 30%;
    filter: blur(150px);
    opacity: .6;
    transition: 1s;
} */

/* 
.landingpagecarousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}
 */


/* PAGEONE ANIMATION SECTION ENDS */



















/* FOOTER SECTION */

.emakati-footer {
  width: 100%;
  background: var(--ekam-beige);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.left-address {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
}

.address p {
  font-size: var(--ekam-footer-body-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-gray);
  align-items: end;
  padding-top: 1.2rem;
}

.socialmedia {
  display: grid;
  grid-template-rows: 30% 30% 40%;
  border-right: .1rem solid var(--ekam-purple);
  border-left: .1rem solid var(--ekam-purple);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.numbers a {
  display: inline-block;
  font-size: var(--ekam-footer-body-font);
  font-family: rale-semi;
  color: var(--ekam-purple);;
  text-decoration: none;
}

.numbers a:hover {
  color: var(--ekam-orange);
  font-family: rale-med;
  transition: 01s ease;
}

.links {
  display: grid;
  grid-template-rows: 80% 20%;
}

.sm-links {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-description p {
  font-size: var(--ekam-footer-body-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-orange);
}

.pipe {
  font-size: 2rem;
  font-family: rale-thin;
  line-height: 2rem;
  padding: 0 1.3rem;
  color: var(--ekam-purple);
}

.sitemap a {
  font-size: var(--ekam-footer-body-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-gray);
}

.sitemap a:hover {
  color: var(--ekam-orange);
}

/* ABOUT SECTION */

.landing-page-section {
  width: 100%;
  height: 100vh;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: -1;
}

.about-page {
  position: relative;
  top: 40%;;
  left: 26%;
  transform: translateY(-50%);
}

.about-heading {
  font-size: var(--ekam-headline-font);
  line-height: var(--ekam-headling-leadig);
  font-family: qand;
  color: var(--ekam-purple);
  padding-bottom: 2rem;
}

.heading-colors {
  color: var(--ekam-orange);
}

.core-colors {
  color: var(--ekam-lt-orange);
}

.about-sub-headline {
  font-size: var(--ekam-sub-headline-font);
  line-height: var(--ekam-headling-leadig);
  font-family: qand;
  color: var(--ekam-orange);
  padding-bottom: 1.25rem;
}


.about-content {
  width: 55%;
}

.about-content p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 1.5rem;
}

/* CONTACT PAGE */

.contact-page-logo {
  position: absolute;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.landing-page-contact-section {
  width: 100%;
  height: 100vh;
  background: url(img/purple-bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: -1;
}

.contact-information {
  width: 65%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 20% 5% 73%;
  justify-content: center;
  align-items: center;
}

.contact-details {
  padding-right: 2rem;
  text-align: right;
  padding-bottom: 2rem;
}

.contact-address p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-beige);
}

.contact-address {
  padding-bottom: 1.5rem;
}

.contact-number {
  padding-top: 1.5rem;
}

.contact-number a {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-semi;
  color: var(--ekam-dk-beige);
  text-decoration: none;
}

.contact-number a:hover {
  color: var(--ekam-beige);
}

.grid-cell {
  display: flex;
  justify-content: space-between;
  padding-top: 4rem;
}

.map-section {
  width: 100%;
  height: 55%;
}

.maps {
  width: 100%;
  height: 100%;
}

/* WORKS */


#worksbackground {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* 
#container {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display:flex;
  justify-content:center;
   align-items:center;
} */

#workspresentation {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


#workswebsite {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.works-heading {
  position: absolute;
  width: 100%;
  font-size: var(--ekam-headline-font);
  line-height: var(--ekam-headling-leadig);
  font-family: qand;
  color: var(--ekam-purple);
  text-align: center;
  z-index: 0;
}


.works-sub-heading {
  font-size: var(--ekam-sub-headline-font);
  line-height: var(--ekam-sub-headline-leadig);
  font-family: qand;
  color: var(--ekam-purple);
  text-align: right;
  padding-top: 3rem;
  padding-right: 5rem;
}


.works-landing-page {
  padding-top: 5rem;
}

.works-sections {
  max-width: 100%;
  max-height: 100%;
  width: 57%;
  height: 65%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 4rem;
}

.works-section-color {
  width: 23rem;
  height: 19rem;
  background: var(--ekam-dk-beige);
  border-radius: .2rem;
  cursor: pointer;
}

.works-all-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-works-all-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-works-all-section a {
  font-size: var(--ekam-body-copy-font);
  line-height: 1.6rem;
  font-family: rale-semi;
  text-decoration: none;
  color: var(--ekam-orange);
  text-align: center;
}


.works-all-section-twocol {
  height: 100%;
  max-height: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  justify-items: center;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
}

.works-website {
  border-right: .1rem solid var(--ekam-orange);
}

.works-website:nth-child(2) {
  border-right: none;
}

.works-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.website-details {
  padding: 0rem 2rem;
}

.website-details p {
  font-family: rale-med;
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  text-align: center;
  transition: 0.7s ease;
  color: var(--ekam-gray);
  text-align: center;
}



.works-website p {
  font-family: rale-med;
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  text-align: center;
  transition: 0.7s ease;
  color: var(--ekam-gray);
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
}



/* LOGO CAROUSEL */

.all-logo-works {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 8rem;
}
.all-logo-works img {
  width: 100%;
  object-fit: contain;
  border-radius: .2rem;
}

.works-logos {
  width: 100%;
  height: 80%;
  border-radius: .6rem;
  position: relative;
  transition: 0.7s ease;
  border: solid .12rem var(--ekam-gray);
  display: flex;
}

.title-logos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.title-logos p {
  font-family: rale-semi;
  font-size: var(--ekam-body-copy-font);
  text-align: left;
  color: var(--ekam-purple);
  /* transform: rotate(270deg); */
  transition: 0.7s ease;
}

.logo-details {
  position: relative;
  bottom: 1.5rem;
  left: 1.5rem;
}

.logo-details p {
  font-family: rale-med;
  font-size: var(--ekam-body-copy-font);
  text-align: right;
  position: absolute;
  bottom: 10%;
  transition: 0.7s ease;
  color: var(--ekam-purple);
  text-align: center;
  display: none;
}

.logo-pipe {
  font-size: var(--ekam-body-copy-font);
  color: var(--ekam-orange);
  font-family: rale-semi;
}

/* 
.works-logos.active {
  width: 47rem !important;
  height: 40rem !important;
  border: solid .2rem var(--ekam-gray);
  border-radius: 1rem;
  box-shadow: .25rem .25rem .5rem .1rem var(--ekam-gray);
} */

/* .works-logos.active .logo-details p {
  display: block;
}

.works-logos.active .title-logos p {
  display: none;
}
 */


/* CORE BENEFITS */

.works-core-background {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/purple-bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.corebenefits {
  width: 100%;
  height: 100%;
  max-height: 95%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  padding-left: 2rem;
  padding-right: 2rem;
}

.core-content {
  height: 100%;
  max-height: 85%;
  padding: 4rem;
  display: grid;
  grid-template-rows: 80% 20%;
  justify-content: stretch;
  border-right: .1rem solid var(--ekam-beige);
}

.core-content:nth-child(3) {
  border-right: none;
}

/* BUTTON SECTION */

.core-button-section {
  padding-top: 4rem;
}

.core-button {
  width: 16rem;
  height: 4rem;
  display: grid;
  align-items: end;
  background: var(--ekam-orange);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}


.core-button a {
  font-size: var(--ekam-buttons);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1.2rem 0rem;
}

.core-button a:hover {
  font-size: var(--ekam-buttons);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-white);
  background: var(--ekam-lt-orange);
  transition: all 0.4s ease-in-out;
}


.core-details p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-beige);
  padding-top: 2rem;
}


/* WORKS COLLATERAL SECTION */


#workscollateral {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.allcollateral {
  width: 100%;
}


.collateralitem {
  width: 11.5rem;
  height: 12rem;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-orange);
  background-position: 30% center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 1s;
}


.collateralitem:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background-position: 25% center;
  width: 100%;
  height: 75%;
  border: none;
}

.collateralitem:nth-child(2){
  left: 67%;
}

.collateralitem:nth-child(3){
  left: calc(67% + 12.5rem);
}

.collateralitem:nth-child(4){
  left: calc(67% + 25rem);
}

.collateralitem:nth-child(5){
  left: calc(67% + 37.5rem);
}

.collateralitem:nth-child(6){
  left: calc(67% + 50rem);
}

.collateralitem:nth-child(n+7){
  left: calc(67% + 62.5rem);
  opacity: 0;
}


.content {
  position: absolute;
  top: 9rem;
  right: 5rem;
  transform: translateY(-50%);
  width: 100%;
  text-align: right;
  display: none;
}

.collateralitem:nth-child(1) .content{
  display: block;
}

.collateralitem:nth-child(2) .content{
  display: none;
}


.content .name {
  font-size: 2.5rem;
  font-family: rale-med;
  color: var(--ekam-orange);
  text-transform: uppercase;
  line-height: 3rem;

  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .collateralbrief {
  margin-top: .5rem;
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-gray);

  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}


@keyframes animate {
  
  from {
      opacity: 0;
      transform: translate(0, 6.5rem);
      filter: blur(7rem);
  }

  to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}




.arrows {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.arrows button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--ekam-purple);
  color: var(--ekam-beige);
  border: none;
  outline: none;
  font-size: var(--ekam-buttons);
  font-family: rale-semi;
  transition: .5s;
  cursor: pointer;
}

.arrows button:hover {
  background: var(--ekam-orange);
  color: var(--ekam-beige);
  overflow:visible;
}


/* WORKS BUTTON SECTION */

.works-back-button {
  position: absolute;
  bottom: 2rem;
  right: 2%;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 100;
}

.button-works {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--ekam-orange);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-works a {
  font-size: var(--ekam-buttons);
  font-family: rale-semi;
  transition: .5s;
  color: var(--ekam-beige);
  text-decoration: none;
  text-align: center;
  padding: 3.5rem;
}

.button-works:hover {
  background: var(--ekam-purple);
  color: var(--ekam-beige);
  transition: .5s;
}



/* WORKS SOCIAL MEDIA SECTION */


#workssocialmedia {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.allsocialmedia {
  width: 100%;
}


.socialmediaitem {
  width: 11.5rem;
  height: 12rem;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-orange);
  background-position: 30% center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 1s;
}


.socialmediaitem:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background-position: 25% center;
  width: 100%;
  height: 75%;
  border: none;
}

.socialmediaitem:nth-child(2){
  left: 75%;
}

.socialmediaitem:nth-child(3){
  left: calc(75% + 12.5rem);
}

.socialmediaitem:nth-child(4){
  left: calc(75% + 25rem);
}

.socialmediaitem:nth-child(n+5){
  left: calc(75% + 37.5rem);
  opacity: 0;
}


.content {
  position: absolute;
  top: 9rem;
  right: 5rem;
  transform: translateY(-50%);
  width: 25rem;
  text-align: right;
  display: none;
}

.socialmediaitem:nth-child(1) .content{
  display: block;
}

.socialmediaitem:nth-child(2) .content{
  display: none;
}

.content .name {
  font-size: 2.5rem;
  font-family: rale-med;
  color: var(--ekam-orange);
  text-transform: uppercase;
  line-height: 3rem;

  opacity: 0;
  animation: animatesocialmedia 1s ease-in-out 0.6s 1 forwards;
}

.content .collateralbrief {
  margin-top: .5rem;
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-gray);

  opacity: 0;
  animation: animatesocialmedia 1s ease-in-out 0.9s 1 forwards;
}

@keyframes animatesocialmedia {
  
  from {
      opacity: 0;
      transform: translate(0, 6.5rem);
      filter: blur(7rem);
  }

  to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}


.arrows {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 18.75rem;
  max-width: 45%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.arrows button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--ekam-purple);
  color: var(--ekam-beige);
  border: none;
  outline: none;
  font-size: var(--ekam-buttons);
  font-family: rale-semi;
  transition: .5s;
  cursor: pointer;
}

.arrows button:hover {
  background: var(--ekam-orange);
  color: var(--ekam-beige);
  overflow:visible;
}



/* TESTIMONIAL SECTION */


#testimonial {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}



.testimonial-inset {
  height: 85%;
  display: grid;
  justify-items: center;
  align-items: center;
}

.testimonial-section {
  max-height: 100%;
  width: 71%;
  height: 60%;
  position: absolute;
  animation: testshowContent .5s linear 1 forwards;
  transition: all 2s ease-out;
  overflow: hidden;
}

.testimonial-alignment {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12%;
  padding-right: 12%;
  border: .18rem solid var(--ekam-purple);
  box-shadow: .3rem .3rem .7rem .02rem #a0819b;
  border-radius: 1rem;
}


.testimonial-image {
  width: 100%;
  height: auto;
  display: grid;
  width: 100%;
  place-items: center;
  padding-bottom: .5rem;
}

.testimonial-name p {
  font-size: 4rem;
  font-family: qand;
  color: var(--ekam-purple);
  padding-bottom: .3rem;
  text-align: center;
}

.testimonial-title p {
  font-size: var(--ekam-body-copy-font);
  color: var(--ekam-orange);
  text-align: center;
}

.testimonial-copy p {
  font-size: var(--ekam-body-copy-font);
  color: var(--ekam-gray);
  line-height: var(--ekam-body-copy-leadig);
  text-align: center;
  padding-top: 2rem;
}

#testprev,
#testnext {
  position: relative;
  margin: 0 auto;
  width: 36%;
}




/* testimonial animation section */

.testarrows {
  position: absolute;
  justify-content: space-between;
  width: 75%;
  max-width: 100%;
  display: flex;
  align-items: center;
  z-index: 100;
}

.testprev,
.testnext {
    width: 5.5rem;
    height: 5.5rem;
    border: .26rem solid var(--ekam-beige);
    border-radius: 50%;
    background: var(--ekam-purple);
    color: var(--ekam-beige);
    transition: .1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

.testprev:hover,
.testnext:hover {
    background-color: var(--ekam-orange);
    color: var(--ssi-light-gray);
}

.testprev p,
.testnext p {
  font-family: rale-semi;
  font-size: var(--ekam-buttons);
  color: var(--ekam-beige);
  padding: 2rem;
}


@keyframes testshowContent {
  from {
    filter: blur(.6rem);
    opacity: 0;
  }

  to {
      filter: blur(0rem);
      opacity: 1;
  }

}



/* COMPARIOSN PAGE */

.works-background {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.comparison {
  display: grid;
  grid-template-columns: 49% 2% 49%;
  justify-items: center;
  align-items: center;
}

.comparison-content {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 1rem 3rem;
}

.comparison-details {
  padding: 1rem 6rem ;
}

.comparison-details p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 1.5rem;
}

.horizontal-dmarker {
  height: .14rem;
  width: 85vh;
  background: var(--ekam-lt-orange);
  margin: 2rem;
}

.comparison-beforeafter p {
  font-size: var(--ekam-sub-headline-font);
  line-height: var(--ekam-sub-headline-leadig);
  font-family: qand;
  color: var(--ekam-purple);
}



/* ONSCHEDULE PAGE */

.works-background {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.comparison-onschedule {
  display: grid;
  grid-template-columns: 49% 2% 49%;
  justify-items: center;
  align-items: center;
  padding-top: 7rem;
}

.comparison-content {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 1rem 3rem;
}

.comparison-details {
  padding: 1rem 6rem ;
}

.comparison-details p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 1.5rem;
}

.horizontal-dmarker {
  height: .14rem;
  width: 85vh;
  background: var(--ekam-lt-orange);
  margin: 2rem;
}

.comparison-beforeafter p {
  font-size: var(--ekam-sub-headline-font);
  line-height: var(--ekam-sub-headline-leadig);
  font-family: qand;
  color: var(--ekam-purple);
}

/* NEW TESTIMONIAL SECTION  START */

.main-wrapper {
  width: 100%;
  display: flex;
  padding: 0 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 56%;
  transform: translatey(-50%);
}

.wrapper {
  width: 95%;
  height: 100%;
  /* padding: 5rem; */
}

.wrapper i {
  top: 50%;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  font-size: var(--ekam-body-copy-font);
  font-family: rale-semi;
  color: var(--ekam-beige);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: var(--ekam-body-copy-leadig);
  background: var(--ekam-lt-orange);
  border-radius: 50%;
  box-shadow: 0 .2rem .4rem var(--ekam-gray);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child {
  left: 3rem;
}
.wrapper i:last-child{
  right: 3rem;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% / 3 - .8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  border-radius: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}

/* .carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.carousel .card {
  scroll-snap-align: start;
  height: 100%;
  list-style: none;
  cursor: pointer;
  padding: 1.25rem;
  flex-direction: column;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-lt-orange);  
}


/* NEW TESTIMONIAL SECTION  END */


/* NEW WORKS LOGO SECTION START  */

#workslogos {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


.logocarousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.logocarousel .logolist {
  height: 100%;
  position: relative;
}
.logocarousel .logolist::before {
  position: absolute;
  width: var(--w-image);
  height: 82%;
  content: '';
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  border-left: .12rem solid var(--ekam-orange);
  border-right: .12rem solid var(--ekam-orange);
  z-index: 10;
  pointer-events: none;
}
/* .logocarousel .logolist::after {
  position: absolute;
  top: 50px;
  left: 50px;
  content: '';
  background-color: red;
  width: 400px;
  height: 300px;
  z-index: 10;
  pointer-events: none;
  border-radius: 20px  50px 110px  230px;
  filter: blur(150px);
  opacity: .6;
} */

.logocarousel .logolist .logoitem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.logocarousel .logolist .logoitem .logoimage {
  width: var(--w-image);
  height: 70%;
  position: absolute;
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  font-weight: 500;
}
.logocarousel .logolist .logoitem .logoimage img {
  width: 100%;
  /* filter: drop-shadow(0 150px 50px #9e0c0c55); */
}

.logocarousel .logolist .logoitem .logoimage figcaption {
  font-family: 'qand';
  font-size: 2.5rem;
  line-height: 1.8rem;
  text-align: left;
  margin-bottom: 2.5rem;
  color: var(--ekam-purple);
  width: 80%;
}

.color-caption {
  font-family: 'rale-med';
  font-size: 1.3rem;
  color: var(--ekam-orange);
}


/* 
.logocarousel .logolist .logoitem .main-logo-content{
  height: 100%;
  display: grid;
  align-items: start;
  grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}
.logocarousel .logolist .logoitem .main-logo-content .logo-content, .logo-description {
  padding-top: 1rem;
  padding-left: 3.5rem;
}
.logocarousel .logolist .logoitem .main-logo-content .logo-content {
  padding-top: 8rem;
  padding-left: 3.5rem;
  padding-right: 3rem;
}

.logocarousel .logolist .logoitem .main-logo-content .logo-content .logo-title p {
  font-size: var(--ekam-sub-headline-font);
  font-family: qand;
  line-height: var(--ekam-headling-leadig);
  color: var(--ekam-orange);
}


.logo-description p {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
}
 */


.logoarrows {
  position: absolute;
  bottom: 3rem;
  width: calc(100% - calc(var(--w-image) * var(--calculate)));
  display: grid;
  grid-template-columns: repeat(2, 4rem);
  grid-template-rows: 4rem;
  justify-content: end;
  gap: 1.5rem;
  padding-right: 2rem;
}

.logoarrows button {
  background-color: var(--ekam-purple);
  border-radius: 50%;
  color: var(--ekam-beige);
  border: none;
  font-size: 1.3rem;
  font-family: rale-semi;
  line-height: 0;
  cursor: pointer;
  transition: 0.5s;
}

.logoarrows button:hover{
  background-color: var(--ekam-orange);
}

.logocarousel .logolist .logoitem {
  display: none;
}

.logocarousel .logolist .logoitem.logoactive,
.logocarousel .logolist .logoitem.other_1,
.logocarousel .logolist .logoitem.other_2 {
  display: block;
}

.logocarousel .logolist .logoitem.logoactive{
  z-index: 2;
}

.logocarousel .logolist .logoitem.other_1,
.logocarousel .logolist .logoitem.other_2{
  pointer-events: none;
}

.logocarousel .logolist .logoitem.logoactive .main-logo-content {
  animation: logoshowContent 1s ease-in-out 1 forwards;
}

@keyframes logoshowContent {
  from {
      clip-path: circle(0% at 70% 50%);
  } to {
      clip-path: circle(100% at 70% 50%);
  }
}

.front .logoitem.other_1{
  z-index: 1;
}

.front .logoitem .logoimage img,
.front .logoitem .logoimage figcaption{
  animation: effectNext .5s ease-in-out 1 forwards;
}

@keyframes effectNext{
  from{
      transform: translateX(calc(var(--transform-from)));
  }to{
      transform: translateX(calc(var(--transform-from) - var(--w-image)));
  }
}

.front .logoitem.logoactive .logoimage{
  --transform-from: var(--w-image);
}

.front .logoitem.other_1 .logoimage{
  z-index: 3;
  --transform-from: 0px;
  overflow: hidden;
}

.front .logoitem.other_2 .logoimage{
  z-index: 3;
  --transform-from: calc(var(--w-image) * 2);
}

.logoarrows{
  z-index: 10;
}

/* prev */
.back .logolist .logoitem .logoimage img,
.back .logolist .logoitem .logoimage figcaption{
  animation: effectPrev 0.5s ease-in-out 1 forwards;
}

@keyframes effectPrev{
  from{
      transform: translateX(calc(var(--transform-from)));
  }to{
      transform: translateX(calc(var(--transform-from) + var(--w-image)));
  }
}
.back .logolist .logoitem.logoactive .logoimage{
  --transform-from: calc(var(--w-image) * -1);
  overflow: hidden;
}
.back .logolist .logoitem.other_1 .logoimage{
  --transform-from: 0px;
  z-index: 3;
}
.back .logolist .logoitem.other_2 .logoimage{
  z-index: 3;
  --transform-from: var(--w-image);
}
.back .logolist .logoitem.other_2 .main-logo-content{
  opacity: 0;
}

/* NEW WORKS LOGO SECTION END  */


/* JOURNEY SO FAR SECTION */

#so-far-journey-background {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(img/bgnd-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.journey-description {
  width: 55%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}

.journey-description p {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
}


/* NUMBER COUNTER SECTION */

.numbercountsection {
  width: 100%;
  padding-top: 3rem;
}

.journey-dmarker {
  width: .14rem;
  height: 80%;
  background: var(--ekam-lt-orange);
}

.countsection {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 1.5rem;
}

.numbercountcontainer {
  width: 100%;
  padding: 1rem;
  border-right: .1rem solid var(--ekam-orange);
}

.numbercountcontainer:nth-child(3) {
  border-right: none;
}


.numbercount {
  color: var(--ekam-purple);
  display: grid;
  place-items: center;
  font-size: 12rem;
  font-family: qand;
}

.numbercounttitle {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-semi;
  line-height: 1.8rem;
  letter-spacing: .2rem;
  text-align: center;
}

/* LOGO SCROLL SECTION */

.establishments {
  width: 100%;
  max-width: 100%;
  height: 7.5rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  /* background: var(--ekam-beige); */
  /* border-top: .12rem solid var(--ekam-orange); */
  /* border-bottom: .12rem solid var(--ekam-orange); */
}

.establishments::after {
  content: '';
  background: var(--ekam-beige);
  width: 100%;
  height: 5rem;
}

@keyframes scrolllogo {
  to {
    left: -18rem;
  }
}

.clients {
  width: 18rem;
  height: 7.5rem;
  position: absolute;
  left: max(calc(18rem * 15), 100%);
  animation-name: scrolllogo;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}


.clients-heading p {
text-align: center;
font-size: var(--ekam-body-copy-font);
font-family: rale-semi;
line-height: var(--ekam-body-copy-leadig);
letter-spacing: .3rem;
padding-bottom: 1rem;
color: var(--ekam-purple);
padding-top: 6rem;
}


.client1 {
  animation-delay: calc(30s / 15 * (15 - 1) * -1);
}

.client2 {
  animation-delay: calc(30s / 15 * (15 - 2) * -1);
}

.client3 {
  animation-delay: calc(30s / 15 * (15 - 3) * -1);
}

.client4 {
  animation-delay: calc(30s / 15 * (15 - 4) * -1);
}

.client5 {
  animation-delay: calc(30s / 15 * (15 - 5) * -1);
}

.client6 {
  animation-delay: calc(30s / 15 * (15 - 6) * -1);
}

.client7 {
  animation-delay: calc(30s / 15 * (15 - 7) * -1);
}

.client8 {
  animation-delay: calc(30s / 15 * (15 - 8) * -1);
}

.client9 {
  animation-delay: calc(30s / 15 * (15 - 9) * -1);
}

.client10 {
  animation-delay: calc(30s / 15 * (15 - 10) * -1);
}

.client11 {
  animation-delay: calc(30s / 15 * (15 - 11) * -1);
}

.client12 {
  animation-delay: calc(30s / 15 * (15 - 12) * -1);
}

.client13 {
  animation-delay: calc(30s / 15 * (15 - 13) * -1);
}

.client14 {
  animation-delay: calc(30s / 15 * (15 - 14) * -1);
}

.client15 {
  animation-delay: calc(30s / 15 * (15 - 15) * -1);
}




/* MEDIA QUERY STARTS HERE */


@media (max-width: 1350px) and (min-width: 1000px) {

  :root {
    --ekam-headline-font: 7.25rem;
    --ekam-sub-headline-font: 2.25rem;
    --ekam-body-copy-font: 1.2rem;
    --ekam-footer-body-font: 1rem;
    --ekam-buttons: 1.2rem;

    --ekam-headling-leadig: 8.25rem;
    --ekam-sub-headline-leadig: 3.5rem;
    --ekam-body-copy-leadig: 2rem;

    
    --w-image: 33.5rem;
    --calculate: calc(3 / 2);
  }



  .logo {
    /* width: 100%; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
    padding-left: 1rem;
    gap: 2rem;
  }

  .logo img {
    height: 80%;
  }


  
/* LOGO AND ITS DESCRIPTION */

.logos-and-description {
  width: 85%;
  height: 100vh;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}

.old-logo {
 height: 52%;
  padding-right: 1rem;
  text-align: center;
  border-right: .1rem solid var(--ekam-orange);
}

.old-logo img {
  width: 75%;
}

.old-logo-description {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
}

.new-logo {
  padding-left: 1rem;
}


.landing-pg-logo {
  padding-bottom: 2rem;
}

.landing-pg-logo img {
  width: 70%;
}


.ekamati-description p {
 font-size: var(--ekam-body-copy-font);
 line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 2rem;
}





  /* LANDING PAGE SECTION */


  .opaque {
    display: grid;
    text-align: right;
    gap: 1rem;
    font-size: 2.5rem;
    font-family: qand;
    color: var(--ekam-purple);
  }

  .attribute {
    text-align: left;
    gap: 1rem;
    font-size: 2.5rem;
    font-family: qand;
    color: var(--ekam-orange);
  }

  .opaque-punch {
    display: grid;
    text-align: right;
    font-size: 4.5rem;
    font-family: qand;
    color: var(--ekam-purple);
  }

  .attribute-punch {
    text-align: left;
    font-size: 4.5rem;
    font-family: qand;
    color: var(--ekam-orange);
  }

  .recognized, .distinct, .schedule, .untold {
    padding-bottom: .4rem;
  }

  /* BUTTON SECTION */

  .works-landing-page {
    padding-top: 1rem;
  }

.button-section {
  height: 80%;
  display: flex;
  align-items: end;
  gap: 1rem;
  padding-left: 2rem;
  padding-bottom: 4rem;
}

.works-button {
  width: 100%;
  max-width: 13rem;
  height: 4rem;
  display: grid;
  align-items: center;
  justify-self: right;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.reach-button {
  width: 13rem;
  height: 4rem;
  display: grid;
  align-items: center;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}


.reach-button a {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1.5rem 3rem;
}

.works-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}
.reach-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}

.landingpagetitles {
  position: absolute;
    width: 80%;
    max-width: 75%;
    height: 95%;
    right: -80%;
    top: 13rem;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-family: qand;
    line-height: 1.4rem;
    color: var(--ekam-purple);
}

  /* JOURNEY SO FAR SECTION */

  #so-far-journey-background {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .journey-description {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
  }


  /* NUMBER COUNTER SECTION */


  .countsection {
    width: 95%;
  }

  .numbercountsection {
    width: 100%;
    padding-top: .5rem;
  }

  .numbercountcontainer {
    width: 100%;
    padding: .5rem;
  }

  .numbercount {
    color: var(--ekam-purple);
    display: grid;
    place-items: center;
    font-size: 10rem;
    font-family: qand;
  }

  .numbercounttitle {
    font-size: var(--ekam-body-copy-font);
    font-family: rale-semi;
    line-height: 1.8rem;
    letter-spacing: .2rem;
    text-align: center;
  }

  /* LOGO SCROLL SECTION */

  .clients-heading p {
  text-align: center;
  font-size: var(--ekam-body-copy-font);
  font-family: rale-semi;
  line-height: var(--ekam-body-copy-leadig);
  letter-spacing: .3rem;
  padding-bottom: .2rem;
  color: var(--ekam-purple);
  padding-top: 1rem;
  }


  /* ABOUT US SECTION */

  .about-page {
    left: 19%;
  }

.about-heading {
  padding-bottom: .5rem;
}


.about-sub-headline {
  line-height: var(--ekam-sub-headline-leadig);
  padding-bottom: 1rem;
}


.about-content {
  width: 63%;
}

.about-content p {
  padding-bottom: 1.2rem;
}


/* CONTACT PAGE */


.contact-page-logo {
  position: absolute;
  padding-top: .5rem;
  padding-left: 1.5rem;
}


.contact-information {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 5% 65%;
  justify-content: center;
  align-items: start;
  padding-top: 5rem;
}

.contact-details {
  padding-right: 1.2rem;
  text-align: right;
  padding-bottom: 1.2rem;
}

.contact-address p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-beige);
}

.dmarker {
  width: .08rem;
  height: 51vh;
  background: var(--ekam-lt-orange);
}

/* WORKS SECTION */

.works-sections {
  max-width: 100%;
  max-height: 100%;
  width: 97%;
  height: 65%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.works-section-color {
  width: 17rem;
  height: 16rem;
  background: var(--ekam-dk-beige);
  border-radius: .2rem;
  cursor: pointer;
}

.landing-works-all-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-works-all-section a {
  font-size: var(--ekam-body-copy-font);
  line-height: 1.5rem;
  font-family: rale-semi;
  text-decoration: none;
  color: var(--ekam-orange);
  text-align: center;
}

.works-website img {
  width: 80%;
  text-align: center;
}

/* WORKS SECTION */


.works-and-back-button {
  width: 100%;
}


.works-sub-heading {
  font-size: var(--ekam-sub-headline-font);
  line-height: 2.2rem;
  font-family: qand;
  color: var(--ekam-purple);
  text-align: right;
  padding-top: 3rem;
  padding-right: 5rem;
}


.logocarousel .logolist .logoitem .logoimage figcaption {
  font-family: 'qand';
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--ekam-purple);
  width: 90%;
}

.color-caption {
  font-family: 'rale-med';
  font-size: 1.2rem;
  color: var(--ekam-orange);
}

.logoarrows {
  bottom: 2rem;
  grid-template-columns: repeat(2, 3.5rem);
  grid-template-rows: 3.5rem;
  justify-content: end;
  gap: 1.5rem;
  padding-right: 2rem;
}

/* WORKS BUTTON SECTION */

.button-works {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--ekam-orange);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-works a {
  font-size: var(--ekam-buttons);
  font-family: rale-semi;
  transition: .5s;
  color: var(--ekam-beige);
  text-decoration: none;
  text-align: center;
  padding: 3.5rem;
}

.button-works:hover {
  background: var(--ekam-purple);
  color: var(--ekam-beige);
  transition: .5s;
}

.arrows {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  width: 18.75rem;
  max-width: 45%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.arrows button {
  width: 3.5rem;
  height: 3.5rem;
}

.content {
  position: absolute;
  top: 12rem;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 16rem;
  text-align: right;
  display: none;
}

.content .name {
  font-size: 1.5rem;
  font-family: rale-med;
  color: var(--ekam-orange);
  text-transform: uppercase;
  line-height: 2rem;
}


.collateralitem {
  width: 10.5rem;
  height: 9rem;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 50%;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-orange);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  transition: 1s;
}

.content .collateralbrief {
  margin-top: .5rem;
  font-size: 1.05rem;
  line-height: 1.75rem;
  font-family: rale-med;
  color: var(--ekam-gray);

  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}


.website-details {
  padding: 0rem 0rem;
}







/* FOOTER SECTION */

.footer-content {
  gap: 1rem;
  padding: 1rem;
}

.footer-description p {
  font-size: var(--ekam-footer-body-font);
  line-height: 1.55rem;
  font-family: rale-med;
  color: var(--ekam-orange);
}

.socialmedia {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pipe {
  font-size: 1.7rem;
  font-family: rale-thin;
  line-height: 1.8rem;
  padding: 0 0.8rem;
  color: var(--ekam-purple);
}




}

@media (max-width: 999px) and (min-width: 799px) {

  :root {
    --ekam-headline-font: 5.75rem;
    --ekam-sub-headline-font: 2.2rem;
    --ekam-body-copy-font: 1.05rem;
    --ekam-footer-body-font: 1.15rem;
    --ekam-buttons: 1rem;

    --ekam-headling-leadig: 7.25rem;
    --ekam-sub-headline-leadig: 2.75rem;
    --ekam-body-copy-leadig: 1.75rem;

    
    --w-image: 36rem;
    --calculate: 1;
  }



  .logo {
    /* width: 100%; */
    display: grid;
    grid-template-columns: 30% 70%;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    gap: 2rem;
  }
  .logo img {
    height: 60%;
  }

   
/* LOGO AND ITS DESCRIPTION */

.logos-and-description {
  width: 85%;
  height: 100vh;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}

.old-logo {
 height: 52%;
  padding-right: 1rem;
  text-align: center;
  border-right: .1rem solid var(--ekam-orange);
}

.old-logo img {
  width: 75%;
}

.old-logo-description {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
}

.new-logo {
  padding-left: 1rem;
}


.landing-pg-logo {
  padding-bottom: 2rem;
}

.landing-pg-logo img {
  width: 70%;
}


.ekamati-description p {
 font-size: var(--ekam-body-copy-font);
 line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 2rem;
}



  /* LANDING PAGE SECTION */

  #firstpagebackground {
    max-height: 98%;
    display: grid;
    grid-template-rows: 10% 75% 15%;
    padding-top: 1.5rem;
    align-items: center;
    overflow: hidden;
  }
  
.firstpage-section {
  height: 100%;
  display: grid;
  grid-template-rows: 50% 50%;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
}

.first-page-design-captions {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-right: 3.5rem;
}

.landingpagecarousel {
  width: 100%;
  display: grid;
  grid-template-columns: 80% 20%;
  align-items: end;
}

.firstpage-designcontent {
  width: 150%;
  display: grid;
  grid-template-columns: 100%;
  align-content: center;
  padding-top: 1rem;
}

.landingpagecarousel .landingpagelist {
    position: absolute;
    top: 20%;
    width: 90%;
    max-width: 90%;
    height: 90%;
    left: 15%;
    z-index: 0;
}

.landingpagecarousel .landingpagelist .landingpageitems {
    position: absolute;
    left: 0%;
    width: 100%;
    height: 100%;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}


  .opaque {
    display: grid;
    text-align: right;
    gap: 1rem;
    font-size: 2rem;
    font-family: qand;
    color: var(--ekam-purple);
  }

  .attribute {
    text-align: left;
    gap: 1rem;
    font-size: 2rem;
    font-family: qand;
    color: var(--ekam-orange);
  }

  .opaque-punch {
    display: grid;
    text-align: right;
    font-size: 3.2rem;
    font-family: qand;
    color: var(--ekam-purple);
  }

  .attribute-punch {
    text-align: left;
    font-size: 3.2rem;
    font-family: qand;
    color: var(--ekam-orange);
  }

  .recognized, .distinct, .schedule, .untold {
    padding-bottom: .4rem;
  }

  .untold {
    padding-top: .5rem;
  }

  /* BUTTON SECTION */

  .works-landing-page {
    padding-top: 3.5rem;
  }

.button-section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1rem;
  padding-left: 0rem;
  padding-bottom: .95rem;
}

.works-button {
  width: 100%;
  max-width: 10rem;
  height: 3rem;
  display: grid;
  align-items: center;
  justify-self: center;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.reach-button {
  width: 10rem;
  height: 3rem;
  display: grid;
  align-items: center;
  background: var(--ekam-purple);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.works-button a {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1rem 0rem;
}

.reach-button a {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding: 1rem 1rem;
}

.works-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}

.reach-button a:hover {
  font-size: var(--ekam-body-copy-font);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-beige);
  background: var(--ekam-orange);
  transition: all 0.4s ease-in-out;
}

.landingpagetitles {
  position: absolute;
    width: 100%;
    max-width: 85%;
    height: 100%;
    right: -105%;
    top: 10rem;
    transform: translateX(-50%);
    font-size: 2.1rem;
    font-family: qand;
    line-height: 1.3rem;
    color: var(--ekam-purple);
}

.landingpagecarousel .landingpagelist {
  position: absolute;
  top: 24%;
  width: 100%;
  max-width: 95%;
  height: 90%;
  left: 10%;
  transform: translateX(-50%);
  z-index: 0;
}

.landingpageitem {
  width: 100%;
}


  /* CORE CONTENT */

  .corebenefits {
    max-height: 90%;
    padding-left: 1rem;
    padding-right: 1rem;
  }


  .core-content {
    max-height: 85%;
    padding: .4rem;
  }

  .core-content img {
    max-width: 70%;
  }

  
.core-button-section {
  padding-top: 1rem;
}

.core-button {
  width: 13rem;
  height: 3.55rem;
  display: grid;
  align-items: end;
  background: var(--ekam-orange);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}


  /* JOURNEY SO FAR SECTION */

  #so-far-journey-background {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .journey-description {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
  }


  /* NUMBER COUNTER SECTION */

  .numbercountcontainer {
    width: 90%;
    padding: .5rem;
  }

  
.countsection {
  width: 90%;
}


  .numbercount {
    color: var(--ekam-purple);
    display: grid;
    place-items: center;
    font-size: 6rem;
    font-family: qand;
  }

  .numbercounttitle {
    font-size: .9rem;
    font-family: rale-semi;
    line-height: 1.15rem;
    letter-spacing: .15rem;
    text-align: center;
  }

  /* LOGO SCROLL SECTION */

  .clients-heading p {
  text-align: center;
  font-size: var(--ekam-body-copy-font);
  font-family: rale-semi;
  line-height: var(--ekam-body-copy-leadig);
  letter-spacing: .3rem;
  padding-bottom: 1rem;
  color: var(--ekam-purple);
  padding-top: 2rem;
  }


  /* ABOUT US SECTION */

  .about-page {
    left: 15%;
  }

.about-heading {
  padding-bottom: .5rem;
}


.about-sub-headline {
  line-height: var(--ekam-sub-headline-leadig);
  padding-bottom: 1rem;
}


.about-content {
  width: 65%;
}

.about-content p {
  padding-bottom: 1.2rem;
}


/* WORKS PAGE */




/* CONTACT PAGE */


.contact-page-logo {
  position: absolute;
  padding-top: .5rem;
  padding-left: 1.5rem;
}


.contact-information {
  width: 98%;
  height: 100%;
  margin: auto 0;
  display: grid;
  grid-template-columns: 95%;
  justify-content: center;
  align-content: center;
}

.contact-details {
  width: 100%;
  height: 100%;
  padding-right: 2rem;
  text-align: right;
  padding-bottom: 1rem;
  padding-left: 2rem;
}

.contact-address p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-beige);
  text-align: center;
}


.contact-number {
  padding-top: 1rem;
  text-align: center;
}

.contact-number a {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-semi;
  color: var(--ekam-dk-beige);
  text-decoration: none;
  text-align: center;
}


.dmarker {
  width: .08rem;
  height: 51vh;
  background: var(--ekam-lt-orange);
  display: none;
}

.map-section {
  height: 60%;
  width: 100%;
  max-width: 80%;
  display: none;
}


/* WORKS SECTION */

.works-landing-page {
  height: 100%;
  padding-top: 1rem;
}

.works-sections {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 60%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
}

.works-section-color {
  width: 18rem;
  height: 14rem;
  background: var(--ekam-dk-beige);
  border-radius: .2rem;
  cursor: pointer;
}

.landing-works-all-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-works-all-section a {
  font-size: var(--ekam-body-copy-font);
  line-height: 1.2rem;
  font-family: rale-semi;
  text-decoration: none;
  color: var(--ekam-orange);
  text-align: center;
}

.works-website img {
  width: 85%;
  text-align: center;
}


/* WORKS SECTION */


.works-heading {
  position: absolute;
  width: 100%;
  font-size: var(--ekam-headline-font);
  line-height: var(--ekam-headling-leadig);
  font-family: qand;
  color: var(--ekam-purple);
  text-align: center;
  z-index: 0;
  padding-top: 4.5rem;
}

.works-sub-heading {
  font-size: var(--ekam-sub-headline-font);
  line-height: 2.2rem;
  font-family: qand;
  color: var(--ekam-purple);
  text-align: right;
  padding-top: 4rem;
  padding-right: 7rem;
}


.logocarousel .logolist .logoitem .logoimage figcaption {
  font-family: 'qand';
  font-size: 2.1rem;
  line-height: 1.6rem;
  text-align: left;
  margin-bottom: 1.5rem;
  padding-left: 7rem;
  color: var(--ekam-purple);
  width: 85%;
}

.color-caption {
  font-family: 'rale-med';
  font-size: 1.2rem;
  color: var(--ekam-orange);
}

.logoarrows {
  bottom: 2rem;
  grid-template-columns: repeat(2, 3.5rem);
  grid-template-rows: 3.5rem;
  justify-content: end;
  gap: 1.5rem;
  padding-right: 2rem;
}

/* WORKS BUTTON SECTION */

.works-back-button {
  position: absolute;
  bottom: .7rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 100;
}


.button-works {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--ekam-orange);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-works a {
  font-size: var(--ekam-buttons);
  font-family: rale-semi;
  transition: .5s;
  color: var(--ekam-beige);
  text-decoration: none;
  text-align: center;
  padding: 2.5rem;
}

.button-works:hover {
  background: var(--ekam-purple);
  color: var(--ekam-beige);
  transition: .5s;
}

.arrows {
  position: absolute;
  bottom: .7rem;
  left: 0rem;
  width: 18.5rem;
  max-width: 40%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.arrows button {
  width: 3rem;
  height: 3rem;
}

.content {
  position: absolute;
  top: 2.75rem;
  right: 5rem;
  transform: translateY(-50%);
  width: 16rem;
  text-align: right;
  display: none;
}

.content .name {
  font-size: 1.5rem;
  font-family: rale-med;
  color: var(--ekam-orange);
  text-transform: uppercase;
  line-height: 2rem;
}


.collateralitem, .socialmediaitem {
  width: 8rem;
  height: 7rem;
  position: absolute;
  top: 87%;
  transform: translateY(-70%);
  left: 10%;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-orange);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 95%;
  transition: 1s;
}

.content .collateralbrief {
  margin-top: .5rem;
  font-size: 1rem;
  line-height: 1.35rem;
  font-family: rale-med;
  color: var(--ekam-gray);
  display: none;

  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}


.website-details {
  padding: 0rem 0rem;
}



.logocarousel .logolist::before {
  position: absolute;
  width: var(--w-image);
  height: 82%;
  content: '';
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  border-left: none;
  border-right: none;
  z-index: 10;
  pointer-events: none;
  padding: 1rem;
}


.logocarousel .logolist .logoitem .logoimage {
  width: 80%;
  left: 0;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logoimage img {
  width: 100%;
}

.logoarrows{
  left: 0%;
  justify-content: center;
}









/* FOOTER SECTION */

.emakati-footer {
  width: 100%;
  background: var(--ekam-beige);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  gap: 2rem;
  padding: 1.5rem;
}

.address {
padding-right: 1rem;
}

.socialmedia {
  display: grid;
  grid-template-rows: 30% 30% 40%;
  border-right: none;
  border-left: .1rem solid var(--ekam-purple);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}




}

@media (max-width: 798px) and (min-width: 350px) {

  :root {
    --ekam-headline-font: 3.7rem;
    --ekam-sub-headline-font: 1.9rem;
    --ekam-body-copy-font: .95rem;
    --ekam-footer-body-font: .88rem;
    --ekam-buttons: 1rem;

    --ekam-headling-leadig: 2rem;
    --ekam-sub-headline-leadig: 2.3rem;
    --ekam-body-copy-leadig: 1.45rem;

    
    --w-image: 100%;
    --calculate: 1;

    
    --onepage1-transform: translateX(-100%) translateY(-5%) scale(2);
    --onepage1-filter: blur(1.8rem);
    --onepage1-zIndex: 11;
    --onepage1-opacity: 0;

    --onepage2-transform: translateX(0);
    --onepage2-filter: blur(0rem);
    --onepage2-zIndex: 10;
    --onepage2-opacity: 1;

    --onepage3-transform: translate(50%, 10%) scale(0.8);
    --onepage3-filter: blur(.6rem);
    --onepage3-zIndex: 9;
    --onepage3-opacity: 1;

    --onepage4-transform: translate(90%, 20%) scale(0.5);
    --onepage4-filter: blur(1.8rem);
    --onepage4-zIndex: 8;
    --onepage4-opacity: 1;
    
    --onepage5-transform: translate(120%, 30%) scale(0.3);
    --onepage5-filter: blur(2.5rem);
    --onepage5-zIndex: 7;
    --onepage5-opacity: 0;


  }

     
/* LOGO AND ITS DESCRIPTION */

.logos-and-description {
  width: 92%;
  height: 100vh;
  display: grid;
  grid-template-rows: 50% 50%;
  justify-items: center;
  align-items: start;
  margin: 0 auto;
  padding-top: 4rem;
}

.old-logo {
 height: 52%;
  padding-right: 0rem;
  text-align: center;
  border-right: .1rem solid var(--ekam-orange);
}

.old-logo img {
  width: 75%;
}

.old-logo-description {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
}

.new-logo {
  padding-left: .8rem;
}


.landing-pg-logo {
  padding-bottom: .8rem;
}

.landing-pg-logo img {
  width: 70%;
}


.ekamati-description p {
 font-size: var(--ekam-body-copy-font);
 line-height: var(--ekam-body-copy-leadig);
  color: var(--ekam-gray);
  padding-bottom: 1.5rem;
}


  /* LANDING PAGE SECTION */

  #firstpagebackground {
    max-height: 98%;
    display: grid;
    grid-template-rows: 10% 75% 15%;
    padding-top: 1.5rem;
    align-items: center;
    overflow: hidden;
  }
  
.firstpage-section {
  height: 100%;
  display: grid;
  grid-template-rows: 90% 10%;
  justify-content: center;
  align-items: start;
  gap: .5rem;
  pointer-events: none;
}

.first-page-design-captions {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 70% 30%;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  padding-right: .5rem;
  /* display: none; */
}

.landingpagecarousel {
  width: 100%;
  display: grid;
  /* grid-template-columns: 60% 40%; */
  align-items: end;
}

.firstpage-designcontent {
  width: 150%;
  display: grid;
  grid-template-columns: 100%;
  align-content: center;
  padding-top: 1rem;
}

.landingpagecarousel .landingpagelist {
    position: absolute;
    top: 20%;
    width: 90%;
    max-width: 90%;
    height: 90%;
    left: 15%;
    z-index: 0;
}

.landingpagecarousel .landingpagelist .landingpageitems {
    position: absolute;
    left: 0%;
    width: 100%;
    height: 100%;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}


  .opaque {
    display: grid;
    text-align: right;
    gap: 1rem;
    font-size: 1.2rem;
    font-family: qand;
    color: var(--ekam-purple);
    /* display: none; */
  }

  .attribute {
    text-align: left;
    gap: 1rem;
    font-size: 1.2rem;
    font-family: qand;
    color: var(--ekam-orange);
    /* display: none; */
  }

  .opaque-punch {
    display: grid;
    text-align: right;
    font-size: 2.5rem;
    font-family: qand;
    color: var(--ekam-purple);
  }

  .attribute-punch {
    text-align: left;
    font-size: 2.5rem;
    font-family: qand;
    color: var(--ekam-orange);
  }

  .recognized, .distinct, .schedule, .untold {
    padding-bottom: .4rem;
  }

  .untold {
    padding-top: 0rem;
  }

  .button-section {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 1rem;
    padding-left: 0rem;
    padding-bottom: .95rem;
  }
  
  .works-button {
    width: 100%;
    max-width: 10rem;
    height: 3rem;
    display: grid;
    align-items: center;
    justify-self: center;
    background: var(--ekam-purple);
    text-align: center;
    border-radius: .15rem;
    border: none;
    cursor: pointer;
  }
  
  .reach-button {
    width: 10rem;
    height: 3rem;
    display: grid;
    align-items: center;
    background: var(--ekam-purple);
    text-align: center;
    border-radius: .15rem;
    border: none;
    cursor: pointer;
  }
  
  .works-button a {
    font-size: var(--ekam-body-copy-font);
    font-family: rale-med;
    text-decoration: none;
    color: var(--ekam-dk-beige);
    padding: 1rem 0rem;
  }
  
  .reach-button a {
    font-size: var(--ekam-body-copy-font);
    font-family: rale-med;
    text-decoration: none;
    color: var(--ekam-dk-beige);
    padding: 1rem 1rem;
  }
  
  .works-button a:hover {
    font-size: var(--ekam-body-copy-font);
    font-family: rale-med;
    text-decoration: none;
    color: var(--ekam-beige);
    background: var(--ekam-orange);
    transition: all 0.4s ease-in-out;
  }
  
  .reach-button a:hover {
    font-size: var(--ekam-body-copy-font);
    font-family: rale-med;
    text-decoration: none;
    color: var(--ekam-beige);
    background: var(--ekam-orange);
    transition: all 0.4s ease-in-out;
  }
  
  .landingpagetitles {
    position: absolute;
      width: 100%;
      max-width: 85%;
      height: 100%;
      right: -108%;
      top: 6rem;
      transform: translateX(-50%);
      font-size: 1.7rem;
      font-family: qand;
      line-height: 1.2rem;
      color: var(--ekam-purple);
  }
  
  .landingpagecarousel .landingpagelist {
    position: absolute;
    top: 35%;
    width: 100%;
    max-width: 100%;
    height: 70%;
    left: 25%;
    transform: translateX(-50%);
    z-index: 0;
  }
  
  .landingpageitem {
    width: 100%;
  }
  


.logo {
  display: grid;
  grid-template-columns: 90%;
  text-align: center;
}

.works-sub-heading {
  text-align: center;
}
  
.ekamati-logo {
  display: none;
}

.works-sub-heading {
  width: 100%;
  padding-top: 0rem;
  padding-right: 0rem;
}

.journey-description {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0.8rem 0;
}

/* NUMBER COUNTER SECTION */

#so-far-journey-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  /* padding-top: .5rem;
  padding-bottom: .5rem; */
}


.numbercountcontainer {
  width: 100%;
  padding: 0rem;
}

.countsection {
  width: 100%;
  grid-template-columns: 100%;
  gap: 1.5rem;
}

.numbercount {
  color: var(--ekam-purple);
  display: grid;
  place-items: center;
  font-size: 6rem;
  font-family: qand;
}

.numbercounttitle {
  font-size: .9rem;
  font-family: rale-semi;
  line-height: 1.15rem;
  letter-spacing: .15rem;
  text-align: center;
}

.numbercountcontainer {
  border-right: none;
  padding: 0rem;
}

.numbercountsection {
  padding-top: 0.5rem;
}

/* about section */

.about-page {
  position: relative;
  top: 50%;;
  left: 2rem;
  transform: translateY(-50%);
}

.about-sub-headline {
  line-height: 2.3rem;
  padding-bottom: .5rem;
}

.about-content {
  width: 85%;
}



  /* CORE CONTENT */

  .works-core-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .corebenefits {
    width: 100%;
    height: 100%;
    max-height: 98%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(95%, 1fr));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }


  .core-content {
    max-height: 100%;
    padding: .4rem;
    border-right: none;
  }

  .core-content img {
    max-width: 40%;
  }

.core-button-section {
  padding-top: 1rem;
}

.core-details p {
  padding-top: .25rem;
}

.core-button-section {
  padding-top: 1rem;
}

.core-button {
  width: 10rem;
  height: 3rem;
  display: grid;
  align-items: end;
  background: var(--ekam-orange);
  text-align: center;
  border-radius: .15rem;
  border: none;
  cursor: pointer;
}

.core-button a {
  font-size: var(--ekam-buttons);
  font-family: rale-med;
  text-decoration: none;
  color: var(--ekam-dk-beige);
  padding-bottom: .2rem .9rem;
  display: grid;
  padding-top: .9rem;
}


/* WORKS SECTION */


#worksbackground {
  height: 100%;
  background-size: cover;
}

.works-sections {
  max-width: 87%;
  max-height: 100%;
  width: 100%;
  height: 60%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: .3rem;
}

.logocarousel .logolist::before {
  position: absolute;
  width: var(--w-image);
  height: 82%;
  content: '';
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  border-left: none;
  border-right: none;
  z-index: 10;
  pointer-events: none;
  padding: 1rem;
}

.logocarousel .logolist .logoitem .logoimage {
  width: 100%;
  left: 0;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
}

.logocarousel .logolist .logoitem .logoimage figcaption {
  font-family: 'qand';
  font-size: 2rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-left: 2.2rem;
  color: var(--ekam-purple);
  width: 90%;
}

.logoimage img {
  width: 100%;
}

.logoarrows{
  left: 38%;
  justify-content: center;
}

.logoarrows {
  bottom: 2rem;
  grid-template-columns: repeat(2, 3rem);
  grid-template-rows: 3rem;
  justify-content: end;
  gap: 1.5rem;
  padding-right: 2rem;
}

.button-works {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--ekam-orange);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrows {
  position: absolute;
  bottom: .7rem;
  left: 1.5rem;
  width: 18.5rem;
  max-width: 40%;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.arrows button {
  width: 3rem;
  height: 3rem;
}


.collateralitem, .socialmediaitem {
  width: 8rem;
  height: 7rem;
  position: absolute;
  top: 87%;
  transform: translateY(-70%);
  left: 0%;
  border-radius: 1rem;
  border: .12rem solid var(--ekam-orange);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 1s;
}

.content .collateralbrief {
  margin-top: 0rem;
  font-size: .8rem;
  line-height: 1rem;
  font-family: rale-med;
  color: var(--ekam-gray);
  display: none;

  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .name {
  font-size: 1.2rem;
  font-family: rale-med;
  color: var(--ekam-orange);
  text-transform: uppercase;
  line-height: 2rem;
}

.works-all-section-twocol {
  width: 100%;
  height: 100%;
  max-height: 95%;
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  align-items: center;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.works-website img {
  width: 95%;
  text-align: center;
}

.website-details {
  padding: 0rem 0rem;
}

#workspresentation {
  width: 100%;
  height: 100%;
}


#workswebsite {
  width: 100%;
  height: 100%;

}








/* CONTACT PAGE */


.contact-page-logo {
  position: absolute;
  padding-top: .5rem;
  padding-left: 1.5rem;
}


.contact-information {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 90%;
  justify-content: center;
  align-content: center;
}

.contact-details {
  width: 100%;
  height: 100%;
  padding-right: 2rem;
  text-align: right;
  padding-bottom: 1rem;
  padding-left: 2rem;
}

.contact-address p {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-med;
  color: var(--ekam-beige);
  text-align: center;
}


.contact-number {
  padding-top: 1rem;
  text-align: center;
}

.contact-number a {
  font-size: var(--ekam-body-copy-font);
  line-height: var(--ekam-body-copy-leadig);
  font-family: rale-semi;
  color: var(--ekam-dk-beige);
  text-decoration: none;
  text-align: center;
}


.dmarker {
  width: .08rem;
  height: 51vh;
  background: var(--ekam-lt-orange);
  display: none;
}

.map-section {
  height: 60%;
  width: 100%;
  max-width: 80%;
  display: none;
}




  /* footer section */

  .left-address {
    display: grid;
    grid-template-columns: 100%;
  }

  .footer-logo img {
    width: 65%;
    margin: auto 0;
  }
  
  .links {
    display: none;
  }

  .address {
    text-align: center;
  }

 .socialmedia {
  border-left: none;
  border-right: none;
  padding-top: 1rem;
  text-align: center;
 }

 .sm-links {
  padding-top: 2.5rem;
 }


}


/* MEDIA QUERY ENDS HERE */


