@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
    margin: 0;
    padding: 0;
}

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

html,
body {
    width: 100%;
    height: 100%;
    font-weight: 400;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
    display: inline-block;
}

ul li a {
    text-decoration: none;
}

ul li a:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

button:focus {
    outline: none;
}

.form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header_area {
    position: absolute;
    padding: 20px 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    display: none;
}

.header_area .logo_area a,
.home_one_menu .hm_logo a {
    font-family: var(--brand_font), sans-serif;
    font-size: var(--brand_size);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand_color);
    outline: none;
    display: block;
}

.header_area .menu {
    text-align: right;
}

.header_area .menu ul li {
    margin-right: 10px;
    padding: 10px 0px;
}

.header_area .menu ul li:last-child {
    margin-right: 0;
}

.header_area .menu ul li a {
    font-family: var(--header_font), sans-serif;
    font-size: var(--header_size);
    color: var(--header_color);
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0.75px;
    padding: 0 7px;
}

.header_area .menu ul li a i {
    font-size: var(--header_size);
}

.header_area .menu ul li.active a {
    border-bottom: 1px solid var(--header_color);
    ;
}

.hom_one_area {
    background-color: var(--background1);
    position: relative;
    height: 20vh;
    /* Scroll Down Indicator CSS  */
}

.hom_one_area .home_one_menu {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    width: 99%;
}

.hom_one_area .home_one_menu .hm_logo {
    text-align: center;
    margin-bottom: 60px;
}

.hom_one_area .home_one_menu .re_de {
    margin-bottom: 60px;
}

.hom_one_area .home_one_menu .re_de a {
    font-family: var(--header_font), sans-serif;
    font-size: var(--header_size);
    color: var(--header_color);
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0.75px;
}

.hom_one_area .home_one_menu .menu_item {
    text-align: center;
}

.hom_one_area .home_one_menu .menu_item ul li {
    margin-right: 10px;
    padding: 10px 0px;
}

.hom_one_area .home_one_menu .menu_item ul li:last-child {
    margin-right: 0;
}

.hom_one_area .home_one_menu .menu_item ul li a {
    font-family: var(--header_font), sans-serif;
    font-size: var(--header_size);
    color: var(--header_color);
    text-transform: uppercase;
    line-height: 1.6;
    padding: 0 7px;
    letter-spacing: 0.75px;
}

.hom_one_area .home_one_menu .menu_item ul li.active a {
    border-bottom: 1px solid var(--header_color);
}

.hom_one_area .scroll_down {
    position: relative;
}

.hom_one_area .scroll_down::before {
    -webkit-animation: bounce 9s ease infinite;
    animation: bounce 9s ease infinite;
    top: 136px;
    color: var(--header_color);
    content: "\f063";
    font-weight: 600;
    font-size: 2rem;
    height: 3rem;
    left: 53%;
    letter-spacing: -1px;
    line-height: 4rem;
    margin-left: -3rem;
    opacity: 0.3;
    position: absolute;
    text-align: center;
    width: 2rem;
    font-family: "Font Awesome 5 Free";
    cursor: pointer;
}

@-webkit-keyframes bounce {
    50% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce {
    50% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.hom_one_area .relais_img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.form-select {
    display: block;
    width: 100%;
    padding: 5px 10px 8px 0px;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 10px 10px;
    border: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    border-color: transparent !important;
    outline: 0;
    box-shadow: none;
}

.language_picker {
    margin-top: 30px;
    margin-right: 10px;
}

.language_picker .form-select {
    width: 3.5%;
    margin-left: auto;
}

.menu-shrink {
    position: fixed !important;
    background: var(--primary-color) !important;
    width: 100%;
    padding: 10px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999999;
    top: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    display: block;
}

.inner_header_area {
    display: block;
}

.inner_header_area .form-select {
    background-color: transparent !important;
}

@media (min-width: 320px) and (max-width: 575px) {
    .mean-container .mean-bar {
        position: relative;
        z-index: 9999999;
        background: transparent;
        height: 0px;
    }
    .mean-container a.meanmenu-reveal {
        border: 1px solid #2e4371;
        color: #2e4371;
        right: 10px !important;
    }
    .mean-container .mean-bar {
        top: 1%;
    }
    .mean-container .mean-nav {
        background: #8c6d86;
        margin-top: 48px;
    }
    .mean-container a.meanmenu-reveal span {
        background: #2e4371 none repeat scroll 0 0;
    }
    .menu-shrink {
        display: none;
    }
    .mean-container .mean-nav ul li a {
        text-align: center;
    }
    .form-select {
        font-size: 18px;
        color: #fff;
        background-color: #8c6d86;
        text-align: center;
        width: 12%;
        margin: 0 auto;
    }
    .language_picker {
        display: none;
    }
    .hom_one_area .home_one_menu .menu_item {
        display: none;
    }
    .hom_one_area {
        height: auto;
        padding: 100px 0px 200px;
        position: relative;
    }
    .hom_one_area .scroll_down::before {
        left: 48%;
        margin-left: 0px;
        top: 10px;
    }
    .header_area .logo_area a,
    .home_one_menu .hm_logo a {
        font-size: 30px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .mean-container .mean-bar {
        position: relative;
        z-index: 9999999;
        background: transparent;
        height: 0px;
    }
    .mean-container a.meanmenu-reveal {
        border: 1px solid #2e4371;
        color: #2e4371;
        right: 10px !important;
    }
    .mean-container .mean-bar {
        top: 1%;
    }
    .mean-container .mean-nav {
        background: #8c6d86;
        margin-top: 48px;
    }
    .mean-container a.meanmenu-reveal span {
        background: #2e4371 none repeat scroll 0 0;
    }
    .menu-shrink {
        display: none;
    }
    .mean-container .mean-nav ul li a {
        text-align: center;
    }
    .form-select {
        font-size: 18px;
        color: #fff;
        background-color: #8c6d86;
        text-align: center;
        width: 12%;
        margin: 0 auto;
    }
    .language_picker {
        display: none;
    }
    .hom_one_area .home_one_menu .menu_item {
        display: none;
    }
    .hom_one_area {
        height: auto;
        padding: 100px 0px 200px;
        position: relative;
    }
    .hom_one_area .scroll_down::before {
        left: 48%;
        margin-left: 0px;
        top: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .hom_four_area .hm_four_left {
        height: auto !important;
    }
    .home_fve_area .txt_ctn .titel {
        margin-bottom: 20px;
    }
    .hom_tw_area .hm_text_ctn,
    .hom_three_area .three_right .text_ctn {
        margin-bottom: 0px !important;
    }
    .hom_one_area .home_one_menu {
        position: relative;
        top: unset;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mean-container .mean-bar {
        position: relative;
        z-index: 9999999;
        background: transparent;
        height: 0px;
    }
    .mean-container a.meanmenu-reveal {
        border: 1px solid #2e4371;
        color: #2e4371;
        right: 10px !important;
    }
    .mean-container .mean-bar {
        top: 1%;
    }
    .mean-container .mean-nav {
        background: #8c6d86;
        margin-top: 48px;
    }
    .mean-container a.meanmenu-reveal span {
        background: #2e4371 none repeat scroll 0 0;
    }
    .menu-shrink {
        display: none;
    }
    .mean-container .mean-nav ul li a {
        text-align: center;
    }
    .form-select {
        font-size: 18px;
        color: #fff;
        background-color: #8c6d86;
        text-align: center;
        width: 12%;
        margin: 0 auto;
    }
    .language_picker {
        display: none;
    }
    .hom_one_area .home_one_menu .menu_item {
        display: none;
    }
    .hom_one_area {
        height: 20vh;
    }
    .hom_one_area .scroll_down::before {
        left: 49%;
        margin-left: 0px;
        top: 124px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header_area .menu ul li a {
        padding: 0 5px;
    }
}

.hom_tw_area {
    background-size: cover;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 100px 0;
}

.hom_tw_area .back-video {
    position: absolute;
    z-index: -2;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.hom_tw_area .logo_icon {
    margin-bottom: 100px;
}

.hom_tw_area .logo_icon #logo_bienvenidos {
    width: 82px;
    fill: #f6c5b7;
}

.hom_tw_area .hm_text_ctn {
    margin-bottom: 90px;
}

.hom_tw_area .hm_text_ctn .t_22 {
    margin-bottom: 30px;
}

.hom_tw_area .hm_text_ctn p {
    font-family: var(--about_font);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--about_color);
}

.hom_tw_area .hm_tw_link a {
    font-family: var(--about_font);
    font-weight: 400;
    font-size: var(--about_size);
    line-height: 1.6;
    color: var(--about_color);
    text-transform: capitalize;
    border-bottom: 1px solid var(--about_color);
}

.hom_tw_area .hm_tw_link a:hover {
    border-bottom: 1px solid transparent;
}

.hom_three_area {
    padding: 100px 0;
    background: var(--background2);
}

.hom_three_area .three_right {
    padding-left: 70px;
}

.hom_three_area .three_right .titel {
    margin-bottom: 40px;
}

.hom_three_area .three_right .titel h3 {
    font-family: var(--news_header_font), sans-serif;
    font-weight: 600;
    font-size: var(--news_header_size);
    line-height: 1.6;
    color: var(--news_color);
    text-transform: uppercase;
}

.hom_three_area .three_right .text_ctn {
    margin-bottom: 60px;
}

.hom_three_area .three_right .text_ctn p {
    font-family: var(--news_font), sans-serif;
    font-weight: 400;
    font-size: var(--news_size);
    line-height: 1.6;
    color: var(--news_color);
}

.hom_three_area .three_right .text_ctn .t_33 {
    margin-bottom: 20px;
}

.hom_three_area .three_right .hm_thr_link a {
    font-family: var(--news_font), sans-serif;
    font-weight: 400;
    font-size: var(--news_size);
    line-height: 1.6;
    color: var(--news_color);
    text-transform: capitalize;
    border-bottom: 1px solid var(--news_color);
}

.hom_three_area .three_right .hm_thr_link a:hover {
    border-bottom: 1px solid transparent;
}

@media (min-width: 320px) and (max-width: 575px) {
    .hom_three_area .three_right {
        padding-left: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hom_three_area .three_right {
        padding-left: 12px;
    }
}

.hom_four_area .hm_four_left {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 0;
    width: 100%;
    padding: 100px 0;
    height: 80vh;
}

.hom_four_area .hm_four_right {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    top: 0;
    width: 100%;
    padding: 100px 0;
    height: 80vh;
}

.hom_four_area .four_ctn .titel h3 {
    font-family: var(--services_header_font), sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.6;
    color: var(--services_header_color);
    text-transform: capitalize;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.hom_four_area .four_ctn .titel h3::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--services_color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.hom_four_area .four_ctn .txt_ctn {
    width: 54%;
    margin: 0 auto 50px;
}

.hom_four_area .four_ctn .txt_ctn p {
    font-family: var(--services_font), sans-serif;
    font-weight: 400;
    font-size: var(--services_size);
    line-height: 1.6;
    color: var(--services_color);
}

.hom_four_area .four_ctn .hm_four_link a {
    font-family: var(--services_font), sans-serif;
    font-weight: 400;
    font-size: var(--services_size);
    line-height: 1.6;
    color: var(--services_color);
    text-transform: capitalize;
    border-bottom: 1px solid var(--services_color);
}

.hom_four_area .four_ctn .hm_four_link a:hover {
    border-bottom: 1px solid transparent;
}

@media (min-width: 320px) and (max-width: 575px) {
    .hom_four_area .hm_four_left {
        height: 60vh;
    }
    .hom_four_area .hm_four_right {
        height: 60vh;
    }
    .hom_four_area .four_ctn .txt_ctn {
        width: 70%;
        margin: 0 auto 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hom_four_area .four_ctn .txt_ctn {
        width: 70%;
    }
}

.home_fve_area {
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 100px 0;
    z-index: 0;
}

.home_fve_area .back-video {
    position: absolute;
    z-index: -2;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.home_fve_area .txt_ctn .titel {
    margin-bottom: 40px;
}

.home_fve_area .txt_ctn .titel h3 {
    font-family: var(--promotion_header_font), sans-serif;
    font-weight: 400;
    font-size: var(--promotion_header_size);
    line-height: 1.6;
    color: var(--promotion_header_color);
    text-transform: uppercase;
}

.home_fve_area .txt_ctn .text {
    margin-bottom: 50px;
    width: 62%;
}

.home_fve_area .txt_ctn .text p {
    font-family: var(--promotion_font), sans-serif;
    font-weight: 400;
    font-size: var(--promotion_size);
    line-height: 1.6;
    color: var(--promotion_color);
}

.home_fve_area .txt_ctn .hm_fv_link a {
    font-family: var(--promotion_font), sans-serif;
    font-weight: 600;
    font-size: var(--promotion_size);
    line-height: 1.6;
    color: var(--promotion_color);
    text-transform: capitalize;
    border-bottom: 1px solid var(--promotion_color);
}

.home_fve_area .txt_ctn .hm_fv_link a:hover {
    border-bottom: 1px solid transparent;
}

@media (min-width: 320px) and (max-width: 575px) {
    .home_fve_area .txt_ctn .text {
        width: 96%;
    }
}

.home_sx_area {
    background-size: cover;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 100px 0;
}

.home_sx_area .back-video {
    position: absolute;
    z-index: -2;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.home_sx_area .txt_ctn .titel h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.home_sx_area .txt_ctn .titel h3::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.home_sx_area .txt_ctn .text {
    margin-bottom: 60px;
}

.home_sx_area .txt_ctn .text p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.home_sx_area .txt_ctn .text p .global-phone a {
    color: var(--footer_color);
    font-family: var(--footer_font), sans-serif;
    font-size: var(--footer_size);
}

.home_sx_area .txt_ctn .hm_sx_link a {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
}

.home_sx_area .txt_ctn .hm_sx_link a:hover {
    border-bottom: 1px solid transparent;
}

.hm_svn_area {
    padding: 100px 0;
    background: var(--background3);
}

.hm_svn_area .svn_left_ctn .titel {
    margin-bottom: 40px;
}

.hm_svn_area .svn_left_ctn .titel h2 {
    font-family: hm_svn_titel_font_family;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: var(--footer_color);
}

.hm_svn_area .svn_left_ctn p {
    font-family: var(--footer_font), sans-serif;
    font-weight: 400;
    font-size: var(--footer_size);
    line-height: 1.6;
    color: var(--footer_color);
}

.hm_svn_area .svn_left_ctn .t_1 {
    margin-bottom: 25px;
}

.hm_svn_area .svn_left_ctn .global-phone a {
    font-family: var(--footer_font), sans-serif;
    font-size: var(--footer_size);
    color: var(--footer_color);
}

.hm_svn_area .svn_left_ctn .t_2 {
    margin-bottom: 0px;
}

.hm_svn_area .svn_left_ctn .t_3 {
    margin-bottom: 25px;
}

.hm_svn_area .svn_left_ctn .social_media {
    margin-bottom: 40px;
}

.hm_svn_area .svn_left_ctn .social_media li {
    margin-right: 15px;
}

.hm_svn_area .svn_left_ctn .social_media li a i {
    color: var(--footer_color);
    font-size: 24px;
}

.hm_svn_area .svn_left_ctn .sub_titel h6 {
    font-family: var(--footer_font), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--footer_color) !important;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.hm_svn_area .svn_left_ctn .con_box .t_77 {
    margin-bottom: 25px;
}

.hm_svn_area .svn_left_ctn .svn_link a {
    font-family: var(--footer_font), sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: var(--footer_color) !important;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    position: relative;
}

.hm_svn_area .svn_left_ctn .svn_link a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: var(--footer_color);
}

.hm_svn_area .svn_left_ctn .svn_link:hover a::after {
    width: 0%;
}

.hm_svn_area .svn_right_ctn .cn_box {
    margin-bottom: 30px;
}

.hm_svn_area .svn_right_ctn .cn_box .t_81 {
    font-family: var(--footer_font), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--footer_color) !important;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hm_svn_area .svn_right_ctn .cn_box .t_82 {
    margin-bottom: 7px;
    color: var(--footer_color) !important;
    font-size: var(--footer_size) !important;
}

.hm_svn_area .svn_right_ctn .cn_box .svn_link a {
    font-family: var(--footer_font), sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: var(--footer_color) !important;
    text-transform: uppercase;
    position: relative;
}

.hm_svn_area .svn_right_ctn .cn_box .svn_link a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: var(--footer_color);
}

.hm_svn_area .svn_right_ctn .cn_box .svn_link:hover a::after {
    width: 0%;
}

.hm_svn_area .svn_right_ctn p {
    font-family: var(--footer_font), sans-serif;
    font-weight: 400;
    font-size: var(--footer_size);
    line-height: 1.6;
    color: var(--footer_color);
}

.footer_area {
    padding: 20px 0;
    text-align: center;
    background: var(--background4);
    border-top: 1px solid #f6c5b7;
}

.footer_area p {
    color: var(--footer_color);
    font-family: var(--footer_font), sans-serif;
    font-size: var(--footer_size);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer_area p a {
    color: var(--footer_color);
}

.con_inner_banner_area {
    position: relative;
    width: 100%;
    height: 390px;
    z-index: 2;
}

.con_inner_banner_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.con_inner_banner_area .banner_content {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 40%;
    z-index: 3;
}

.con_inner_banner_area .banner_content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.6;
}

.contact_area {
    padding: 100px 0;
    background-color: white;
}

.contact_area .cn_left_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.contact_area .cn_left_ctn .t_1 {
    margin-bottom: 25px;
}

.contact_area .cn_left_ctn .global-phone a {
    font-size: var(--footer_size);
    color: var(--footer_color);
    font-family: var(--footer_font), sans-serif;
}

.contact_area .cn_left_ctn .t_2 {
    margin-bottom: 0px;
}

.contact_area .cn_left_ctn .t_3 {
    margin-bottom: 25px;
}

.contact_area .cn_left_ctn .social_media {
    margin-bottom: 40px;
}

.contact_area .cn_left_ctn .social_media li {
    margin-right: 15px;
}

.contact_area .cn_left_ctn .social_media li a i {
    color: #000000;
    font-size: 24px;
}

.contact_area .cn_left_ctn .sub_titel h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.contact_area .cn_left_ctn .con_box .t_77 {
    margin-bottom: 25px;
}

.contact_area .cn_left_ctn .cn_link a {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    position: relative;
}

.contact_area .cn_left_ctn .cn_link a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: #000000;
}

.contact_area .cn_left_ctn .cn_link:hover a::after {
    width: 0%;
}

.contact_area .cn_right_ctn .cn_box {
    margin-bottom: 30px;
}

.contact_area .cn_right_ctn .cn_box .t_81 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000 !important;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact_area .cn_right_ctn .cn_box .t_82 {
    margin-bottom: 7px;
}

.contact_area .cn_right_ctn .cn_box .cn_link a {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: #000000 !important;
    text-transform: uppercase;
    position: relative;
}

.contact_area .cn_right_ctn .cn_box .cn_link a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: #000000;
}

.contact_area .cn_right_ctn .cn_box .cn_link:hover a::after {
    width: 0%;
}

.contact_area .cn_right_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact_area .cn_left_ctn {
        margin-bottom: 40px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .contact_area .cn_left_ctn {
        margin-bottom: 40px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .contact_area .cn_left_ctn {
        margin-bottom: 40px;
    }
}

.team_one_area {
    background: #D4AF4E;
    height: 90vh;
}

.team_one_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.team_one_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.team_one_area .container-fluid .row .right_bg {
    position: relative;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
}

.team_one_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.team_one_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.team_one_area .one_left {
    padding: 30px 40px;
}

.team_one_area .one_left .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: #604d45;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team_one_area .one_left .titel h2::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #604d45;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.team_one_area .one_left .txt_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #604d45;
}

@media (min-width: 320px) and (max-width: 575px) {
    .team_one_area {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .team_one_area {
        height: auto;
    }
}

.team_inner_banner_area {
    position: relative;
    width: 100%;
    height: 390px;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
    z-index: 2;
}

.team_inner_banner_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.team_inner_banner_area .banner_content {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 40%;
    z-index: 3;
}

.team_inner_banner_area .banner_content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.6;
}

.team_tw_area {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 110px 0;
}

.team_tw_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.team_tw_area .tw_right {
    width: 41%;
    margin-left: auto;
    padding-right: 93px;
}

.team_tw_area .tw_right .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: #000000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team_tw_area .tw_right .titel h2::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.team_tw_area .tw_right .txt_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

@media (min-width: 320px) and (max-width: 575px) {
    .team_tw_area .tw_right {
        width: 95%;
        margin-left: 0;
        padding-right: 0px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .team_tw_area .tw_right {
        width: 95%;
        margin-left: 0;
        padding-right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .team_tw_area .tw_right {
        width: 95%;
        margin-left: 0;
        padding-right: 0px;
    }
}

.team_thre_area {
    position: relative;
    width: 100%;
    height: 90vh;
    z-index: 2;
}

.team_thre_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.team_four_area {
    background: #a4b575;
    height: 90vh;
}

.team_four_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.team_four_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.team_four_area .container-fluid .row .right_bg {
    position: relative;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
}

.team_four_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.team_four_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.team_four_area .lft_txt {
    padding: 30px 40px;
}

.team_four_area .lft_txt .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: #604d45;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team_four_area .lft_txt .titel h2::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #604d45;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.team_four_area .lft_txt .txt p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #604d45;
}

.team_fv_area {
    position: relative;
    width: 100%;
    padding: 200px 0;
    z-index: 2;
}

.team_fv_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.team_fv_area .fv_txt_ctn {
    padding: 30px 66px;
}

.team_fv_area .fv_txt_ctn .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    color: #000000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team_fv_area .fv_txt_ctn .titel h2::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #604d45;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 50%;
    bottom: 0;
}

.team_fv_area .fv_txt_ctn .txt p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.team_sx_area {
    position: relative;
    padding: 110px 0;
    background: #8C6D86;
}

.team_sx_area .sx_txt_ctn .txt p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 50px;
}

.team_sx_area .sx_txt_ctn .popup_link .pop_btn {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    text-transform: capitalize;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
}

.team_sx_area .sx_txt_ctn .popup_link .pop_btn:hover {
    border-bottom: 1px solid transparent;
}

.team_sx_area .sx_txt_ctn .popup_link .modal {
    background-color: rgba(255, 255, 255, 0.8117647059);
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content {
    padding: 40px 60px;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-header {
    margin-bottom: 20px;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-header h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.6;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-header .btn-close {
    line-height: 1;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-header .btn-close:focus {
    box-shadow: none;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-body form label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-body form .up_file {
    width: 50%;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-body form input {
    border: 1px solid rgba(108, 117, 125, 0.631372549);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #fff;
    color: #000000;
    text-transform: capitalize;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-body form input::placeholder {
    background: transparent;
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
    font-weight: 400;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .modal-body form input:focus {
    color: #6c757d;
    border: 1px solid #6c757d;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .submit_btn button {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    text-transform: capitalize;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
}

.team_sx_area .sx_txt_ctn .popup_link .modal .modal-dialog .modal-content .submit_btn button:hover {
    border-bottom: 1px solid transparent;
}

.inner_footer_area {
    background: #604D45;
    padding: 60px 0 20px;
}

.inner_footer_area .logo_icon {
    margin-bottom: 40px;
}

.inner_footer_area .logo_icon #logo_foter {
    fill: #ffffff;
    width: 45px;
    height: auto;
    margin: 18px 0;
}

.inner_footer_area .f_box {
    margin-bottom: 50px;
}

.inner_footer_area .f_box .titel {
    margin-bottom: 20px;
    text-align: center;
}

.inner_footer_area .f_box .titel h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-transform: uppercase;
}

.inner_footer_area .f_box .f_box_ctn {
    text-align: center;
}

.inner_footer_area .f_box .f_box_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.8;
    color: #fff;
}

.inner_footer_area .f_bx .f_t1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.8;
    color: #fff;
}

.inner_footer_area .f_bx .global-phone a {
    font-family: var(--footer_font), sans-serif;
    font-size: var(--footer_size);
    color: var(--footer_color);
}

.inner_footer_area .social_media {
    margin-bottom: 50px;
    text-align: center;
}

.inner_footer_area .social_media li {
    margin-right: 15px;
}

.inner_footer_area .social_media li a i {
    color: #fff;
    font-size: 30px;
}

.inner_footer_area .fo_line p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 0;
}

.inner_footer_area .fo_line p a {
    color: #fff;
}

.kic_inner_banner_area {
    position: relative;
    width: 100%;
    height: 390px;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.kic_inner_banner_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.kic_inner_banner_area .banner_content {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 40%;
    z-index: 3;
}

.kic_inner_banner_area .banner_content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 320px) and (max-width: 575px) {
    .kic_inner_banner_area .banner_content h1 {
        font-size: 36px;
    }
}

.dimd_bg {
    position: relative;
    width: 100%;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}

.intro_area {
    background-color: white;
    padding: 100px 0;
}

.intro_area .intro_text .kic_11 {
    margin-bottom: 20px;
}

.intro_area .intro_text p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.8;
    color: kic_intro_p_font_color;
}

.kic_six_area {
    background: #D4AF4E;
    height: 90vh;
}

.kic_six_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.kic_six_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.kic_six_area .container-fluid .row .right_bg {
    position: relative;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
}

.kic_six_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.kic_six_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.kic_six_area .container-fluid .one_left {
    padding: 30px 40px;
}

.kic_six_area .container-fluid .one_left .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    color: #604d45;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.kic_six_area .container-fluid .one_left .txt_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #604d45;
}

@media (min-width: 320px) and (max-width: 575px) {
    .kic_six_area {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .kic_six_area {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .kic_six_area {
        height: auto;
    }
}

.kic_svn_area {
    background: #f6c5b7;
    height: 90vh;
}

.kic_svn_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.kic_svn_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.kic_svn_area .container-fluid .row .right_bg {
    position: relative;
    width: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
}

.kic_svn_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.kic_svn_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.kic_svn_area .container-fluid .one_left {
    padding: 30px 40px;
}

.kic_svn_area .container-fluid .one_left .titel h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.6;
    color: #604d45;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.kic_svn_area .container-fluid .one_left .txt_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #604d45;
}

@media (min-width: 320px) and (max-width: 575px) {
    .kic_svn_area {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .kic_svn_area {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .kic_svn_area {
        height: auto;
    }
}

.menu_area {
    position: relative;
    width: 100%;
    background-size: cover;
    padding: 110px 0;
    z-index: 2;
    height: 90vh;
}

.menu_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.menu_area .menu_right {
    width: 36%;
    margin-left: auto;
    padding-right: 140px;
}

.menu_area .menu_right .titel h2 {
    font-family: kic_mnu_font_family;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.menu_area .menu_right .txt_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .menu_area .menu_right {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .menu_area .menu_right {
        width: 50%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .menu_area .menu_right {
        width: 80%;
        padding-right: 30px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .menu_area .menu_right {
        width: 90%;
        padding-right: 20px;
    }
}

.video_bg {
    display: flex;
    background: #e2dccf;
    position: relative;
    z-index: 0;
}

.video_bg .vido video {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
}

.side_nav {
    position: fixed;
    top: 30%;
    right: 10px;
    z-index: 5;
}

.side_nav ul {
    text-align: center;
}

.side_nav ul li {
    padding: 0;
    text-align: center;
    display: block;
}

.side_nav ul li a {
    position: relative;
    padding: 10px;
    width: 4px;
    height: 4px;
    display: block;
}

.side_nav ul li a::before {
    width: 4px;
    height: 4px;
    content: "";
    position: absolute;
    background-color: rgba(128, 128, 128, 0.8);
}

.side_nav ul li a.active::before {
    width: 10px;
    height: 10px;
    background: rgba(128, 128, 128, 0.8);
    border: 0;
    margin-top: -4px;
    margin-left: -3px;
}

@media (min-width: 320px) and (max-width: 575px) {
    .side_nav {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .side_nav {
        display: none;
    }
}

.histry_eight_area {
    background-color: white;
    height: 100vh;
}

.histry_eight_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.histry_eight_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.histry_eight_area .container-fluid .row .six_left {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.histry_eight_area .container-fluid .row .six_right {
    padding-left: 96px;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 80%;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn:last-child {
    margin-bottom: 0;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn .s_11 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn .year {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 0;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn .detail {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
}

.histry_eight_area .container-fluid .row .six_right .right_ctn::before {
    position: absolute;
    content: "";
    background: #000000;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

.histry_eight_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.histry_eight_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_eight_area {
        height: auto;
    }
    .histry_eight_area .container-fluid .row .six_right {
        padding-left: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_eight_area {
        height: auto;
    }
    .histry_eight_area .container-fluid .row .six_right {
        padding-left: 20px;
    }
}

.histry_top_area {
    height: 100vh;
    position: relative;
    padding: 170px 0;
    background-color: white;
}

.histry_top_area .hero_ctn .h_1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.histry_top_area .hero_ctn h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.8;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.histry_top_area .hero_ctn .h_2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.histry_send_area {
    height: 100vh;
    position: relative;
    width: 100%;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-color: white;
    z-index: 2;
}

.histry_send_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.histry_send_area .histry_detail p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
}

.histry_tred_area {
    height: 100vh;
    position: relative;
    background-color: #F2F2F2;
}

.histry_tred_area .thred_ctn {
    padding: 120px 0 0;
}

.histry_tred_area .thred_ctn p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    text-transform: uppercase;
}

.histry_tred_area .thred_ctn h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.histry_tred_area .thred_ctn .h_33 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    text-transform: inherit;
}

.histry_tred_area .line {
    position: absolute;
    height: 25%;
    width: 1px;
    bottom: 0;
    left: 50%;
    right: 50%;
    background: #000000;
    z-index: 10;
}

.histry_fur_area {
    background-color: white;
    height: 100vh;
}

.histry_fur_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.histry_fur_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.histry_fur_area .container-fluid .row .fur_left {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.histry_fur_area .container-fluid .row .fur_right {
    padding-left: 96px;
}

.histry_fur_area .container-fluid .row .fur_right .right_ctn {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 80%;
}

.histry_fur_area .container-fluid .row .fur_right .right_ctn:last-child {
    margin-bottom: 0;
}

.histry_fur_area .container-fluid .row .fur_right .right_ctn .year {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #000000;
}

.histry_fur_area .container-fluid .row .fur_right .right_ctn .detail {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
}

.histry_fur_area .container-fluid .row .fur_right .right_ctn::before {
    position: absolute;
    content: "";
    background: #000000;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

.histry_fur_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.histry_fur_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_fur_area {
        height: auto;
    }
    .histry_fur_area .container-fluid .row .fur_right {
        padding-left: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_fur_area {
        height: auto;
    }
    .histry_fur_area .container-fluid .row .fur_right {
        padding-left: 20px;
    }
}

.histry_fve_area {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 110px 0;
    z-index: 2;
}

.histry_fve_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.histry_fve_area .fve_ctn .fve_box {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 60%;
}

.histry_fve_area .fve_ctn .fve_box .h_5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.histry_fve_area .fve_ctn .fve_box .h_52 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histry_fve_area .fve_ctn .fve_box .h_53 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.histry_fve_area .fve_ctn .fve_box::before {
    position: absolute;
    content: "";
    background: #fff;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_fve_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_fve_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

.histry_six_area {
    height: 100vh;
    background-color: white;
}

.histry_six_area .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

.histry_six_area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.histry_six_area .container-fluid .row .six_left {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.histry_six_area .container-fluid .row .six_right {
    padding-left: 96px;
}

.histry_six_area .container-fluid .row .six_right .right_ctn {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 80%;
}

.histry_six_area .container-fluid .row .six_right .right_ctn:last-child {
    margin-bottom: 0;
}

.histry_six_area .container-fluid .row .six_right .right_ctn .s_11 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histry_six_area .container-fluid .row .six_right .right_ctn .year {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 0;
}

.histry_six_area .container-fluid .row .six_right .right_ctn .detail {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
}

.histry_six_area .container-fluid .row .six_right .right_ctn::before {
    position: absolute;
    content: "";
    background: #000000;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

.histry_six_area .container-fluid .cl3 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.histry_six_area .container-fluid .cl2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_six_area {
        height: auto;
    }
    .histry_six_area .container-fluid .row .six_right {
        padding-left: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_six_area {
        height: auto;
    }
    .histry_six_area .container-fluid .row .six_right {
        padding-left: 20px;
    }
}

.histry_svn_area {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 110px 0;
    z-index: 2;
}

.histry_svn_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.histry_svn_area .fve_ctn .fve_box {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 55%;
}

.histry_svn_area .fve_ctn .fve_box .h_5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.histry_svn_area .fve_ctn .fve_box .h_52 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histry_svn_area .fve_ctn .fve_box .h_53 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.histry_svn_area .fve_ctn .fve_box::before {
    position: absolute;
    content: "";
    background: #fff;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_svn_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_svn_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

.histry_nin_area {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 110px 0;
    z-index: 2;
}

.histry_nin_area .back-video {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.histry_nin_area .fve_ctn .fve_box {
    position: relative;
    padding-left: 20px;
    margin-bottom: 90px;
    width: 60%;
}

.histry_nin_area .fve_ctn .fve_box .h_5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.histry_nin_area .fve_ctn .fve_box .h_52 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histry_nin_area .fve_ctn .fve_box .h_53 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.histry_nin_area .fve_ctn .fve_box::before {
    position: absolute;
    content: "";
    background: #fff;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

@media (min-width: 320px) and (max-width: 575px) {
    .histry_nin_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .histry_nin_area .fve_ctn .fve_box {
        padding-left: 10px;
        width: 98%;
    }
}

.template-social-icons a i {
    color: var(--social-color1) !important;
    margin-right: 8px;
}

.template-social-icons-white a i {
    color: var(--social-color2) !important;
    margin-right: 8px;
}

.brand-logo {
    max-width: 100%;
    max-height: 75px;
}

.a-email {
    color: var(--footer_color);
}

.a-email:hover {
    color: var(--footer_color);
}


/*# sourceMappingURL=style.css.map */