/* BASE STYLES */
:root {
    --clr-acc-9: #001E26;
    --clr-acc-8: #3E5807;
    --clr-acc-7: #5A8A0E;
    --clr-acc-6: #76BB1F;
    --clr-acc-5: #98ED42;
    --clr-acc-4: #ABF76F;
    --clr-acc-3: #C1FD9B;
    --clr-acc-2: #D9FFC7;
    --clr-acc-1: #F6FFF2;
    
    --clr-text: var(--clr-acc-9);
    --clr-text-l: var(--clr-acc-7);
    --clr-bkg: var(--clr-acc-1);
    --clr-bkg-cont: #ececec;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    word-spacing: 1.4px;
    font-size: calc(15px + 0.390625vw);
    color: var(--clr-text);
    background-color: var(--clr-bkg);
    height: 100vh;
    transition: 0.5s;
}

.dark-mode {
    --clr-acc-1: #212120;
    --clr-acc-2: #373736;
    --clr-acc-3: #4F4F4E;
    --clr-acc-4: #696967;
    --clr-acc-5: #98ED42;
    --clr-acc-6: #9B9B99;
    --clr-acc-7: #B7B7B5;
    --clr-acc-8: #D1D1CF;
    --clr-acc-9: #F6FFF2;
    
    --clr-text: var(--clr-acc-9);
    --clr-text-l: var(--clr-acc-2);
    --clr-bkg: #000;
    --clr-bkg-cont: #2b2b2b;
}

.container {
    width: 85%;
    max-width: 1720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
}

.responsive-single {
    width: 100%;
}

.responsive-two-columns {
    width: 100%;
}

.responsive-three-columns {
    width: 100%;
}

.title {
    margin: 0;
    padding: 0;
    text-align: center;
    cursor: default;
}

.image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 70px;
    background: linear-gradient(180deg, rgba(193,253,155,1) 0%, rgba(171,247,111,1) 34%, rgba(152,237,66,1) 100%);
    color: var(--clr-text);
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px, rgba(0, 0, 0, 0.2) 0px 7px 13px -3px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1 {
    color: var(--clr-text);
    font-size: calc(32px + 1.5vw);
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 span {
    color: var(--clr-acc-5);
}

h2 {
    color: var(--clr-text);
    font-size: calc(25px + 1.5vw);
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    padding: 0;
}

h2 span {
    color: var(--clr-acc-5);
}

h3 {
    color: var(--clr-text);
    font-size: calc(20px + 1.5vw);
    text-align: center;
    font-weight: 350;
    margin: 0;
    padding: 0;
}

h4 {
    color: var(--clr-text);
    font-size: calc(18px + 0.5vw);
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h4 span {
    color: var(--clr-acc-5);
}

h5 {
    color: var(--clr-text);
    font-size: calc(15px + 0.390625vw);
    text-align: center;
    font-weight: 250;
    margin: 0;
    padding: 0;
}

p {
    color: var(--clr-text);
    font-size: calc(15px + 0.390625vw);
    font-weight: 400;
    margin: 0;
}

p span {
    font-weight: 700;
    color: var(--clr-acc-5);
}
/* END OF BASE STYLES */

/* HEADER */
header {
    width: 100%;
    position: fixed;
    top: 0;
    background-color: var(--clr-bkg);
    transition: background 0.25s ease-in-out;
    z-index: 100;
}

header.index {
    background: transparent;
}

header.scrolled {
    background: var(--clr-bkg);
}

nav {
    height: 100px;
    flex-wrap: nowrap !important;
}

.item-logo {
    width: 33.3%;
    min-width: 250px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
    
.item-logo img {
    height: 3.5vw;
    max-height: 65px;
    min-height: 35px;
    display: flex;
    align-items: center;
}

.item-navbar {
    width: 66.6%;
    flex-shrink: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-navbar .icons {
    display: block;
    position: absolute;
    display: flex;
    align-items: center;
    right: 7.5%;
    font-size: 2.8rem !important;
    color: var(--clr-text);
    cursor: pointer;
}

#check {
    display: none;
}

#check:checked~.icons #menu-icon {
    display: none;
}

.item-navbar .icons #close-icon {
    display: none;
}

#check:checked~.icons #close-icon {
    display: block;
}

.item-navbar .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
    background: var(--clr-bkg);
    overflow: hidden;
    transition: 0.25s ease;
    border-radius: 10px;
    margin: 0 0 0 7.5%;
}

.item-navbar .nav-links.scrolled {
    width: 100%;
    border-radius: 0;
    margin: 0;
    top: 100%;
}

#check:checked~.nav-links {
    height: 7rem;
    top: 100%;
}

.item-navbar .nav-links a {
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 550;
    transition: 0.25s;
}

.item-navbar .nav-links a:hover {
    color: var(--clr-acc-5);
    font-size: calc(17px + 0.390625vw);
    font-weight: 650;
}
/* END OF HEADER */

/* MAIN */
main {
    width: 100%;
    position: relative;
}

.dkm-btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
}

/* HERO */
#hero {
    display: flex;
    height: 100vh;
    /*background-image: url(images/hero.jpg);
    background-size: cover;*/
    background: linear-gradient(45deg, #F6FFF2, #D9FFC7, #C1FD9B);
    background-size: 300% 300%;
    animation: animate 15s ease-in-out infinite;
}

@keyframes animate {
    0% {
        background-position: 0 50%;
    }
    
    50% {
        background-position: 100% 50%;
    }
    
    100% {
        background-position: 0 50%;
    }
}

hero {
    margin-top: 200px !important;
    height: 100%;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap !important;
}

.textbox {
    width: 100%;
    height: 50%;
    padding: 0 !important;
}

.hero-info {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    justify-content: space-between;
}

.hero-btns {
    width: 100% !important;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
    padding-top: 100px;
}
/* END OF HERO */

/* HELP & SERVICES */
#help, #services {
    margin: 150px auto 0;
}

.help-list {
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center !important;
}

.help-btn {
    height: 110px;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
}

.help-btn:hover {
    background-color: var(--clr-acc-3) !important;
}

#popup1, #popup2, #popup3, #popup4, #popup5, #popup6, #popup7, #popup8, #popup9 {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 90%;
    top: 50%;
    text-align: justify;
    left: 0;
    transform: translate(-50%, -50%);
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px, rgba(0, 0, 0, 0.2) 0px 7px 13px -3px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
    background: var(--clr-bkg);
    border-radius: 32px;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

#popup1.active, #popup2.active, #popup3.active, #popup4.active, #popup5.active, #popup6.active, #popup7.active, #popup8.active, #popup9.active {
    visibility: visible;
    opacity: 1;
    left: 50%;
}

#services ul li {
    padding: 10px 0;
}

.scroll-div {
    max-height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.scroll-obj {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}

.scroll-obj h4 {
    padding-bottom: 30px;
}

.scroll-obj p, ul {
    font-size: calc(13px + 0.390625vw);
    padding: 10px 0;
}

.scroll-obj ul {
    text-align: left;
}


/*.card {
    height: 80px;
    border-radius: 10px;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    position: relative;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
}

.card .row-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card .row-wrapper .icon {
    color:#fff;
    height: 80px;
    font-size: calc(18px + 0.390625vw);
    font-weight: 500;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--clr-text);
    transition: 0.25s;
}

.card .row-wrapper .description {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.description p {
    color: #fff;
    text-transform: uppercase;
    font-size: calc(20px + 0.390625vw);
    line-height: 50px;
}

.input-wrapper {
    display: none;
}

.input-wrapper:checked + label {
    height: 300px;
}

.input-wrapper:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.input-wrapper:checked + label .icon {
    opacity: 0 !important;
}

.card[for="c1"] {
    background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.8)),url(images/card1.jpg)
}

.card[for="c2"] {
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,1)),url(images/card2.jpg)
}

.card[for="c3"] {
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,1)),url(images/card3.jpg)
}

.card[for="c4"] {
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,1)),url(images/card4.jpg)
}

.card[for="c5"] {
    background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.8)),url(images/card5.jpg)
}*/
/* END OF HELP & SERVICES */

/* TESTIMONIALS */
#testimonials {
    max-width: 1100px;
    width: 100%;
    padding: 0 30px 100px 30px;
    margin: 0 auto;
}

.testi .wrapper {
    flex-direction: column;
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.testi {
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.testi .thumbnail {
    width: 150px;
    height: 150px;
    position: relative;
    flex-shrink: 0;
}

.testi .thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(2);
    transition: transform 0.5s;
}

.testi .swiper-slide-active .thumbnail img {
    transform: scale(1);
}

.testi .thumbnail::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    background: linear-gradient(180deg, rgba(193,253,155,1) 0%, rgba(171,247,111,1) 34%, rgba(152,237,66,1) 100%);
    border-radius: 50%;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px, rgba(0, 0, 0, 0.2) 0px 7px 13px -3px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
    transition: border-radius 0.5s 0.25s;
}

.testi .swiper-slide-active .thumbnail::before {
    border-radius: 33% 67% 50% 50% / 50% 14% 86% 50%;
}

.testi .aside {
    position: relative;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.testi .aside > p {
    position: relative;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(10%);
    transition: transform 1s, opacity 1s;
}

.testi .swiper-slide-active .aside p {
    transform: translateX(0);
    opacity: 1;
}

.testi .aside > p::before,
.testi .aside > p::after {
    font-family: serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    color: var(--clr-text-l);
    height: 40px;
    z-index: -1;
}

.testi .aside .name {
    position: relative;
    width: fit-content;
    line-height: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 1s .2s, opacity 1s .3s;
}

.testi .swiper-slide-active .name {
    transform: translateX(0);
    opacity: 1;
}

.testi .aside .name h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-acc-5);
    opacity: 0.8;
}

.testi .aside .name p {
    font-size: 12px;
    text-align: right;
}

.testi :is(.swiper-button-next, .swiper-button-prev) {
    background: linear-gradient(180deg, rgba(193,253,155,1) 0%, rgba(171,247,111,1) 34%, rgba(152,237,66,1) 100%);
    color: var(--clr-text);
    top: 50%;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    border-radius: 10px;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px, rgba(0, 0, 0, 0.2) 0px 7px 13px -3px, rgba(0, 0, 0, 0.05) 0px -3px 0px inset;
    font-weight: 600;
}

/*.testi :is(.swiper-button-next, .swiper-button-prev):hover {
    background-color: var(--clr-acc-2);
}*/

.testi :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 16px;
    font-weight: 800;
    color: var(--clr-text);
}

.testi .swiper-pagination {
    position: relative;
}

.testi .swiper-pagination span {
    background-color: var(--clr-acc-2);
    transition: width 0.25s;
    opacity: 1;
}

.testi .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
    background-color: var(--clr-acc-5);
}
/* END OF TESTIMONIALS */

/* CALL TO ACTION */
.cta {
    margin: 100px 0;
    width: 100%;
    height: 200px;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 32px;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    flex-grow: 0;
}

.cta h2 {
    color: #f2f1ef;
    text-align: center;
}
/* END OF CALL TO ACTION */

/* CONTACT */
#contact {
    padding: 120px 0 100px;
}

.mailto a {
    color: var(--clr-text);
    text-decoration: none;
    transition: 0.3s;
}

.mailto a:hover {
    color: var(--clr-acc-5);
}

.contact-form {
    padding-top: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em; 
}

.input-wrap {
    position: relative;
    padding: 0 !important;
    width: 100%;
}

.w-100 {
    width: 100% !important;
}

.contact-input {
    width: 100%;
    background-color: var(--clr-bkg-cont);
    padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
    border: none;
    outline: none;
    font-family: inherit;
    border-radius: 10px;
    color: var(--clr-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-input:hover {
    background-color: var(--clr-acc-2);
}

.input-wrap label {
    position: absolute;
    /*top: 15%;*/
    left: calc(1.35rem + 2px);
    transform: translateY(50%);
    color: var(--clr-acc-9);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.25s;
}

.input-wrap .icon {
    position: absolute;
    right: calc(1.35rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--clr-acc-9);
    font-size: 1.25rem;
    transition: 0.3s;
}

textarea.contact-input {
    resize: none;
    width: 100%;
    min-height: 200px;
}

textarea.contact-input ~ label {
    top: 1.2rem;
    transform: none;
}

textarea.contact-input ~ .icon {
    top: 1.3rem;
    transform: none;
}

.input-wrap.focus .contact-input {
    background-color: var(--clr-acc-3);
}

.input-wrap.focus label {
    color: hsl(var(--clr-text), 91%, 55%);
}

.input-wrap.focus .icon {
    color: hsl(var(--clr-text), 91%, 55%);
}

.input-wrap.not-empty label {
    font-size: 0.66rem;
    top: 0.4rem;
    transform: translateY(0);
}

.form-btn {
    padding: 1.1rem 3rem;
    width: 100%;
    background-color: var(--clr-acc-2);
    color: var(--text-color);
    border-radius: 32px;
    border: none;
    font-family: inherit;
    font-weight: 650;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.form-btn:hover{
    background-color: var(--clr-acc-5);
    color: #f2f1ef;
}

.form-btn.upload {
    position: relative;
    background-color: var(--clr-bkg-cont);
}

.form-btn.upload:hover {
    background-color: var(--clr-acc-5);
}

.form-btn.upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: red;
    cursor: pointer;
    opacity: 0;
}

#contact1 {
    display: none;
}
/* END OF CONTACT */

/* MSG SENT */
#msg-sent {
    width: 100%;
    margin: 20vh auto;
}

.sent-check {
    font-size: calc(120px + 4.5vw);
    color: var(--clr-acc-5);
}
/* END OF MSG SENT */
/* END OF MAIN */

/* FOOTER */
footer {
    width: 100%;
    text-align: center;
}

.footer-body {
    flex-grow: 1;
}

footer h2 {
    margin-bottom: 25px;
    margin-top: 20px;
    color: var(--clr-text);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    cursor: default;
}

footer h2 span {
    font-weight: 700;
    text-decoration: underline;
    color: var(--clr-text);
    text-decoration-thickness: 12%;
    transition: 0.25s;
}

footer h2 span:hover {
    color: var(--clr-acc-5);
}

footer p {
    margin: 0 10%;
    line-height: 30px;
    margin-top: 20px;
    font-size: calc(8px + 0.390625vw);
    color: var(--clr-text);
    cursor: default;
}

footer p i {
    color: var(--clr-acc-5);
}

footer .social {
    color: var(--clr-text);;
    font-size: 30px;
    margin: 0 20px;
    transition: 0.3s ease;
}

footer .social:hover {
    color: var(--clr-acc-5);
    font-size: 50px;
}

footer .endline {
    height: 2px;
    width: 100%;
    margin-top: 35px;
    display: block;
    background-color: var(--clr-text);;
}

footer .end-tag {
    font-weight: 500;
    font-size: 10px;
    padding-top: 7px;
}

/* MEDIA RESPONSIVENESS */
/* Mobile */
@media (min-width: 521px) {
    
}

/* Tablet */
@media (min-width: 901px) {
    .btn:hover {
        /*background: var(--clr-acc-2);*/
        /*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .13), 0 1px 1px 0 rgba(0, 0, 0, .11);*/
        color: var(--clr-bkg);
    }
    
    h1 {
        text-align: left;
    }
    
    h2 {
        text-align: left;
    }
    
    h3 {
        text-align: left;
    }
    
    h4 {
        text-align: left;
    }
    
    .container {
        flex-wrap: nowrap;
    }
    
    .responsive-single {
        width: 100%;
        padding: 1rem;
    }
    
    .responsive-two-columns {
        width: 50%;
        padding: 1rem;
    }
    
    .responsive-three-columns {
        width: calc(100% / 3);
        padding: 1rem;
    }
    
    header {
        /*background: transparent;*/
    }
    
    .item-navbar .icons {
        display: none;
    }
    
    .item-navbar .nav-links {
        width: 100%;
        height: 100px;
        padding: 0 10px;
        margin: 0;
        position: initial;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 1em;
        background: transparent;
    }
    
    .hero-info {
        padding: 20px 0 0 0  !important;
        justify-content: flex-start;
    }
    
    .hero-btns {
        padding-top: auto;
    }
    
    /*.card .row-wrapper .icon:hover {
        background-color: transparent;
    }*/
    
    .testi .wrapper {
        flex-direction: row;
        padding: 30px 100px;
    }
    
    .testi .thumbnail {
        width: 200px;
        height: 200px;
    }
    
    .testi .aside {
    align-self: flex-end;
}
    
    .testi :is(.swiper-button-next, .swiper-button-prev) {
        top: 35%;
    }
    
    .testi .swiper-slide-active .name {
    transform: translateX(-50px);
}
    
    .input-wrap {
        width: 48%;
    }
    
    #contact1 {
        display: flex;
        align-items: flex-end;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    
}
/* END OF MEDIA RESPONSIVENESS */