:root{
    --ddblue:rgba(0, 18, 31, 1);
    --ddblueb:rgba(0, 18, 31, 0.6);
    --dblue:#0970BF;
    --lblue:#31A2F9;
    --dgreen:#71840C;
    --lgreen:#B8D618;
    --dorange:#C24805;
    --lorange:#FA5C06;
    --dgray:#464646;
    --lgray:#929292;
    --small:0.8rem;
    --normal: 1rem;
    --medium:1.5rem;
    --large:2.5rem;
    --elarge:4rem;
}

/* Scrollbar styling */
::-webkit-scrollbar{
    width:10px;
    height:10px;
}

::-webkit-scrollbar-thumb{
    background:-webkit-linear-gradient(45deg, var(--lblue),var(--lgreen));
    border-radius: 10px;
}

::-webkit-scrollbar-track{
    background-color: transparent;
    margin-inline:20px;
    position:fixed;
}

/* Fonts */
@font-face{
    font-family: 'geo';
    src: url(../fonts/Geometos.woff);
}

@font-face{
    font-family: 'wr';
    src: url(../fonts/Walkway_SemiBold.woff);
}

@font-face{
    font-family: 'wm';
    src: url(../fonts/Walkway_Bold.woff);
}

@font-face{
    font-family: 'wb';
    src: url(../fonts/Walkway_Black.woff);
}

body{
    background-color:var(--ddblue);
    font-family:wr;
    color:#ffffff;
    padding:0;
    border:0;
    margin:0;
    font-size:var(--normal);
}

html{
    scroll-behavior: smooth;
}

/*Handle bold*/
strong {
  font-family: wb;
}


/* Loader */
.loader{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    display:flex;
    flex-flow:row nowrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 18, 31, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index:15;
}

.loader img{
    width:80px;
    -webkit-animation: blink 2s ease-in-out infinite;
    animation: blink 2s ease-in-out infinite;
}

@-webkit-keyframes blink{
    0% {opacity:0.2; transform:rotate(0deg); }
    50% {opacity:1.0; transform:rotate(180deg);}
    100% {opacity:0.2; transform:rotate(360deg); }
}

@keyframes blink{
    0% {opacity:0.2; transform:rotate(0deg); }
    50% {opacity:1.0; transform:rotate(180deg);}
    100% {opacity:0.2; transform:rotate(360deg); }
}

/* Popup message */
#message{
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    flex-flow:column nowrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 18, 31, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index:10;
}

#message section{
    max-width:500px;
    padding-inline:30px;
    margin:auto;
    text-align: center;
}

.message{
    max-width:500px;
    margin:auto;
}

.message-heading{
    font-family:geo;
    font-size:var(--large);
}

/* Styling for Navigation/Menu section */
nav{
    position:fixed;
    display:none;
    flex-flow:column nowrap;
    align-items: center;
    justify-content: space-between;
    padding-block:30px;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    margin:auto;
    font-size:var(--medium);
    z-index:12;
    font-family:geo;
    background-color:var(--ddblueb);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.nav-tint{
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    margin:auto;
    background:url(../img/back.svg);
    background-repeat: repeat-y;
    opacity:0.1;
}

.nav-footer{
    display:grid;
    gap:20px;
    z-index:1;
}

.mobile-nav{
    background-color: var(--ddblue);
    position:relative;
    z-index:10;
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    justify-content: space-between;
    padding:30px;
}

.menu-icon{
    width:40px;
    height:40px;
}

.menu-icon img{
    width:100%;
}

.close-icon{
    width:40px;
    margin-top:50px;
    position:relative;
}

.logo-wrapper{
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    gap:10px;
    z-index:1;
}

.logo-wrapper img{
    height:50px;
}

.menu-links-wrapper{
    position:relative;
    display:flex;
    flex-flow:column nowrap;
    justify-content: center;
    align-items:center;
    gap:20px;
    text-align: center;
    
}

/* Styling for Landing/Hero section */
.landing{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    flex-flow:column nowrap;
    justify-content: space-between;
    background:url(../img/hero-tablet.jpg);
    background-size: cover;
    background-position: right;
}

.landing-b{
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    background:url(./img/hero-tablet.jpg);
    background-size: cover;
    background-position: right;
    /*
    mask-image: url(../img/back3.svg);
    mask-position:center;
    mask-mode:luminance;
    mask-repeat: no-repeat;*/
}


.landing-back{
   
    background:-webkit-linear-gradient(180deg, transparent, var(--ddblue));
    position:absolute;
    left:0px;
    right:0px;
    margin:auto;
    z-index: 2;
    height:50px;
    display:none;
    /*transform:skew(0deg,-2deg);*/

}

.landing-back1{
    position:absolute;
    top:0px;
    bottom:-50px;
    left:0px;
    right:0px;
    margin:auto;
    background: url(../img/back2.png);
    background-size: cover;
    background-position: center;
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter: blur(20px);
    z-index:2;
    opacity:0.4;
    mix-blend-mode:luminosity;
    transform: scaleX(-1);
    display:none;
}

.landing-content-wrapper{ 
    /*position:relative;*/
    background-color: var(--ddblue);
    position: absolute;
    bottom: 0;
    z-index:4;
    padding:50px;
}

.landing-content{
    color:#ffffff;
    z-index:4;
    position:relative;
    font-family: geo;
    font-size:var(--medium);
    height:140px;
    line-height: 50px;
}

.landing-content span{
    font-size:var(--elarge);
    font-family:wm;
    font-weight:700;
    background: -webkit-linear-gradient(45deg, var(--lgreen),var(--lblue), var(--lgreen),var(--lblue), var(--lgreen), var(--lblue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space:nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display:inline-block;
    max-width:700px;
}

.content-back{
    background:-webkit-linear-gradient(180deg, var(--dblue),var(--dblue), transparent), transparent;
    background:linear-gradient(180deg,var(--dblue),var(--dblue), transparent, transparent);
    position:absolute;
    top:-50px;
    bottom:0px;
    left:0px;
    right:0px;
    z-index:-1;
}

.content{
    position:absolute;
    top:100%;
    width:100%;
}

/* Styling for Contact section */
.contact{
    position:relative;
    padding-inline:100px;
    display:flex;
    flex-flow:row nowrap;
    justify-content: center;
    align-items: center;
    background: url(../img/ccchaos.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.contact .section-title-wrapper{
    align-items:flex-start;
}

.contact .section-title-wrapper p{
    max-width:400px;
    text-align: left;
}

/* Styling for section elements */
.section{
    padding-block:100px;
    position:relative;
}

.section::before{
    content:'';
    overflow:hidden;
    position:absolute;
    background:url(../img/back.svg);
    background-repeat: repeat-y;
    top:-30px;
    bottom:0px;
    left:0px;
    right:0px;
    z-index:-1;
    opacity:0.2;
}

.section-content{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
    justify-content: center;
    padding-inline:50px;
}

.section-content-client{
    display:flex;
    flex-flow:row nowrap;
    justify-content: center;
}

.section-title-wrapper{
    display:flex;
    flex-flow:column nowrap;
    align-items:center;
}

.section-title{
    position:relative;
    font-size: 3.5rem;
    text-align: center;
    display:inline-block;
    font-weight:700;
    padding:50px;
    padding-inline:20px;
    white-space:nowrap;
    font-family: geo;
    z-index:2;
    border-radius: 5px;
    background: -webkit-linear-gradient(45deg, var(--lgreen),var(--lblue), var(--lgreen),var(--lblue), var(--lgreen), var(--lblue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.section-title::before{
    content:'';
    position:absolute;
    left:0px;
    right:0px;
    top:20%;
    bottom:20%;
    margin:auto;
    border:solid 3px var(--lblue);
    transform:skew(-10deg);
    z-index:-1;
    animation: blinkblue 3s ease-in-out infinite;
}

@keyframes blinkblue{
    0% {border:solid 3px var(--lblue);}
    50% {border:solid 3px var(--dblue);}
    100% {border:solid 3px var(--lblue);}
}

.section-summary{
    max-width:600px;
    line-height:30px;
    margin:auto;
    position:relative;
    margin-bottom:50px;
    text-align: center;
}

/* Styling for Call-to-action section */
.cta-summary{
    padding-inline:50px;
    padding-top:5px;
    padding-bottom:30px;
    position:relative;
    background-image:url(../img/wwwhirl.svg);
    background-repeat: no-repeat;
    background-position: right;
    margin-inline:50px;
    margin-top:70px;
    z-index:2;

}

.cta-summary::before{
    content:'';
    padding:50px;
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    border:solid 2px var(--lorange);
    transform:skew(-10deg);
    border-radius: 10px;
    background-color:var(--ddblueb);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter:blur(20px);
    z-index:-1;
}

.cta-summary::after{
    content:'';
    padding:50px;
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    border:solid 2px var(--lgreen);
    transform:skew(0,2deg);
    border-radius:10px;
    z-index:-1;
  
}

/* Styling for Service section */
.service-section{
    position:relative;
    display:flex;
    flex-flow:column nowrap;
    align-items:center;
    padding:50px;
    text-align: center;
    background:url(../img/gggyrate.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.service-section::before{
    content:'';
    position:absolute;
    z-index:-2;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    transform:skew(-5deg);
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size:200% 200%;
    border-radius: 10px;
    box-shadow:2px 2px 10px 0px rgba(0,0,0,0.4);
    -webkit-animation: colorchange 4s ease-in-out infinite;
    animation: colorchange 4s ease-in-out infinite;
}

@keyframes colorchange{
    0% {background-position:0;}
    50% {background-position:100%;}
    100% {background-position:0;}
}

.service-section::after{
    content:'';
    position:absolute;
    z-index:-1;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    transform:skew(-5deg);
    background-color: var(--ddblue);
    border-radius: 10px;
}

.service-section:hover .service-img{
    transform:scale(1.5);
}

.service-section:hover div{
    transform:translate(0px,10px);
}

.service-section img{
    width:100px;
    margin-bottom:20px; 
}

.service-title{
    transition:all 0.2s ease-in-out;
}

.service-img{
    transition:all 0.2s ease-in-out;
}



.swiperr{
    max-width:700px;
    position:relative;
}


/* Styling for Project section */
.projects{
    position:relative;
    display:flex;
    flex-flow:row wrap;
    gap:50px;
}

.project::before{
    content:'';
    position:absolute;
    z-index:-2;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    transform:skew(0deg,-5deg);
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size:200% 200%;
    -webkit-animation: colorchange 4s ease-in-out infinite;
    animation: colorchange 4s ease-in-out infinite;
    border-radius: 10px;
    box-shadow:1px 1px 10px 0px rgba(0,0,0,0.4);
}

.project::after{
    content:'';
    position:absolute;
    z-index:-1;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    transform:skew(0deg,-5deg);
    background-color: var(--ddblue);
    border-radius: 10px;
}

.project{
    position:relative;
    border-radius: 10px;
    padding-block:30px;
    width:400px;
}

.project-content{
    padding:20px;
    padding-inline:30px;
    padding-bottom:0px;
}

.project-images{
    display:flex;
    flex-flow:row nowrap;
    gap:10px;
}

.project-images img:nth-child(1){
    display:inherit;
}

.project-images img{
    width:150px;
    border-radius: 10px;
    display:none;
}

.project-sub-content{
    display:flex;
    flex-flow:row wrap;
    gap:10px;
    justify-content: space-between;
}

.project-content1{
    display:grid;
    grid-template-columns: 200px 1fr;
}

.project-title{
    font-family:geo;
    font-size:var(--medium);
    
}

.project-stacks{
    display:flex;
    flex-flow:row wrap;
    gap:10px;
}

.project-time img{
    width:25px;
}

.project-time{
    display:flex;
    flex-flow:row nowrap;
    gap:10px;
    align-items: center; 
    margin-top:5px;
}

.project-time:nth-last-child(1){
    margin-bottom:20px;
    align-items: flex-start;
}

.project-stacks img{
    width:30px;
}

.project-stacks img::before{
    content:'';
    position:absolute;
    top:-5px;
    bottom:-5px;
    left:-5px;
    right:-5px;
    border-radius: 100px;
    background-color: var(--dgreen);
}

.project-desc{
    padding-right:50px;
    display:none;
}

.page .portfolio{
  width:400px;
}

.portfolio .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 260px;
    height: 100%;
    background-color:#000000;
}

.portfolio .swiper-slide img {
    display: block;
    width: 100%;
    height:148px;
    aspect-ratio: 16/9;
    border:solid 2px var(--lblue);
    object-fit:scale-down;
    border-radius: 10px;
    box-shadow:1px 1px 10px 0px rgba(0,0,0,0.4);
}

/* Styling for Client section */
.clients{
    display:flex;
    flex-flow:row nowrap;
    justify-content: flex-start;
    gap:20px;
    overflow-x: auto;
    padding-inline:20px;
    padding-block:20px;
}

.clients-back{
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    margin:auto;
    background-color: var(--ddblueb);
    -webkit-backdrop-filter:blur(15px);
    backdrop-filter:blur(15px);
}

.clients-back1{
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    margin:auto;
    background:url(../img/back2.png);
    mix-blend-mode:soft-light;
}

.clients::-webkit-scrollbar{
    height:10px;
    width:5px;
}

.clients::-webkit-scrollbar-thumb{
    background:-webkit-linear-gradient(45deg, var(--lblue),var(--lgreen));
    border-radius: 10px;
}

.clients::-webkit-scrollbar-track {
    background-color: transparent;
    margin-inline:20px;

}

.client{
    position:relative;
    min-width:150px;
    max-width:150px;
    height:150px;
    border-radius: 10px;
    border:solid 2px var(--dblue);
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    user-select: none;
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
    justify-content: center;
    background-color:var(--ddblueb);
    backdrop-filter: blur(20px);

}

.client img, .client-image img{
    width:90%;
    filter: grayscale(100%) invert(0.7);
    /*filter: none;*/
}

.client.staff img {
    filter: none;
    border-radius: 10px;
}


.client:hover{
    transform:scale(1.1);
}

.client:nth-child(even){
    border:solid 2px var(--dgreen);
}

.client-section{
    position:relative;
    display:flex;
    flex-flow:row nowrap;
    align-items: flex-start;
    gap:20px;
    padding-block:20px;
    padding-inline:50px;
    margin-inline:80px;
    margin-block:50px;
    background:url(../img/gggyrate.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.client-section-divider{
    position:relative;
    height:100%;
    min-width:2px;
    margin-right:20px;
    background-color: var(--lorange);
    transform: skew(-10deg);
}

.client-section::before{
    content:'';
    position:absolute;
    left:-20px;
    right:-20px;
    top:-20px;
    bottom:-20px;
    border:solid 2px var(--lorange);
    border-radius: 5px;
    transform: skew(-5deg);
}

.client-section img{
    width:100px;
    margin-bottom:20px;
}

.client-info{
    text-align:center;
}

.client-name{
    color:var(--lgreen);
    font-family:geo;
    font-size:var(--medium);
    margin-top:10px;
}

.client-image{
    min-width:150px;
    max-width:150px;
    height:150px;
    border-radius: 10px;
    border:solid 2px var(--lblue);
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
    justify-content: center;
    background-color:var(--ddblueb);
    backdrop-filter: blur(20px);
}

.swiper-pagination-bullet{
    border:solid 2px var(--lblue) !important;
}

/* Styling for Form elements */
form{
    display:grid;
    grid-template-columns: 1fr;
    gap:20px;
    padding-block:50px;
    padding-inline:20px;
    width:300px;
    z-index:2;
}

.form-input-wrapper{
    position:relative;
    display:grid;
}

.form-input-wrapper input{
    background-color:transparent;
    padding:10px;
    height:30px;
    border:none;
    color:#ffffff;
    font-family:wm;
   outline:none;
    font-size:var(--normal);

}

.form-input-wrapper::before{
    content:'';
    position:absolute;
    transform:skew(-10deg);
    border-radius:5px;
    left:0px;
    right:4px;
    top:0px;
    bottom:4px;
    border:solid 2px var(--dblue);
    box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.4);
    z-index:-1;
}

.form-input-wrapper input:focus + .focus, .form-input-wrapper textarea:focus + .focus{
   display: inherit;
}

.form-input-wrapper input:valid + .focus, .form-input-wrapper textarea:valid + .focus{
    display: inherit;
    border:solid 2px var(--lgreen);
 }

.focus{
    position:absolute;
    top:-4px;
    bottom:0px;
    left:4px;
    right:0px;
    border:solid 2px var(--lorange);
    transform:skew(-10deg);
    z-index:-1;
    border-radius: 5px;
    display:none;
}

.form-input-wrapper textarea{
    background-color: transparent;
    padding:10px;
    padding-inline:20px;
    min-height:100px;
    border-radius: 5px;
    border:none;
    color:#ffffff;
    font-family:wm;
    resize: none;
    font-size:var(--normal);
    outline:none;
}

textarea::-webkit-scrollbar{
    width:5px;
    height:5px;
}

textarea::-webkit-scrollbar-thumb{
    background:-webkit-linear-gradient(45deg, var(--lblue),var(--lgreen));
    border-radius: 10px;
}

textarea::-webkit-scrollbar-track{
    background-color: transparent;
    margin-inline:5px;
    margin-block:5px;
    position:fixed;
}

/* Styling for Page template */
.page{
    max-width:1000px;
    padding-inline: 50px;
    padding-block:50px;
    margin:auto;
    display:flex;
    flex-flow:row nowrap;
    align-items: flex-start;
    gap:50px;
    position:relative;
}

.page-title{
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family:geo;
    font-size:5rem;
    background: -webkit-linear-gradient(45deg,var(--lblue), var(--lgreen));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position:relative;
    display:inline;
}

.page-title::before{
    content:'';
    position:absolute;
    top:-10px;
    bottom:-10px;
    left:0px;
    right:0px;
    transform: skew(0deg,10deg);
    border:solid 2px var(--lblue);
    border-radius: 5px;
    z-index:-1;
    opacity:0.7;
    
}

.page::before{
    content:'';
    position:absolute;
    background-image:url(../img/back.svg);;
    background-repeat: repeat;
    top:-30px;
    right:0px;
    left:0px;
    bottom:0px;

    z-index:-1;
    opacity:0.2;
}



/* Styling for section animations */
.ani{
    position:relative;
    transform:rotate(-5deg) translate(-50px,-50px) ;
    opacity:0;
    transition:all 0.2s ease-in-out;
}

.showani{
    position:relative;
    visibility: visible;
    transform: rotate(0deg) translate(0px,0px);
    opacity:1.0;
    transition:all 0.2s ease-in-out;
}

.top{
    position:fixed;
    bottom:-70px;
    right:-70px;
    width:40px;
    height:40px;
    padding:10px;
    border-radius: 100px;
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
    justify-content: center;
    z-index:4;
    cursor:pointer;
    transition:all 0.2s ease-in-out;
    opacity:0;
    
}

.top::before{
    content:'';
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background: -webkit-linear-gradient(45deg,var(--lorange),var(--dorange));
    background: linear-gradient(45deg,var(--lorange),var(--dorange));
    box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.4);
    transform:skew(-5deg);
    border-radius: 5px;
    z-index:-1;
}

.top img{
    width:100%;
    border-radius: 100px;
    
}

.top:hover{
    transform:scale(1.3);
}

.showtop{
    transition:all 0.2s ease-in-out;
    bottom:30px;
    right:30px;
    opacity:1;
}

/* Styling for About us page */
.shortcuts{
    display:flex;
    flex-flow:row wrap;
    gap:10px;
    padding-block:10px;
    position:sticky;
    top:5px;
    z-index:2;
    transition:all 0.2s ease-in-out;
}

.short{
    background-color:var(--ddblueb);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding-inline:20px;
    padding-block:20px;
    transition:all 0.2s ease-in-out;
    width:calc(100% - 20px);
    margin-left:-20px;
    margin-right:-20px;
    border-radius: 5px;
}

.shortcuts div{
    position:relative;
    white-space: nowrap;
    padding-block:5px;
    padding-inline:10px;
    font-size:var(--small);
    cursor:pointer;
}

.shortcuts div:hover::before{
    background-color:var(--dorange);
}

.shortcuts div::before{
    content:'';
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    border:solid 2px var(--dorange);
    transform:skew(-10deg);
    border-radius:5px;
    z-index:-1;
}

blockquote{
    position: relative;
    padding-top:5px;
    padding-bottom:5px;
    padding-inline:20px;
}

blockquote::before{
    content:'';
    position:absolute;
    z-index:-2;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    transform:skew(-10deg);
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size: 200% 200%;
    border-radius: 10px;
    box-shadow:2px 2px 10px 0px rgba(0,0,0,0.4);
    -webkit-animation: colorchange 4s ease-in-out infinite;
    animation: colorchange 4s ease-in-out infinite;
}

blockquote::after{
    content:'';
    position:absolute;
    z-index:-1;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    transform:skew(-10deg);
    background-color: var(--ddblue);
    border-radius: 10px;
}

.bio{
    display:flex;
    flex-flow:row nowrap;
    gap:20px;
    align-items: flex-start;
}


.bio img{
    width:150px;
    opacity:0.7;
}

.bio .client{
    min-width:150px;
    max-width:150px;
    min-height:150px;
    max-height:150px;
    margin-top:20px;
    border-radius:10px;
}

.chart{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
}

.chart.pillars div {
    display: flex;
    justify-content: center;
}

.chart.pillars div img {
    width: 100%;
}

.chart-head{
    padding:40px;
    text-align: center;
    background: -webkit-linear-gradient(45deg, var(--lgreen), var(--dgreen));
    background: linear-gradient(45deg, var(--lgreen), var(--dgreen));
    color:#ffffff;
    border-radius: 15px;
    font-family: geo;
    font-size:var(--large);
}

.chart-body{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:10px;
}

.chart-body-sect{
    text-align: center;
    display:flex;
    flex-flow:column nowrap;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(45deg, var(--lblue), var(--dblue));
    background: linear-gradient(45deg, var(--lblue), var(--dblue));
    color:#ffffff;
    border-radius: 15px;
    padding:20px;
    min-height:200px;
    font-family: wr;
    writing-mode: vertical-lr;
}


/* Footer section */
footer{
    position: relative;
    padding-top:100px;
    padding-bottom:50px;
    padding-inline:50px;
    background-color: var(--ddblue);
    background-image:url(../img/endless-constellation.svg);
   
}

.footer-tint{
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    background: linear-gradient(180deg, var(--ddblue),transparent, var(--ddblue));
    margin:auto;
}

.footer-wrapper{
    position:relative;
    display:flex;
    flex-flow: column nowrap;
    align-items:center;
    z-index:2;
    gap:30px;
}

.footer-links{
    display:flex;
    gap:30px;
    line-height: 30px;
}

.footer-links-section-title{
    font-family:geo;
    font-size:var(--medium);
    margin-bottom: 10px;
    color:var(--lgreen);
}

.footer-logo{
 width:100%;
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    gap:20px;
}

.footer-logo img{
    width:250px;
}

.footer-info{
    display:grid;
    gap:10px;
}

.footer-info-sect{
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    gap:10px;
}

.footer-info-sect img{
    width:30px;
}

.social{
    display:flex;
    flex-flow:row nowrap;
    align-items:center;
    gap:10px;
    cursor: pointer;
    opacity:0.7;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
}

.social:hover{
    opacity:1.0;
}

.social:hover img{
    transform: scale(1.2);
}

.social-sub-wrapper{
    display:grid;
    gap:10px;
    /*display:none;*/
}

.social-wrapper{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
    align-content: start;
}

.social img{
    width:20px;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
}

.copyright{
    font-size:var(--small);
    opacity:0.5;
    text-align:center;
    margin-top:20px;
    z-index:1;
}

/* General Styling */
button{
    position:relative;
    padding-block:15px;
    padding-inline:25px;
    font-family:system-ui;
    background-color: transparent;
    border:none;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    cursor:pointer;
    font-size:var(--normal);
    font-family:geo;
    z-index:2;
    
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    justify-content: center;
    gap:10px;
}

button span{
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size:200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
}

button::before{
    content:'';
    position:absolute;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    transform: skew(-10deg);
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size:200% 200%;
    box-shadow:2px 2px 10px 0px rgba(0,0,0,0.4);
    /*
    -webkit-animation: colorchange 4s ease-in-out infinite;
    animation: colorchange 4s ease-in-out infinite;*/
    border-radius:5px;
    z-index:-2;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    box-shadow:1px 1px 10px 0px rgba(0,0,0,0.4);
}

button::after{
    content:'';
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    transform: skew(-10deg);
    background-color: var(--ddblue);
    border-radius:5px;
    z-index:-1;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
}

button img{
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    width:20px;
}


 button:hover::after{
    background: -webkit-linear-gradient(45deg, var(--lblue),var(--lgreen), var(--lorange),var(--lblue));
    background-size:200% 200%;
    top:-2px;
    bottom:-2px;
    left:-2px;
    right:-2px;
    /*-webkit-animation: colorchange 4s ease-in-out infinite;
    animation: colorchange 4s ease-in-out infinite;*/
}

button:hover span{
    background:transparent;
    color:var(--ddblue);
    -webkit-background-clip:inherit;
    background-clip:inherit;
    -webkit-text-fill-color:inherit;
    transform:translate(5px);
}

.book:hover span{
    transform:translate(-15px);
}

button:hover img{
    opacity:0;
    transform:translate(-10px);
}


h1{
    background: -webkit-linear-gradient(45deg,var(--lblue), var(--lgreen));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom:40px;
    margin-top:60px;
    font-family: geo;
    font-size:var(--large);
    user-select: none;
}

h2{
    background: -webkit-linear-gradient(90deg,var(--lgreen), var(--lblue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: wm;
    font-size: var(--medium);
    line-height:35px;
    user-select: none;
}

p{
    line-height: 30px;
}

ul{
    line-height: 30px;
}

a:link{
    color:#ffffff;
    text-decoration: none;
}

a:active{
    color:#ffffff;
    text-decoration: none;
}

a:visited{
    color:#ffffff;
    text-decoration: none;
}

a.elink:hover::after{
    width:100%;
    color:var(--lorange);
}

a:hover{
    color:#ffffff;
    text-decoration: none;
    opacity:0.8;
}

a{
    position:relative;
    transition:all 0.2s ease-in-out;
}

::selection{
    background-color:var(--dgreen);

}

a::after{
    content:'';
    position:absolute;
    height:3px;
    width:0px;
    background:-webkit-linear-gradient(45deg,var(--lblue),var(--lgreen));
    background:linear-gradient(45deg,var(--lblue),var(--lgreen));
    border-radius:5px;
    bottom:-7px;
    left:0px;
    transition:all 0.2s ease-in-out;
}

.ml11 {
    font-weight: 700;
    font-size: 3.5em;
    z-index:5;
  }
  
  .ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
    z-index:5;
  }
  
  .ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #fff;
    transform-origin: 0 50%;
  }
  
  .ml11 .line1 { 
    top: 0; 
    left: 0;
  }
  
  .ml11 .letter {
    display: inline-block;
    line-height: 1em;
  }


  .ml13 {
    font-size: 1.9em;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-weight: 600;
  }
  
  .ml13 .letter {
    display: inline-block;
    line-height: 1em;
  }


