@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
* {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

p {
    line-height: 2;
    font-weight: 300;
}
body{
    color: #fff !important;
}
/* Header Style */

header {
    height: 85vh !important;
    background: url(../images/background/about-banner.jpg);
}
.caption {
    width: 80% !important;
    text-align: left !important;
    top: 25% !important;
    right: 0 !important;
    left: 10% !important;
}
.caption p{
    width: 70%;
    text-align: justify;
    color: #fff;
}
.nav li:nth-child(5) a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #fff;
    bottom: -34px;
    left: 0;
    right: 0;
    margin: auto;
}
/* Partner Style */
.part_div{
    width: 80%;
    margin: auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lft_part{
    width: 65%;
}
.lft_part .pnts{
    display: flex;
    align-items: center;
}
.lft_part .pnts:nth-child(2){
    margin: 30px 0;
}
.det_cont{
    margin-left: 30px;
    color: #000;
} 
.det_cont h3{
    color: #2f3e53;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.det_cont p{
    text-align: justify;
    color: #505050;
}
.rgt_part{
    width: 24%;
    padding: 1.5%;
    background: url(../images/background/partner-form-bg.jpg);
}
.rgt_part h1{
    text-align: center;
    font-weight: 500;
}
.join_form{
    margin-top: 30px;
    display: block;
}
.join_form input{
    display: block;
    width: 99%;
    margin-bottom: 30px;
    height: 40px;
    border: none;
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    padding-left: 1%;
}
::-webkit-input-placeholder {
    color: #000 !important;
}
::-moz-placeholder {
    color: #000 !important;
}
:-ms-input-placeholder {
    color: #000 !important;
}
:-moz-placeholder {
    color: #000 !important;
}
.join_form button{
    width: 33%;
    margin: auto;
    display: block;
    padding: 8px 0;
    border: none;
    background-color: #2f3e53;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
/* Media Query */
@media only screen and (max-width:1440px){
    .caption{
        top: 21% !important;
    }
    .caption p{
        width: 80%;
    }
}
@media only screen and (max-width:1024px){
    .caption p{
        width: 100%;
    }
}
@media only screen and (max-width:768px){
    header {
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column-reverse !important;
    }
    .caption{
        position: relative !important;
        padding-bottom: 30px;
        left: 0 !important;
    }
    .caption h1{
        margin: 30px auto !important;
    }
    .bar_icon{
        top: 7% !important;
    }
    .fixed .bar_icon{
        top: 36% !important;
    }
    .part_div{
        display: block;
    }
    .lft_part{
        width: 100%;
    }
    .rgt_part{
        width: 100%;
        margin-top: 30px;
    }
}
@media only screen and (max-width:483px){
    .logo {
        width: 45% !important;
    }
    .bar_icon {
        top: 4% !important;
    }
    .fixed .bar_icon {
        top: 30% !important;
    }
    .lft_part .pnts img{
        display: none;
    }
    .det_cont{
        margin-left: 0;
    }
    .rgt_part{
        padding: 5% 1.5%;
    }
}



