@font-face {
    font-family: applied-sanspro-medium;
    src: url(../font/AppliedSansProMedium.TTF);
}

@font-face {
    font-family: applied-sanspro-regular;
    src: url(../font/AppliedSansProRg.TTF);
}

:root {
    --mainDarkBack:#121212;
    --mainDarkColor: #121212;
    --mainLightBack: #F7F7F7;
    --mainLightColor: #F7F7F7;
}

body {
    background-color: var(--mainDarkBack);
    color: var(--mainLightColor);
    font-family: applied-sanspro-regular;
    cursor: default;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

p {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* NAVBAR */

.off_nav_wrapper {
    margin-top: 10px;
}
.off_nav {
    transform: translate(-300px, 0px);
    height: 100%;
    width: 220px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
}
.off_nav a {
    padding: 25px 20px;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--mainDarkColor);
    display: block;
    transition: 0.3s;
}
.off_nav .close {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 35px;
    margin-left: 50px;
}
.off_nav_wrapper a:hover {
    transform: translateX(10px);
    transition: 0.1s ease-in-out;
}
.action_button {
    text-align: center;
    background: #6717cd;
    background: -moz-linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    background: linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6717cd",endColorstr="#2871fa",GradientType=1);
    color: white !important;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

#content {
    transition: margin-left 0.5s;
}
#navbar {
    margin: 0;
    padding: 0;
    width: 100px;
    height: 100vh;
    background-color: #f7f7f7;
    position: fixed;
    z-index: 9999999;
    transition: margin-left 0.5s;
}
.sandwich {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 25px;
    top: 16px;
    background-image: url(../img/sandwich.svg);
    background-repeat: no-repeat;
}
#class1 {
    background-image: url(../img/sandwich.svg);
    transition: background-image 0.5s ease-in-out;
}
#class2 {
    background-image: url(../img/times.svg);
    transition: background-image 0.5s ease-in-out;
}

.text_dark {
    color: var(--mainDarkColor);
}

.dark_background {
    background-color: var(--mainDarkBack);
}

#heading {
    letter-spacing: 3rem;
    font-size: 55px;
}

#mini_heading {
    letter-spacing: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

#arrowButton{
    width: 150px;
    height: 150px;
    animation: hover 2s infinite  alternate;
}

.letter_spacing {
    letter-spacing: 2.3rem;
}

.mainLogo {
    width: 220px;
}

ul {
    list-style-type: none;
}

li a {
    display: block;
    color: var(--mainDarkColor);
    padding: 8px 16px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background-color: #F7F7F7;
    -webkit-transition: background-color 0.4s ease-out;
    -moz-transition: background-color 0.4s ease-out;
    -o-transition: background-color 0.4s ease-out;
    transition: background-color 0.4s ease-out;
}

a {
    text-decoration: none;
}

a p {
    transition: all 0.2s ease;
    width: fit-content;
    color: #6c6c6c;
}

a p:hover {
    color: #f7f7f7 !important;
    transition: all 0.2s ease-out;
    width: fit-content;
}

.size2 {
    font-size: 2rem;
}

.size8 {
    font-size: 8rem;
}

.size24 {
    font-size: 24rem;
    line-height: 19rem;
}

.padding_left100 {
    padding-left: 100px;
}

.mt100 {
    margin-top: 100px;
}

.height100 {
    height: 100%;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

/* FONTS */

.poppins {
    font-family: 'Poppins', sans-serif !important;
}
.semi_bold {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.extra_bold {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}
.applied_medium {
    font-family: applied-sanspro-medium;
}

.grad_green {
    background: #43ea80;
    background: -moz-linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 100%);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#43ea80",endColorstr="#38f8d4",GradientType=1);
}

.grad_blue {
    background: #6717cd;
    background: -moz-linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    background: linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6717cd",endColorstr="#2871fa",GradientType=1);
}

.grad_red {
    background: #fa2428;
    background: -moz-linear-gradient(-152deg, rgba(250,36,40,1) 0%, rgba(254,99,11,1) 100%);
    background: -webkit-linear-gradient(-152deg, rgba(250,36,40,1) 0%, rgba(254,99,11,1) 100%);
    background: linear-gradient(-152deg, rgba(250,36,40,1) 0%, rgba(254,99,11,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fa2428",endColorstr="#fe630b",GradientType=1);
}

.grad_green_text {
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad_blue_text {
    background: linear-gradient(90deg, rgba(103,23,205,1) 0%, rgba(40,113,250,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text_stroke {
    -webkit-text-stroke: 1px #f7f7f7;
    -webkit-text-fill-color: var(--mainDarkColor);
}

.tapHere {
    color: #6c6c6c;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.cards {
    border: 1px solid #f7f7f7; 
    border-radius: 40px; 
    padding-top: 3rem; 
    padding-bottom: 3rem;
    z-index: 10;
    transition: all 1s;
}

.cards_under {
    border-radius: 40px; 
    padding-top: 3rem; 
    padding-bottom: 3rem;
    z-index: 9;
}

.clickHere {
    position: relative;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.hrz_line {
    border-top: 2px solid #f7f7f7;
    width: 80%;
}

#divider {
    height: 15px;
    background: repeating-linear-gradient(135deg, transparent, transparent 10px, #f7f7f7 10px, #f7f7f7 25px);
}

/* INPUTS & CHECKBOXES */

#sendSuccessfully {
    display: none;
}

.inputFS {
    font-size: 1.75rem;
}

input[type=checkbox] {
    visibility: hidden;
}

input[type=submit], #sendContact {
    background: linear-gradient(90deg, #6717cd 0%, rgba(40,113,250,1) 100%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 15px;
}

.custom_select {
    display: inline-block;
    border-radius: 25px;
    background-color: var(--mainLightBack);
    color: var(--mainDarkColor);
    border: 2px solid var(--mainDarkColor);
    text-align: center;
    padding: 8px 20px 11px 20px;
    margin-right: 5px;
    margin-bottom: 8px;
}

.custom_select p {
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 1.2rem;
}

.activeCustomSelect {
    background-color: #6f00ff;
    color: var(--mainLightColor);
    border: 2px solid #6f00ff;
    transition: 0.25s;
}

.main_input {
    display: inline-block;
    margin: 8px 0;
    min-width: 400px;
    border: none;
    color: #6717cd;
    border-bottom: 2px solid #121212;
    background-color: transparent;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
}

input:focus{
    outline: none;
}

.main_input::-webkit-input-placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: rgb(213, 213, 213);
}

.main_input:-ms-input-placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.main_input:-moz-placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.main_input::-moz-placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

select {
    color: rgb(213, 213, 213) !important;
}

select option{
    color: #6717cd !important;
    padding: 15px;
}

.main_textarea {
    margin: 8px 0;
    padding: 15px;
    scroll-padding: 15px;
    width: 100%;
    color: #6717cd;
    border: 2px solid #121212;
    border-radius: 25px;
    background-color: transparent;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
}

.labelText {
    font-weight: bold;
    font-size: 1.1rem;
    color:var(--mainDarkColor);
    position: relative;
    bottom: 12px;
    left: 20px;
}

.checkbox_container {
    width: 100%;
    position: relative;
}

.checkbox_container label {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border: 3px solid #121212;
    border-radius: 11px;
}

.checkbox_container label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 17px;
    height: 9px;
    background: transparent;
    top: 8px;
    left: 6px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

.checkbox_container label:hover::after {
    opacity: 0;
}

.checkbox_container input[type=checkbox]:checked + label:after {
    opacity: 1;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
}

.checkbox_container input[type=checkbox]:checked + label {
    background-color: #6717cd;
    border: 3px solid #6717cd;
    transition: 0.5s ease-out;
}

/* BUTTONS */
.main_button {
    padding: 14px 20px;
    margin: 8px 0;
    border-radius: 15px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.main_button_light {
    background-color: #f7f7f7;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #121212;
    padding: 14px 20px;
    margin: 8px 0;
    border-radius: 15px;
}

.outline_btn {
    width: 100%;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #121212;
    padding: 14px 20px;
    margin: 8px 0;
    border-top: 2px solid #121212;
    border-left: 2px solid #121212;
    border-right: 2px solid #121212;
    border-bottom: 3px solid rgba(103,23,205,1);
    border-radius: 15px;
}

.outline_btn:hover {
    background-color: #6717cd;
    color: white;
    border-top: 2px solid rgba(103,23,205,1);
    border-left: 2px solid rgba(103,23,205,1);
    border-right: 2px solid rgba(103,23,205,1);
    border-bottom: 3px solid rgba(103,23,205,1);
    transition: 0.4s ease-in-out;
}

.logo_width {
    width: 200px;
    margin-left: 10px;
}

.copy {
    font-size: 1.2rem;
}

#quoteDetails {
    opacity: 0;
    display: none;
    transition: all 0.5s;
}

/* ANIMATIONS */

.motoTexts {
  white-space: nowrap;
  overflow: hidden;
  z-index: -1;
}

.weCan, .weCant{
    transition: all 1s;
}

@keyframes hover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


/* MEDIA RULES */

@media screen and (min-width: 990px) {
    .custom_select:hover {
        background-color: #6f00ff;
        color: var(--mainLightColor);
        border: 2px solid #6f00ff;
        transition: 0.25s;
    }
}

@media screen and (max-width: 1439px) and (min-width: 991px) {
    .cards_under .size2 {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 990px) {
    p {
        font-size: inherit;
        line-height: 1.2;
    }

    .off_nav {
        transform: translate(0px, -1000px);
        text-align: center;
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 99999;
        transition: 0.5s;
        padding-top: 70px;
    }

    .off_nav_wrapper a:hover {
        transform: none;
    }

    #navbar {
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        /* transition: margin-left 0.5s; */
    }

    .sandwich {
        position: absolute;
        width: 35px;
        height: 35px;
        left: 12px;
        top: 15px;
    }

    #content {
        transition: none;
    }

    .mainLogo {
        width: 150px;
    }
    
    .padding_left100 {
        padding-left: 12px;
    }

    .size2 {
        font-size: 2rem;
    }
    .size8 {
        font-size: 3rem;
    }

    .size24 {
        font-size: 8rem;
        line-height: 7rem;
    }

    #heading {
        letter-spacing: 1rem;
        font-size: 30px;
    }
    
    #mini_heading {
        letter-spacing: 1.2rem;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 10px;
    }

    #arrowButton{
        width: 100px;
        height: 100px;
    }
    
    /* INPUTS */

    .inputFS {
        font-size: 1.2rem;
    }

    input[type=submit] {
        font-size: 1.25rem;
    }
    
    .main_input {
        min-width: 200px;
        margin: 15px 0;
        text-align: left;
    }

    .checkbox_container label {
        width: 25px;
        height: 25px;
        border: 2px solid #121212;
        border-radius: 8px;
    }
    
    .checkbox_container label:after {
        width: 14px;
        height: 7px;
        top: 5px;
        left: 3px;
    }

    .labelText {
        font-size: 1rem;
        color: var(--mainDarkColor);
        position: relative;
        bottom: 15px;
        left: 0;
    }

    .main_textarea {
        font-size: 1rem;
        padding: 10px;
        scroll-padding: 10px;
    }

    .smaller {
        font-size: 1.8rem;
    }

    #divider {
        height: 10px;
        background: repeating-linear-gradient(135deg, transparent, transparent 7px, #f7f7f7 10px, #f7f7f7 20px);
    }

    .logo_width {
        width: 100px;
        margin-left: 0px;
    }
    
    .weCan, .weCant{
        transition: all 1s;
        position: absolute;
    }

    .cards_under {
        border-radius: 40px; 
        padding-top: 1.5rem; 
        padding-bottom: 1.5rem;
        z-index: 9;
    }

    .greenText {
        position: relative;
        top: -14px;
        color: #269364;
    }
    
    .redText {
        position: relative;
        top: -14px;
        color: #b0191c;
    }

    .height100 {
        height:fit-content;
    }
    
    .letter_spacing {
        letter-spacing: 1rem;
    }

    .cards {
        border-radius: 40px; 
        padding-top: 1rem; 
        padding-bottom: 1rem;
        z-index: 10;
        transition: all 1s;
    }
    
    .clipObject {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%);
    }

    .cd_modal {
        position: fixed; 
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%;
        opacity: 0;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.6);
        transition: all 0.3s;
        
    }
    .modal-content {
        text-align: start;
        overflow-x: hidden;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -60%);
        overflow-y: scroll;
        margin: 10% auto;
        color: var(--mainDarkColor);
        padding-top: 5px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 20px;
        border-radius: 40px;
        border: none;
        width: 90%;
        height: 500px;
    }

    .modal-content .size2{
        font-size: 1.3rem;
    }

    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background-color: none;
    }
    
    ::-webkit-scrollbar-button {
        width: 20px;
        height: 20px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #0000005c;
        border-radius: 20px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #545454; 
    }

    .close {
        text-align: end;
        color:  var(--mainDarkColor);
        font-size: 35px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--mainDarkColor);
    }
    
    .close.two {
        text-align: end;
        color:  var(--mainLightColor);
        font-size: 35px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--mainLightColor);
    }

    .copy {
        font-size: inherit;
    }

    .link-arrow {
        position: relative;
        top: -2px;
        width: 10px;
        filter: invert(47%) sepia(1%) saturate(425%) hue-rotate(323deg) brightness(87%) contrast(84%);
    }

    .custom_select {
        border-radius: 20px;
        padding: 8px 12px 9px 12px;
        margin-right: 3px;
        margin-bottom: 6px;
    }
    
    .custom_select p {
        font-size: 1rem;
    }

}

@media screen and (max-width: 400px) {
    #navbar {
        height: 45px;
    }

    .off_nav {
        padding-top: 40px;
    }

    .sandwich {
        width: 30px;
        top: 10px;
    }

    .inputFS {
        font-size: 1rem;
    }

    #arrowButton{
        width: 80px;
        height: 80px;
    }

    .mainLogo {
        width: 100px;
    }

    #heading {
        letter-spacing: 1.1rem;
        font-size: 24px;
    }
    
    #mini_heading {
        letter-spacing: 1.1rem;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 10px;
    }

    .greenText {
        position: relative;
        top: -10px;
        color: #269364;
    }
    
    .redText {
        position: relative;
        top: -10px;
        color: #b0191c;
    }

    .modal-content {
        height: 400px;
        padding: 10px;
    }

    .modal-content .size2{
        font-size: 1.3rem;
    }
}