@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

a {
    text-decoration: none !important;
}

#main_index {
    overflow: hidden !important;
    padding-bottom: 0px !important;
}

/*navbar*/

.navbar_type8 {
    height: 90px;
    margin-top: 0px;
    background-color: #fff;
}

.navbar_type8 .logo {
    flex: 0 1 20%;
    margin-left: 4.5vw;
}

.navbar_type8 .logo img {
    width: 100% !important;
    padding: 5px;
    object-fit: contain;
}

.navbar_type8 .nav_tab {
    flex:0 1 80%;
}

.navbar_type8 .nav_tab {
    justify-content: flex-end;
    padding-left: 15px;
    padding-right: 7vw;
    flex-wrap: nowrap;
}

.navbar_type8 .nav_tab .nav_item a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 20px;
    text-transform: uppercase;
}

.navbar_type8 .nav_tab .nav_item:hover a {
    /*color: #3777bb;*/
    color: #1450aa;
}

.navbar_type8 .nav_tab .nav_item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 110%;
    width: 100%;
    border-bottom: 0px solid #1450aa;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.navbar_type8 .nav_tab .nav_item {
    position: relative;
    display: inline-block;
}

.navbar_type8.navbar_height.dark_nav {
   background: #fff !important;
}

@media screen and (max-width: 1200.5px) {
    .navbar_type8 .nav_tab .nav_item a {
        font-size: 15px;
        font-weight: 700;
        color: #000;
        padding: 20px;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 992.5px) {
    .navbar_type8 {
        display: none;
    }
    
    .navbar_mobile {
        flex-basis: auto;
        background-color: #fff;
        width: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        color: #1450aa;
        align-items: center;
        justify-content: flex-end;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        height: 80px;
    }
}

@media screen and (max-width: 767.5px) {
}

/*banner*/

.banner_content{
    overflow: hidden;
    opacity: 1!important;
}

.n_bannerContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

.n_bannerGroup {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
}

.n_bannerInnerGroup {
    position: absolute;
    top: 23vw;
    left: 17.5vw;
    transform: translate(-20%, -50%);
    width: 40%;
}

.n_bannerTitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 59px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.n_bannerSubtitle {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    padding: 1.5vw 0vw 1vw 0vw;
}

.n_bannerImg {
    position: absolute;
    width: 52%;
    top: 0vw;
    right: 0vw;
    z-index: 0;
    overflow: hidden !important;
}

.n_bannerViewMore {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #d4af37;
    text-align: center;
    padding: 1%;
    height: 2.8vw;
    width: 8.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s all linear;
    margin-top: 0.5vw;
    border-radius: 10px;
}

.n_bannerViewMore:hover {
    color: #fff;
    background-color: #000;
    text-decoration: none;
    /*transform: scale(0.95);*/
}

.n_bannerViewMore {
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: none;*/
    outline: none;
    overflow: hidden;
}

.n_bannerViewMore:hover {
    transform: scale(1.05);
}

.n_bannerViewMore:active {
    transform: scale(0.85);
}

.n_bannerViewMore:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.n_bannerViewMore::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.n_bannerViewMore img.arrow-icon {
    margin-left: 12px !important;
    width: 8px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.n_bannerViewMore:hover img.arrow-icon {
    animation: swing 1s;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1200.5px) {
    .n_bannerInnerGroup {
        position: absolute;
        top: 21vw;
        left: 14.5vw;
        transform: translate(-20%, -50%);
        width: 42%;
    }
    
    .n_bannerTitle {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 45px;
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
    }
    
    .n_bannerSubtitle {
        font-size: 13px;
        font-weight: 300;
        color: #fff;
        line-height: 1.6;
        padding: 1.5vw 3vw 1vw 0vw;
    }
    
    .n_bannerViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 12.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 0.5vw;
        border-radius: 10px;
    }
}

@media screen and (max-width: 992.5px) {
    .n_bannerInnerGroup {
        position: absolute;
        top: 21vw;
        left: 14.5vw;
        transform: translate(-20%, -50%);
        width: 48%;
    }
    
    .n_bannerTitle {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 35px;
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
    }
    
    .n_bannerSubtitle {
        font-size: 12px;
        font-weight: 300;
        color: #fff;
        line-height: 1.6;
        padding: 1.5vw 3vw 1vw 0vw;
    }
    
    .n_bannerViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 15vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 0.5vw;
        border-radius: 10px;
    }
}

@media screen and (max-width: 767.5px) {
    .n_bannerInnerGroup {
        position: absolute;
        top: 30vw;
        left: 25vw;
        transform: translate(-20%, -50%);
        width: 90%;
    }
    
    .n_bannerTitle {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
    }
    
    .n_bannerSubtitle {
        font-size: 11px;
        font-weight: 300;
        color: #fff;
        line-height: 1.6;
        padding: 2vw 3vw 2vw 0vw;
    }
    
    .n_bannerViewMore {
        font-size: 12px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 8vw;
        width: 26vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 0.5vw;
        border-radius: 10px;
    }
    
    .n_bannerViewMore img.arrow-icon {
        margin-left: 12px !important;
        width: 6px !important;
        height: auto !important;
        display: inline-block !important;
        transition: transform 0.3s ease;
    }
    
    .n_bannerImg {
        position: absolute;
        width: 50%;
        top: 49vw;
        right: 0vw;
        z-index: 0;
        overflow: hidden !important;
    }
}

@media screen and (max-width: 426px) {
    .n_bannerImg {
        position: absolute;
        width: 50%;
        top: 66vw;
        right: 0vw;
        z-index: 0;
        overflow: hidden !important;
    }
    
    .n_bannerInnerGroup {
        position: absolute;
        top: 40vw;
        left: 25vw;
        transform: translate(-20%, -50%);
        width: 90%;
    }
}

/*hp_about*/

.index_wrapper_3 {
    position: relative;
}

.index_wrapper_3::after {
    content: "";
    position: absolute;
    bottom: 3vw;
    right: 14.5vw;
    transform: translateX(50%) rotate(0deg);
    width: 40%;
    height: 44%;
    background-image: url(https://cdn1.npcdn.net/img/1762305806about-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.hp_about {
    padding: 6.5vw 6.5vw 6vw 6.5vw;
    position: relative;
}

.hp_about::before {
    content: "";
    position: absolute;
    top: 12.5vw;
    left: 10vw;
    transform: translateX(-50%) rotate(0deg);
    width: 23%;
    height: 56%;
    background-image: url(https://cdn1.npcdn.net/img/1762241895about-obj2.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    animation: moveForwardBackward 3s ease-in-out infinite;
}

@keyframes moveForwardBackward {
  0%, 100% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(calc(-50% + 15px)); 
  }
}

.hp_about::after {
    content: "";
    position: absolute;
    top: -1vw;
    right: -7vw;
    transform: translateX(50%) rotate(0deg);
    width: 55%;
    height: 45%;
    background-image: url(https://cdn1.npcdn.net/img/1762242405about-obj1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: cockroachMove 4s ease-in-out infinite;
}

@keyframes cockroachMove {
  0% {
    transform: translateX(50%) translateY(0) rotate(0deg) scale(1);
  }
  
  50% {
    transform: translateX(50%) translateY(0) rotate(-2deg) scale(1);
  }
  70% {
    transform: translateX(50%) translateY(0.5vw) rotate(1deg) scale(1.02);
  }
  100% {
    transform: translateX(50%) translateY(0) rotate(0deg) scale(1);
  }
}

.hp_about_img {
    width: 94%;
    max-width: 150%;
    margin-top: 0vw;
    margin-left: 0vw;
}

.hp_about_right {
    padding: 4.5vw 0vw 0vw 3vw;
    margin-top: 0vw;
}

.hp_about .hp_small_title {
    font-size: 18px;
    font-weight: 600;
    /*color: #df8920;*/
    color: #d4af37;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 0vw;
}

.hp_about .hp_big_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41px;
    font-weight:700;
    color: #333;
}

.hp_about .hp_big_title span {
    /*font-weight: 800;*/
    color: #1450aa;
}

.hp_about .hp_keyword {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
    padding: 5.5vw 3vw 1vw 0vw;
}

.n_aboutViewMore {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #d4af37;
    text-align: center;
    padding: 1%;
    height: 2.8vw;
    width: 8.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s all linear;
    margin-top: 1vw;
    border-radius: 10px;
}

.n_aboutViewMore:hover {
    color: #fff;
    background-color: #004389;
    text-decoration: none;
    /*transform: scale(0.95);*/
}

.n_aboutViewMore {
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: none;*/
    outline: none;
    overflow: hidden;
}

.n_aboutViewMore:hover {
    transform: scale(1.05);
}

.n_aboutViewMore:active {
    transform: scale(0.85);
}

.n_aboutViewMore:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.n_aboutViewMore::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.n_aboutViewMore img.arrow-icon {
    margin-left: 12px !important;
    width: 8px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.n_aboutViewMore:hover img.arrow-icon {
    animation: swing 1s;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1200.5px) {
    .hp_about .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }
    
    .hp_about .hp_keyword {
        font-size: 14px;
        font-weight: 500;
        color: #555;
        margin-bottom: 0;
        line-height: 1.7;
        padding: 1vw 3vw 1vw 0vw;
    }

    .n_aboutViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 12.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1vw;
        border-radius: 10px;
    }
}

@media screen and (max-width: 992.5px) {
    .hp_about .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #333;
    }
    
    .hp_about .hp_keyword {
        font-size: 14px;
        font-weight: 500;
        color: #555;
        margin-bottom: 0;
        line-height: 1.7;
        padding: 1vw 3vw 1vw 0vw;
    }

    .n_aboutViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 15vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1vw;
        border-radius: 10px;
    }
    
    .hp_about::before {
        content: "";
        position: absolute;
        top: 12.5vw;
        left: 7vw;
        transform: translateX(-50%) rotate(0deg);
        width: 20%;
        height: 20%;
    }
    
    .hp_about::after {
        content: "";
        position: absolute;
        top: -1vw;
        right: 2vw;
        transform: translateX(50%) rotate(0deg);
        width: 30%;
        height: 25%;
    }
    
    .hp_about_right {
        padding: 0.5vw 0vw 0vw 3vw;
        margin-top: 0vw;
    }
}

@media screen and (max-width: 767.5px) {
    .hp_about {
        padding: 6vw 5vw 6vw 5vw;
        position: relative;
    }
    
    .hp_about_right {
        padding: 0vw 0vw 5vw 3vw;
        margin-top: 0vw;
    }
    
    .n_aboutViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 8vw;
        width: 30vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 3vw;
        border-radius: 10px;
    }
    
    .hp_about::before {
        content: "";
        position: absolute;
        top: 120vw;
        left: 11vw;
        transform: translateX(-50%) rotate(0deg);
        width: 30%;
        height: 20%;
    }
    
    .hp_about::after {
        content: "";
        position: absolute;
        top: -1vw;
        right: 16vw;
        transform: translateX(50%) rotate(0deg);
        width: 20%;
        height: 18%;
    }
    
    .hp_about .hp_small_title {
        font-size: 16px;
        font-weight: 600;
        color: #d4af37;
        position: relative;
        display: inline-block;
        letter-spacing: 3px;
        margin-bottom: 0vw;
    }
    
    .hp_about .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #333;
    }
    
    .hp_about .hp_keyword {
        font-size: 14px;
        font-weight: 500;
        color: #555;
        margin-bottom: 0;
        line-height: 1.7;
        padding: 1vw 0vw 1vw 0vw;
    }
    
    .index_wrapper_3::after {
        content: "";
        position: absolute;
        bottom: 21vw;
        right: 29.5vw;
        width: 52%;
        height: 50%;
    }
}

/*hp_why*/

.hp_why {
    padding: 8vw 9.5vw 8vw 9.5vw;
}

.whyBorder {
    padding: 0 25px;
}

.n_featureBox {
    padding: 2vw 2vw 1vw 2vw;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #f0f6fc;
}

.n_featureBox:hover {
    background-color: #ffffff;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(55, 119, 187, 0.5);
    transform: translateY(-5px);
}

.n_featureIcon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.n_featureIcon {
    position: absolute;
    top: -57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.n_featureTitle {
    font-size: 18px;
    font-weight: 800;
    color: #1450aa;
    margin-top: 1.5vw;
    padding: 0vw 0vw 0vw 0vw;
}

.n_featureText {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
    margin-top: 1.5vw;
}

.n_featureBox:hover .n_featureIcon img {
    animation: iconRotate 0.6s ease;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@media screen and (max-width: 1200.5px) {
    .hp_why {
        padding: 8vw 5vw 8vw 5vw;
    }
    
    .whyBorder {
        padding: 0 15px;
    }
}

@media screen and (max-width: 992.5px) {
    .n_featureText {
        font-size: 13px;
        font-weight: 500;
        color: #555;
        line-height: 1.5;
        margin-top: 1.5vw;
    }
}

@media screen and (max-width: 767.5px) {
    .hp_why {
        padding: 6vw 5vw 3vw 5vw;
    }
    
    .n_featureBox {
        padding: 7vw 5vw 2vw 5vw;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        background-color: #fff;
        border-radius: 10px;
        border: 2px solid #f0f6fc;
    }
    
    .whyBorder {
        padding: 32px 15px;
    }
}

/*hp_services*/

.hp_services {
    padding: 5vw 8.5vw 4vw 8.5vw;
    position: relative;
    background-color: #f0f6fc;
}

.hp_services::before {
    content: "";
    position: absolute;
    top: -3.5vw;
    left: 10vw;
    transform: translateX(-50%) rotate(0deg);
    width: 14%;
    height: 30%;
    background-image: url(https://cdn1.npcdn.net/img/1762315597service-obj1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    animation: wiggleInPlace 6s ease-in-out infinite;
}

@keyframes wiggleInPlace {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) translateY(-5px) rotate(3deg);
  }
  50% {
    transform: translateX(-50%) translateY(0) rotate(-3deg);
  }
  75% {
    transform: translateX(-50%) translateY(5px) rotate(2deg);
  }
}

.hp_services::after {
    content: "";
    position: absolute;
    bottom: -4vw;
    right: 12.5vw;
    transform: translateX(50%) rotate(0deg);
    width: 27%;
    height: 41%;
    background-image: url(https://cdn1.npcdn.net/img/1762399557service-obj2.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.hp_services .hp_small_title {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 1vw;
}

.hp_services .hp_big_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41px;
    font-weight:700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 2vw;
}

.hp_services .hp_big_title span {
    /*font-weight: 800;*/
    color: #1450aa;
}

.servicesBorder {
    padding: 15px 15px;
    transition: transform 0.3s ease;
}

.servicesBorder:hover {
    transform: translateY(10px);
}

.hp_services_content {
    background-color: #ffffff;
    border-radius: 15px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    padding: 2vw 2vw 1.5vw 2vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.hp_services_content .img-white {
    display: none;
}

.hp_services_content:hover .img-black {
    display: none;
}

.hp_services_content:hover .img-white {
    display: block;
}

.hp_services_content:hover {
    background-color: #1450aa;
}

.hp_services_content:hover .hp_keyword {
    color: #ffffff; 
}

.hp_services .btn-icon {
    width: 165px;
    height: auto;
    object-fit: contain;
}

.hp_services .hp_keyword {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin-top: 1.5vw;
    margin-bottom: 0vw;
    position: relative;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
}

@media screen and (max-width: 1200.5px) {
    .hp_services .btn-icon {
        width: 125px;
        height: auto;
        object-fit: contain;
    }
    
    .hp_services .hp_keyword {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin-top: 1.5vw;
        margin-bottom: 0vw;
        position: relative;
        line-height: 1.3;
        text-align: center;
        display: flex;
        align-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 992.5px) {
}

@media screen and (max-width: 767.5px) {
    .hp_services {
        padding: 7vw 5vw 15vw 5vw;
        position: relative;
        background-color: #f0f6fc;
    }
    
    .hp_services .hp_small_title {
        font-size: 16px;
        font-weight: 600;
        color: #d4af37;
        position: relative;
        display: inline-block;
        letter-spacing: 3px;
        margin-bottom: 1vw;
    }
    
    .hp_services .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight:700;
        color: #333;
        line-height: 1.1;
        margin-bottom: 2vw;
    }
    
    .hp_services::before {
        content: "";
        position: absolute;
        top: -5.5vw;
        left: 11vw;
    }
    
    .hp_services::after {
        content: "";
        position: absolute;
        bottom: -94vw;
        right: 13.5vw;
        transform: translateX(50%) rotate(0deg);
        width: 27%;
        height: 27%;
    }
    
    .hp_services_content {
        background-color: #ffffff;
        border-radius: 15px;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        padding: 4vw 2vw 4vw 2vw;
        height: 100%;
    }
}

/*hp_gallery*/

.hp_gallery {
    padding: 10vw 8.5vw 1vw 8.5vw;
    position: relative;
}

.hp_gallery::after {
    content: "";
    position: absolute;
    top: 0vw;
    right: 45.5vw;
    transform: translateX(50%) rotate(0deg);
    width: 23%;
    height: 80%;
    background-image: url(https://cdn1.npcdn.net/img/1762242405about-obj1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: floatUpDown 5s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(-15px); 
  }
}

.hp_gallery .hp_small_title {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 0.8vw;
}

.hp_gallery .hp_big_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41px;
    font-weight:700;
    color: #333;
    margin-bottom: 2vw;
}

.hp_gallery .hp_big_title span {
    /*font-weight: 800;*/
    color: #1450aa;
}

.hp_gallery_button {
    display: flex;
    justify-content: flex-end;
}

.n_galleryViewMore {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #d4af37;
    text-align: center;
    padding: 1%;
    height: 2.8vw;
    width: 8.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s all linear;
    margin-top: 2vw;
    border-radius: 10px;
}

.n_galleryViewMore:hover {
    color: #fff;
    background-color: #004389;
    text-decoration: none;
    /*transform: scale(0.95);*/
}

.n_galleryViewMore {
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: none;*/
    outline: none;
    overflow: hidden;
}

.n_galleryViewMore:hover {
    transform: scale(1.05);
}

.n_galleryViewMore:active {
    transform: scale(0.85);
}

.n_galleryViewMore:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.n_galleryViewMore::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.n_galleryViewMore img.arrow-icon {
    margin-left: 12px !important;
    width: 8px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.n_galleryViewMore:hover img.arrow-icon {
    animation: swing 1s;
    filter: brightness(0) invert(1);
}

#main_index .hp_photoGallerySlider_type3 {
    background-color: transparent;
    padding: 0vw 9vw 4.5vw 9vw;
}

#main_index .hp_photoGallerySlider_type3 .col-12 {
    padding: 0px;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background-color: transparent;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/img/1762310165arrow-right.png);
    width: 37px;
    height: 37px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -999px;
    display: inline-block;
    filter: none;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/img/1762310156arrow-left.png);
    width: 37px;
    height: 37px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -999px;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev {
    z-index: 1;
    top: 8vw !important;
    left: -5vw !important;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next {
    top: 8vw !important;
    right: -3vw !important;
}

#main_index .hp_photoGallerySlider_type3 .slick-next:before, #main_index .hp_photoGallerySlider_type3 .slick-prev:before {
    opacity: 1;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .outline_box {
    width: 100%;
    padding: 0px;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 {
    padding: 0px;
}

#main_index .hp_photoGallerySlider_type3 .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
}

#main_index .hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    padding: 0px;
    transition: all 0.7s;
    border-radius: 10px;
}

#main_index .hp_photoGallerySlider_type3 .slick-initialized .slick-slide {
    display: block;
    padding: 0 8px;
}

@media screen and (max-width: 1200.5px) {
    .hp_gallery .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 32px;
        font-weight:700;
        color: #333;
        margin-bottom: 2vw;
    }
    
    .n_galleryViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 12.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 2vw;
        border-radius: 10px;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev {
        z-index: 1;
        top: 12vw !important;
        left: -5vw !important;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next {
        top: 12vw !important;
        right: -3vw !important;
    }
}

@media screen and (max-width: 992.5px) {
    .n_galleryViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 15vw;
        display: flex
    }
}

@media screen and (max-width: 767.5px) {
    .hp_gallery {
        padding: 6vw 5vw 5vw 5vw;
        position: relative;
    }
    
    .hp_gallery .hp_small_title {
        font-size: 16px;
        font-weight: 600;
        color: #d4af37;
        position: relative;
        display: inline-block;
        letter-spacing: 3px;
        margin-bottom: 0.8vw;
    }
    
    .hp_gallery .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 29px;
        font-weight:700;
        color: #333;
        margin-bottom: 2vw;
    }
    
    .hp_gallery_button {
        display: flex;
        justify-content: flex-start;
    }
    
    .n_galleryViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 8vw;
        width: 28vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1.5vw;
        border-radius: 10px;
    }
    
    #main_index .hp_photoGallerySlider_type3 {
        background-color: transparent;
        padding: 0vw 7vw 4.5vw 7vw;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev {
        z-index: 1;
        top: 40vw !important;
        left: -5vw !important;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next {
        top: 40vw !important;
        right: -4.5vw !important;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next:before {
        content: '';
        background-image: url(https://cdn1.npcdn.net/img/1762310165arrow-right.png);
        width: 25px;
        height: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        text-indent: -999px;
        display: inline-block;
        filter: none;
    }
    
    #main_index .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev:before {
        content: '';
        background-image: url(https://cdn1.npcdn.net/img/1762310156arrow-left.png);
        width: 25px;
        height: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        text-indent: -999px;
    }
}

/*hp_news*/

.hp_news {
    padding: 4vw 5vw 1vw 5vw;
    position: relative;
}

.hp_news .hp_small_title {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 0vw;
}

.hp_news .hp_big_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41px;
    font-weight:700;
    color: #333;
}

.hp_news .hp_big_title span {
    /*font-weight: 800;*/
    color: #1450aa;
}

#main_index .hp_latest_new_8 {
    padding: 0vw 7.5vw 9vw 7.5vw;
}

#main_index .hp_latest_new_8 .text-right {
    text-align: left !important;
    font-weight: 600;
    color: #000;
}

#main_index .hp_latest_new_8 .news_box .read_more {
    text-decoration: none;
    color: #1450aa;
    display: none !important;
}

#main_index .hp_latest_new_8 .fa-clock:before {
    content: "\f017";
    color: #d4af37;
}

#main_index .hp_latest_new_8 .news_box .date {
    opacity: 1;
    font-size: 100%;
}

#main_index .hp_latest_new_8 .news_box .img_frame img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width: 1200.5px) {
}

@media screen and (max-width: 992.5px) {
}

@media screen and (max-width: 767.5px) {
    .hp_news .hp_small_title {
        font-size: 16px;
        font-weight: 600;
        color: #d4af37;
        position: relative;
        display: inline-block;
        letter-spacing: 3px;
        margin-bottom: 0vw;
    }
    
    .hp_news .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight:700;
        color: #333;
    }
    
    #main_index .hp_latest_new_8 {
        padding: 0vw 0vw 5vw 0vw;
    }
}

/*hp_contact*/

.index_wrapper_8 {
    padding: 1vw 9.5vw 0vw 9.5vw;
    position: relative;
}

.index_wrapper_8::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;            
    width: 100%;
    height: 130px;        
    background-color: #f0f6fc;
    z-index: -1;           
}

.hp_contact {
    padding: 6vw 8vw 0vw 5vw;
    position: relative;
    background-image: url(https://cdn1.npcdn.net/img/1782285886contact-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.hp_contact::before {
    content: "";
    position: absolute;
    top: -8.5vw;
    left: 5vw;
    transform: translateX(-50%) rotate(0deg);
    width: 25%;
    height: 54%;
    background-image: url(https://cdn1.npcdn.net/img/1762316017contact-obj.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    animation: cockroachTwitch 2.5s ease-in-out infinite;
}

@keyframes cockroachTwitch {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-49%) rotate(2deg);
  }
  50% {
    transform: translateX(-51%) rotate(-3deg);
  }
  75% {
    transform: translateX(-50%) rotate(1deg);
  }
}

.hp_contact .hp_small_title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 1vw;
}

.hp_contact .hp_big_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41px;
    font-weight:700;
    color: #fff;
}

.hp_contact .hp_keyword {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.7;
    padding: 1vw 3vw 1vw 0vw;
}

.n_contactViewMore {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #d4af37;
    text-align: center;
    padding: 1%;
    height: 2.8vw;
    width: 8.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s all linear;
    margin-top: 1.5vw;
    border-radius: 10px;
}

.n_contactViewMore:hover {
    color: #fff;
    background-color: #000;
    text-decoration: none;
    /*transform: scale(0.95);*/
}

.n_contactViewMore {
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: none;*/
    outline: none;
    overflow: hidden;
}

.n_contactViewMore:hover {
    transform: scale(1.05);
}

.n_contactViewMore:active {
    transform: scale(0.85);
}

.n_contactViewMore:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.n_contactViewMore::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.n_contactViewMore img.arrow-icon {
    margin-left: 12px !important;
    width: 8px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.n_contactViewMore:hover img.arrow-icon {
    animation: swing 1s;
    filter: brightness(0) invert(1);
}

.hp_contact_img {
    width: 110%;
    max-width: 150%;
    margin-top: -13vw;
    margin-left: 1vw;
}

@media screen and (max-width: 1200.5px) {
    .hp_contact {
        padding: 5vw 5vw 0vw 5vw;
    }
    
    .hp_contact .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 32px;
        font-weight:700;
        color: #fff;
    }
    
    .hp_contact .hp_keyword {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 0;
        line-height: 1.7;
        padding: 1vw 0vw 1vw 0vw;
    }
    
    .n_contactViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 12.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1.5vw;
        border-radius: 10px;
    }
    
    .hp_contact_img {
        width: 124%;
        max-width: 150%;
        margin-top: -13vw;
        margin-left: -4vw;
    }
    
    .hp_contact::before {
        content: "";
        position: absolute;
        top: -10.5vw;
        left: 5vw;
    }
}

@media screen and (max-width: 992.5px) {
    .n_contactViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 3.8vw;
        width: 15vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1.5vw;
        border-radius: 10px;
    }
    
    .hp_contact {
        padding: 4vw 3vw 0vw 3vw;
    }
    
    .hp_contact_img {
        width: 142%;
        max-width: 150%;
        margin-top: -13vw;
        margin-left: -6vw;
    }
}

@media screen and (max-width: 767.5px) {
    .index_wrapper_8 {
        padding: 1vw 9vw 0vw 8vw;
        position: relative;
    }
    
    .hp_contact {
        padding: 6vw 5vw 0vw 5vw;
    }
    
    .hp_contact::before {
        content: "";
        position: absolute;
        top: -11vw;
        left: 5vw;
        transform: translateX(-50%) rotate(0deg);
        width: 25%;
        height: 14%;
    }
    
    .hp_contact .hp_big_title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 30px;
        font-weight:700;
        color: #fff;
    }
    
    .n_contactViewMore {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background-color: #d4af37;
        text-align: center;
        padding: 1%;
        height: 8vw;
        width: 30vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s all linear;
        margin-top: 1.5vw;
        border-radius: 10px;
    }
    
    .hp_contact_img {
        width: 100%;
        max-width: 150%;
        margin-top: 3vw;
        margin-left: 0vw;
    }
}

/*footer*/

.footer_type10 {
    color: #000;
    background-color: #f0f6fc;
    padding-top: 4rem !important;
    overflow-x: hidden;
}

.footer_type10 .sub_title p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1450aa;
    align-self: end;
    margin-bottom: 0;
}

.footer_type10 .text {
    color: #000 !important;
    font-size: 16px;
}

.footer_type10 a {
    color: #000;
    text-decoration: none;
}

.footer_type10 p {
    color: #000;
    text-decoration: none;
}

.footer_type10 .sub_title {
    margin-bottom: 1rem;
    border-bottom: 1px solid #1450aa;
}

.footer_type10 .icon i {
    color: #000;
}

.footer_type10 .social_media a .icon_s i {
    color: #000;
    font-size: 30px;
}

.footer_type10 .line_top {
    border-top: 1px solid #1450aa;
}

.footer_type10 .text-light {
    color: #000 !important;
}

@media screen and (max-width: 1200.5px) {
}

@media screen and (max-width: 992.5px) {
}

@media screen and (max-width: 767.5px) {
}

@media screen and (max-width: 500.5px) {
    .index_wrapper_2 .item>img{
    	min-height:24rem!important;
    	object-fit:cover;
    	object-position: 50% 50%;
    }
}
