@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);

:root{
    --dark:43,48,53;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


img{
    max-width: 100%;
}

body{
    font-family: "Roboto", sans-serif;
    background-color: #212529;
}

a{
    text-decoration: none;
}
ul,li{
    list-style: none;
}


.brand {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.brand span{
    color: rgb(127, 107, 243);
}

.site-header {
    position: relative;
    background-color: rgba(var(--dark),1);
}

.site-header__wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 600px) {
    .site-header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 600px) {
    .nav__wrapper {
        display: flex;
    }
}

@media (max-width: 599px) {
    .nav__wrapper {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1;
        background-color: rgba(var(--dark),1);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .nav__item a {
        display: block;
        padding: 1.5rem 1rem;
        color: white;
        border-bottom: 2px solid #888;
    }
}

.nav__item a {
    display: block;
    padding: 1.5rem 1rem;
    color: white;
    transition: 0.3s ease-in-out;
}
.nav__item a:hover{
    color: rgb(127, 107, 243);
    transition: 0.3s ease-in-out;
}

.nav__toggle {
    display: none;
}

@media (max-width: 599px) {
    .nav__toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        color: white;
        font-size: 1rem;
    }
}


/* hero-section */
.hero{
    display: flex;
    gap: 0.8rem;
    min-height:100vh ;
    align-items: center;
    justify-content: space-between;
    
}

.container{
    max-width: 90%;
    margin: 0 auto;
}

.hero img{
    width: clamp(300px,50%,500px);
}

.hero div{
    max-width: 34rem ;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero h1{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: calc(1.525rem + 3.3vw);
}
.hero h1 span{
    color: rgb(127, 107, 243);
}

.hero p{
    color: #ffffffd1;
}

 .btn{
    background-color: rgb(127, 107, 243);
    color: #fff;
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

@media screen and (max-width:576px) {
    .hero{
        flex-direction: column;
        padding-top: 5rem;
        gap: 2rem;
        text-align: center;
        justify-content: center;
    }

    .hero .btn{
        align-self: center;
    }
    
}

.section-title h2{
    color: #fff;
}

/* service section */
.section-connector{
    position: relative;

}


.section-connector::after{
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    width: 2px;
    height: 100px;
    background-color: rgb(127, 107, 243);
    z-index: 1;
    
}

.service{
    padding-top: 4rem;
    margin-bottom: 10rem;
}

.service h2{
    font-size: 2rem;
    font-weight: 700; 
}

.input-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 5rem;
    gap: 2rem;
}

.service form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.service form div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

.service form div input,textarea{
    border-radius: 10px;
    padding: 0.5rem 1rem;
    border: none;
    width: 90%;
    background-color: rgba(var(--dark),1);
    color: white;
    font-size: 1.1rem;
}

.service form div label{
    word-break: keep-all;
    width: 100px;
}

.service form div input:focus-visible{
    outline: 2px solid rgb(127, 107, 243);
}

.service form div textarea:focus-visible{
    outline: 2px solid rgb(127, 107, 243);

}

.ql-toolbar{
    background-color: white;
}

#editor{
    /* background-color: white; */
    color: #fff;
    height: 200px;
    border: none;
}

.enter{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(42, 38, 66, 0.368),
    0 0 10px 1px rgba(34, 28, 69, 0.425);
    /* border: 1px solid rgb(127, 107, 243); */
    background-color: rgba(var(--dark),1);
}


.--btn{
    align-self: center;
    padding-inline: 4rem;
}

.section-title{
    text-align: center;
}

@media screen and (max-width:576px) {

    .service{
        /* padding-top: 10rem; */
        margin-top: 10rem;
    }

    .input-container{
        flex-direction: column;
        gap: 3rem;
        margin: 0.5rem;
    }

    .enter{
        width: 100%;
    }

    .service form{
        width: 100%;
    }
    
}

/* footer */

.footer-distributed {
    background-color: rgba(var(--dark),1);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: normal 16px sans-serif;
    padding: 15px 50px;
}

.footer-distributed .footer-left p {
    color: #8f9296;
    font-size: 14px;
    margin: 0;
}

/* Footer links */

.footer-distributed p.footer-links {
    font-size: 18px;
    /* font-weight: bold; */
    color: #ffffffb9;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
}

.footer-distributed p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
}

.footer-distributed .footer-links a:before {
    content: "";
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
    content: none;
}

.footer-distributed .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

.footer-distributed .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
}

.footer-distributed .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    color: rgb(127, 107, 243);
}

.footer-distributed p.footer-links a:hover {
    text-decoration: underline;
}

/* Media Queries */

@media (max-width: 600px) {

    .footer-distributed .footer-left,
    .footer-distributed .footer-right {
        text-align: center;
    }

    .footer-distributed .footer-right {
        float: none;
        margin: 0 auto 20px;
    }

    .footer-distributed .footer-left p.footer-links {
        line-height: 1.8;
    }
}