  
 html {
    scroll-behavior: smooth;
    font-display: block !important;
}

html, body {
    overflow-x: hidden;
 
}

body {
    background-color: #f3f6fb;
}
html, body, ul, li, button {
    margin: 0;
    padding: 0;
    font-family: Libre Franklin;
    font-size: 16px;

}

blockquote {
    background: #dedede;
    line-height: 2;
    padding: 25px;
    font-size: 1.2em;
    border-radius: 1px;
}

.blockquote:before {
    content: "\'";
    position: relative;
    font-size: 5rem;
}

body::-webkit-scrollbar {
    width: 0.5em;
    background: black;
    
  }
   
body::-webkit-scrollbar-track {
    //box-shadow: inset 0 0 1px #00d2d0;
   width: 500px;
    
  }
   
body::-webkit-scrollbar-thumb {
    background-color: #00d2d0;
    outline: none;
    width: 500px;
    border-radius: 30px;
  }

/* NAV MENU */
nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
}
#logo, footer h1 {
   /*  background-image: linear-gradient(61deg, #00d2d0, #00fff9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent; */
    font-family: 'Cocon';
  /*   color: teal; */
    text-transform: lowercase;
    letter-spacing: -0.0499em;
    font-size: 4rem;
    line-height: 180px;
    padding-left: 10vw;
    color: #00d2d0;
    cursor: pointer;
}


#logo img, footer .footer-text img {
   width: 250px;
   height: auto;
}

#menu {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    font-family: Libre Franklin;
    padding-right: 10vw;
}

#menu li {
    list-style-type: none;
    padding: 0 40px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 180px;
}

#menu li a { 
    color: white;
    text-decoration: none;
}

li#getstarted.scrolled {
    background: #00d2d0;
    border-radius: 40px;
    height: 65px;
    line-height: 65px;
    margin-top: 57.5px;
    font-weight: 500;
}

li#getstarted.scrolled a {
    color: black;
}

#hamburger {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: none;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.55));
}

#hamburger span {
    width: 50px;
    height: 4px;
    display: block;
    background-color: #00d2d0;
    margin-bottom: 8px;
    line-height: 180px;
    position: relative;
    bottom: 0px;
    border-radius: 3px;
    transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out, bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#hamburger span:last-child {
    margin-bottom: 0px;
}

#hamburger.clicked span:first-child {
    transform: rotate(-45deg);
    bottom: -12px;
}

#hamburger.clicked span:nth-child(2) {
    opacity: 0;
}

#hamburger.clicked span:last-child {
    transform: rotate(45deg);
    bottom: 12px;
}

body{ 
    //filter: blur(30px);
}

body #menu {
    filter: blur(0px);
}

/* HERO */

main {
    height: 112vh;
    width: 100%;
   // z-index: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  //  background-image: linear-gradient(145deg, rgb(0, 16, 153) 0px, rgb(58, 217, 255) 96%);
    background: black;
   // background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0, 0.65)), url(https://images.unsplash.com/photo-1534841090574-cba2d662b62e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1887&q=80);
   // background-image: linear-gradient(90deg, #1e3c72 10%, #2a5298 90%);
    background-size: 100%;
    background-repeat: no-repeat;
    padding-left: 10vw;
    overflow: hidden; 
    position: relative;
}

main img {
    position: absolute;
    right: 13%;
    width: 35%;
    bottom: 20%;
/*   //  transform: perspective(280px) rotateY(-7deg); */
}

main img:hover {
    transition: transform 0.3s ease-in-out;


}



.ball {
    width: 132px;
    height: 132px;
    background: #00d2d0;
    position: absolute;
    top: 173px;
    right: 246px;
    display: block;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
   /*  animation: bounceY 4s linear 0s infinite normal forwards; */
}




.ball-2 {
    width: 132px;
    height: 75px;
    background: #00d2d0;
    position: absolute;
    top: 532px;
    right: 688px;
    display: block;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
    /* animation: bounceX 3.5s linear 0s infinite alternate-reverse backwards; */
}

/* @keyframes bounceY {
    from {transform: translateY(0px);}
    to {transform: translateY(10px);}
    from { transform: rotate(0deg) translateX(1px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(3px) rotate(-360deg); }
  }

 /*  @keyframes bounceX {
    from {transform: translateX(0px);}
    to {transform: translateX(10px);}
  } */

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 17.5px 15px 17.5px;
    border-color: transparent transparent #00d2de transparent;
    position: absolute;
    top: 489px;
    right: 684px;
    transform: rotate(15deg);
    opacity: 0.7;
    filter: blur(12px);
}

.triangle-2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.5px 29px 17.5px;
    border-color: transparent transparent #00d2de transparent;
    position: absolute;
    top: 513px;
    right: 218px;
    transform: rotate(76deg);
    opacity: 0.7;
    filter: blur(12px);
    display: none;
}

.rectangle {
    width: 24px;
    height: 21px;
    background: #00d2de;
    position: absolute;
    top: 373px;
    right: 268px;
    transform: rotate(76deg);
    opacity: 0.7;
    filter: blur(12px);
}

}

.rectangle-2 {
    width: 16px;
    height: 16px;
    background: #00d2de;
    position: absolute;
    top: 439px;
    right: 746px;
    transform: rotate(76deg);
    opacity: 0.4;
    filter: blur(6px);
    display: none;
}

.ball, .ball-2, .triangle, .triangle-2, .rectangle, .rectangle-2 {
  //  display: none;
}


main h1 {
    font-family: Nunito Sans;
    width: 100%;
    line-height: 1.2em;
}

#cta {
    color: white
}

#cta p {
    font-size: 1.8rem;
    margin-bottom: 0px;
}

#cta h1 ~ p:first-of-type {
    margin-bottom: 3.5vh;
}

#cta p#features {
    font-size: 1.12rem;
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;

/*     margin-bottom: 2.3vh; */
}

.feature {
    margin-top: 1.5vh;
}

#cta h1 {
    font-size: 4rem;
    margin-bottom: 0px;
    margin-top: 0px;
}

#cta button {
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    height: 85px;
    line-height: 85px;
    padding: 0 50px;
    font-size: 1.4rem;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 45px;
    position: relative;
    border: 2px solid black;
    background: #white;
    box-shadow: 6px 6px 0 rgb(0, 255, 249, 0.9);
    transition: box-shadow 0.2s ease-in-out;
}

#cta button:hover {
    box-shadow: 8px 8px 0 rgb(0, 255, 249, 0.9);
}

#cta button:before {
    content: 'Get Started';
    height: 101px;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    width: 105%;
     display: none;
    border-radius: 45px;
    background: #00fff9;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: -12px;
    left: -2.5%;
    transform: rotate(-2deg);
    filter: blur(500px);
    opacity: 0.31;
    cursor: pointer;
    /* display: none;   */
}

a[href="#getit"] {
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

/* SKANDER GRADIENT COLORS FROM 00d2d0 TO 00fff9 */

/* #cta button:after {
    display: none;
    content: 'Get Started';
    height: 108%;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    width: 104%;
    display: block;
    border-radius: 45px;
    background: linear-gradient(#00fff9, #00d2d0);
    position: absolute;
    z-index: -2;
    left: -2%;
    right: 0;
    top: -4%;
    //left: -0.5%;
    transform: rotate(0.75deg);
    filter: blur(0px);
}
 */
#cta p {
    margin: 40px 0;
    margin-top: 30px;
}

.tick, .feature {
    padding-right: 13px;
}

.tick {
    color: #00d2d0;
}

.custom-shape-divider-bottom-1651732549 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1651732549 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 62px;
}

.custom-shape-divider-bottom-1651732549 .shape-fill {
    fill: #f3f6fb;
}

.custom-shape-divider-bottom-1651732549 svg path:first-child, .custom-shape-divider-bottom-1651732549 svg path:nth-child(2) {
    fill:#00d2d0;
}

/* FAQ */

#accordion {
    width: 45vw;
    //margin: 0 auto;
    margin-bottom: 35vh;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.125);
    z-index: 3;

}
#faq {
    padding-right: 6vw;
    display: flex;
    justify-content: flex-end;
   // background-image: linear-gradient(#00d2d0 0%, #f3f6fb 10%);
   position: relative;
   margin-top: 15vh;
}

#faq h1 {
    text-align: center;
    font-size: 3rem;
    display: inline-block;
    display: flex;
    justify-content: left;
    z-index: 3;
 
}

#qmark {
    font-family: Cocon;
    font-size: 69rem;
    flex-grow: 1;
    position: absolute;
    left: 10vh;
    top: -25vw;
    z-index: -1;
    opacity: 0.35;
    -webkit-transform: rotate(15deg);
    color: #00d2d0;
    display: none;
}

.q, .a {
    width: 100%;
    background: white;

   // border-radius: 7px;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0px 40px;
    box-sizing: border-box;

    font-size: 1.3rem;
}

.q {
    outline: 0;
    border: 0;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    min-height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.a p {
   margin: 0;
   padding: 28px 0;
}

.q:after {
    content: '+';
    position: absolute;
    top: 0px;
    right: 30px;
    font-size: 3rem;
    line-height: 70px;
    font-weight: 100;

}

.q.active:after {
    content: '-';
}

.a {
    max-height: 0px;
    overflow: hidden;
}

#faq-pic {
    position: absolute;
    left: 6vw;
    top: 0vh;
    width: 37vw;
}

/* PRICING */

#pricing {
    position: relative;
    z-index: 0;
    padding-bottom: 30vh;
    padding-top: 17vh;
    background: rgba(0, 0,0, 1);
    margin-top: 16vh;
}

#pricing-wrapper {
    display: flex;
    justify-content: center;
/*     position: relative;
    top: 15vh; */
    z-index: 0;

}

#pricing h1 {
    color: white;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    font-size: 4.5rem;
    margin-bottom: 11vh;
    margin-top: 0;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

 /*PRICING DIVIDER */


.custom-shape-divider-bottom-1651565215 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1651565215 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 73px;
}

.custom-shape-divider-bottom-1651565215 .shape-fill {
    fill: #f3f6fb;
}

.custom-shape-divider-top-1651565239 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1651565239 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 73px;
}

.custom-shape-divider-top-1651565239 .shape-fill {
    fill: #f3f6fb;
}
 /*PRICING DIVIDER */

#pricing-table {
    width: 70vw;
    display: flex;
    justify-content: center;
    gap: 5vh 0;
    
}

.pricing {
    max-width: 33%;
    text-align: center;
   // border: 2px solid red;
    background: white;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.125);
    border-radius: 1px;
}

.pricing .tier-title {
    border-bottom: 1px dotted black;
    height: 60px;
    line-height: 60px;
    color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0;
}

#tier-1 {
    font-size: 1.2em;
    box-shadow: 0px 0px 45px rgba(28, 245, 234, 0.585);
}

#tier-1 .tier-title {
    background: black;
    color: #00fff9;
}

.pricing .tier-info {
    padding: 50px;
    padding-top: 80px;
    padding-bottom: 0px;
}
.pricing ul {
    margin-top: 10px;
}
.pricing li {
    list-style-type: none;
    text-align: center;
    padding: 15px 0;

}

.pricing li:not(:first-child) {
    border-top: 1px solid rgb(192, 192, 192);
}


.pricing span {
    font-family: Nunito Sans;
    font-size: 3rem;
}

.pricing#tier-1 span {
    font-size: 3.7rem;
}

.pricing span.monthly {
    font-size: 1.7rem;
    font-weight: 100;
    opacity: 0.4;
    text-transform: lowercase;
}

.pricing#tier-1 span.monthly {
    font-size: 2.6rem;
}

.pricing#tier-1 li {
    font-size: 1.35rem;
    color: black;
}

.pricing li:before {
    content: '\2714';
    position: relative;
    left: -0.7vw;
    color: black;
}

/* .pricing button {
    background: white;
    border-radius: 40px;
    height: 65px;
    line-height: 65px;
    margin-top: 3vh;
    font-weight: 500;
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    cursor: pointer;
    padding: 0px 40px;
    font-size: 1.5rem;
    border: 1px solid black;
    cursor: pointer;
} 

.pricing#tier-1 button {
    background: #00fff9;
}

*/

.pricing button {
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    font-size: 1.2rem;
    margin: 2.5vh 0;
    margin-bottom: 0px;
    cursor: pointer;
    border-radius: 45px;
    position: relative;
    border: 2px solid black;
    background: white;
    box-shadow: 6px 6px 0 rgb(0, 255, 249, 0.9);
    transition: box-shadow 0.2s ease-in-out;
}

#tier-2, #tier-3 {
    
}

.pricing button:hover {
    box-shadow: 8px 8px 0 rgb(0, 255, 249, 0.9);
}

.pricing .tick {
    font-size: 1em;
}

.pricing#tier-1 button {
    height: 85px;
    line-height: 85px;
    font-size: 1.4rem;
}

#tier-1 button {
    background: black;
    color: #00fff9;
}

#tier-1 {
    height: 110%;
    padding: 0px 50px;
    //transform: scale(1.5);
    position: relative;
    top: -5%;
    z-index: 2;
}

#tier-2, #tier-3 {
    position: relative;
 //   right: -1%;
    z-index: ;
}

#tier-3 {
    left: -1vw;
}

#tier-2 {
    right: -1vw;
}


#pricing .tick {
    color: black !important;
}
/* FOOTER */


.body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

footer {
  
	color: white;
    background-color: black;
	padding: 40px 170px;
	display: flex;
	justify-content: space-around;
	margin-top: 18vh;
	padding-bottom: 10vh;
    padding-top: 16vh;
    position: relative;
}

#footer-wrapper {

}

footer a {
	color: white;
	text-decoration: none;
}

footer img {
	height: 100px;
	width: auto;
	margin-top: 30px;
	cursor: pointer;
}

.footer-map li {
	list-style-type: none;
	line-height: 1.7;
}

.footer-map {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

#footer-divider {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

footer h1 {
    padding: 0px;
    margin: 0;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 30px;
}

/* SERVICES */

#services {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    margin-top: 8vh;
    flex-wrap: wrap;
    //padding-right: 5vw;
    position: relative;

}


#service svg#floating-shape {
    position: absolute;
    right: 0px;
    top: 100px;
    opacity: 0.5;
}

.floating-shape {
    display: none;  
}

#services > img {
    display: inline-block;
    width: 45%;
    height: 45%;
    position: relative;
    right: 2vw;
}


#services > h1 {
    width: 100%;
    font-size: 3rem;
    padding-left: 10vw;
}

#services > h1 span {
    //color: #00d2d0; 
    text-shadow: 0px 0px 10px #00d2d0;
}

#services-wrapper {
    display: flex;
    justify-content: center;
    gap: 0 2vw;
    width: 40vw;
    flex-wrap: wrap;
    padding-left: 10vw;
}

.service:nth-child(2n) {
    position: relative;
    bottom: -3vh;
}


.service {
    width: 45%;
}

.service img {
    width: 70%;
    display: none;
}

.service h1 {
    font-size: 1.7rem;
    margin: 0;
    position: relative;
}

.service h1:before {
    content: '\2714';
    position: absolute;
    left: -2.75vw;
    top: -0.05vh;
    color: #00d2d0;
  //  background-color: black;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
}

.service p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-top: 2vh;
}


/* ABOUT */

#about {
    margin-top: 0vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    background: black;
    color: white;
    align-items: center;
    padding: 12vh 0;
    position: relative;
/*     display: none; */
}

#about img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
}

.custom-shape-divider-top-1651732766 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1651732766 svg {
    position: relative;
    display: block;
    width: calc(145% + 1.3px);
    height: 62px;
}

.custom-shape-divider-top-1651732766 .shape-fill {
    fill: #f3f6fb;
}

.custom-shape-divider-bottom-1651732801 {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1651732801 svg {
    position: relative;
    display: block;
    width: calc(145% + 1.3px);
    height: 62px;
}

.custom-shape-divider-bottom-1651732801 .shape-fill {
    fill: #f3f6fb;
}

#about-wrapper {
    width: 60vw;
    padding-left: 3vw;
}

#about-wrapper h1 {
    font-size: 2rem;
    position: relative;
}

#about-wrapper p {
    line-height: 2em;
    font-size: 1.5rem;
    width: 100%;
}

#about button {
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    height: 85px;
    line-height: 85px;
    padding: 0 50px;
    font-size: 1.4rem;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 45px;
    position: relative;
    border: 2px solid black;
    background: #white;
    box-shadow: 6px 6px 0 rgb(0, 255, 249, 0.9);
    transition: box-shadow 0.2s ease-in-out;
}

#about button:hover {
    box-shadow: 8px 8px 0 rgb(0, 255, 249, 0.9);
}

#about-divider-top {
    position: relative;
    bottom: -150px;
}

#about-divider-bot {
    position: relative;
    display: none;
}


/* PORTFOLIO */

#portfolio h1 {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
}

#portfolio > p {
    padding: 0 10vw;
    font-size: 1.5rem;
    text-align: center;
    line-height: 2;
}


#portfolio-items {
    display: flex;
    justify-content: center;
    gap: 3vw;
    width: 80vw;
    margin: 0 auto;
    margin-top: 8vh;
}

#portfolio-items img {  
}

.portfolio-item {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    width: 30%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;

}

.portfolio-item:hover {
    transform: scale(1.03);
}
.portfolio-item-img {
    background-image: url(img/web.jpg);
    width: 100%;
    height: 0;
    padding-top: 70%;
    background-size: contain;
    background-repeat: no-repeat;
}
.portfolio-item-info {
    padding: 40px;
    padding-top: 10px;
}

.portfolio-item-info h1 {
    padding-top: 0px;
    margin-top: 0px;
}

.portfolio-item button {
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 1.4rem;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 45px;
    position: relative;
    border: 2px solid black;
    background: #white;
    box-shadow: 3px 3px 0 rgb(0, 0, 0, 0.9);
    transition: box-shadow 0.2s ease-in-out;
}

.portfolio-item button:hover {
    box-shadow: 6px 6px 0 rgb(0, 0, 0, 0.9);
}

/* BLOG POSTS */

#blog-posts {
    margin: 10vh 0;
    text-align: center;
    margin-bottom: 0;
}

#blog-posts h1 {
    font-size: 3rem;
}

#blog-posts-wrapper {
    width: 50vw;
    margin: 0 auto;
/*     max-height: 70vh;
    overflow-y: scroll; */
    padding-right: 3vw;
    text-align: center;
}

#blog-posts-wrapper ul {
    list-style-type: none;
}

#blog-posts-wrapper ul a {
    text-decoration: none;
    color: black;
}

.blog-post-list-item {
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0, 0.13);
    padding: 1vh 0;
}

#blog-posts-wrapper ul a:last-of-type .blog-post-list-item {
    border-bottom: 0;
    padding-bottom: 2vh;
}



.blog-list-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    line-height: 100%;
    vertical-align: middle;
}

#blog-posts button {
    outline: 0;
    border: 0;
    font-family: Libre Franklin;
    color: black;
    font-weight: 600;
    height: 85px;
    line-height: 85px;
    padding: 0 25px;
    font-size: 1.4rem;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 45px;
    position: relative;
    border: 2px solid black;
    background: #white;
    box-shadow: 3px 3px 0 rgb(0, 0, 0, 0.9);
    transition: box-shadow 0.2s ease-in-out;
}

#blog-posts button:hover {
    box-shadow: 6px 6px 0 rgb(0, 0, 0, 0.9);
}


#blog-posts-wrapper::-webkit-scrollbar {
    width: 0.5em;
    background: black;
    
  }
   
  #blog-posts-wrapper::-webkit-scrollbar-track {
    //box-shadow: inset 0 0 1px #00d2d0;
    width: 500px;
    
  }
   
  #blog-posts-wrapper::-webkit-scrollbar-thumb {
    background-color: #00d2d0;
    outline: none;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-radius: 30px;
  }


  .footer-text img {
    margin-bottom: 2vh;
    margin-top: 0;
}

/*POST PAGE CONTENT*/
body.posts .main-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2.5vw;
    width: 80vw;
    margin: 90px auto;
}
body.posts {
    background: #f3f6fb;
}

body.posts nav {
    background: black;
}

body.posts #menu li {
    height: 90px;
}

body.posts #logo {
    line-height: 90px;
}

body.posts #logo img {
    width: 190px;
}
article {
    width: 55vw;
}

article h1 {
    font-size: 3rem;
}

article h2 {
    font-size: 2rem;
}

article img {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    width: 100%;
    height: auto;
}

article p {
    font-size: 1.4rem;
    line-height: 2;
}


aside h2 {
    margin-top: 50px;
}

aside li {
    list-style-type: none;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2;
}

aside li::before {
    content: "📝";
    position: relative;
    left: -3px;
}

aside a {
    text-decoration: none;
    color: black;
}

@media screen and (min-width: 0px) and (max-width: 991px) {

    html {
       scroll-behavior: initial;
    }
    /* MENU */
    nav {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100%;
    }
    #logo {
       /*  background-image: linear-gradient(61deg, #00d2d0, #00fff9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 
        -moz-background-clip: text;
        -moz-text-fill-color: transparent; */
        font-family: 'Cocon';
      /*   color: teal; */
        text-transform: lowercase;
        letter-spacing: -0.0499em;
        font-size: 4rem;
        line-height: 180px;
        padding-left: 10vw;
        color: #00d2d0;
        cursor: pointer;
        //position: fixed;
        z-index: -3;
    }

    
    #logo img {
        max-width: 70vw;
    }

    #menu {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        font-family: Libre Franklin;
        padding-right: 10vw;
        position: fixed;
        right: 0;
        top: 0px;
        width: 0px;
        background: black;
        color: white;
        transition: width 0.2s ease-in-out;
        height: 100vh;
        padding: 0;
       // z-index: 999999;
    }

    #menu.mobile {
        width: 50%;
        box-shadow: 0px 0px 1000px black;
    }
    
    #menu li {
        list-style-type: none;
        padding: 0 40px;
        line-height: 180px;
        font-size: 1.4rem;
        width: 100%;
        border-bottom: 1px solid #ffffff33;
        white-space: nowrap;
        word-break: keep-all;
    }


    
    #menu li a { 
        color: white;
        text-decoration: none;
    }
    
    li#getstarted.scrolled {
        background: #00d2d0;
        border-radius: 40px;
        height: 65px;
        line-height: 65px;
        margin-top: 57.5px;
        font-weight: 500;
    }
    
    li#getstarted.scrolled a {
        color: black;
    }
    
    #hamburger {
        position: absolute;
        top: 0px;
        right: 14px;
        cursor: pointer;
        display: block;
        
    }
    
    #hamburger span {
        width: 50px;
        height: 4px;
        display: block;
        background-color: #00d2d0;
        margin-bottom: 8px;
        line-height: 180px;
        position: relative;
        bottom: 0px;
        border-radius: 3px;
        transition: transform 0.2s ease-in-out, bottom 0.2s ease-in-out, bottom 0.2s ease-in-out, opacity 0.2s ease-in-out;
    }

    #hamburger span:last-child {
        margin-bottom: 0px;
    }
    
    #hamburger.clicked span:first-child {
        transform: rotate(-45deg);
        bottom: -12px;
    }
    
    #hamburger.clicked span:nth-child(2) {
        opacity: 0;
    }
    
    #hamburger.clicked span:last-child {
        transform: rotate(45deg);
        bottom: 12px;
    }


    /* MAIN */
    .ball, .ball-2, .triangle, .triangle-2, .rectangle, .rectangle-2 {
        display: none;
    }
    #cta h1 {
        width: 80vw;
        font-size: 3.5rem;
    }

    #cta {
    padding-left: 5vw;
    }

    #cta p {
        max-width: 80vw;
    }

    main img {
        display: none;
    }

    main {
        padding: 0;
        padding-block: 5vh;
        padding-top: 18vh;
        padding-bottom: 18vh;        
        align-items: flex-start;
        height: auto;
        max-height: 112vh;
    }

    .custom-shape-divider-bottom-1651732549 {
        bottom: -2px;
    }

    #logo {
        padding-left: 5vw;
        line-height: 2em;
    }

    main #features {
        word-wrap: break-word;
    }

    #cta h1 br {
        display: none;
    }

    #cta button {
        margin-bottom: 240px;
        width: 90vw;
        margin: 0 auto;
        white-space: nowrap;
        padding: 0;
    }

    #hamburger {
        display: block;
    }

/*FAQ*/
    #faq {
        top: 0vh;
        width: 90vw;
        margin: 0 auto;
        margin-bottom: 14vh;
        padding: 0;
    }

    #faq h1 {
        margin: 12vh 0 6vh 0;
    }
    #accordion-wrapper {
        width: 100vw;
    }
    #accordion {
        width: 95%;
        margin: 0 auto;
    }

    #faq-pic {
        display: none;
    }

    #accordion .q {
    line-height: 1.5;
    padding: 1.75vh 8vw;
    padding-right: 12vw;
    font-size: 1.7rem;
    }

    #accordion .a {
        line-height: 1.7;
        font-size: 1.6rem;
    }
/*PRICING*/

    #pricing > h1 {

    }
    #pricing-table {
        flex-wrap: wrap;
        width: 100%;
    }
    #tier-1 {
        height: unset;
        padding: unset;
    }
    #tier-2, #tier-3 {
        left: 0;
        right: 0;

    }
    .pricing, .pricing#tier-1, .pricing#tier-2, .pricing#tier-3 {
        max-width: 100vw;
        width: 90vw;
        margin-bottom: 4vh;
        padding-bottom: 8vh;
        height: auto;
        box-shadow: 0px 0px 2px #00fff9;
    }

    #tier-1 {
        order: -1;
        top: 0;
    }

    .custom-shape-divider-bottom-1651565215 {
        bottom: -2px;
    }

    .pricing button {
        height: 85px;
        line-height: 85px;
        font-size: 1.4rem;
    }

    .pricing#tier-1 li {
        font-size: 1.5rem;
    }
    .pricing li {
        font-size: 1.4rem;
    }

    .pricing span {
        font-size: 3.4rem;
    }

/*SERVICES*/

    #services {
        margin-top: 10vh;
    }

    #services img {
        display: none;
    }

    #services-wrapper {
        width: 100%;
    }

    .service, .service:nth-child(2n) {
        width: 90%;
        padding-left: 10vw;
        bottom: 0px;
        top: 0px;
    }

    .service h1:before {
        left: -12.4vw;
    }

    .service h1 {
        font-size: 2rem;
    }

    .service p {
        margin-top: 1vh;
        font-size: 1.35rem;
    }

    #services-wrapper {
        gap: 3.5vh 0vw;
    }
/* ABOUT */
    #about {
        flex-wrap: wrap;
    }

    #about img {
       width: 90%;
       height: auto;
    }

    #about #about-wrapper {
        width: 80vw;
    }

    .custom-shape-divider-bottom-1651732801 {
        bottom: -1px;
    }
    
/* BLOG POSTS */
#blog-posts-wrapper  {
    width: 80vw;
    flex-wrap: wrap;
}

.blog-post-list-item {
    flex-wrap: wrap;
}

.blog-post-list-item h2 {
    margin-bottom: 0px;
    width: 100%;
    word-break: keep-all;
    font-size: 2rem;
}

.blog-list-date {
    width: 100%;
    font-size: 1.2rem;
}

/* PORTFOLIO */

#portfolio > p {
    line-height: 1.7;
}

#portfolio-items {
    flex-wrap: wrap;
}
.portfolio-item {
    width: 100%;
    margin-bottom: 11vh;
}

.portfolio-item h2 {
    font-size: 2rem;
}

.portfolio-item p {
    font-size: 1.4rem;
}

.portfolio-item:last-child {
    margin-bottom: 0;
}

.portfolio-item button {
    height: 60px;
    line-height: 60px;
    width: 95%;
    margin: 0 auto;
    font-size: 1.7rem;
}

/* POSTS.HTML */


body.posts .main-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2.5vw;
    width: 100vw;
    margin: 90px auto;
}
body.posts {
    background: #f3f6fb;
}

body.posts nav {
    background: black;
}

body.posts #menu li {
    height: 90px;
}

body.posts #logo {
    line-height: 90px;
}

body.posts #logo img {
    width: 190px;
}
article {
    width: 95%;
    padding: 0 30px;
}

article h1 {
    font-size: 3.5rem;
    line-height: 1.3;
}

article h2 {
    font-size: 2.5rem;
    line-height: 1.4
}

article img {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    width: 100%;
    height: auto;
}

article p, blockquote {
    font-size: 1.8rem;
    line-height: 2;
}

aside {
    display: none;
}

aside h2 {
    margin-top: 50px;
}

aside li {
    list-style-type: none;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2;
}

aside li::before {
    content: "📝";
    position: relative;
    left: -3px;
}

aside a {
    text-decoration: none;
    color: black;
}


/* FOOTER */
    footer {
        flex-wrap: wrap;
        padding: 12vh 10vw 3vh 10vw;
        margin-top: 0;
    }

    footer h3 {
        font-size: 1.4rem;
    }

    .footer-text, .footer-map {
        width: 100%;
    }

    .footer-text {
        margin-bottom: 35px;
        font-size: 1.25rem;
    }


    .footer-map {
        flex-wrap: wrap;
        text-align: left;
        gap: 6vh;
    }

    .footer-map ul {
        width: 100%;
    }

    .footer-map ul li {
        font-size: 1.5rem;
        text-align: left;
        height: 10vh;
        line-height: 10vh;
        border-bottom: 1px solid #ffffff33;
    }

    .footer-map ul a:last-child li {
        border-bottom: 0;
    }

 }


  /* Ipad Pro */
@media screen and (min-width: 450px) and (max-width: 991px) {
}
    /* Tablets */
@media screen and (min-width: 750px) and (max-width: 1024px) {
    .ball, .ball-2, .triangle, .triangle-2, .rectangle, .rectangle-2 {
        display: none;
    }

    main img {
        display: none;
    }   
}
    /* Small Desktop */
@media screen and (min-width: 1024px) {
    .ball, .ball-2, .triangle, .rectangle, .rectangle-2 {
        display: none;
    }

    main img {
        display: none;
    }
}


    /* Regular Desktop */
@media screen and (min-width: 1300px) {
    .ball, .ball-2, .triangle, .rectangle, .rectangle-2 {
        display: inline-block;
    }

    main img {
        display: inline-block;
    }

}
@media only screen and (min-width: 2000px) {
}

/* Footer */
/* Mobile */
@media only screen and (min-width: 0em) {
}

/* Tablet */
/* Small Desktop */

@media only screen and (min-width: 64em) {
}
