/*******************Reset Css****************/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}

p {
    margin: 0;
}

html,
body    {
    padding: 0;
    margin: 0;
    border-radius: 0;
}

em {
    font-style: normal;
}

body {
    font-size: 14px;
    font-family: 'adam_boldbold';
    font-weight: 400;
    color: #424242;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
.btn {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    outline: none !important;
    text-decoration: none;
    font-style: normal;
    text-decoration: none;
}

input {
    width: 100%;
}

img,
figure {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: normal;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'adam_boldbold';
}
input,
textarea {
    padding: 5px 10px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}


/*Buttons*/
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}
input.form-control::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #ffffff;
    font-weight: 400;
}

input.form-control:-moz-placeholder,
textarea.form-control:-moz-placeholder {
    opacity: 1;
    color: #ffffff;
    font-weight: 400;
}

input.form-control::-moz-placeholder,
textarea.form-control::-moz-placeholder {
    opacity: 1;
    color: #ffffff;
    font-weight: 400;
}

input.form-control:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
    opacity: 1;
    color: #ffffff;
    font-weight: 400;
}

.noradius {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.pointerNone {
    pointer-events: none;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
}

.relative {
    position: relative;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn),
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
    width: 100%;
}

.bg_area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.basic_btn{
    line-height: 54px;
    background-color: #35519f;
    color: #fff;
    padding: 0 30px;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-family: 'adam_boldbold';
    text-transform: uppercase;
    border: 2px solid #35519f;
}
.basic_btn:hover{
    background-color: transparent;
    color: #35519f;
}

/*******************Reset Css****************/
/* header */
.header-wrapper{
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}
.header-wrapper.shrink{
    background-color: rgba(255,255,255,0.7);
}
.nav_menu.navbar{
    padding: 30px 0;
    transition: all 0.3s ease-in-out;
}
.header-wrapper.shrink .nav_menu.navbar{
    padding: 15px 0;
}
.nav_menu .navbar-brand{
    padding: 0;
    margin: 0;
}
.nav_menu .navbar-brand img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.header-wrapper.shrink .nav_menu .navbar-brand img{
    width: 80%;
}
.menu_area a{
    display: inline-block;
    line-height: 62px;
    padding: 0 35px;
    background-color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000000;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    height: 58px;
}
.menu_area a:hover{
    background-color: #35519f;
    color: #fff;
}
.menu_list_area{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    height: 100vh;
    width: 37%;
    background-color: rgba(20,20,20,0.94);
    transition: all 0.3s ease-in-out;
    transform: translateX(101%);
}
.open_menu .menu_list_area{
    transform: translateX(0);
}
.open_menu{
    overflow: hidden;
    touch-action: none; 
    -ms-touch-action: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.close_btn{
    padding: 20px 15px 10px;
    text-align: right;
}
.close_btn a{
    display: inline-block;
    font-size: 50px;
    line-height: 40px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    width: 8%;
}
.close_btn a:hover{
    color: #5a7ddf;
}
.menu_list {
    padding: 25px 60px 30px;
}
.menu_list ul{
    font-size: 0;
}
.menu_list ul li {
    margin-bottom: 25px;
}
.menu_list ul li:last-child{
    margin-bottom: 0;
}
.menu_list ul li a{
    transition: all 0.3s ease-in-out;
    font-size: 60px;
    display: inline-block;
    line-height: 45px;
    color: #fff;
    letter-spacing: -3px;
}
.menu_list ul li a:hover{
    color: #5a7ddf;
}
.srch_outr{
    padding: 0 60px 40px;
}
.srch_area{
    position: relative;
}
.srch_area .form-control{
    height: auto;
    padding: 0 35px 0 15px;
    border: 0;
    background-color: transparent;
    line-height: 50px;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 25px;
}
.srch_area .form-control:focus{
    box-shadow: none;
    outline: none;
}
.srch_area .srch_btn{
    padding: 0;
    background-color: transparent;
    font-size: 0;
    background-image: url("../images/srch_icon.png");
    width: 24px;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    cursor: pointer;
}
.social_icon ul{
    font-size: 0;
    display: flex;
    align-items: center;
}
.social_icon ul li{
    display: inline-block;
    margin-right: 25px;
}
.social_icon ul li a{
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 400;
    font-family: 'Century Gothic';
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.social_icon ul li a:hover{
    color: #5a7ddf;
}
.social_icon {
    padding: 0 60px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
/* header */

/* footer */
.ftr_wrpr{
    padding: 25px 0 30px;
    background-color: #fff;
}
.copy_right{
    text-align: center;
}
.copy_right p{
    font-size: 16px;
    line-height: 16px;
    color: #35519f;
    font-weight: 400;
    font-family: 'Century Gothic';
}
.copy_right p a{
    font-size: 16px;
    line-height: 16px;
    color: #35519f;
    font-weight: 400;
    font-family: 'Century Gothic';
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.copy_right p a:hover{
    color: #000;
}
.innr_ftr{
    border-top: 1px solid #ebeeef;
}
/* footer */

/* banner */
.bnr_sec{
    position: relative;
    /* height: 100vh; */
    margin-bottom: 4px;
}
.bnr_img{
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
    position: relative;
}
/* .bnr_img::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.3);
} */
.bnr_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 100%;
}
.bnr_slider_btn{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 10%;
}
.bnr_slider_btn .slick-prev{
    display: none;
}
.bnr_slider_btn .slick-next{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
}
.bnr_slider .slick-list{
    padding: 0 175px 0 0;
}
/* .slid_nxt .slick-slide .bnr_img {
    transform: translateX(-60px);
    transition: all 0.3s ease-in-out;
}
.slid_nxt .slick-slide.slick-active.slick-current .bnr_img {
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
} */
.bnr_slide_itm_innr{
    position: relative;
}
.bnr_txt_area{
    position: absolute;
    bottom: 55px;
    left: 150px;
    right: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}
.bnr_txt h6{
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 15px;
    color: #35519f;
    margin-bottom: 20px;
}
.bnr_txt h2{
    font-size: 110px;
    /*letter-spacing: 7px;*/
    line-height: 90px;
    color: #35519f;
    text-transform: uppercase;
}
.bnr_txt{
    margin-bottom: 15px;
}
.bnr_link{
    margin-top: 20px;
    display: inline-block;
}
.bnr_link a{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 15px;
    color: #35519f;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.bnr_link a span{
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.bnr_link a:hover span{
    margin-right: 30px;
}
.slid_nxt .bnr_txt_area{
    transform: translateX(-20px);
}
/* banner */

/* inner page banner */
.innr_page_bnr{
    position: relative;
}
.innr_bnr_img img{
    width: 100%;
}
.innr_bnr_txt h1{
    font-size: 100px;
    letter-spacing: 5px;
    line-height: 95px;
    color: #ffffff;
    text-transform: uppercase;
}
.innr_bnr_txt h1 span{
    display: block;
}
.slide_innr{
    position: relative;
}
.innr_bnr_txt_area{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 85px;
}
/* .innr_bnr_slide_btn{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} */
.innr_bnr_slide_btn .slick-arrow{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    background-position: center right 26px;
    background-repeat: no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.innr_bnr_slide_btn .slick-prev{
    background-image: url("../images/slider_arw.png");
    left: 70px;
    transform: translateY(-50%) rotate(180deg);
}
.innr_bnr_slide_btn .slick-prev.slick-disabled{
    opacity: 0.5;
}
.innr_bnr_slide_btn .slick-next{
    right: 70px;
    transform: translateY(-50%) rotate(0deg);
    background-image: url("../images/slider_arw.png");
}
.innr_bnr_slide_btn .slick-next.slick-disabled{
    opacity: 0.5;
}
/* inner page banner */

/* home area */
.blk_txt{
    position: absolute;
    bottom: 60px;
    left: 95px;
}
.blk_txt h2{
    font-size: 85px;
    line-height: 85px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 715px;
    transform: translateY(40px);
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
}
.blk_txt h6{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 15px;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.block_itm_innr, .full_sec_innr{
    position: relative;
    background-color: #35519f;
}
.block_row{
    display: flex;
    flex-wrap: wrap;
}
.block_itm{
    width: 50%;
    margin-bottom: 4px;
}
.block_itm:nth-child(odd){
    padding-right: 2px;
}
.block_itm:nth-child(even){
    padding-left: 2px;
}
.block_itm:nth-child(even) .blk_txt{
    left: 85px;
}
.blk_img img{
    width: 100%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.full_img img{
    width: 100%;
    filter: blur(0) grayscale(0);
    transition: all 0.3s ease-in-out;
}
.full_txt{
    position: absolute;
    bottom: 85px;
    left: 95px;
}
.full_txt h2{
    font-size: 115px;
    line-height: 82px;
    color: #ffffff;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    transform: translateY(40px);
}
.full_txt h6{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 15px;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.white_txt a{
    color: #fff;
}
.block_itm_innr a:hover .blk_img img, .full_sec_innr a:hover .full_img img{
    opacity: 0.6;
}
.blk_img, .full_img{
    position: relative;
}
/* .blk_img::after, .blk_img::before, .full_img::after, .full_img::before{
    content: "";
    position: absolute;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    top: 35px;
    bottom: 35px;
    left: 35px;
    right: 35px;
} */
/* .blk_img::before, .full_img::before{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0,1);
} */
/* .blk_img::after, .full_img::after{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1,0);
} */
.block_itm_innr a, .full_sec_innr a{
    display: block;
}
/* .block_itm_innr a:hover .blk_img::after, .block_itm_innr a:hover .blk_img::before, .full_sec_innr a:hover .full_img::after, .full_sec_innr a:hover .full_img::before{
    transform: scale(1);
    opacity: 1;
} */
.block_itm_innr a:hover .blk_txt h2, .full_sec_innr a:hover .full_txt h2{
    transform: translateY(0);
}
.block_itm_innr a:hover .blk_txt h6, .full_sec_innr a:hover .full_txt h6{
    opacity: 1;
}
/* home area */

/* venture list */
.ven_list_sec{
    padding: 65px 0 75px;
}
.ven_img{
    margin-bottom: 30px;
}
.ven_img img{
    width: 100%;
}
.ven_txt h6{
    font-size: 25px;
    line-height: 22px;
    color: #35519f;
    font-family: 'adam_boldbold';
    margin-bottom: 15px;
}
.ven_txt p{
    font-size: 18px;
    line-height: 30px;
    color: #6e6f70;
    font-weight: 400;
    font-family: 'Century Gothic';
    margin-bottom: 15px;
}
.ven_txt a{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #35519f;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.ven_txt a:hover{
    color: #000;
}
.ven_list_sec .row [class*="col-"]{
    margin-bottom: 55px;
}
.load_more{
    padding-top: 30px;
    text-align: center;
}
.innr_bnr_txt, .gal_txt_bnr{
    margin-left: 65px;
}
/* venture list */

/* gallery */
.gal_bnr_innr{
    position: relative;
}
.gal_bnr_img img{
    width: 100%;
}
.gal_bnr_txt_area{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 85px;
}
.gal_txt_bnr h1{
    font-size: 105px;
    letter-spacing: 7px;
    line-height: 95px;
    color: #ffffff;
    text-transform: uppercase;
}
.gal_txt_bnr h1 span{
    display: block;
}
.galary_sec{
    padding: 55px 0 60px;
}
.galary_img img{
    width: 100%;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}
.galary_sec .grid-item{
    margin-bottom: 30px;
}
.galary_img{
    overflow: hidden;
}
.galary_img a{
    display: block;
}
.galary_img a:hover img{
    transform: scale(1.2);
}
/* gallery */

/* venture details */
.ven_slider_area{
    padding: 55px 0 105px;
}
.p_itm_innr{
    border: 10px solid #fff;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 10.5px rgba(0,0,0,0.2);
    transform: scale(1);
}
.p_slider .slick-center .p_itm_innr {
    transform: scale(1.8);
    position: relative;
    z-index: 9;
}
.p_itm_innr img{
    width: 100%;
}
.p_slider .slick-track{
    padding: 125px 0;
}
.p_item{
    margin: 0 10px;
}
.p_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: transparent;
    font-size: 0;
    border: 2px solid #102943;
    z-index: 1;
    background-position: center right 24px;
    background-repeat: no-repeat;
    background-size: 12px;
}
.p_slider .slick-prev{
    left: -124px;
    background-image: url("../images/slider_arw.png");
    transform: translateY(-50%) rotate(180deg);
}
.p_slider .slick-next{
    right: -124px;
    background-image: url("../images/slider_arw.png");
    transform: translateY(-50%) rotate(0deg);
}
.p_slider .slick-dots{
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p_slider .slick-dots li{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid transparent;
    margin: 0 3px;
    position: relative;
    padding: 0;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.p_slider .slick-dots li::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.p_slider .slick-dots li.slick-active{
    border-color: #35519f;
}
.p_slider .slick-dots li.slick-active::after{
    background-color: #35519f;
}
.ven_txt_sec{
    padding-top: 75px;
}
.ven_dtls_txt{
    text-align: center;
}
.ven_dtls_txt h6{
    font-size: 35px;
    letter-spacing: 2px;
    line-height: 45px;
    color: #35519f;
    font-weight: 700;
    font-family: 'Century Gothic';
    max-width: 825px;
    margin: 0 auto 25px;
}
.ven_dtls_txt p{
    font-size: 18px;
    line-height: 36px;
    color: #6e7072;
    font-weight: 400;
    font-family: 'Century Gothic';
    max-width: 920px;
    margin: 0 auto;
}
.ven_project_innr{
    padding: 70px 0 55px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.ven_proj_hdng{
    text-align: center;
    margin-bottom: 50px;
}
.ven_proj_hdng h2{
    font-size: 60px;
    line-height: 42px;
    color: #35519f;
}
.ven_proj_itm{
    position: relative;
    margin-bottom: 20px;
}
.ven_proj_img img{
    width: 100%;
}
.ven_proj_txt{
    text-align: center;
    margin-top: 20px;
}
.ven_proj_txt h6{
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 21px;
    color: #35519f;
}
.ven_proj_img{
    position: relative;
    cursor: pointer;
}
.ven_proj_txt_float p{
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Century Gothic';
}
.ven_proj_txt_float{
    padding: 100px 25px 25px;
    background-color: rgba(0,0,0,0.7);
    margin: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.ven_proj_img:hover .ven_proj_txt_float{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.ven_project_sec .load_more{
    position: relative;
}
.float_link a{
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #35519f;
    position: relative;
}
.float_link a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #35519f;
}
.float_link a:hover{
    color: #000;
}
.float_link a::after:hover{
    background-color: #000;
}
.float_link{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
/* venture details */

/* foundation */
.found_proj{
    margin-top: 55px;
}
.found_slider_area{
    padding-top: 0;
}
/* foundation */

/* about us */
.about_area{
    /* height: calc(100vh - 71px); */
    background-color: #d8deec;
}
.about_area .container, .about_area .row, .about_area .col-lg-6{
    height: 100%;
}
.about_ftr{
    background-color: #d8deec;
}
.about_innr{
    height: 100%;
    overflow: hidden;
    padding: 100px 0;
}
.about_hdng{
    position: relative;
    margin-bottom: 70px;
}
.about_hdng h2{
    font-size: 145px;
    letter-spacing: 9px;
    line-height: 150px;
    color: #35519f;
    position: relative;
    z-index: 2;
    background-color: #d8deec;
    display: inline-block;
}
.about_hdng::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 95px;
    width: 257px;
    height: 236px;
    border: 4px solid #7d7d7d;
    z-index: 1;
    transform: translateY(-50%);
}
.about_sub_hdng h6{
    font-size: 35px;
    line-height: 47px;
    color: #3c3e41;
    font-weight: 700;
    font-family: 'Century Gothic';
}
.about_sub_hdng{
    margin-bottom: 20px;
}
.about_para p{
    font-size: 18px;
    line-height: 36px;
    color: #6e7072;
    font-weight: 400;
    font-family: 'Century Gothic';
}
.about_txt{
    margin-top: 75px;
}
/* about us */


/*added on 20210628  */
.bnr_sec .innr_bnr_slide_btn .slick-arrow {
    opacity: 0.6;
}
.bnr_sec .innr_bnr_slide_btn .slick-arrow:hover{
    opacity: 1;
}

/*upto added on 20210628  */