/* Add a css color variable */

/* How to add variables in css */

:root {
    --color-blue: #2bf4ff;
    --color-white: #fff;
    --color-black: #000;
}




@font-face {
    font-family: 'AkrobatBold';
    src: url('./Assets/Fonts/Akrobat-ExtraBold.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AkrobatRegular';
    src: url('./Assets/Fonts/Akrobat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'AkrobatRegular', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}
/* width */
/* ::-webkit-scrollbar {
    width: 10px;
  } */
  
  /* Track */
  /* ::-webkit-scrollbar-track {
    background: #f1f1f100;
  } */
  
  /* Handle */
  /* ::-webkit-scrollbar-thumb {
    background: var(--color-blue);
  } */
  
  /* Handle on hover */
  /* ::-webkit-scrollbar-thumb:hover {
    background: #555;
  } */
.dark-mode {
    /* background-color: black; */
    color: white;
}

.loader {
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;

}

.loader img {
    width: 20vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loadingScreen {
    display: flex;
    justify-content: center;
    align-items: center;
}



.webgl {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    /* height: auto; */
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact_gl {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    /* height: auto; */
}
.why_gl {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    /* height: auto; */
}

header {
    width: 90%;
    height: 20vh;
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}
.logo {
    margin-bottom: 100px;
    margin-left: -20px;
}
.logo img {
    width: 250px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    
}
.container div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
}
.container div a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    cursor: pointer;
}
.container div img {
    width: 20px;
    margin-left: 2px;
    cursor: pointer;
}
#bright {
    position: fixed;
    right: 2%;
    bottom: 2vh;
    z-index: 6;
    cursor: pointer;
}
#bright img {
    width: 50px;
    position: absolute;
    right: 1%;
    bottom: 2vh;
}
#up {
    position: fixed;
    cursor: pointer;
    right: 3.4%;
    bottom: 10vh;
    width: 35px;
    z-index: 3;
}


.container p {
    font-family: 'Open Sans', Helvetica Neue, sans-serif;
    font-size: 13px;
    /* margin-top: 5vh; */
}

.hero {
    width: 90%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 5;
}

.hero-content {
    margin-top: 15vh;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero .hero-content h1 span {
    color: var(--color-blue);
}

.hero .hero-content h3 {
    font-family: 'Open Sans', 'Helvetica Neue', 'sans-serif';
    font-size: 13px;
    font-weight: 300;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.hero .hero-content p {
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    width: 30%;
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 1.8;
}

.hero .hero-content a {
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
    background: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero .hero-content a:hover {
    color: #fff;
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
}


/* services */

.services {
    width: 90%;
    height: auto;
    padding: 200px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
.service-cont {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
}
.services-h1-cont {
    width: 33%;
    display: flex;
    justify-content: flex-start;
}
.services-h1 {

    font-size: 40px;
    font-weight: bolder;
    color: #000;
    font-family: 'AkrobatRegular';
    letter-spacing: 2px;
   
    text-decoration: underline var(--color-blue) 2px;
    text-underline-offset: 18px;
}
.service-items-cont {
    width: 67%;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 50px;    
}
.service-items img {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}
.service-items h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'AkrobatRegular';
    letter-spacing: 2px;
}
.sp2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
} 
.service-items p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.8;
    width: 80%;
    margin-bottom: 15px;

}
.service-items span {

    color: #000;
    width: 80%;
    text-decoration: underline var(--color-black) 1px;
    text-underline-offset: -50%;
    color: white;
    /* make it disappear if width is much */

}

/* contact-initial */

.contact-initial {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('Assets/Images/MarketplaceBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 2;
}
.contact-initial h4 {
    font-size: 16px;
    font-weight: bolder;
    color: #d7d7d7;
    letter-spacing: 3px;
    text-align: center;
}
.contact-initial div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
}
.contact-initial h1 {
    font-size: 70px;
    font-weight: bolder;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 5px;
    font-family: 'AkrobatRegular';
    text-align: center;
   
}
.contact-initial p {
    font-size: 16px;
    font-weight: 400;
    color: #d2d2d2;
    letter-spacing: 1px;
    line-height: 1.8;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.contact-initial a{
    text-decoration: none;
    color: #00aab3;
    background-color: var(--color-white);
    border: 2px solid var(--color-blue);
    /* background: none; */
    padding: 13px 25px;
    font-family: 'AkrobatRegular';
    border-radius: 25px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    width: 200px;
    text-align: center;
}
.contact-initial a:hover {
    color: #fff;
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

/* price */
.price {
    width: 100%;
    height: auto;
    padding: 50px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
.pricetop, .pricebottom {
    display: flex;
}
.pricetop {
    width: 100%;
    justify-content: flex-start;
    gap: 200px;
}
.pricetop h1 {
    font-size: 40px;
    font-weight: bolder;
    color: #000;
    font-family: 'AkrobatRegular';
    letter-spacing: 2px;
    text-decoration: underline var(--color-blue) 2px;
    text-underline-offset: 18px;
    text-align: center;
}
.billed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.pricemiddle {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}
.perks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.perks p {
    line-height: 1 !important;
}
.pricediv {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px !important;
    height: auto;
    gap: 20px;
    padding:50px 20px;
    /* border: 1px solid #00000083; */
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.pricediv:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #2bf4ff94;
}
.pricediv h4 {
    font-family: 'AkrobatRegular';
    font-size: 22px;
}
.pricediv p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.8;
    width: 100%;
    text-align: center;
}
.pricediv h1 {
    font-size: 50px;
    font-weight: bolder;
    color: #000;
    letter-spacing: 5px;
    /* margin-bottom: 5px; */
    font-family: 'AkrobatRegular';
    line-height: 1.3;
}
.pricediv span {
    color: var(--color-blue);
    font-weight: bold;
}
.pricediv a {
    text-decoration: none;
    color: white;
    background-color: var(--color-blue);
    /* border: 2px solid var(--color-blue); */
    /* background: none; */
    padding: 13px 50px;
    font-family: 'AkrobatRegular';
    border-radius:10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    
}
.pricediv a:hover {
    color: var(--color-blue);
    background-color: var(--color-white);
    border: 2px solid var(--color-blue);
}
.pricebottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.pricebottom a{
    text-decoration: none;
    color: #fff;
    background-color: var(--color-blue);
    /* background: none; */
    padding: 13px 25px;
    font-family: 'AkrobatRegular';
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
    width: 300px;
}
.pricebottom a:hover {
   
    color: var(--color-blue);
    background-color: var(--color-white);
    border: 2px solid var(--color-blue);
}

/* empty3 */
.empty3 {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('Assets/Images/ClockTowerBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 2;
}
/* why */

.why {
    width: 100%;
    height: 100vh;
    padding: 250px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}


.why h2 {
  margin: 0 0 0.5em;
  font-weight: bold;
  font-family: 'AkrobatRegular';
  letter-spacing: 2px;
  font-size: 35px;
}
.why p {
    margin: 0 0 1em;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height:3;
    width: 100%;
    margin-bottom: 1px;
}
.indicator {
    display: flex;
    margin-top: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}
.indicator p {
    width: 6%;
    margin-top: -25px;
}
.why input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.leftaccord {
    width: 40%;
}
.rightaccord {
    position: relative;
    width: 40%;
}

.row {
  display: flex;
}
.row .col {
  flex: 1;
}

.row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

.tab {
  width: 100%;
  color: black;
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  border-top: 2px solid black;
  font-weight: bold;
  cursor: pointer;

}
.tab-label:hover {
    /* border: 1px solid var(--color-blue); */
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #0f0f0f;
  /* background: white; */
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  /* background: #2c3e50; */
  cursor: pointer;
}
.tab-close:hover {
  border: 2px solid var(--color-blue);
}

input:checked + .tab-label {
  color: var(--color-blue);
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}

/* empty */

.empty {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('Assets/Images/tournament.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 2;
}

/* contact-after */

.contact-after {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}

.canvascont {
    position: relative;
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-after-h1 {
    position: absolute;
    top: 7%;
    left: 20%;
    /* width: 40%; */
}
.content-after-h1 h1 {
    font-size: 40px;
    text-decoration: underline var(--color-blue) 2px;
    text-underline-offset: 18px;
    font-family: 'AkrobatRegular';
}
.form-cont {
    margin-top: 20vh;
    /* margin-left: -20%; */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3%;
}
.form-cont div {
    display: flex;
    gap: 5%;
    margin-bottom: 20px;
}
.form-cont div input {
    width: 35%;
    height: 40px;
    border-radius: 5px;
    border: #909090 1px solid;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    background-color: #fff;
}
.long {
    width: 45% !important;
}
.short {
    width: 25% !important;
}
.form-cont div input:focus {
    outline: none;
    border: var(--color-blue) 1px solid;
}
.form-cont div p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
}
.form-cont div button {
    width: 140px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: var(--color-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.form-cont div button:hover {
    background-color: #fff;
    color: var(--color-blue);
    border: var(--color-blue) 1px solid;
}
/* empty2 */

.empty2 {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('Assets/Images/FarmHouseBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 2;
}

/* previous */

.previous {
    width: 90%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
.previous-cont {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.previous-cont-h1 {
    width: 32%;
    display: flex;
    justify-content: flex-start;
}
.previous-items img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.previous-h1 {

    font-size: 40px;
    font-weight: bolder;
    color: #000;
    letter-spacing: 2px;
   
    text-decoration: underline var(--color-blue) 2px;
    text-underline-offset: 18px;
}
.previous-cont-h1 h1 {
    font-size: 40px;
    text-decoration: underline var(--color-blue) 2px;
    text-underline-offset: 18px;
    font-family: 'AkrobatRegular';
}

.previous-items-cont {
    width: 62%;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;    
}
.previous-items h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'AkrobatRegular';
    letter-spacing: 2px;
}
.previous-items p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.8;
    width: 80%;
    margin-bottom: 15px;

}
.previous-items span {

    color: #000;
    width: 80%;
    text-decoration: underline var(--color-black) 1px;
    text-underline-offset: -50%;
    color: white;

}
.previous-items h5 {
    margin-bottom: 12px;
}

/* footer */

footer {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('Assets/Images/LibraryBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    z-index: 2;
}
.footer-cont{
    width: 85%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
    gap: 20px;
}
.foot-logo img{
    width: 230px;
}
.foot-links img {
    width: 25px;
}
.foottop, .footmiddle, .footbottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footlogopluslinks{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 20%;
}
.foot-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footlogopluslinks a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    width: 100px;
}
.footlogopluslinks a:hover{
    color: var(--color-blue);
}
.footmiddle h3{
    text-align: center;
}
.footmiddle {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footmiddle h3 {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'AkrobatRegular';
}
.footbottomdiv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    width: 20%;
}
.footbottomdiv div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.gobut a {
    text-decoration: none;
    color: #00aab3;
    background-color: var(--color-white);
    border: 2px solid var(--color-blue);
    /* background: none; */
    padding: 10px 50px;
    font-family: 'AkrobatRegular';
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}
.gobut a:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
}
.footbottomdiv div p{
    /* width: 80%; */
    font-size: 13px;
}
.footbottomdiv div h3{
    /* width: 80%; */
    font-size: 25px;
    letter-spacing: 2px;
    font-family: 'AkrobatRegular';
}

.links-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 15px;
    width: 60%;
}
.links-bottom a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}
.links-bottom a:hover {
    color: var(--color-blue);
}
.links-bottom-cont {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}
.copyright {
    font-size: 14px;
    width: 30%;
}

/* responsive */
/* responsive */
/* responsive */
@media only screen and (max-width: 1500px) {
    .services-h1-cont {
        width: 20%;
    }
    .services-h1 {
        font-size: 30px;
    }
    .service-items-cont {
        width: 80%;
        gap: 20px;
    }
}
@media only screen and (max-width: 1200px) {
    .hero .hero-content p {
        width: 50%;
    }
    .services {
        width: 100%;
        height: auto;
        padding: 100px 50px;
       
    }
    .service-cont {
        gap: 20px;
    }
    .service-items-cont {

        grid-template-columns: repeat(2, 3fr);
        width: 80%;
    }
    .price{
        width: 100%;
        height: auto;
        padding: 100px 50px;
    }
    .pricemiddle {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        width: 100%;
    }
    .pricediv {
        width:60vw;
    }

}
@media only screen and (max-width: 1050px) {
    .hero .hero-content p {
        width: 60%;
    }
    .service-cont {
        flex-direction: column;
        align-items: center;
        gap: 120px;
    }
    .services-h1-cont { 
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .service-items-cont {
        width: 100%;
        /* center the grid */
        justify-content: center;

    }
    .previous-cont-h1 h1 {
        font-size: 25px;	
    }
}
@media only screen and (max-width: 800px) {
    .webgl {
        /* make it whiteand black */
        filter: grayscale(60%);
        /* decrease its opacity */
        opacity: 0.2;
        width: 100vw;
        height: 100vh;
    }
    .hero {
        height: 100vh;
        /* padding: 100px 0px; */
    }
    #up {
        right: 7px;
    }
    #bright {
        right: 0px;
    }
    .container p{
        margin-top: 0px;
        font-size: 10px;
    }
    .logo {
        margin-bottom: 50px;
    }
    .hero .hero-content h1 {
        font-size: 30px;
        width: 100%;
    }
    .hero .hero-content h3 {
        font-size: 11px;
    }
    .hero .hero-content p {
        width: 100%;
        font-size: 14px;
    }
    .service-items-cont {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        /* center all elements */
        justify-content: center;
        
    }
    .service-items{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .service-items p {
        width: 90%;
        text-align: center;
    }

    .service-cont { 
        width: 100%;
    }
    .service-items h4 {
        font-size: 19px;
        text-align: center;
    }
    .contact-initial div{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact-initial h4 {
        text-align: center; 
        font-size: 14px;
    }
    .contact-initial h1 {
        text-align: center; 
        font-size: 50px;
    }
    .contact-initial p {
        text-align: center;
        font-size: 14px;
        width: 80%;
    }
    .contact-initial a{
        text-align: center; 
        font-size: 14px;
        margin-top: -10px;
        width: 50%;
    }
    .why {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 100px 50px;
    }
    .why h2 {
        text-align: center;
    }
    .why p {
        text-align: center;
        line-height: 1.5;
        font-size: 14px;
    }
    .indicator {
        margin-top: 25px;
    }
    .leftaccord {
        width: 100%;
    }
    .rightaccord {
        position: relative;
        width: 100%;
        height: 725px;
        z-index: -1;
    }
    .contact-after {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 50px 0px;
    }
    .content-after-h1 {
        position: relative;
        /* width: 100%; */
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        text-align: center;
    }
    .content-after-h1 h1 {
        font-size: 35px;
    }

    .canvascont {
        height: 725px;
        width: 100%;
    }
    .form-cont {
        width: 100%;
        margin-top: 0;
        justify-content: center;
        align-items: center;
    }
    .form-cont div {
        flex-direction: column;
        width: 90%;
        align-items: center;
        gap: 15px;
    }
    .form-cont div input { 
        width: 100%;
        
    }
    .long {
        width: 100% !important;
    }
    .short {
        width: 100% !important;
    }
    .form-cont div input {
        font-size: 15px;
    }
    .form-cont div p {
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    .form-cont div button {
        font-size: 13px;
        margin-top: 15px;
    }
    .previous {
        width: 100%;
        height: auto;
        padding: 100px 50px;
    }
    .previous-cont {
        flex-direction: column;
        align-items: center;
        gap: 120px;
    }
    .previous-items-cont {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
        /* center all elements */
        justify-content: center;
        
    }
    .previous-items{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .previous-items p {
        width: 90%;
        text-align: center;
        font-size: 13px;
    }
    .previous-cont-h1 { 
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .previous-cont-h1 h1{ 
        font-size: 33px;
        width: 100%;
    }

    .previous-cont { 
        width: 100%;
    }
    .previous-items h4 {
        font-size: 17px;
        text-align: center;
    }
    .previous-items h5 {
        font-size: 15px;
        text-align: center;
    }
    footer {
        height: auto;
        padding: 50px 5px;
    }
    .footer-cont {
        flex-direction: column;
        gap: 100px;
    }
    .foottop {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .foot-logo img{
        width: 180px;
    }
    .footlogopluslinks {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    .foot-links img {
        width: 20px;
    }
    .footmiddle h3 {
        font-size: 20px;
    }
    .footbottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .footbottomdiv {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .gobut a {
        font-size: 16px;
        padding: 7px 40px;
    }
    .footbottomdiv div h3, .footbottomdiv div p {
        text-align: center;
        width: 100%;
    }
    .footbottomdiv div{
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .links-bottom-cont {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .links-bottom {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        gap: 5px;
        width: 100%;
        margin-top: 40px;
    }
    .links-bottom a {
        font-size: 13px;
        letter-spacing: 0px;
        text-align: center;
    }
    .links-bottom p {
        display: none;
    }

    .copyright {
        width: 100%;
        text-align: center;
        font-size: 13px;
        margin-top: 50px;
    }

}


