@charset "utf-8";

*,
html,
body {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    image-rendering: -webkit-optimize-contrast;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body,
p {
    font-size: 17px;
    line-height: 28px;
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    color: #383838;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sumana", serif;
    color: #000;
}

h1 {
    font-size: 43px;
    line-height: 50px;
    font-weight: 400;
}

h3 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 400;
}

h5 {
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Oxygen", sans-serif;
}

h6 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    right: 0;
    left: 0;
}

.dcm-maincolor {
    color: #118e8c;
}

.dcm-reduced-text {
    font-size: 15px;
    line-height: 15px;
}

.dcm-text-styling {
    font-family: "Sumana", serif;
    font-weight: 700;
    font-size: 19px;
}

.dcm-header-logo img {
    max-width: 230px;
    height: 67px;
}

.dcm-hide-div {
    display: none;
}

/* nav */
.button_container {
    position: fixed;
    top: 5%;
    right: 4%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
    z-index: 9999999;
    display: flex;
    flex-wrap: wrap;
}

.button_container::before {
    content: "";
    background: #118e8c;
    border-radius: 50%;
    padding: 0 31px;
    height: 62px;
    position: relative;
    top: -13px;
    left: -15px;
    width: auto;
    border: 2px solid #fff;
}

.hamrburger {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.button_container:hover {
    opacity: 0.7;
}

.button_container .top,
.button_container .middle,
.button_container .bottom {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    margin: 0 auto;
    transition: all 0.35s ease;
}

.button_container .middle {
    background: #118e8c;
}

.button_container .bottom {
    margin-top: -2px;
}

.button_container .top {
    margin-top: 13px;
}

.button_container.active .top {
    transform: translateY(5px) translateX(0) rotate(45deg);
    background: #fff;
    position: relative;
}
.button_container.active .middle {
    opacity: 0;
    background: #118e8c;
}

.button_container.active .bottom {
    transform: translateY(-4px) translateX(0) rotate(-45deg);
    background: #fff;
    position: relative;
}

.button_container.active span {
    background: #ff5252;
    border: none;
    height: 5px;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_container.active span :nth-of-type(2) {
    top: 11px;
}

.button_container.active span :nth-of-type(3) {
    top: 22px;
}

.overlay {
    position: fixed;
    background: #118e8c;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 999999;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
}
.overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
    animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
    animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
    animation-delay: 0.5s;
}

.overlay-menu {
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 12%;
    width: 100%;
}

.overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.overlay-menu ul li {
    display: block;
    margin-top: 10px;
    position: relative;
    opacity: 0;
}
.overlay-menu ul a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    font-size: 29px;
    font-family: "Sumana", serif;
    margin-top: 32px;
    line-height: 41px;
}
.overlay-menu ul a:hover:after,
.overlay-menu ul a:focus:after,
.overlay-menu ul a:active:after {
    width: 100%;
}

.overlay-menu ul a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: #fff;
    transition: 0.35s;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/* header */
header {
    position: absolute;
    z-index: 9999999;
    max-width: 1920px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -webkit-justify-content: space-between;
}

.dcm-header-logo {
    max-width: 230px;
    position: fixed;
    left: 35px;
    top: 15px;
}

.nav-contact {
    position: absolute;
    right: 9%;
    top: 52px;
    font-family: "Sumana", serif;
    font-size: 20px;
}

.nav-contact a {
    color: #383838;
}

/* main section */
.sec-1-msc {
    position: relative;
}

.sec-1-msc::after {
    content: "";
    position: absolute;
    background-color: #118e8c;
    background-image: url("../img/dcm_mainsection_bg.png");
    height: 100%;
    width: 48%;
    top: 0;
    border-radius: 0 0 37px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.msc-img-wrapper {
    max-width: 414px;
    position: relative;
    z-index: 99;
    margin-bottom: -60px;
}

.msc-img-wrapper img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
}

.msc-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    -webkit-align-items: center;
    -webkit-justify-content: space-around;
    padding-top: 105px;
}

.msc-text-wrapper {
    max-width: 500px;
    padding-left: 70px;
}

.msc-text-wrapper h1 {
    padding-bottom: 25px;
}

.cta-btn-wrapper {
    width: 154px;
    background: #118e8c;
    border-radius: 70px;
    text-align: center;
    padding: 3px 0 7px 0;
    margin-top: 25px;
}

.cta-btn-wrapper a {
    color: #fff;
    font-family: "Sumana", serif;
    font-size: 18px;
    line-height: 18px;
}

/* section 2 */

.sec-2-mty {
    padding-top: 200px;
    padding-bottom: 100px;
}

.mty-row1-wrapper,
.mty-row2-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -webkit-justify-content: space-between;
}

.mty-box-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    padding: 35px 20px 35px 35px;
    transition: all 300ms;
}

.mty-box-img {
    max-width: 70px;
    padding-bottom: 15px;
}

.mty-box-text h3 {
    padding-bottom: 15px;
}

.mty-text-wrapper {
    margin-top: -123px;
}

.mty-box-wrapper.box2-offset {
    margin-top: -180px;
}

.mty-box-wrapper.box3-offset {
    margin-top: 50px;
}

.mty-box-wrapper:hover {
    border: 2px solid #118e8c;
    background: #fafafa;
    transition: all 300ms;
}

/* section 3 */
.sec-3-osv {
    padding-top: 100px;
    padding-bottom: 100px;
}

.osv-card {
    max-width: 367px;
    padding-top: 40px;
}

.osv-img img {
    border-radius: 15px;
    border-bottom: 6px solid #fff;
    transition: all 300ms;
}

.osv-img img:hover {
    border-bottom: 6px solid #118e8c;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
    transition: all 300ms;
}

.osv-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -webkit-justify-content: space-between;
}

.osv-text {
    padding-top: 25px;
    padding-bottom: 10px;
}

.osv-text h3 {
    padding-bottom: 25px;
}

.osv-text ul {
    padding-left: 15px;
}

/* section 4 */

.sec-4-eti {
    background: #118e8c;
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
    background-image: url("../img/dcm_experienced_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.eti-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;

    -webkit-align-items: flex-start;
}

.eti-counter-wrapper {
    width: 320px;
}

.show-eti-counter-mil {
    display: none;
}

.eti-counter {
    position: relative;
    border-bottom: 1px solid #55acaa;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.eti-counter-number,
.show-eti-counter-mil,
.eti-counter-alpha {
    font-size: 85px;
    font-family: "Sumana", serif;
    font-weight: 400;
    line-height: 85px;
    color: #fff;
}

.eti-counter-text p {
    color: #fff;
    font-size: 23px;
    font-weight: 300;
    margin-top: 12px;
}

.eti-animated-counter {
    display: flex;
    flex-direction: row;
}

.show-eti-counter-mil {
    position: absolute;
    top: 0;
}

.mil-spacing {
    padding-top: 85px;
}

.eti-tag-wrapper {
    padding-left: 120px;
}

.eti-tag-wrapper h1,
.eti-tag-wrapper h5 {
    color: #fff;
}

.eti-tag-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
}

.eti-tag {
    margin-top: 40px;
    border-left: 1px solid #55acaa;
    padding-left: 18px;
    padding-right: 40px;
}

/* about section */

.sec-5-abt {
    padding-top: 140px;
}

.abt-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    -webkit-align-items: center;
    -webkit-justify-content: space-around;
}

.abt-img {
    max-width: 500px;
}

.abt-text {
    width: 470px;
}

.abt-text h1 {
    padding-bottom: 25px;
}

.abt-img img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
}


/* print-services section */

.sec-roll-banner {
    padding-top: 140px;
}

.sec-booth-banner, .sec-backdrop-banner {
    padding-top:70px;
}

.rbr-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    -webkit-align-items: center;
    -webkit-justify-content: space-around;
}

.bbr-wrapper {
    flex-direction:row-reverse;
}

.rbr-img {
    max-width: 500px;
}

.bdbr-img {
    max-width: 700px;
}

.bdbr-text {
    width: 340px;
}

.rbr-text {
    width: 470px;
}

.rbr-text h1 {
    padding-bottom: 10px;
    padding-top:25px;
}

.rbr-wrapper h5 {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 2px solid #118e8c61;
    margin-left: 4px;
    line-height:27px;
}

/* footer */
.footer-logo {
    max-width: 240px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: baseline;
    -webkit-justify-content: space-between;
    -webkit-align-content: baseline;
}

.footer-right-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    width:37%;
}

.footer-far-right-wrapper {
    margin-right:15px;
    /* width:13%; */
}

.sec-5-footer {
    padding-top: 140px;
}

.footer-left-wrapper {
    /* width: 620px; */
    width:40%;
}

.footer-right-link {
    margin-right:70px;
}

.footer-right-link ul li {
    list-style-type: none;
    padding-bottom: 50px;
}

.footer-right-link ul {
    padding-top: 15px;
}

/* .footer-email a,
.footer-right-link h6 {
    color: #383838;
} */

.footer-right-link h6.dcm-maincolor.dcm-text-styling {
    color: #118e8c;
    font-size: 20px;
}

.footer-address {
    padding-top: 25px;
    font-size: 19px;
    max-width:350px;
}

/* copyright */

.copyright-sec {
    margin-top: 80px;
}

.cpy-style {
    border-top: 1px solid #b0b0b0;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    font-family: "Sumana", serif;
    color: #383838;
    padding-top: 8px;
    padding-bottom: 12px;
}

/* contact section */
.sec-1-cts {
    position: relative;
}

.sec-1-cts::after {
    content: "";
    position: absolute;
    background-color: #118e8c;
    background-image: url("../img/dcm_contactform_bg.png");
    height: 79%;
    width: 40%;
    top: 0;
    border-radius: 0 0 37px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
}

.cts-img-wrapper {
    max-width: 414px;
    position: relative;
    z-index: 99;
    margin-bottom: -60px;
}

.cts-img-wrapper img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.17);
}

.cts-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    -webkit-align-items: center;
    -webkit-justify-content: space-around;
    padding-top: 55px;
}

.cts-text-wrapper {
    max-width: 500px;
}

.cts-text-wrapper h1 {
    padding-bottom: 25px;
}

/* Contact Form */
#contactarea {
    padding-top: 70px;
    padding-bottom: 70px;
    width: 40%;
}

.ca-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.formarea {
    padding-right: 25px;
}

#contact-form {
    width: 100%;
}

#contact-form {
    padding-top: 27px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    transition: all 0.35s ease;
}

.btn-holder input.btn-submit {
    width: 130px;
    background: transparent;
    color: #fff;
}

.loading-success {
    width: 100px;
}

.submit-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
}

#contact-form input.btn-submit {
    border: none;
    padding-bottom: 0;
    font-family: "Sumana", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
}

.btn-holder.cta-btn-wrapper {
    margin-top: 0;
}

select {
    resize: vertical;
}

.field {
    margin-top: 13px;
}

.field textarea {
    height: 95px;
    resize: vertical;
}

.field {
    display: flex;
    width: 100%;
    padding-bottom: 35px;
    padding-top: 9px;
}

input {
    width: 100%;
    font-family: "Oxygen", sans-serif;
    padding-bottom: 13px;
    font-size: 17px;
}

.field input:focus {
    border-bottom: 1px solid #118e8c !important;
    transition: all 0.35s ease;
    outline: none;
}

#thank_you {
    padding-top: 23px;
    position: absolute;
}

#typage-sec {
    text-align: center;
    padding-top: 150px;
    margin: 0 auto;
    position: relative;
    right: 0;
    left: 0;
}

#typage-sec .cta-btn-wrapper {
    margin:0 auto;
    margin-top:25px;
}

.typage-counter {
    padding-top:30px;
}


/* float button */
.whatsapp-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    background: #21d163;
    border-radius: 50%;

    z-index: 99999999;
}

.whatsapp-btn img {
    width: 41px;
    padding: 15px;
}

/* responsive */
@media (max-width: 1200px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .nav-contact {
        right: 131px;
    }

    .msc-text-wrapper {
        max-width: 461px;
        padding-left: 70px;
    }

    .msc-img-wrapper {
        max-width: 323px;
    }

    .sec-1-msc::after {
        width: 43%;
        background-position: right top;
    }

    .sec-2-mty {
        padding-top: 250px;
    }

    .mty-box-wrapper {
        max-width: 360px;
    }

    .osv-card-wrapper {
        justify-content: flex-start;
        -webkit-justify-content: flex-start;
    }

    .osv-card {
        padding-right: 40px;
        max-width: 367px;
    }

    .eti-tag-wrapper {
        width: 400px;
        padding-left: 50px;
    }

    .abt-img, .rbr-img {
        max-width: 400px;
    }

    .abt-text, .rbr-text {
        width: 432px;
    }

    /* .footer-left-wrapper {
        width: 480px;
    } */

    /* .footer-right-link {
        width: 194px;
    } */
}

@media (max-width: 991px) {
    /* main section */
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1 {
        font-size: 39px;
        line-height: 42px;
    }

    .msc-text-wrapper {
        max-width: 378px;
    }

    .msc-img-wrapper {
        max-width: 250px;
    }

    .mty-box-wrapper {
        width: 280px;
    }

    .sec-1-msc::after {
        width: 41%;
    }

    .nav-contact {
        display: none;
    }

    /* 2nd section */
    .sec-2-mty {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .mty-text-wrapper {
        margin-top: 0;
        padding-bottom: 40px;
    }

    .mty-box-wrapper.box2-offset {
        margin-top: 25px;
    }

    .mty-box-wrapper.box3-offset {
        margin-top: 25px;
    }

    .mty-box-wrapper {
        padding: 27px;
    }

    .osv-card {
        max-width: 313px;
    }

    /* 3rd section */
    .osv-card {
        max-width: 320px;
    }

    .eti-tag-wrapper {
        width: 374px;
        padding-left: 35px;
    }

    .eti-counter-wrapper {
        width: 300px;
    }

    .abt-text, .rbr-text {
        width: 394px;
    }

    .abt-img, .rbr-img {
        max-width: 308px;
    }

    .footer-left-wrapper {
        width: 38%;
    }

    .footer-right-link {
        margin-right: 30px;
        margin-left:15px;
    }

    .footer-right-wrapper {
        width:38%;
    }

    .footer-far-right-wrapper {
        width:20%;
        margin-right:0;
    }

    .cts-img-wrapper {
        max-width: 357px;
    }
}

@media (max-width: 767px) {
    /* header */
    .dcm-header-logo {
        max-width: 190px;
        left: 20px;
    }

    .dcm-header-logo img {
        max-width: 190px;
        height: 60px;
    }

    .button_container::before {
        padding: 0px 27px;
        height: 55px;
        top: -23px;
        left: -25px;
    }

    .sec-1-msc::after {
        background-size: cover;
        background-position: right top;
    }

    .hamrburger {
        right: 39%;
        bottom: 41%;
    }
    /* main section */
    .container {
        padding-left: 100px;
        padding-right: 100px;
    }

    h1 {
        font-size: 38px;
        line-height: 43px;
    }

    h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .cta-btn-wrapper {
        max-width: 165px;
        padding: 6px 0 10px 0;
    }

    .sec-1-msc::after {
        width: 100%;
        height: 50%;
    }

    .msc-wrapper {
        display: block;
    }

    .nav-contact {
        display: none;
    }

    .msc-img-wrapper {
        max-width: 310px;
    }

    .msc-text-wrapper {
        max-width: 100%;
        padding-left: 0px;
        padding-top: 87px;
    }

    /* contact us page */

    .sec-1-cts::after {
        width: 100%;
        height: 27%;
    }

    .cts-wrapper {
        display: block;
    }

    .cts-img-wrapper {
        max-width: 280px;
    }

    .cts-text-wrapper {
        max-width: 100%;
        padding-left: 0px;
        padding-top: 87px;
    }

    .cts-wrapper {
        padding-top: 105px;
    }

    #contactarea {
        padding-top: 90px;
        padding-bottom: 20px;
        width: 100%;
    }

    /* 3rd section */
    .sec-3-osv {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .mil-spacing {
        padding-top: 72px;
    }

    .eti-counter-number,
    .show-eti-counter-mil,
    .eti-counter-alpha {
        font-size: 70px;
        line-height: 70px;
    }

    .eti-counter-text p {
        font-size: 21px;
        margin-top: 13px;
    }

    .osv-card {
        padding-top: 55px;
        max-width: 100%;
        padding-right: 0;
    }

    /* 4th section */
    .eti-tag-wrapper {
        padding-left: 0;
        padding-top: 15px;
    }

    .sec-4-eti {
        background-position-x: -719px;
        background-size: 1200px;
        margin-top: 70px;
    }

    /* 5th section */
    .sec-5-abt {
        padding-top: 70px;
    }

    .abt-img, .rbr-img {
        max-width: 500px;
        padding-top: 40px;
    }

    /* Footer */
    .sec-5-footer {
        padding-top: 120px;
        text-align: center;
    }

    .footer-left-wrapper {
        width: 100%;
        padding-bottom: 60px;
    }

    .footer-right-wrapper {
        width:100%;
    }

    .footer-far-right-wrapper {
        width:150px;
        margin:0 auto;
    }

    .footer-logo {
        max-width: 240px;
        margin: 0 auto;
    }

    .footer-container {
        display: block;
    }

    .footer-right-link {
        width: 100%;
        margin:0;
    }

    .footer-right-link ul {
        padding-top: 0;
    }

    .copyright-sec {
        margin-top: 40px;
    }

    .whatsapp-btn {
        bottom: 37px;
    }
    .footer-address {
        text-align:center;
        max-width:100%;
    }

    /* print */
    .rbr-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 640px) {
    /* main section */
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .msc-img-wrapper {
        max-width: 280px;
    }

    .eti-counter-wrapper {
        width: 100%;
    }

    /* print */
    .rbr-wrapper {
        align-items: initial;
    }

    .rbr-img {
        max-width: 100%;
    }

    .rbr-text {
        max-width: 100%;
    }

    .sec-roll-banner {
        padding-top:60px;
    }

    .sec-booth-banner, .sec-backdrop-banner  {
        padding-top:35px;
    }
}
