 @import url("./home.css");

 .about-hero {
     padding-block: 120px 48px;
     min-height: 100vh;
 }

 .about-top-left h1 {
     margin-bottom: 16px;
     font-size: clamp(19px, 5vw, 48px);
 }

 .about-top-left h1 span {
     font-family: var(--secondary-font);
     font-weight: normal;
 }

 .about-top-right p {
     margin-bottom: 16px;
 }

 .about-hero-top {
     margin-bottom: 40px;
 }

 .about-hero-bottom {
     height: 350px;
     background:
         linear-gradient(to top,
             #121212 0%,
             rgba(18, 18, 18, 0.8) 30%,
             rgba(18, 18, 18, 0.4) 60%,
             rgba(18, 18, 18, 0) 100%),
         url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1400&q=80");
     background-size: cover;
     background-position: center;
     border-radius: 30px 30px 0 0;
     position: relative;
 }

 /* Section services */

 .story {
     display: flex;
     overflow-x: hidden;
 }

 .story-container {
     min-height: 100vh;
     width: 100%;
     flex-shrink: 0;
     padding-block: 100px 60px;
 }

 .story1-left h2 {
     text-transform: capitalize;
     font-size: clamp(18px, 1vw, 22px);
     color: var(--grey-1);
     margin-bottom: 24px;
     font-weight: normal;
 }

 .story-container h3 {
     margin-bottom: 16px;
     font-size: clamp(23px, 6vw, 64px);
 }

 .story1-left {
     margin-bottom: 24px;
 }

 .story1-left p {
     width: min(400px, 100%);
 }

 .story1-right img {
     width: 100%;
 }

 .story2-left {
     margin-bottom: 24px;
 }

 .story2-left p {
     margin-bottom: 24px;
 }

 .story2-left img {
     width: 200px;
 }

 .story2-right img {
     width: 300px;
 }

 .story3-left img {
     width: 50%;
     margin-bottom: 24px;
 }

 .story3-left img:first-child {
     margin-right: 16px;
 }

 .story3-right h3 {
     width: min(500px, 100%);
 }

 .story3-right p {
     width: min(500px, 100%);
 }

 .story4-left img {
     width: 100%;
 }

 .vision {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .vision-container {
     width: 100%;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .vision h4 {
     position: absolute;
     z-index: 0;
     top: 64px;
     color: var(--grey-1);
     font-size: clamp(18px, 1.5vw, 26px);
     text-transform: uppercase;
     font-weight: normal;
 }

 .vision-content {
     text-align: center;
 }

 .vision-content span {
     font-size: clamp(20px, 1.2vw, 35px);
 }

 .vision-content h5 {
     font-size: clamp(30px, 6vw, 72px);
     margin-top: 24px;
 }

 .vision-content h5 span {
     font-size: clamp(30px, 6vw, 72px);
     font-family: var(--secondary-font);
 }

 .vision img {
     position: absolute;
     z-index: 0;
     width: min(120px, 50%);
     transition: all .4s ease-in;
     will-change: transform;
     border-radius: 10px;
 }

 .vision-img1 {
     top: 60px;
     left: 0;
     transform: rotate(-25deg);
     animation: floatVision1 4.8s ease-in-out infinite;
 }

 .vision-img2 {
     top: 60px;
     right: 0;
     transform: rotate(25deg);
     animation: floatVision2 4.6s ease-in-out infinite;
 }

 .vision-img3 {
     bottom: 60px;
     left: 0;
     transform: rotate(-25deg);
     animation: floatVision3 5.2s ease-in-out infinite;
 }

 .vision-img4 {
     bottom: 60px;
     right: 0;
     transform: rotate(25deg);
     animation: floatVision4 5s ease-in-out infinite;
 }

 @keyframes floatVision1 {

     0%,
     100% {
         transform: translate3d(0, 0, 0) rotate(-25deg);
     }

     50% {
         transform: translate3d(6px, -12px, 0) rotate(-22deg);
     }
 }

 @keyframes floatVision2 {

     0%,
     100% {
         transform: translate3d(0, 0, 0) rotate(25deg);
     }

     50% {
         transform: translate3d(-8px, -10px, 0) rotate(22deg);
     }
 }

 @keyframes floatVision3 {

     0%,
     100% {
         transform: translate3d(0, 0, 0) rotate(-25deg);
     }

     50% {
         transform: translate3d(5px, -8px, 0) rotate(-23deg);
     }
 }

 @keyframes floatVision4 {

     0%,
     100% {
         transform: translate3d(0, 0, 0) rotate(25deg);
     }

     50% {
         transform: translate3d(-6px, -11px, 0) rotate(23deg);
     }
 }

 /* Gallery */
 .about-gallery {
     min-height: 100vh;
     padding-block: 60px;
 }

 .about-gallery h3 {
     font-size: clamp(18px, 1.1vw, 26px);
     color: var(--grey-2);
     margin-bottom: 8px;
     font-weight: normal;
 }

 .about-gallery h4 {
     font-weight: normal;
     font-size: clamp(21px, 4vw, 35px);
     margin-bottom: 8px;
     font-family: var(--secondary-font);
 }

 .about-gallery p {
     margin-bottom: 40px;
     width: min(400px, 100%);
     color: var(--grey-3);
 }

 .about-gallery-container {
     display: grid;
     gap: 16px;
     width: 100%;
     margin-bottom: 24px;
 }

 .about-gallery-container img {
     width: 100%;

 }

 .about-gallery-item {
     transition: .4s ease-in;

 }

 /* Services details */
 .services-details {
     min-height: 100vh;
     padding-block: 40px;
 }

 .services-details-header {
     margin-bottom: 48px;
 }

 .services-details-header h2 {
     font-weight: normal;
     font-size: clamp(20px, 3vw, 40px);
     margin-bottom: 16px;
 }

 .services-details-header h2 span {
     font-family: var(--secondary-font);
     font-style: italic;
 }

 .services-details-header p {
     font-weight: normal;
     color: var(--grey-2);
 }

 .services-details-container {
     display: grid;
     gap: 16px;
 }

 .services-details-item {
     background-color: var(--black-mid);
     border-radius: 20px;
     padding: 32px 24px;
     min-height: 400px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     backdrop-filter: blur(7px);
     transition: .4s ease-in;
 }

 /* 
 .services-details-item1:hover {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1400&q=80");
     background-size: cover;
     background-position: center;
 }

 .services-details-item2:hover {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         url("https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?auto=format&fit=crop&w=1400&q=80");
     background-size: cover;
     background-position: center;
 }

 .services-details-item3:hover {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1400&q=80");
     background-size: cover;
     background-position: center;
 }

 .services-details-item4:hover {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         url("../assets/images/bg/cta-bg.jpg");
     background-size: cover;
     background-position: center;
 }
 */

 .services-details-item:hover {
     backdrop-filter: blur(0px);
     background-color: var(--black-low);
     transform: scale(1.05);
     transition: .4s ease-in;
 }

 .services-details-item-ico {
     margin-bottom: 40px;
 }

 .services-details-item-top i {
     font-size: 24px;
     color: var(--grey-3);
 }

 .services-details-item-title h3 {
     text-transform: uppercase;
     font-weight: normal;
     margin-bottom: 16px;
     font-size: clamp(16px, 1vw, 22px);
     color: var(--grey-2);
 }

 .services-details-item-title h4 {
     font-size: clamp(20px, 1.5vw, 35px);
     font-weight: 500;
     font-family: var(--secondary-font);
 }

 .services-details-item-text p {
     width: min(300px, 100%);
     color: var(--grey-2);
 }

 /* REsponsive */

 @media (min-width: 800px) {
     .about-hero-top {
         display: flex;
         justify-content: space-between;
     }

     .about-top-right {
         width: 30%;
     }

     .about-top-right h1 {
         margin-bottom: 0;
     }

     .about-hero-bottom {
         min-height: 420px;
     }

     .about-gallery-container {
         grid-template-columns: repeat(4, 1fr);
         min-height: 60vh;
     }

     .about-gallery-item {
         width: 100%;
         position: relative;
     }

     .about-gallery-item img {
         width: 100%;
         height: 100%;
         position: absolute;
         z-index: 0;
         object-fit: cover;
     }



 }

 @media (min-width: 900px) {
     .story-container {
         padding-top: 200px;
     }

     .story1 .story-content {
         display: flex;
         justify-content: space-between;
         width: 100%;
     }

     .story1-left {
         margin-bottom: 0;
     }

     .story1-right {
         width: 40%;
     }

     .story1-right img {
         width: 100%;
     }

     .story2 .story-content {
         display: flex;
         justify-content: space-between;
         flex-direction: row-reverse;
     }

     .story2-left h3 {
         width: min(500px, 100%);
     }


     .story2-left p {
         width: min(500px, 100%);
     }

     .story2-right {
         width: 40%;
     }

     .story2-right img {
         width: 100%;
     }

     .story3 {
         display: flex;
     }

     .story3-left {
         display: flex;
         flex-direction: column;
         margin-right: 24px;
     }

     .story3-left img {
         width: 300px;
     }

     .story4 {
         display: flex;
     }

     .story4-left img {
         width: 500px;
         margin-right: 32px;
     }

     .story4-right p {
         width: min(600px, 100%);
     }

     .services-details-container {
         grid-template-columns: repeat(4, 1fr);
     }

     .services-details-item {
         min-height: 500px;
     }

 }

 @media (max-width: 500px) {
     .vision img {
         display: none;
     }
 }

 @media (min-width: 700px) and (max-width: 900px) {
     .services-details-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }