/* common fonts style */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ArchivoBlack-Regular.ttf') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Mont-light';
    src: url('../fonts/Mont-ExtraLight.otf') format('opentype');
}
@font-face {
    font-family: 'Mont-heavy';
    src: url('../fonts/Mont-Heavy.otf') format('opentype');
}


/* common title css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* animation css */
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
  padding: 0.1px;
  padding-bottom: 0;
  padding-left: 0;
  overflow-x: hidden;
}

.section {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#section1 {
  z-index: 0;
}

#section2 {
  z-index: 1;
}
#section3 {
  z-index: 2;
}
#section4 {
  z-index: 3;
}
#section5 {
  z-index: 4;
}
.fixed {
  position: fixed;
}
/* common theme css  */
.section-title{
    font-family: 'Archivo Black';
    font-style: Regular;
    font-size: 50px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: auto;
}
.section-title span{
    color: #43D6EC;
}
.section-title::before, .section-title::after{
    content: '';
    position: absolute;
    background-image: url('../images/title-arrow.svg');
    width: 45px;
    height: 14px;
    background-repeat: no-repeat;
    top: 20px;
}
.section-title::before{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -58px;
}
.section-title::after{
   right: -58px;
}
.main-title-block .small-title{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.main-title-block .small-title code{
    font-weight: 100;
}
.section-common-spacing{
    padding: 80px 0;
}
.section-common-bg{
    /* background-image: url('../images/opportunity.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.theme-btn{
    background: -webkit-linear-gradient(90deg, #F6D145 0%, #EE922C 100%);
    background: -moz-linear-gradient(90deg, #F6D145 0%, #EE922C 100%);
    background: linear-gradient(90deg, #F6D145 0%, #EE922C 100%);
    -webkit-box-shadow: 10px 24px 58px 0px #050434;
    -moz-box-shadow: 10px 24px 58px 0px #050434;
    box-shadow: 10px 24px 58px 0px #050434;
    padding: 18px;
    min-height: 44px;
    min-width: 120px;
    border: 1px solid #fff;
    font-family: 'Archivo Black';
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}
.theme-btn.pink{
    background: -webkit-linear-gradient(90deg, #D27ABE 0%, #ED1DAB 100%);
    background: -moz-linear-gradient(90deg, #D27ABE 0%, #ED1DAB 100%);
    background: linear-gradient(90deg, #D27ABE 0%, #ED1DAB 100%);
}
.theme-btn.btn-sm{
    padding: 18px 40px;
}
.theme-btn:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contain-all-sections{
    background-image: url('../images/main-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.section-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(1.2);
    width: 100%;
}
/* social pixel section */
.social-pixcel-section{
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-pixcel-section .banner-content{
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin-top: 80px;
}

/* AI Studio section */
.ai-studio-section{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.ai-studio-section .section-content{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.ai-studio-image{
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ai-studio-image img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* $CITIES Game Network section */
.cities-network-section{
    padding-top: 20px !important;
    padding-bottom: 40px !important;
}
.cities-network-section .section-content{
    gap: 40px;
}
.cities-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cities-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 700px;
}
.cities-coin-image{
    width: 200px;
    height: 200px;
}
.cities-coin-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 10px 30px rgba(255, 193, 7, 0.5));
}
.cities-text{
    font-family: 'Mont-heavy';
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    color: #fff;
    line-height: 32px;
}
.ca-box{
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    -webkit-box-shadow: 
    0px 1px 40px 0px #0D89CF33 inset,
    0px 4px 18px 0px #083B584D inset,
    0px 98px 100px -48px #00A1FD4D inset,
    0px -82px 68px -64px #0E4E724D inset,
    0px 7px 11px -4px #FFFFFF inset,
    0px 39px 56px -36px #FFFFFF80 inset;
    -moz-box-shadow: 
    0px 1px 40px 0px #0D89CF33 inset,
    0px 4px 18px 0px #083B584D inset,
    0px 98px 100px -48px #00A1FD4D inset,
    0px -82px 68px -64px #0E4E724D inset,
    0px 7px 11px -4px #FFFFFF inset,
    0px 39px 56px -36px #FFFFFF80 inset;
    box-shadow: 
    0px 1px 40px 0px #0D89CF33 inset,
    0px 4px 18px 0px #083B584D inset,
    0px 98px 100px -48px #00A1FD4D inset,
    0px -82px 68px -64px #0E4E724D inset,
    0px 7px 11px -4px #FFFFFF inset,
    0px 39px 56px -36px #FFFFFF80 inset;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ca-label{
    font-family: 'Mont-heavy';
    font-weight: 800;
    font-size: 18px;
    color: #43D6EC;
}
.ca-address{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    word-break: break-all;
    text-align: center;
}
.platform-links{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.platform-links a{
    width: 80px;
    height: 80px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}
.platform-links a:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.platform-links a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* first game section */
.first-game{
    padding-top: 40px !important;
}
.first-game .section-content{
    gap: 60px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    max-width: 1200px;
    margin: 0 auto;
}
.first-game .text-image-part{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.first-game .text-image-part .text-part{
    display: flex;
    flex-direction: column;
    gap:30px;
    width: 40%;
}
.first-game .text-image-part .image-part{
    width: 40%;
    display: flex;
    align-items: center;
}
.first-game .text-image-part .image-part img{
    width: 100%;
    max-width: 400px;
    height: auto;
}
.first-game .text-image-part .text-part h6{
    font-family: 'Mont-heavy';
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0%;
    color: #CD40B7;
    margin-bottom: 10px;
}
.first-game .text-image-part .text-part p{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 20px;
}
/* second game section - same styling as first game */
.second-game .section-content{
    gap: 60px;
}
.second-game .text-image-part{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.second-game .text-image-part .text-part{
    display: flex;
    flex-direction: column;
    gap:30px;
    width: 40%;
}
.second-game .text-image-part .image-part{
    width: 40%;
    display: flex;
    align-items: center;
}
.second-game .text-image-part .image-part img{
    width: 100%;
    max-width: 400px;
    height: auto;
}
.second-game .text-image-part .text-part h6{
    font-family: 'Mont-heavy';
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0%;
    color: #CD40B7;
    margin-bottom: 10px;
}
.second-game .text-image-part .text-part p{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 20px;
}
/* games in pipeline section */
.pipeline-games .section-content{
    gap: 60px;
}
.pipeline-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.pipeline-game{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}
.pipeline-game:hover{
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.pipeline-game img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}
.pipeline-game:first-child img{
    object-position: top;
}
.pipeline-game:nth-child(2) img{
    object-position: bottom;
}
.pipeline-game:nth-child(4) img{
    object-position: top;
}
/* long term section */
.long-term-section{
    background-position: center;
}
/* long term vision part */
.game-grid-button-part{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.game-grid-part .game-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}
.game-grid-part .game-row .game {
   width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.game-grid-part .game-row.second-row-game .game img{
    width: 200px;
}
.game-grid-part .game-row .game .game-title{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}
/* founder section */
.founder-section{
    background-position: center;
}
.founder-text-img-part{
    display: flex;
    align-items: center;
    max-width: 60%;
    gap: 25px;
}
.founder-section .founder-image-part{
    width: 40%;
}
.founder-section .founder-image-part img{
    width: 100%;
}
.founder-text-img-part .founder-name-box{
    -webkit-box-shadow: 0px 98px 100px -48px #00A1FD4D inset,0px -82px 68px -64px #0E4E724D inset,0px 7px 11px -4px #FFFFFF inset,0px 39px 56px -36px #FFFFFF80 inset;
    -moz-box-shadow: 0px 98px 100px -48px #00A1FD4D inset,0px -82px 68px -64px #0E4E724D inset,0px 7px 11px -4px #FFFFFF inset,0px 39px 56px -36px #FFFFFF80 inset;
    box-shadow: 0px 98px 100px -48px #00A1FD4D inset,0px -82px 68px -64px #0E4E724D inset,0px 7px 11px -4px #FFFFFF inset,0px 39px 56px -36px #FFFFFF80 inset;
    font-family: 'Mont-heavy';
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 14px 16px;
    max-width: 70%;
    margin: -20px auto;
    z-index: 9;
    position: relative;
}
.founder-text-img-part .founder-text-part p{
   font-family: 'Mont-light';
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 20px;
}
.founder-text-img-part .founder-text-part p span{
    color: #43D6EC;
}
.founder-text-img-part .founder-text-part .brand-part{
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-text-img-part .founder-text-part .brand-part img.brand-1{
    width: 42px;
}
.founder-text-img-part .founder-text-part .brand-part img.brand-2{
    width: 52px;
}
.founder-text-img-part .founder-text-part .brand-part img.brand-3{
    width: 42px;
}
.founder-text-img-part .founder-text-part .brand-part img.brand-4{
    width: 70px;
}
.founder-text-img-part .founder-text-part .brand-part img.brand-5{
    width: 74px;
}


@media screen and (max-width: 1366px) {
   .first-game .text-image-part .text-part{
        width: 50%;
   }
   .second-game .text-image-part .text-part{
        width: 50%;
   }
   .game-grid-part .game-row .game{
        width: 300px;
   }
   .founder-text-img-part{
        max-width: 80%;
   }
   .section-content{
        transform: scale(1);
   }
   .social-pixcel-section .banner-content{
        transform: scale(1.2);
   }
}
@media screen and (max-width: 1280px) {
    .social-pixcel-section .banner-content{
      transform: scale(0.95);
      margin-top: 0;
    }
    .section-title::before, .section-title::after{
        width: 40px;
        height: 12px;
        top: 18px;
    }
    .section-title::before{
        left: -52px;
    }
    .section-title::after{
        right: -52px;
    }
}
@media screen and (max-width: 1120px) {
    .cities-coin-image{
        width: 160px;
        height: 160px;
    }
    .cities-text{
        font-size: 20px;
    }

    .main-bg{
        background-position: left;
    }
}
@media screen and (max-width: 820px) {
    .cities-info{
        max-width: 90%;
    }
    .platform-links a{
        width: 70px;
        height: 70px;
    }
    .social-pixcel-section .banner-content{
        transform: scale(0.85);
    }
    .first-game .text-image-part .text-part {
        width: 40%;
    }
    .second-game .text-image-part .text-part {
        width: 40%;
    }
    .game-grid-part .game-row .game {
        width: 200px;
    }
    .game-grid-part .game-row.second-row-game .game img {
        width: 150px;
    }
}
@media screen and (max-width: 767px) {
    .section{
        height: auto;
    }
    .section-common-bg{
        height: auto;
        min-height: auto;
        padding: 60px 20px;
    }
    .social-pixcel-section{
        height: auto;
        min-height: 100vh;
        padding: 80px 20px;
    }
    .first-game .text-image-part .image-part,
    .second-game .text-image-part .image-part{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .section-title{
        font-size: 40px;
    }
    .section-title::before, .section-title::after{
        width: 35px;
        height: 11px;
        top: 15px;
    }
    .section-title::before{
        left: -45px;
    }
    .section-title::after{
        right: -45px;
    }
    .cities-text{
        font-size: 18px;
        line-height: 26px;
    }
    .ca-address{
        font-size: 14px;
    }
    .first-game .text-image-part .text-part p{
        font-size: 20px;
    }
    .second-game .text-image-part .text-part p{
        font-size: 20px;
    }
    .founder-section .founder-image-part {
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .pipeline-grid{
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    .pipeline-game{
        height: 220px;
    }
}
@media screen and (max-width: 520px) {
    .section{
        height: auto;
    }
    .section-common-bg{
        height: auto;
        padding: 50px 20px;
    }
    .footer-content{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-text{
        font-size: 14px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-title::before, .section-title::after{
        width: 30px;
        height: 10px;
        top: 10px;
    }
    .section-title::before{
        left: -38px;
    }
    .section-title::after{
        right: -38px;
    }
    .pipeline-grid{
        gap: 15px;
        max-width: 90%;
    }
    .pipeline-game{
        height: 200px;
    }
    .main-title-block .small-title{
        font-size: 15px;
        line-height: 22px;
    }
    .cities-coin-image{
        width: 150px;
        height: 150px;
    }
    .cities-coin-image img{
        filter: drop-shadow(0px 0px 20px rgba(246, 209, 69, 0.5));
    }
    .cities-text{
        font-size: 17px;
        line-height: 26px;
    }
    .ca-box{
        padding: 16px 20px;
        max-width: 95%;
    }
    .ca-address{
        font-size: 13px;
        line-height: 20px;
    }
    .platform-links{
        gap: 25px;
    }
    .platform-links a{
        width: 64px;
        height: 64px;
    }
    .first-game .text-image-part{
        flex-wrap: wrap;
    }
    .first-game .text-image-part .text-part {
        width: 80%;
    }
    .first-game .text-image-part .text-part{
        gap: 10px;
    }
    .first-game .text-image-part{
        gap: 60px;
    }
    .second-game .text-image-part{
        flex-wrap: wrap;
    }
    .second-game .text-image-part .text-part {
        width: 80%;
    }
    .second-game .text-image-part .text-part{
        gap: 10px;
    }
    .second-game .text-image-part{
        gap: 60px;
    }
    .game-grid-part .game-row{
        gap: 20px;
        justify-content: center;
    }
    .game-grid-part .game-row .game, .game-grid-part .game-row.second-row-game .game img{
        width: 90px;
    }
    .theme-btn{
        font-size: 14px;
    }
    .founder-text-img-part{
        flex-wrap: wrap;
        justify-content: center;
    }
    .founder-text-img-part{
        gap: 60px;
    }
    .first-game .text-image-part .image-part img{
        max-width: 90%;
    }
    .first-game .text-image-part .text-part p {
        font-size: 17px;
        line-height: 26px;
    }
    .second-game .text-image-part .image-part img{
        max-width: 90%;
    }
    .second-game .text-image-part .text-part p {
        font-size: 17px;
        line-height: 26px;
    }
    .game-grid-part .game-row{
        gap: 8px;
    }
    .game-grid-part .game-row .game, .game-grid-part .game-row.second-row-game .game img{
        width: 80px;
    }
    .game-grid-button-part{
        flex-direction: column;
    }
    .game-grid-button-part .white-arrow img{
        transform: rotate(90deg);
    }
    .first-game .text-image-part{
        text-align: center;
    }
    .first-game .image-part{
        display: flex;
        justify-content: center;
    }
    .second-game .text-image-part{
        text-align: center;
    }
    .second-game .image-part{
        display: flex;
        justify-content: center;
    }

     .main-bg{
        background-position: center;
    }
}
@media screen and (max-width: 420px) {
    .section{
        height: auto;
    }
    .section-common-bg{
        height: auto;
        padding: 45px 15px;
    }
    .social-pixcel-section .banner-content{
        transform: scale(0.75);
    }
    .section-title {
        font-size: 26px;
    }
    .section-title::before, .section-title::after{
        width: 28px;
        height: 9px;
        top: 9px;
    }
    .section-title::before{
        left: -35px;
    }
    .section-title::after{
        right: -35px;
    }
    .founder-section .founder-image-part{
        text-align: center;
    }
    .founder-section .founder-image-part img {
        width: 50%;
    }
    .founder-section .founder-image-part {
        width: 90%;
    }
    .founder-text-img-part .founder-text-part p{
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 20px;
    }
    .social-pixcel-section .banner-image-block img{
        width: 100%;
    }
    .section-common-spacing{
        padding: 50px 15px;
    }
    .section-common-bg{
        padding: 50px 15px;
    }
    .theme-btn{
        font-size: 16px;
        padding: 14px 24px;
    }
    .game-grid-part .game-row .game, .game-grid-part .game-row.second-row-game .game img{
        width: 90px;
    }
    .game-grid-part .game-row .arrow img{
        width: 22px;
    }
    .game-grid-part .game-row .game .game-title{
        font-size: 14px;
    }
    .founder-text-img-part .founder-text-part .brand-part{
        gap: 12px;
    }
    .pipeline-game{
        height: 180px;
    }
}
@media screen and (max-width: 375px) {
    .section{
        height: auto;
    }
    .section-common-bg{
        height: auto;
        padding: 40px 15px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-title::before, .section-title::after{
        width: 25px;
        height: 8px;
        top: 8px;
    }
    .section-title::before{
        left: -32px;
    }
    .section-title::after{
        right: -32px;
    }
    .social-pixcel-section .banner-content{
        transform: scale(0.7);
    }
    .main-title-block .small-title{
        font-size: 14px;
    }
    .cities-coin-image{
        width: 130px;
        height: 130px;
    }
    .cities-text{
        font-size: 16px;
        line-height: 24px;
    }
    .ca-address{
        font-size: 12px;
        line-height: 18px;
    }
    .platform-links a{
        width: 56px;
        height: 56px;
    }
    .pipeline-game{
        height: 160px;
    }
    .first-game .text-image-part .image-part img{
        max-width: 85%;
    }
    .first-game .text-image-part .text-part p {
        font-size: 16px;
        line-height: 24px;
    }
    .second-game .text-image-part .image-part img{
        max-width: 85%;
    }
    .second-game .text-image-part .text-part p {
        font-size: 16px;
        line-height: 24px;
    }
}






/* Footer styles */
.footer-section{
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.footer-text{
    font-family: 'Mont-light';
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-social-links{
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-social-link{
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer-social-link:hover{
    background: rgba(67, 214, 236, 0.3);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.footer-social-link img{
    width: 20px;
    height: 20px;
    color: #fff;
    fill: #fff;
}

/* Founder link styles */
.founder-image-part{
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
}
.founder-image-part:hover{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.founder-image-part:hover .founder-name-box{
    background: -webkit-linear-gradient(90deg, #43D6EC 0%, #0A8FBD 100%);
    background: -moz-linear-gradient(90deg, #43D6EC 0%, #0A8FBD 100%);
    background: linear-gradient(90deg, #43D6EC 0%, #0A8FBD 100%);
}

.transition {
  height: 100px;
  background: -webkit-linear-gradient(to bottom, #ff6a00, #6a00ff);
  background: -moz-linear-gradient(to bottom, #ff6a00, #6a00ff);
  background: linear-gradient(to bottom, #ff6a00, #6a00ff);
}