/*
    01. Common Css
    02. Main Section
*/

/* 01. Common Css */
* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-weight: normal;
    line-height: normal;
    font-size: 16px;
    margin: 0;
}
a:focus {
    outline: none;
    text-decoration: none;
}
a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    color: #A19FA0;
}
h1, h2, h3, h4, h5, h6 {
    margin:0;
}
ol {
    padding: 0;
    margin: 0;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
}
button:focus {
    outline: none;
}
span {
    font-weight: 400;
}

span, strong {
    display: inline-block;
}
p {
    font-weight: normal;
    line-height: 26px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: normal;
    margin: 0;
    font-weight: 200;
}

a{
    font-weight: normal;
    line-height: 26px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: normal;
    margin: 0;
    font-weight: 200;
}
/************************************/

/* 02. Main Section */
.main-banner {
    background-image: url(../img/main-banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-wrap {
    max-width: 890px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 100px 80px;
}
.main-wrap h1 {
    
    font-family: 'MrEavesSanOT-Thin', sans-serif;
    /*text-transform: uppercase;*/
    font-weight: 100;
    letter-spacing: 5px;
    text-align: center;
    display: inline-block;
    letter-spacing: 2px;
    font-size: 45px;
    color: #A9A9A9;
    width: 100%;
    /*padding-bottom: 20px;*/
    margin: 0 auto;
    margin-bottom: 40px;

    /*text-align: center;
    font-family: 'Roboto Slab', serif;
    font-weight: normal;
    font-size: 45px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 100px;*/
}

.title-box {
    text-align: center;
}
.main-wrap h1 .sub-title {
    position: absolute;
    bottom: 0;
    font-size: 20px;
    right: 0;
    color: #A2A0A1 !important;
}
.title-box h1 span {
    color: #ffffff;
    /*padding-right: 20px;*/
    /*border: 1px solid white;*/
    text-decoration: underline solid white;
    text-align: center;
    /*margin: 0 auto;*/
    padding-top: 5px;
    /*margin-right: 8px;*/
}
.nmh-title {
     font-size: 40px;
     font-weight: 300;
}
.capital-ltr {
    display: inline-block;
    color: white;
    margin-top: 8px !important;
    padding-bottom: 5px;
}
.text-wrap {
    display: flex;
    flex-wrap: wrap;
}
.text-box {
    padding-right: 50px;
    width: 60%;
}
.contact-detail {
    width: 40%;
}
.contact-detail ul {
    padding: 0 0 0 15px;
    border-left: 1px solid #ffffff;
}

@media (max-width: 575px) and (max-height: 570px) {
    .main-banner {
        height: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .main-wrap {
        max-width: 700px;
        padding: 60px 60px;
    }
    .main-wrap h1 {
        margin-bottom: 30px;
        font-size: 32px;
    }
    .text-box {
        padding-right: 20px;
    }
    .text-box {
        width: 68%;
    }
    .contact-detail {
        width: 32%;
    }
}

@media only screen and (max-width: 767px) {
    .main-wrap {
        max-width: 100%;
        margin: 0px 40px 0px 0px;
        padding: 20px 30px 50px 20px;
    }
    .main-wrap h1 {
        font-size: 26px;
    }
    .main-wrap h1 .sub-title {
        font-size: 16px;
    }
    a {
        font-size: 18px;
        line-height: 24px;
    }
    p {
        font-size: 18px;
        line-height: 24px;
    }
    span {
        font-size: 18px;
        line-height: 24px;
    }
    .contact-detail ul li a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .text-box {
        width: 100%;
        padding: 0;
    }
    .contact-detail {
        width: 100%;
        border-top: 1px solid #fff;
        padding-top: 15px;
        margin-top: 15px;
    }
    .contact-detail ul {
        padding: 0;
        border-left: 0;
    }
    .main-wrap {
        margin: 0 20px;
    }
}

