* {
    box-sizing: border-box;
    
}

body {
    background: #E5EEF6;
    padding: 0px;
    margin: 0px !important;
    font-family: 'lora', serif;
    overflow-x: hidden; 
}

header {
    background: #008489;
    width: 100%;
    height: 76px;
    position: fixed;    
    z-index: 80;    
}

header * {
    color: #fff;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 13px;
    
}

header .logo {
    float: left;
    height: inherit;
    margin-left: 2em;
}

header ul {
    float: right;
    margin: 0px;
    padding: 0px;
    list-style: none; 
    margin-right: 30px;
          
}

header ul li {
    float: left;
    position: relative;    
}

header ul li ul{
    position: absolute;
    top: 76px;
    right: 0px;
    width: 180px;
    display: none;
}

header ul li:hover ul {
    display: block;
    margin-top: 2px;
    z-index: 10;
}

header ul li ul li {
    width: 100%;
}

header ul li ul li a {
    padding: 10px;
    background: #fff;
    color: #444;
}

header ul li ul li a:hover {
    background: #d5d6d6;
}

header ul li a {
    display: block;
    padding: 21px;
    font-size: 1.1em;
    text-decoration: none;
}

header ul li a:hover {
    background: #006669;
    transition: 0.5s;
    height: 76px;
}
header .menu-toggle {
    display: none;
    cursor: pointer;
}

header .arrow-down {
    font-size: .8em;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 750px) {
    header {
        position: relative;
    }
    header ul {
        width: 100%;
        background: #0E94A0;
        max-height: 0px;
        margin-right: 0px; 
        overflow: hidden;
    }

    .showing {
        max-height: 100em;
    }

    header ul li {
        width: 100%;
    }

    header ul li ul {
        /*position: static;*/
        display: none;
        width: 100%;        
    } 

    header ul li:hover ul {
        position: static;
        left: 0px;
        display: block;
    }
    
    header ul li ul li a {
        background: #0E94A0;
        color: #fff;
        padding-left: 50px;
    }

    header ul li ul li a:hover {
        background: #006669;        
    }

    header .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 1.9em;
    }

    header .logo {
        margin-left: .8em;
    }
}

.para1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80%;
    min-height: 750px;    
    margin-left: 10%; 
    margin-top: -15px;       
}

@media only screen and (max-width: 750px) {
    .para1 {
        min-height: 850px;
    }
    }

.first-column {
    width: 70%;
    min-height: 100%;
    background: green;
    z-index: 40;
}

.second-column {
    background: #fff;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 20px;
    z-index: 40;
}

.second-column h1 {
    font-size: 32px;
    font-weight: 800;
    font-style: normal;
    font-family:  Arial,serif;
    color: #000000;
    line-height: 40px;
}

.second-column p {
    font-family: "open sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
    color: #252525;
}

.second-column ul {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: "open sans", sans-serif;
    color: #252525;
    line-height: 25px;
}

.para-chair {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 19px;
    color: #1faad4;

}

.pchair-span {
    font-family: "open sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 19px;
    color: #252525;
}

.para2 {
    margin-top: 60px;
    margin-left: 10%;
    width: 100%;
}

@media only screen and (max-width: 750px) {
    .para2 {
        margin-right: auto;
        margin-left: 8%;
        width: 90%;        
    }
}
.para2 h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    color: #737373;
}

.container-serv {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80%;
    margin-top: 80px;
}

@media only screen and (max-width: 750px) {
    .container-serv {
        flex-wrap: wrap;
        width: 100%;
    }
    .box {
        margin-bottom: 30px;
        width: 100%;        
    }
}

.box {
    background: #fff;
    min-width: 385px;
    min-height: 400px;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;      
    box-shadow: #737373;
    margin-right: 25px;
}

.box:hover {
    background: #0E3A57;
    color: #fff !important;
    cursor: pointer;
}

.box h3 {
    text-align-last: center;
    font-size: 20px;
    font-weight: 800;
}

.box img {
    margin-left: 45%;
}

.box-text {
    font-family: "open sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
    color: #252525;
}

.box-text:hover {
    color: #fff;
}

.readMore {
    color: #000000;
    text-decoration: underline;
    font-size: 14px;
}

.readMore:hover {
    color: #fff
}

.para3::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: black;
    position: absolute;
    opacity: .7;
    z-index: 0;
    top: 0;
    left: 0;
}

.para3 > * {
    z-index: 10;
    position: relative;
}

.para3 {
    position: relative;
}


.para3 {
    width: 100%;
    min-height: 700px;
    background-image: url("images/micziel-capacity2.png") !important;
    background-repeat: no-repeat;
    background-size: cover;        
    margin-top: 50px;    
}

@media only screen and (max-width: 750px) {
    .para3 {
        width: 100%;
        min-height: 770px;        
        padding: 30px;
        overflow-x: hidden;
    }
}

.para3-contact {
    position: absolute;
    left: 850px;
    margin-top: 80px;
    line-height: 40px;
    width: 35%;
}

@media only screen and (max-width: 750px) {
    .para3-contact {
        position: absolute;
        left: 28px;
        margin-top: 80px;
        line-height: 40px;
        overflow: hidden;
        width: 90%;
    } 
    .para3-contact h3 {
        font-size: 20px;
        font-weight: 400;
    }   
}

.para3-contact h3 {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 30px; 
    margin-top: -45px;   
}

.para3-contact h5 {
    color: #fff;
}

.para3-contact input[type=text] {
    width: 100%;
    height: 50px;
    margin-bottom: 18px;
    padding: 18px; 
    font-size: 13px; 
    background-color: #fff;  
}


.para3-contact input[type=text]:focus {
    background-color: lightblue;
    /*border: 3px solid red*/
}

.para3-contact select {
    width: 100%;
    height: 50px;
    margin-bottom: 18px;
    padding: 18px; 
    font-size: 13px; 
    background: #ffff;  
}

.para3-contact select:focus {
    background-color: lightblue;
    /*border: 3px solid red*/
}

.para3-contact textarea {
    width: 100%;
    height: 90px;
    margin-bottom: 5px;
    padding: 18px; 
    font-size: 13px;
    background: #fff;  
}

.para3-contact textarea:focus {
    background-color: lightblue;
    /*border: 3px solid red*/
}

.para3-contact  input[type=button] {
    background: rgb(5, 170, 235);
    border: none;
    width: 120px;
    height: 45px;
    color: #fff;
    cursor: pointer;
}

.para3-contact input[type=button]:hover {
    background: #0E3A57;
    width: 100%;        
}

@media only screen and (max-width: 750px) {
    .para3-contact input[type=text] {
        width: 95%;
        background: #fff;
    } 
    
    .para3-contact select {
        width: 95%;
    } 
    
    .para3-contact textarea {
        width: 95%;
    } 
    
    .para3-contact input[type=button] {
        float: right;
        margin-right: 22px;        
    } 
    
    .para3-contact input[type=button]:hover {
        width: 95%;
        background: #0E3A57;        
    } 
}

.para3-form {
    margin-top: 10px !important;
}

/*OUR VISION CSS*/

.ov-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 45px;
    font-weight: 800;
    margin-left: 5%;
    margin-top: 60px;
    color: #fff;
}

@media only screen and (max-width: 750px) {
    .ov-title {
        margin-top: 10px;
    }    
}

.ov-main {
    background: #fff;
    margin-left: 5%;
    width: 60%;
    height: 400px;
    line-height: 30px;
    padding: 30px;
    font-size: 18px;
    font-family: "open-sans";
    font-weight: 400;
    color: #252525;
}

@media only screen and (max-width: 750px) {
.ov-main {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    }    
}

.para4 {
    width: 100%;
    margin-left: 10%;    
}

.para4 h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    color: #737373;
}

.scroll-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 45px; 
    margin-right: 20px;      
}

/*@media only screen and (max-width: 750px) {
    .scroll-images {
        
    }
}*/

footer {
    width: 100%;
    position: relative;
    bottom: 0px;
}

.main-foot {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 280px;
    background: rgb(14, 13, 13);
    color: rgba(255, 255, 255, 0.6);    
    padding-top: 30px;
}

@media only screen and (max-width: 750px) {
    .main-foot {
        flex-wrap: wrap;
        min-height: 950px;
        width: 100% !important;
    }
    .foot1 h3 h4 p {
        width: 100%;
    }
    .foot1 h3 {
        font-size: 15px;
    }
}

.foot1 {    
    margin-left: 10%;
    margin-right: 100px;
}

.foot1 h3 {      
    font-weight: 800;
}

.foot1 h4 {    
    margin-top: 5px;    
    font-weight: 600;
}

.foot1 p {    
    margin-top: 35px;    
    font-family: "open sans", sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 22px;
}

.foot1 p:hover {
    cursor: default;
    color: #ffffff;
    font-weight: 800;
}

.foot-quick-links {
    margin-right: 100px;
}

.foot-quick-links h3 {
    font-weight: 800;
} 

@media only screen and (max-width: 750px) {
    .foot-quick-links h3 {
        margin-left: 30%;
        width: 100%;
    } 
    .foot-quick-links ul {
        margin-left: 30%;
        width: 100%;
    } 
}

.foot-quick-links ul {
    margin-top: 30px;     
}

.foot-quick-links li {
    list-style-type: none;
    line-height: 25px !important;
    font-family: "open sans", sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    font-style: normal;    
}

.foot-quick-links li a:link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

.foot-quick-links li:hover {    
    cursor: pointer;
    color: #ffffff;
    font-weight: 800;
}

.foot-quick-links li span {
    margin-right: 8px;
    color: red;
    font-size: 14px;
    font-weight: 600;
}

/*SOCIAL MEDIA CSS*/
.social-links {
    margin-right: 100px;
}

.social-links h3 {
    font-weight: 800;
} 

@media only screen and (max-width: 750px) {
    .social-links h3 {
        margin-left: 20%;
        width: 100%;
    } 
    .social-links ul {
        margin-left: 30%;
        width: 100%;
    } 
}

.social-links ul {
    margin-top: 30px;     
}

.social-links li {
    list-style-type: none;
    line-height: 25px !important;
    font-family: "open sans", sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    font-style: normal;  
}

.social-links li:hover {    
    cursor: pointer;
    color: #ffffff;
    font-weight: 800;
}

.social-links li span {
    margin-right: 8px;
    color: red;
    font-size: 14px;
    font-weight: 600;
}

/*NEWSLETTER CSS*/

.newsletter h3 {
    font-weight: 800;
} 

.newsletter form {
    margin-top: 20px;
}

.newsletter form input[type=text] {
    background: #ffffff;
    padding: 10px;
    width: 205px;
}

.newsletter form input[type=submit] {
    padding: 10px;
    background: red;
    color: #ffffff;
    border: 1px solid red;
    cursor: pointer;
}

@media only screen and (max-width: 750px) {
    .newsletter h3 {
        margin-left: 10%;
        width: 100%;
    }
    .newsletter form {
        margin-left: 10%;
        margin-top: 10px;
    }
    .newsletter form input[type=text] {
        width: 300px;
        height: 45px;
        margin-bottom: 8px;
    }
    .newsletter form input[type=text]:focus {
        background: grey;
        color: #ffff;
        font-size: 16px;
        font-family: sans-serif;
    }
    .newsletter form input[type=submit] {
        width: 300px;
        height: 45px;
        background: orange;
        border: orange;
        cursor: pointer;
    }
    .newsletter form input[type=submit]:hover {
        background: red;
        border: red;
    }
}

/* BOTTOM FOOTER SECTION CSS*/
.foot2 {
    width: 100%;
    height: 60px;
    background: black;
    color: #fff;
    border-top: .5px solid #fff;
    padding: 20px;
    font-family: "open sans", sans-serif;
    font-size: 13px !important;
    font-weight: 400;
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 10%;    
}

.foot2 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.foot2 a:hover {
    color: red;
    font-weight: 400;
}

/*CONTACT CSS*/

.contact {
    width: 100%;
    min-height: 1200px;
    margin-top: -27px;
    overflow: hidden;   
}

.contact-banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(51, 49, 49);
    position: absolute;
    opacity: .3;
    z-index: 0;
    top: 0;
    left: 0;
}

.contact-banner > * {
    z-index: 10;
    position: relative;
}

.contact-banner {
    position: relative;
}

.contact-banner {
    background-image: url("images/customer-care-agent-micziel.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 370px;
}

.contact-banner h3 {
    padding: 190px;
    font-family: 'basic-sans', sans-serif;
    font-size: 66px;
    font-weight: 700;
    color: #ffffff;
}

@media only screen and (max-width: 750px) {
    .contact-banner {
        width: 100%;
        height: 180px;
    }

    .contact-banner h3 {
        padding: 75px;
        font-size: 30px;
    }
    .contact {
        margin-top: -100px;
    }
}

.contact-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 50px 150px 0px 150px
}

.contact-body-details {
    margin-right: 200px;
}

.contact-body-details h4 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'basic-sans', sans-serif;
    margin-bottom: 8px;
}

.contact-body-details hr {
    border: 2px solid red;
    background-color: red;
    width: 90px;
}

.contact-body-details p {
    line-height: 35px;
    font-family: 'basic-sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #252525;
}

@media only screen and (max-width: 750px) {
    .contact-body {
        margin: 50px 15px 0px 25px;
        flex-wrap: wrap;
        width: 100%;
        
    }
    .contact-body-form {
        width: 100%;
        margin-top: 60px;
        margin: 0px;
        overflow: hidden;
        margin: 0px 0px 0px 10px;
    }
    
    .contact-body-details {
        margin-left: 10px;
    }
}

.contact-body-form h4 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'basic-sans', sans-serif;
}

.contact-body-form hr {
    border: 2px solid red;
    background-color: red;
    width: 90px;
    margin: 10px 0px 0px 0px
}

.contact-body-form form input[type=text] {
    width: 500px;
    height: 50px;
    margin-bottom: 10px;
    background: #ffff;
    border: 1px solid rgb(199, 196, 196);
    padding: 10px;
    font-family: 'basic-sans', sans-serif;
    font-size: 14px;
}

.contact-body-form form textarea {
    width: 500px;
    height: 90px;
    padding: 10px;
    background: #ffff;
    border: 1px solid rgb(199, 196, 196);
    font-family: 'basic-sans', sans-serif;
    font-size: 14px;
    resize: none;
}

.contact-body-form form input[type=submit] {
    width: 140px;
    height: 50px;
    margin: 5px 0px 0px 0px;
    background: red;
    border: 1px solid red;
    color: #ffffff;
    font-family: 'basic-sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

@media only screen and (max-width: 750px) {
    .contact-body-form form input[type=text] {
        width: 350px;
        margin-right: 10px;        
    }
    .contact-body-form form textarea {
        width: 350px;
        margin-right: 10px;
    }
    .contact-body-form form input[type=submit]:hover {
        width: 350px;
        background: orange;
        border: 1px solid orange;
    }

}


/*ABOUT US PAGE CSS*/

.about {
    width: 100%;
    min-height: 2300px;
    margin-top: -27px;
    overflow: hidden;
    background: #ffffff;   
}

.about-banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(51, 49, 49);
    position: absolute;
    opacity: .3;
    z-index: 0;
    top: 0;
    left: 0;
}

.about-banner > * {
    z-index: 10;
    position: relative;
}

.about-banner {
    position: relative;
}

.about-banner {
    background-image: url("images/about-micziel-integrated-services.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 370px;
}

.about-banner h3 {
    padding: 190px;
    font-family: 'basic-sans', sans-serif;
    font-size: 66px;
    font-weight: 700;
    color: #ffffff;
}

@media only screen and (max-width: 750px) {
    .about-banner {
        width: 100%;
        height: 180px;
    }

    .about-banner h3 {
        padding: 75px;
        font-size: 30px;
    }
    .about {
        margin-top: -100px;
        min-height: 2900px;
        padding: 0px 0px 5s0px 0px;
    }
}

.about-main {
    margin: 60px 15% 0px 15%;
}

.about-main h5 {
    font-family: 'basic-sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

.about-main hr {
    border: 2px solid red;
    background-color: red;
    width: 220px;
    margin: 20px 0px 0px 0px
}

.about-main p {
    font-family: 'basic-sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
    color:#3a3a3a;
    margin: 20px 0px 0px 0px
}

.about-main h6 {
    margin: 20px 0px 0px 0px;
    font-family: 'basic-sans', sans-serif;
    font-size: 18px;
    font-weight: 600;    
    color:#000000;
}

.about-main ul {
    margin: 20px 0px 0px 8%;
    line-height: 25px;
    font-family: 'basic-sans', sans-serif;
    font-size: 19px;
    font-weight: 400;    
    color:#3a3a3a;
}

.revealnxt {
    width: 100%;
    height: 40px;
}

.misvision {
    width: 100% !important;
    height: 370px;
    margin: 60px 0px 0px 0px !important;
    background: #001334;
    display: flex;
    flex-wrap: nowrap;
}

.misdivision1 {
    color: #ffffff;
    margin: 60px 0px 0px 10%;
    
}

.misdivision1 h4 {
    font-size: 30px;
    text-align: center;
}

.misdivision1 p {
    margin-top: 15px;
    line-height: 30px;
    font-size: 22px;
}

.misdivision2 {
    color: #ffffff;
    margin: 60px 40px 0px 5%;    
}

.misdivision2 h4 {
    font-size: 30px;
    text-align: center;
}

.misdivision2 p {
    margin-top: 15px;
    line-height: 30px;
    font-size: 22px;
}

#varule {
    margin: auto 0px auto 70px;
    height: 200px;
    border: 1px dashed #ffff;    
}

#horule {
    display: none;
}

@media only screen and (max-width: 750px) {
    #varule {
        display: none;
    }
    #horule {
        display: block;
        width: 250px;
        background: #ffff;
        border: 1px dashed #ffff;
        margin: 0px auto 30px auto;
    }
}

@media only screen and (max-width: 750px) {
    .misvision {
        flex-wrap: wrap;
        height: 620px;
        padding: 0px 10px 50px 0px;
    }

    .misdivision1 {
        margin: 30px 20px 0px 25px;        
    }
    .misdivision1 h4 {
        font-size: 22px;
        text-align: center;
    }
    .misdivision1 p {
        font-size: 17px;
        text-align: center;
    }
    .misdivision2 {
        margin: 25px 20px 0px 25px;
    }
    .misdivision2 h4 {
        font-size: 22px;
        text-align: center;        
    }
    .misdivision2 p {
        font-size: 16px;
        text-align: center;
    }    
}

.aclients  {
    margin: 100px 0px 0px 0px;
}

.aclients h5 {
    text-align: center;
    font-family: 'basic-sans', sans-serif;
    font-size: 28px;
    font-weight: 600;    
    color:#000000;
}
.aclients hr {
    margin: 26px auto 26px auto;
    width: 220px;
    border: 2px solid red;
    background: red;
}

.aclients-images {
    margin: 80px 120px 0px 130px;
}

.quest {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 160px;
    border: none;
    background: #001232;
    padding: 60px 10% 60px 10%;    
}

.call2quest {
    color: #ffff;
    font-size: 32px;
    font-family: 'basic-sans', sans-serif;
    font-weight: 600;
}

.call2action {
    margin: -5px 0px 0px 200px;
}

.call2action button {
    font-size: 18px;
    width: 200px;
    height: 55px;
    border: 1px solid #ffff;
    border-radius: 0px;
    background: none;
    color: #ffff;
    cursor: pointer;
}

.call2action button:hover {
    background: red;
    border: 1.5px solid #ffff;
}

@media only screen and (max-width: 750px) {
    .quest {
        flex-wrap: wrap;
        height: 250px;
    }
    .call2action {
        margin: 25px auto 0px auto;
    }
    .call2action button {
        width: 180px;
        height: 50px;
    }
    .call2action button:hover { 
        background: transparent;       
        width: 210px;
        height: 50px;        
    }
    .call2quest {
        font-size: 29px;
        text-align: center;
    }
}