@import url('https://fonts.cdnfonts.com/css/post-no-bills-jaffna');
@import url('https://fonts.googleapis.com/css?family=Monoton');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&display=swap');
/* @import "compass/css3"; */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    size: 1em;
}

html{
    font-family: 'Roboto';
    font-weight: 400;
    scroll-behavior: smooth;
}

body{
    max-height: 100vh;
    /* width: 100%; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* background-color: #1e1f26; */
    background-color: #e8e6db;
}

body::-webkit-scrollbar {
    display: none;
}

.container::-webkit-scrollbar {
    display: none;
}
.container{
    /* scroll-snap-type: y mandatory; */
    overflow-y: scroll;
    display: flex; 
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
    overflow-x: hidden;
}
.container section{
    scroll-snap-align: start;
    display: flex;
    flex: none;
    position: relative;
    max-height: 110vh;
}

#logo{
    background-image: url("/media/AndysLogo1.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    cursor: pointer;
    position: absolute;
    left: 33px;
    z-index: 100;
    top: 33px;
    height: 10vh;
    width: 249px;
    padding-top: 8px;
}
#logo svg{
    transform: translate(-100px, -130px);
} 

nav{
    height: 5vh;
    background: transparent;
    position: fixed;
    width: 100vw;
    z-index: 100;
}

.nav-links{
    display: flex;
    padding: 0px;
    list-style: none;
    text-align: center;
}

.nav-links li{
    flex: calc(100vw/10 - 20vw);
    padding-top: 5vh;
    height: 3vh;
}
.nav-links li a{
    text-decoration: none;
    font-size: 1em;
    color: #EFEFF1;
    text-shadow: 0 0 3px whitesmoke;
}

#login{
    display: block;
    position: fixed;
    top: calc(18px + 1em);
    z-index: 101;
    right: 120px;
    background-color: #F15A60;
    padding: 15px;
    border: 1px;
    border-radius: 15px;
}

#login > a{
    text-decoration: none;
    color: #e8e6db;
    font-family: 'Roboto';
}

.burger{
    display: block;
    cursor: pointer;
    position: fixed;
    right: 33px;
    z-index: 100;
    top: 33px;
    border: solid;
    border-radius: 50%;
    height: 49px;
    width: 49px;
    padding-top: 8px;
}
.burger div{
    width: 30px;
    height: 3px;
    background-color: #F15A60;
    background-blend-mode: screen;
    mix-blend-mode: difference;
    margin:7px;
    transition: all 1s ease-out;
}

.burger.white .line1{
    transform: rotate(60deg) translate(5px,-5px);
}
.burger.white .line2{
    transform: rotate(-60deg) translate(4px,-10px);
}

.nav-links{
    position: fixed;
    top: 0;
    right: 0px;
    height: 100vh;
    background-color: #303137;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in;
    z-index: 100;
    clip-path: polygon(50% 100%, 5% 100%, 95% 100%);
    transition: all 1s ease-out;
}
.nav-links.open{
    clip-path: polygon(50% 0%, 5% 100%, 95% 100%);

}
.nav-links.open1{
    background-color: #F15A60;

}
.burger.white{
    background-color:#EFEFF1;
    border-color: #F15A60;
}
.burger.white>div{
    transform: rotateX(45deg);
}
.nav-active{
    transform: translateX(0%);
}

.welcome{
    height: 100vh;
    max-width: 95vw;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
    scroll-snap-align: start;
}
.left{
    height: 100%;
    font-size: 8em;
    border-radius: 8px;
    font-family: 'Post No Bills Jaffna';
    z-index: 2;
    flex: 1;
    margin-right: -300px;
    margin-left: 100px;
}

.left span{
    font-family: 'Monoton';
    color: #F15A60;

}
.center{
    flex: 2;
    /* background-color: #303137; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
}
.right{

}
.line{
    position: absolute;
    width: 182px;
    height: 0px;
    left: calc(50vw - 135px/2);
    bottom: 91px;
    border: 1px solid #000000;
    transform: rotate(
90deg
);  
}

.ellipse{
    position: absolute;
    width: 30px;
    height: 30px;
    left: calc(50vw + 18.5px/2);
    bottom: 91px;
    transition:all 0.5s;
    animation: scrolling 1.5s infinite alternate;
}



.about{
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-shrink: 50vw;
    align-items: center;
    justify-content: center;
    top: 0 !important;
    left: 0;
}

.about > div{
    display: flex;  
    flex: 1;
    height: 100vh;
}

#andy_img{
    background-image: url("/media/andy.png");
    background-position: bottom center;
    background-size: 27vh;
    background-repeat: no-repeat;
    min-height: 85vh;    
}

#tr_pr{   
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15vw;
    max-height: 50vh;
    min-width: 25vw;
    transform: translateY(calc(50vh - 150px/2));
    background-color: #1e1f26;
    color: #F15A60;

}

#andy_p{
    position: relative;
    flex-direction: column;
    justify-content: space-evenly;
    height: 60vh;
    display: flex;
    background-color: #F15A60;
    align-items: center;
    max-width: 35vw;
    margin-right: 15vw;
}

.accordion {
    color:#e8e6db;
    background-color: initial;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 1em;
  }
  .active, .accordion:hover {
      display: block;
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #303137;
    color:#e8e6db;
  }

  .panel > p{
      max-width: 34em;
      text-align: center;
      margin: 13px;
  }
  .panel li{
    list-style-type: circle;
    margin-left: 20px !important;
  }
  .panel span{
    font-size: 1.2em;
  }

  .ac_show{
    max-height: 45vh;
  }

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }


/* RIBBON */
/* Photo Banner */
#certs_ribbon {
    width: 100%;
    min-height: 30vh;
    overflow: hidden;
    margin: 10px auto;
}

.photobanner {
    height: 233px;
    width: 100vw;
    margin-bottom: 5px;
    font-size: 0;
}

.photobanner img{
	margin-bottom: 10px;
	margin-right: 5px;
	height: auto;
	width: 225px;
}

.photobanner img  {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
 
.photobanner img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    cursor: pointer;
 
    -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}


/*keyframe animations*/
.first {
    -webkit-animation: bannermove 30s linear infinite;
       -moz-animation: bannermove 30s linear infinite;
        -ms-animation: bannermove 30s linear infinite;
         -o-animation: bannermove 30s linear infinite;
            animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -100vw;}
}
 
@-moz-keyframes bannermove {
 0% {margin-left: 0px;}
 100% {margin-left: -100vw;}
}
 
@-webkit-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -100vw;}
}
 
@-ms-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -100vw;}
}
 
@-o-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -100vw;}
}

.second {
    -webkit-animation: bannermoves 30s linear infinite;
       -moz-animation: bannermoves 30s linear infinite;
        -ms-animation: bannermoves 30s linear infinite;
         -o-animation: bannermoves 30s linear infinite;
            animation: bannermoves 30s linear infinite;
}
 
@keyframes "bannermoves" {
 0% {margin-left: -100vw;}
 100% {margin-left: 0px;}
}
 
@-moz-keyframes bannermoves {
 0% {margin-left: -100vw;}
 100% {margin-left: 0px;}
}
 
@-webkit-keyframes "bannermoves" {
 0% {margin-left: -100vw;}
 100% {margin-left: 0px;}
}
 
@-ms-keyframes "bannermoves" {
 0% {margin-left: -100vw;}
 100% {margin-left: 0px;}
}
 
@-o-keyframes "bannermoves" {
 0% {margin-left: -100vw;}
 100% {margin-left: 0px;}
}

.scrollmagic-pin-spacer{
    z-index: 0;
}

.sps_back{
    z-index: -1;
}
.sps_front{
    z-index: 0 !important;
}
.getstarted::-webkit-scrollbar {
    display: none !important;
}

.getstarted{
    position: relative;
    display: flex;
    flex-direction: column;
    top: 0 !important;
    left: 0;
    align-items: flex-end;
    justify-content: center;
    width: 100vw;
    margin: 0;
    min-height: 100vh;
    padding-top: 1px;   
    box-sizing: border-box;
}

.getstarted > svg{
    display: flex;
    box-sizing: border-box; 
    padding: 5px;   
}


/* vertical*/    
/* .getstarted{
    position: relative;
    display: flex;
    flex-direction: column;
    top: 0;
    left: -30vw;
    width: calc(100vh + 1px);
    max-height: 100vh;
    margin: 0;
    padding-top: 1px;
    background-color: aqua;
    overflow-y: auto;
    overflow-x: hidden;
    transform: rotate(
-90deg
) translateY(-250px);
    transform-origin: right top;
     padding: 800px 0 0 0;
    box-sizing: border-box;
    
    scroll-snap-align: start;
}

.getstarted > svg{
    display: flex;
    box-sizing: border-box; 
    padding: 5px;
    transform: rotate( 
90deg
 ) translateY(-13px);
    width: 100%;
    min-height: 100vh;
    transition: all 0.5s;
} */
.getstarted h3{
    background: #e8e6db;
    display: flex;
    width: 20em;
    height: 6em;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 30px;
}

.getstarted p{
    background-color: transparent;
    color: #F15A60;
    display: flex;
    width: 10em;
    height: 10em;
    align-items: center;
    justify-content: center;
    position: absolute;
}
.getstarted > div:hover{
    opacity: 100%;
    cursor: pointer;
}

#woke{
    opacity: 0;
    transform: translate(430px, 150px);
}

#Training{
    opacity: 0;
    transform: translate(428px, 152px);
}
#Ball{
    /* transform: translate(-25%, 310px); */
}
#Water{
    transform: translate(30px, 325px) scale(2.5);
    fill: #F15A60;
}


.point_1, .point_2, .point_3{
    font-family: 'Rajdhani';
}
.point_1{
    opacity: 0;
    top: 116px;
    left: 350px;
    font-size: 2.5em;
    font-weight: 500;
}

.point_2{
    opacity: 0;
    bottom: 0px;
    right: 50vw;
    font-size: 3em;
    font-weight: 600;
    transform: translate(50%,10%);
}
.point_3{
    left: 80px;
    bottom: 200px;
    font-size: 4em;
    opacity: 0;
    font-weight: 700;
}

#t_proc{
    background-color:  #1e1f26;    
    /* background-color: #F15A60;     */
    min-height: 100vh;    
    align-items: center;
    justify-content: center;
    color: #F15A60;
}

.r_row{
    flex-wrap: wrap;
    flex: 1;
    display: flex;
    gap: 2em;
    flex-direction: column;
    /* background-color: #1e1f26; */
    /* min-height: 50vh; */
    min-height: 80vh;
    max-width: calc(100vw - 45em);
    justify-content: center;
    align-items: center;
}
.r_row p {
    /* display: flex; */
    display: none;
    max-width: 52em;
    justify-content: center;
    line-height: 1.76em;
}   

#hndrt{
    min-height: 80vh;
    min-width: 60vw;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/media/hndrt.png");
}


.glitch {
    color: #e8e6db;
    font-size: 2em;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#can{
    transform: translate(-45px, 166px);
    font-size: 3em;
}

#cannot{
    transform: translate(-50px, 195px);
}

#yra{
    transform: translate(-60px, 100px);
    font-size: 3em;
    line-height: 0.8em;
    text-align: center;
}
@keyframes noise-anim {
    0% {
        clip: rect(14px, 9999px, 100px, 0);
   }
    5% {
        clip: rect(89px, 9999px, 47px, 0);
   }
    10% {
        clip: rect(52px, 9999px, 42px, 0);
   }
    15% {
        clip: rect(76px, 9999px, 65px, 0);
   }
    20% {
        clip: rect(51px, 9999px, 100px, 0);
   }
    25% {
        clip: rect(3px, 9999px, 96px, 0);
   }
    30% {
        clip: rect(64px, 9999px, 51px, 0);
   }
    35% {
        clip: rect(64px, 9999px, 90px, 0);
   }
    40% {
        clip: rect(34px, 9999px, 56px, 0);
   }
    45% {
        clip: rect(46px, 9999px, 80px, 0);
   }
    50% {
        clip: rect(53px, 9999px, 74px, 0);
   }
    55% {
        clip: rect(29px, 9999px, 34px, 0);
   }
    60% {
        clip: rect(13px, 9999px, 33px, 0);
   }
    65% {
        clip: rect(97px, 9999px, 16px, 0);
   }
    70% {
        clip: rect(36px, 9999px, 52px, 0);
   }
    75% {
        clip: rect(35px, 9999px, 12px, 0);
   }
    80% {
        clip: rect(70px, 9999px, 36px, 0);
   }
    85% {
        clip: rect(89px, 9999px, 81px, 0);
   }
    90% {
        clip: rect(74px, 9999px, 93px, 0);
   }
    95% {
        clip: rect(37px, 9999px, 86px, 0);
   }
    100% {
        clip: rect(8px, 9999px, 11px, 0);
   }
}
.glitch:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 red;
    top: 0;
    color: white;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;    
    transform: translate(6px, 3px);
    min-width: 0.5em;
}

.glitch:after #can{
    /* transform: translate(40px, 80px); */
    background: aqua;
}
.glitch:after #cannot{
    /* transform: translate(0px, 80px); */
    background: red;
}
@keyframes noise-anim-2 {
    0% {
        clip: rect(63px, 9999px, 13px, 0);
   }
    5% {
        clip: rect(76px, 9999px, 59px, 0);
   }
    10% {
        clip: rect(84px, 9999px, 65px, 0);
   }
    15% {
        clip: rect(21px, 9999px, 14px, 0);
   }
    20% {
        clip: rect(56px, 9999px, 51px, 0);
   }
    25% {
        clip: rect(48px, 9999px, 49px, 0);
   }
    30% {
        clip: rect(19px, 9999px, 100px, 0);
   }
    35% {
        clip: rect(56px, 9999px, 36px, 0);
   }
    40% {
        clip: rect(79px, 9999px, 72px, 0);
   }
    45% {
        clip: rect(84px, 9999px, 46px, 0);
   }
    50% {
        clip: rect(18px, 9999px, 41px, 0);
   }
    55% {
        clip: rect(48px, 9999px, 39px, 0);
   }
    60% {
        clip: rect(37px, 9999px, 68px, 0);
   }
    65% {
        clip: rect(29px, 9999px, 18px, 0);
   }
    70% {
        clip: rect(16px, 9999px, 3px, 0);
   }
    75% {
        clip: rect(71px, 9999px, 14px, 0);
   }
    80% {
        clip: rect(41px, 9999px, 94px, 0);
   }
    85% {
        clip: rect(76px, 9999px, 23px, 0);
   }
    90% {
        clip: rect(6px, 9999px, 77px, 0);
   }
    95% {
        clip: rect(100px, 9999px, 98px, 0);
   }
    100% {
        clip: rect(36px, 9999px, 68px, 0);
   }
}
.glitch:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 blue;
    top: 0;
    color: white;
    background: black;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
    transform: translate(6px, 3px);
    min-width: 0.5em;
}


.glitch:before #can{
    /* transform: translate(40px, 80px); */
}
.glitch:before #cannot{
    /* transform: translate(0px, 80px); */
}

.services{
    display: flex;
    min-height: 320vh !important;
    background-color: #1e1f26;
    flex-direction: column;
    position: relative;
    /* z-index: 1000 !important; */
}

.services > div{
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-shrink: 50vw;
}
.ogt, .pt, .rv, .mob{
    background-color: #303137;
    min-height: 80vh;
}

.ogt_img, .pt_img, .rv_img, .mob_img{
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
}
.ogt_p, .pt_p, .rv_p, .mob_p{
    background-color: #1e1f26;
    font-family: 'Post No Bills Jaffna';
    color: #e8e6db;
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    font-size: 3.5em;
    text-align: center;
    transition: all 1.2s;
    cursor: pointer;
    position: relative;
}
.ogt_p > div, .pt_p > div, .rv_p > div, .mob_p > div{
    background-color: #F15A60;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 0.8em;
    margin-top: 20px;
}


.ogt_p > div a, .pt_p > div a, .rv_p > div a, .mob_p > div a{
    text-decoration: none;
    color: #EFEFF1;
}

.ogt_p h2, .pt_p h2, .rv_p h2,.mob_p h2{
    font-weight: 300;
    max-width: 20em;
}
.ogt_p p, .pt_p p, .rv_p p,.mob_p p {
    position: absolute;
    bottom: -200px;
    opacity: 0;
    font-family: 'Roboto';
    font-weight: 100;
    max-width: 20em;
    white-space: pre-line;
    font-size: 0.4em;
}


.ogt_p:hover, .pt_p:hover, .rv_p:hover,.mob_p:hover {
    text-shadow: 0 0 5px #fff;
    box-shadow: 0 0 10px #F15A60;
}

.ogt_p:hover p, .pt_p:hover p, .rv_p:hover p, .mob_p:hover p {
    animation: rise 1s ease-in-out forwards, show 0.4s ease-in-out 0.65s forwards;
}

.ogt_p:hover h2, .pt_p:hover h2, .rv_p:hover h2, .mob_p:hover h2 {
    position: absolute;
    animation: riseH4 1s ease-in-out forwards;
}
.ogt_p:hover div, .pt_p:hover div, .rv_p:hover div, .mob_p:hover div {
    position: absolute;
    animation: derise 1s ease-in-out forwards;
}



@keyframes rise {
    from {
        bottom: -10%;
    }

    to {
        bottom: 25%;
    }
}

@keyframes derise {
    from {
        bottom: 10%;
    }

    to {
        bottom: 9%;
    }
}

@keyframes riseH4 {
    from {
        top: 40%;
    }

    to {
        top: 10%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

.mob_img{
    background-image: url("/media/screens/mob.jpg");
    background-position: right;
}
.ogt_img{
    background-image: url("/media/screens/ogt.png");
    background-position: right;
}
.pt_img{
    background-image: url("/media/screens/pt.png");
    background-position: 75%;
}
.rv_img{
    background-image: url("/media/screens/rv.png");
    background-position: center;
}

.join{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    text-align: center;
    position: relative;
    min-height: 100vh;
    margin-top: 10vh !important;
}
.join svg{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -1;
}


#sm{
    flex-basis: 35%;
    flex-shrink: 0;
    transform: translateY(20vh);
}

#sm > a{
    text-decoration: none;
    color: #EFEFF1;
}

#newsletter{
    flex-basis: 100%;
    flex-shrink: 0;
    transform: translateY(25vh);
}
#sitemap{
    flex-basis: 50%;
    flex-shrink: 0;
    flex-direction: row;
    min-height: 10vh;
    display: grid;
    grid: 60px / auto auto auto;
    grid-gap: 10px;
    /* background-color: #2196F3; */
    padding: 10px;
    transform: translate(calc(-45vw + 475px), -100px);
}
#sitemap > div {
        text-align: center;
        padding: 20px 0;
        font-weight: 700;
        color: #EFEFF1;
  }
.sima a{
    text-decoration: none;
}
.item a{
    text-decoration: none;
    color: #EFEFF1;
}

form{
    display: flex;
    flex-direction: column;
    max-width: 40vh;
    gap: 2vh;
    /* min-height: 15em; */
    position: absolute;
    right: 20vw;
}

#fmail{
    min-height: 40px;
    min-width: 20em;
    border: 0px;
}

#smail{
    border: none;
    min-height: 6vh;
    max-width: 15vw;
    background-color: #F15A60;
    color: #e8e6db;
    font-weight: 400;
}

#social img{
    max-width: 50px;
}

@keyframes scrolling {
    from {
        transform: translateY(-40px);
    }
    to {
        transform: translateY(90px);
    }
}

@media (max-width: 1300px) { 
    
#andy_img {
    background-size: 245px;}
}

@media (max-width: 1100px) { 
    #welcome{
        flex-direction: column;
    }
    .left{
        margin: initial;
        font-size: 6em;
    }
    .line{
        left: calc(50vw - 182px/2);
    }
    .ellipse{
        left: calc(50vw - 15px);
    }
    .getstarted>svg{
        transform: scale(0.75) translate(-10%, -40%) !important;
    }
    .point_2{
        transform: translate(50%,-75%) !important;
    }
    #about{
        flex-direction: column;
        max-height: 90vh;
        font-size: 1.5em;
    }
    #andy_img{
        min-height: initial;
    }
    #andy_p{
        min-height: 60vh;
        margin: initial;
        max-width: 70vw;
    }
    .r_row{
        max-width: calc(100vw - 20em); 
    }
    .r_row p{
        flex-direction: column;
        font-size: 1.3em;
        padding: 45px;
        min-width: 70vw;

    }
    #cannot {
        transform: translate(350px, -25px);
    }
    #can {
        transform: translate(350px, -10px);
    }
    #yra {
        transform: translate(70px, 30px);
        font-size: 3em;
        line-height: initial; 
        text-align: initial;
    }
    .ogt_img, .pt_img, .rv_img, .mob_img {
        flex: 2;
    }
    .join{
        flex-direction: column;
        transform: translate(-25vw,20vh);
    }
    .join svg {
        width: 200%;
        height: auto;
        left: -48vw;
        top: -10vh;
        min-height: 100vh;
    }

}
@media (max-width: 800px) { 
    .left {
        margin: initial;
        font-size: 3em;
        transform: translateY(10vh);
    }
    #logo{
        height: 7vh;
    }
    #login{
        top: 13vh;
        right: 7vw;
    }
    .nav-links.open {
        clip-path: polygon(50% 0%, -42% 100%, 144% 100%);
    }
    .accordion {
        font-size: 1.4em;
    }
    .panel{
        padding: 0 10px;
    }
    #andy_p {
        min-height: 60vh;
        margin: initial;
        max-width: 95vw;
    }
    #about{
        flex-direction: column;
        max-height: 90vh;
        min-width: 95vw;
        font-size: 0.8em;
    }
    
    .getstarted>svg{
        transform: scale(0.45) translate(61%, 0%) !important;
    }
    .point_1 {
        top: 50vh;
        left: calc(50vw - 5em);
    }
    .point_2 {
        transform: scale(0.80) translate(62%,17%) !important;
    }
    .point_3 {
        left: calc(50vw - 17em/2);
        top: 50vh;
        font-size: 2em;
        opacity: 0;
        font-weight: 700;
    }

    .r_row {
        max-width: 90vw;
        gap: 0;
        padding-top: 10vh;
    }
    .r_row p {
        font-size: 1em;
    }
    #hndrt{
        min-width: 85vw;
        background-size: 100%;
    }
    #cannot {
        transform: translate(20vw, 2vh);
    }
    #can {
        transform: translate(20vw, 1vh);
    }
    #yra {
        transform: translate(0vw, 0vh);
    }
    .ogt_p h2, .pt_p h2, .rv_p h2, .mob_p h2 {
        max-width: 4em;
        font-size: 1.4em;
    }
    .ogt_img, .pt_img, .rv_img, .mob_img {
        display: none;
    }
    .join {
        position: relative !important;
        transform: translate(0px,0px);
        min-height: 80vh;
        margin-top: unset;
    }
    .join svg {
        width: 300%;
        left: -97vw;
        min-height: 100vh;
    }
    #sm {
        flex-basis: initial; 
        flex-shrink: unset;
        transform: unset;
    }
    #newsletter {
        flex-basis: initial; 
        flex-shrink: unset;
        transform: unset;
        min-width: 100vw;
        min-height: 32vh;
    }
    #sitemap{
        display: none;
    }
    
    #smail{
        border: none;
        min-height: 6vh;
        max-width: 30vw;
        background-color: #F15A60;
        color: #e8e6db;
        font-weight: 400;
    }
    
}
@media (pointer:none), (pointer:coarse) {
    
    #sitemap{
        display: none;
    }
}
@media (max-width: 500px) { 
    
}
@media (max-width: 320px) { 
    
}