@font-face {
    font-family: "Colo-Pro-Black";
    src: url('./fonts/Colo-Pro-Black.otf');
}
@font-face {
    font-family: "IntroHeadR-Base";
    src: url('./fonts/IntroHeadR-Base.otf');
}
@font-face {
    font-family: "dealerplate california";
    src: url('./fonts/dealerplate california.ttf');
}
.font-dealerplate{
    font-family: "dealerplate california";
    font-weight: 700;
}
:root{
    --primary-color: #C5FF6C;
}
body{
    position: relative;
    background-color: #DADADA;
    height: 100%;
}
h1, h2, h3, h4, h5, h6{
    font-family: "dealerplate california";
}
h1{
    font-size: 3.8rem;
}

.border-d{
    border-radius:100px 0px 100px 0px;
    object-fit: cover;
}
.text-md{
    font-size:1.6rem;
}
.text-sm{
    font-size:1.2rem;
}
hr{
    width:50%;
    border: 2px solid black;
    opacity: 1;
}
.icon-dots{
    width:8rem;
}
.border-radius{
    border-radius: 10px;
}
.grid{
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 10% 30% 30% 30%;
    column-gap:20px;
}
.super-bold{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: .7rem;
}
.height-90{
    height: 110%;
    object-fit: cover;
}
.hr-full{
    width: 100%;
}
.column-gap{
    column-gap:40px
}
.slide-buttons{
    position: absolute;
    bottom:3rem;
    right:3rem;
    display: flex;
    column-gap:1rem;
}
.back-brown{
    background-color:#2E2E2E;
}
.l-height{
    line-height:0.7;
}
.z-index{
    position: relative;
    z-index: 10;
}
.green-block{
    position: absolute;
    width: 100%;
    bottom:0;
}
.letter-spacing{
    letter-spacing: 4px;
}
h2{
    font-size:2.8rem;
}
a{
    color:black;
    text-decoration:none;
    transition: .2s;
}
a:hover{
    text-decoration:underline;
}
.floating-logo{
    width:4rem;
    position: absolute;
    right: -1rem;
    top:30%;
    border-radius: 50%;
    transition: .3s;
}
.floating-logo:hover{
    transform: scale(1.1); 
}
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  

.loading-wrapper{
    background-color: #C5FF6C;
    width:100vw;
    position:absolute;
    top:0;
    left:0;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
  
  #loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(63, 63, 63, 0.3);
    border-radius: 50%;
    border-top-color: black;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }

  .nav-logo{
      width: 3rem;
  }
  @media only screen and (max-width: 1024px) {
   
    h1{
        font-size: 3rem;
        margin-bottom: .3rem;
        margin-top: .3rem;
      
    }
    hr{
        margin-bottom: 1rem;
    }
    .mobile-image{
        padding:0% 7%;
    }
    .mobile-padding{
        padding-bottom:1rem !important;
    }
    .border-d{
        border-radius:80px 0px 80px 0px;
    }
    .grid{
        grid-auto-flow: row;
        grid-template-columns: 100%;
        row-gap: 20px;
        padding:2rem !important
    }
    .grid-item-logo{
        padding:15%;
        padding-top:2%;
        display: none !important;
    }
    .services-mobile{
        height: 100% !important;
        padding:3rem .5rem !important
    }
    .green-block{
        position: relative !important;
        margin: 0;
      
    }
    .green-mobile .green-block, .green-mobile .row{
        --bs-gutter-x: 0rem !important;
    }
    .card-green {
        width: 100% !important;
    }
    .green-mobile{
        padding:0rem !important;
    }
    body > div > div:nth-child(1) > div.col-lg-8{
        margin-bottom: 45px;
    }
    .ps-0{
        padding: 0 !important;
    }
    .vh-100{
        height: 100% !important;
    }
    h2{
        font-size: 2.4rem;
    }
    .contact{
        display: flex;
        flex-direction: column;
        row-gap:15px;
        justify-content: center;
        align-items:center;
    }
    .main{
        overflow: hidden;
    }
}
