@font-face {
    font-family: DMsans-medium;
    src: url(/fonts/DMSans-Medium.ttf);
}

@font-face {
    font-family: DMsans-bd;
    src: url(/fonts/DMSans-Bold.ttf);
}

@font-face {
    font-family: Montserrat-SB;
    src: url(/fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: DMsans-regular;
    src: url(/fonts/DMSans-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

#active {
    color: #B1AFE6 !important;
}


/* hero section */

.abouthero-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.abouthero-container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    padding: 5rem 7rem;
}

.abouthero-container p {
    color: white;
    text-align: left;
    font-size: 18px;
    font-family: DMsans-regular;
    line-height: 1.4em;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.abouthero-container h1 {
    color: white;
    text-align: left;
    font-size: 40px;
    font-family: DMsans-regular;
    line-height: 1.4em;
    padding: 5px 20px;
    letter-spacing: 1px;
    border-left: 4px solid white;
}

.abouthero-container img {
    width: 80%;
    color: white;
    text-align: left;
    font-size: 18px;
    font-family: DMsans-regular;
    line-height: 1.4em;
    padding: 5px 20px;
    margin-bottom: 30px;
}

.abouthero-container h5 {
    color: white;
    text-align: left;
    font-size: 35px;
    font-family: DMsans-regular;
    line-height: 1.4em;
    padding: 5px 20px;
    letter-spacing: 1px;
}

.abouthero-container span {
    font-size: 40px;
    font-family: DMsans-bd;
}


/* end of hero section */


/* services-describe section */

.servicedesc-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.servicedesc-container {
    width: 100%;
    max-width: 1920px;
    padding: 5rem 7rem;
}

.servicedesc-container p {
    color: #000;
    text-align: left;
    font-size: 18px;
    font-family: DMsans-medium;
    line-height: 1.4em;
    padding: 5px 0;
    margin-bottom: 10px;
}

.servicedesc-container span {
    color: #02a6b9;
}

.servicedesc-container ul {
    color: #000;
    text-align: left;
    font-size: 18px;
    font-family: DMsans-medium;
    line-height: 1.6em;
    padding: 5px 20px;
    margin-bottom: 10px;
    width: 80%;
}

.servicedesc-container ul li {
    margin: 10px 0;
}

.servicedesc-container h6 {
    color: #02a6b9;
    font-size: 22px;
    font-family: DMsans-medium;
    line-height: 1.4em;
    padding: 5px 0;
    margin: 20px 0;
    text-align: center;
}

.servicedesc-container img {
    width: 100%;
    margin: auto auto 20px;
    padding: 10px 20%;
}


/* contact section */

.contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5rem 7rem;
}

.copy-section {
    width: 100%;
    padding: 20px 50px;
    height: 100%;
    position: relative;
}

.copy-section p {
    color: #000;
    font-family: DMsans-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.595px;
    margin: 10px 0;
}

.copy-section h5 {
    color: #000;
    font-family: DMsans-medium;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1px;
    margin: 15px 0;
    padding: 0 90px 0 0;
}

.copy-section img {
    border-radius: 20px;
    margin-top: 30px;
}

.copy-section .arrow-vector {
    position: absolute;
    right: 100px;
}

.form {
    width: 80%;
    padding: 40px 50px 20px;
    height: 100%;
    background-color: #fff;
    margin: 30px;
    border-radius: 15px;
    box-shadow: 1px 1px 15px 2px #00000042;
}

.form input {
    width: 100%;
    background-color: rgba(140, 170, 228, 0.10);
    padding: 15px;
    border: 1px solid rgba(140, 170, 228, 0.10);
    margin: 10px 0px;
    font-size: 16px;
    color: #000;
    border-radius: 6px;
}

.form input[name=Message] {
    height: 9em;
}

.form label {
    color: #2F2F2F;
    font-family: "DMsans-bd";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

input:focus {
    border: 1px solid rgba(140, 170, 228, 0.10);
    background-color: white;
    color: black;
}

input::placeholder {
    color: white;
}

.form button {
    padding: 0.6rem 3rem;
    border-radius: 10px;
    background-color: #49BB0E;
    color: white;
    font-size: 18px;
    font-family: DMsans-BD;
    margin-top: 30px;
    border: 1px solid #49BB0E;
}

@media screen and (max-width: 700px) {
    /* hero section */
    .abouthero-container {
        padding: 3rem 1rem;
    }
    .abouthero-container h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .abouthero-container p {
        color: white;
        font-size: 16px;
        padding: 0 20px;
    }
    .abouthero-container img {
        width: 100%;
    }
    /* end of hero section */
    /* service describe section */
    .servicedesc-container {
        padding: 2rem 1rem;
    }
    .servicedesc-container ul {
        padding: 5px 0 5px 20px;
        width: 100%;
    }
    .servicedesc-container img {
        padding: 0;
    }
    /* contact section */
    .contact-container {
        flex-direction: column;
        justify-content: space-evenly;
        padding: 2rem 0rem;
    }
    .copy-section h5 {
        font-size: 22px;
        margin: 15px 0;
        padding: 0;
    }
    .copy-section .arrow-vector {
        position: relative;
        right: 0px;
        transform: rotate(90deg);
        margin: 60px 0 20px
    }
    .form {
        width: 90%;
        padding: 40px 30px 20px;
        margin: 30px;
    }
    .form label {
        font-size: 14px;
    }
    .form input {
        font-size: 14px;
    }
    .form button {
        font-size: 16px;
    }
    /* end of contact us section */
}