@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');

/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --tfont: "Sansation", sans-serif;
    --cfont: "Galada", cursive;
    --pcolor: #237adf;
    --spadding: 5rem;
}

/* Btn */
.main-btn{
    color: #fff;
    background: #000;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-style: none;
    padding: 8px 22px;
    padding-right: 10px;
    border-radius: 50px;
    font-size: clamp(.85rem, .95vw, .95vw);
    transition: all .3s linear;
    text-transform: uppercase;
    will-change: gap;    
    
    .btn-icon{
        width: 35px;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    &:hover{
        background: var(--pcolor);
        gap: 2rem;
        
        .btn-icon{
            animation: swing .8s linear;            
        }
    }
}

.hp_about .main-btn:hover{
    gap: 0;
    
    .btn-icon{
        margin-left: 30px;
    }
}

@media(max-width:768px){
    .main-btn{
        padding: 5px 0;
        padding-left: 18px;
        padding-right: 6px;
    }
    .main-btn .btn-icon{
        width: 30px;        
    }
}

/* text */
.title-style{
    color: #000;
    font-family: var(--tfont);
    font-weight: 500;
    font-size: clamp(1.6rem, 2.5vw, 2.5vw);
    -webkit-text-stroke: 1px #000;
    margin: 0;
    
    span{
        color: var(--pcolor);
        -webkit-text-stroke-color: var(--pcolor);
    }
}
.big-title{
    color: var(--pcolor);
    font-size: 190%;    
    font-family: var(--cfont);    
    -webkit-text-stroke: 0;
    text-shadow: -5px 5px 5px rgb(35, 122, 223, .25);
    line-height: 1.25;    
}
.content{
    color: #666;
    font-size: clamp(.9rem, 1vw, 1vw);
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
}

/*top space*/
.top_space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 8% 0;
    background-color: #fff;
}

.top_space_logo{
    min-width: 20%;
}
.top_space_logo img {
    max-width: 100px;
    position: relative;
    top: 15px;
}

.top_space_icon {
    width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;    
    border-radius: 40%;
    font-size: 15px;
    color: #000;
}

.top_space_point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top_space_point:hover .top_space_icon {
    animation: 1s swing;
}

.top_space_contact {
    display: flex;
    align-items: center;
    gap: 4vw;
}

.top_space_title {
    color: #000;
    font-size: clamp(.8rem, .95vw, .95vw);
    margin-bottom: 3px;
    font-family: "Sansation", sans-serif;
    font-weight: 600;
}

.top_space_keyword {
    font-size: clamp(.8rem, 0.95vw, 0.95vw);
    margin-bottom: 0;
    color: #000;
    font-weight: 400;    
    cursor: pointer;
}

.top_space_keyword a{
    color: #000;
    white-space: nowrap;
}

.top_space_keyword a:hover {
    color: var(--pcolor);
    text-decoration: none;
}

@media(max-width:1200px){
    .top_space {
        padding: 0 30px 0px;
    }
    .top_space_icon {
        width: 40px;
        height: 40px;
    }
    .top_space_logo{
        min-width: 18%;
    }
}

/*navigation bar*/

.navbar_type8 {
    background-color: #fff;
    width: 80%;
    border-radius: 100px 0 0 100px;
    height: 60px;
    padding-left: 7rem;
    padding-right: 8rem;
    transition: all 0.5s ease-in-out;
    position: unset;
    margin-left: auto;
    margin-bottom: -30px;
    position: relative;
    box-shadow: 0px 0px 15px rgb(37, 127, 223, .13);
}

.navbar_type8 .logo {
    display: none;
}

.navbar_type8 .nav_tab {
    flex: 0 1 100%;
    padding: 0;
    justify-content: space-between;    
}

.navbar_type8 .nav_tab .nav_item a {
    color: #000;
    font-size: 1vw;
    font-weight: 400;
    padding: 0;
    letter-spacing: 1px;
    
    &:hover{
        color: var(--pcolor);
    }
}

.dark_nav {
    background-color: rgba(255, 255, 255, .85) !important;
    box-shadow: 0px 0px 15px rgb(37, 127, 223, .13);
    top: 0;
    width: 100% !important;
    margin-left: 0% !important;
    border-radius: 0 0 20% 20%;
    padding: 0 15% !important;
    animation: 1s fadeInDown;
    position: fixed;
}

.navbar_type8 .nav_tab .nav_item {
    display: block;
    transition: all 0.3s ease-in-out;
}

.navbar_type8 .nav_tab .nav_item:before{
    display: none;
}

@media (min-width: 991.5px) {
    #main_index #top_spacing {
        height: 0 !important;
    }
}

/*mobile navigation bar*/
.navbar_mobile {
    background-color: #fff;
}

.side_menu {
    background-color: #1e1e1e;
}

.side_menu .list-group .list-group-item a {
    color: #fff;
}

.navbar_mobile .btn-outline-light {
    border-color: var(--pcolor);
    color: var(--pcolor);
}

.navbar_mobile .btn-outline-light:hover {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}

@media (max-width: 1200.5px) {
    .navbar_type8 {
        width: 70%;
        margin-left: 30%;
        padding-right: 50px;
        padding-left: 50px;
    }
    .navbar_type8 .nav_tab .nav_item a {
        font-size: 1.3vw;
    }
}

/* Banner */
.index_wrapper_2{
    position: relative;
    z-index: 1;
}
.hp_banner{
    height: 100%;
    display: grid;
    place-content: center start;
}
.b-content{
    height: 100%;
    padding-left: 11rem;
}
.b-content h2{
    color: #fff;
    font-family: var(--cfont);
    font-size: clamp(3.5rem, 7vw, 7vw);
    text-shadow: -5px 6px 5px rgba(35, 122, 223, 0.18);
    margin-left: -6%;    
}
.b-content h3{
    color: #fff;
    font-family: var(--tfont);
    font-size: clamp(0.9rem, 1.47vw, 1.47vw);
    font-style: italic;
    font-weight: 600;
    text-shadow: -5px 6px 5px rgba(35, 122, 223, 0.2);   
    margin-top: -3%;
}
.b-content p{
    color: #fff;
    font-size: clamp(.85rem, 1vw, 1vw);
    width: 70%;
    margin: 2.5rem 0;
}

.index_wrapper_2 .slick-list{
    overflow: visible;
}

@media(max-width:1200px){
    .b-content{
        padding-left: 8rem;
    }
    .b-content p{
        margin: 1.75rem 0;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 60vw;
        object-fit: cover;
    }    
    .b-content{
        padding-left: 5rem;        
    }
    .b-content h2{
        margin-left: -5%;
    }
    .b-content h3{
        margin-top: -1%
    }
    .b-content p{
        margin: 1.25rem 0;
    }
}

@media(max-width:576px){
    .slider_banner .item > img{
        min-height: 130vw;
    }
    .b-content{
        padding: 0;
        padding-bottom: 50%;
        text-align: center;
    }
    .b-content h2{
        margin-left: 0;
    }
    .b-content p{
        margin-left: auto;
        margin-right: auto;
    }
    .b-content .main-btn{
        margin: auto;
    }        
}

/* About */
.hp_about{
    background: url(https://cdn1.npcdn.net/images/3_AbtBg_2r37eh_1778035400.jpg?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=1800&new_height=674&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: calc(var(--spadding) * 1.75) 0 0;
}
.hp_about .container{
    position: relative;
    z-index: 1;
}
.abt-content .content{
    padding: 3rem 0;
}

.overlay-image{
    position: absolute;
    top: 0vw;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

@media(min-width:991px){
    .hp_about .container{
        max-width: 100%;
        padding: 0 8%;
    }
}

@media(max-width:768px){
    .overlay-image{
        width: 120%;        
        right: -15%;        
        z-index: -1;
    }    
    
    .hp_about{
        padding-top: calc(var(--spadding) * 1.5);
    }
}

@media(max-width:576px){
    .overlay-image{
        right: 0%;
        bottom: -22%;
        top: unset;
        width: 140%;
    }
    
    .hp_about{
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Service */
.index_wrapper_4{
    padding: calc(var(--spadding) * 1.5) 0 calc(var(--spadding) * 1.5);
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 70%;
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/4_BGText_1_gt9y1i_1778051607.png?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=1265&new_height=322&type=4);
        background-size: contain;
        background-position: top left;
        background-repeat: no-repeat;
        top: -4%;
        left: 0;
        pointer-events: none;
    }
    
    &:after{
        position: absolute;
        content: "";
        width: 58%;        
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/4_BGText_2_1_4vhln2_1778054765.png?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=1043&new_height=402&type=4);
        background-size: contain;
        background-position: bottom right;
        background-repeat: no-repeat;
        bottom: -20%;
        right: 0;
        pointer-events: none;
        z-index: -1;
    }
}
.ex_hpservice_slide{
    background: unset;
    padding: 0;
    margin: 0;
}
.ex_hpservice_slide .container{
    max-width: 100%;
    padding: 0 7%;
}
.ex_hpservice_slide .item{
    margin: 0 15px;
}
.ex_hpservice_slide .services-content{
    height: 340px;
    border-radius: 25px;
}
.ex_hpservice_slide .services-text h3.title::after{
    display: none;
}
.ex_hpservice_slide .services-text{
    display: flex;
    background: rgba(0, 0, 0, .85);
    padding: 1rem 0;
    padding-right: 1rem;
    padding-left: 2rem;
    border-radius: 50px;
    width: 93%;
    margin-left: calc(7% /2);
    align-items: center;
    top: unset;
    bottom: 0;
    transform: translateY(-20%);
    gap: 3rem;
    transition: all .3s linear;
}
.ex_hpservice_slide .services-text p{
    display: none;
}
.ex_hpservice_slide .service_btn{
    all: unset;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    font-size: 0;
    
    i{
        display: none;
    }
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/0_BtnIcon3_b42fng_1778048120.png?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=300&new_height=300&type=4);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
        top: 0;
    }
    
    &:after{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/0_BtnIcon2_6359hs_1778048120.png?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=279&new_height=279&type=4);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
        top: 0;
        transition: all .3s linear;
    }
}

.ex_hpservice_slide .services-content:hover{
    .service_btn:after{
        opacity: 0;   
    }    
    .services-text{
        background: rgba(255, 255, 255, .85);
    }
    .services-text h3.title{
        color: #000;
    }
}

.ex_hpservice_slide .services-text h3.title{    
    text-transform: capitalize;
    font-size: clamp(.9rem, 1.1vw, 1.1vw);
    font-weight: 500;
    text-align: left;
    margin-bottom: 0 !important;    
}

.ex_hpservice_slide .services-content .overlay{
    background: unset;
}

.ex_hpservice_slide .controls.left{
    color: #000;
}

.ex_hpservice_slide .controls.right{
    color: #000;
}

.ex_hpservice_slide .controls.left{
    left: -30px;
}
.ex_hpservice_slide .controls.right{
    right: -30px;
}
.ex_hpservice_slide .fa-arrow-left::before{
    content: "\f053";    
}
.ex_hpservice_slide .fa-arrow-right::before{
    content: "\f054";
}

@media(max-width:1200px){
    .index_wrapper_4{
        padding: var(--spadding) 0;
        
        &:before{
            top: 0;
        }
    }
}

@media(max-width:768px){
    .index_wrapper_4{
        padding: 0;
        margin: var(--spadding) 0;
        &:before{
            width: 80%;
            top: -10%;
        }
        &:after{
            width: 70%;
            bottom: -30%;
        }
    }
}

@media(max-width:576px){
    
    .index_wrapper_4{
    padding: 0 15px;
            &:before{
            width: 80%;
            top: 0%;
        }
        &:after{
            width: 70%;
            bottom: -22%;
        }
}
    
    .ex_hpservice_slide .container{
        padding: 0;
    }
    .ex_hpservice_slide .services-content{
        height: 300px;
    }    
}

/* Product */
.index_wrapper_5{
    background: url(https://cdn1.npcdn.net/images/5_BG_pd9e8h_1778052543.png?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=1800&new_height=837&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: calc(var(--spadding) + 80px) 0 0;
    padding-right: 8rem;
}

.solution-row{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4rem;
    padding: 5rem 0 3.5rem;
}
.solution-row h2{
    color: #fff;
    -webkit-text-stroke-color: #fff;
    text-shadow: -2px 2px 5px rgb(35, 122, 223, .6);
}
.solution-row a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 400;
    gap: 1rem;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 50%;
        height: 1px;
        bottom: -2px;
        left: 0;
        background: #fff;
        transition: all .3s linear;
    }
    
    &:hover:before{
        width: 100%;
    }
}
.hp_solution .col-12{
    padding: 0;
}

.productSlider-4 .slick-list{
    margin: -8px;
}
.productSlider-4 .product_img{
    margin: 0;
    margin-left: 10%;
    overflow: visible;
}
.productSlider-4 .product_img .product_box{
    padding: 1.5rem 2rem !important;
    background: rgba(255, 255, 255, .5);
    border-radius: 30px;
    margin: 0 8px;
}
.productSlider-4 .product_img .product_box .product_img_frame img{
    object-fit: contain !important;
    background: #fff;
}
.productSlider-4 .product_img .product_box a{
    color: #777;
}
.productSlider-4 .product_img .product_box .content_button{
    width: 100%;
}
.productSlider-4 .product_img .product_box .content{
    text-align: center !important;    
}

@media(max-width:1200px){
    .index_wrapper_5{        
        padding: calc(var(--spadding) * 1.5) 0 0;
        padding-right: calc(5rem + 15px);
    }
    .productSlider-4 .product_img{
        margin-left: 0;
    }
    .solution-row{
        padding: 3rem 0 2rem;
    }
}

@media(max-width:991px){
    .index_wrapper_5{
        background-position: -100px 0;
    }
}

@media(max-width:768px){
    .index_wrapper_5{        
        background-position: center;
        padding: calc(var(--spadding) * 1.35) 80px var(--spadding);
    }
    #index_6 .row{
        flex-direction: column-reverse;
    }
    .solution-row{
        padding: 0 0 3rem;   
        flex-direction: column;
        gap: 1rem;
    }    
    .solution-row h2{
        text-align: center;
    }
}

@media(max-width:576px){
    .index_wrapper_5{
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Trust */
.hp_trust{
    padding: var(--spadding) 0;
}
.why-wrapper{
    background: #000;
    border-radius: 1.5rem;
}
.why-outer-box{
    height: 290px;
}
.why-box{
    display: flex !important;
    align-items: end;
    gap: 3rem;
    padding: 2rem 3rem;
    height: 100%;
}
.why-list .slick-dots{
    position: absolute !important;
    bottom: -60px;
}
.why-icon{
    width: 90px;
    height: 90px;
    aspect-ratio: 1/1;
}
.why-info{
    min-width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.why-info h3{
    font-size: clamp(1.15rem, 1.3vw, 1.3vw);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.why-box .content{
    font-size: clamp(.9rem, .97vw, .97vw);
}

.trust-content .title-style{                
    text-align: center;
    transform: translateX(-12%);
    
    .big-title{        
        transform: translateX(28%);
        white-space: nowrap;
    }
}
.hp_trust .row{
    align-items: center;
}

.why-list .slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-list .slick-dots li button,
.why-list .slick-dots li{
    width: 13px;
    height: 13px;
    margin: 0 6px;
}
.why-list .slick-dots li.slick-active{
    width: 30px;
    
    button:before{
        border-radius: 50px;
    }
}
.why-list .slick-dots li button:before {
    color: #000;
    background: #000;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .12;
}
.why-list .slick-dots li.slick-active button:before {
  opacity:1;
  background: var(--pcolor);    
}

.why-frame{
    animation: floatVerticalSway 10s linear infinite;
}

@keyframes floatVerticalSway {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-25px) translateX(-8px);
  }
  50% {
    transform: translateY(-15px) translateX(8px);
  }
  75% {
    transform: translateY(20px) translateX(-6px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@media(min-width:991px){
    .hp_trust .container{
        max-width: 100%;
        padding: 0 8%;
    }
    .why-frame{
        padding-left: 8%;
    }   
}

@media(max-width:991px){
    .why-list .slick-dots{
        bottom: -50px;
    }
    .why-wrapper{
        margin-bottom: 6rem;
    }
}

@media(max-width:576px){
    .hp_trust{
        padding-left: 15px;
        padding-right: 15px;
    }
    .trust-content .title-style{                        
        transform: translateX(-9%);

        .big-title{        
            transform: translateX(20%);            
        }
    }
    
    .why-outer-box{
        height: 330px;
    }
    .why-box{
        flex-direction: column;
        gap: 1rem;
    }
    .why-info{
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    .why-icon{
        width: 70px;
        height: 70px;        
    }
}

/* Gallery */
.index_wrapper_8{
    background: url(https://cdn1.npcdn.net/images/7_BG_3t2mqy_1778058342.jpg?md5id=eb9b2480c0ff9651eb0425589272fd3d&new_width=1800&new_height=800&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: calc(var(--spadding) * 1.5) 0;
}
.hp_gallery .title-style{
    color: #fff;
    -webkit-text-stroke-color: #fff;
    white-space: nowrap;
}
.hp_gallery .title-wrapper .content{
    width: 53%;
}

.photo-gallery3 .slick-list{
    margin: 0 -15px;
}
.hp_photoGallerySlider_type3 .photo-gallery3,
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box{
  padding: 0;  
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
    width: 100%;
    padding-top: 100%;
    border-radius: 20px;
    background: transparent;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img{
    padding: 0;
    object-fit: cover;
    object-position: top;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box:hover img{
    width: 105%;
    height: 105%;
}
.hp_photoGallerySlider_type3{
  background: unset;
}
.hp_photoGallerySlider_type3 .slick-track{  
  margin: 0px;
  gap: 1rem;
  display: flex;
}

@media(min-width:991px){
    .hp_gallery .container{
        max-width:100%;
        padding: 0 8%;
    }    
    .hp_photoGallerySlider_type3 .container{
        max-width: 100%;
        padding: 0 calc(8% - 15px);
    }
}

@media(max-width:1200px){
    .index_wrapper_8{        
        padding: var(--spadding) 0;
    }
}

@media(max-width:991px){    
    .hp_photoGallerySlider_type3 .slick-dots{
        display: none !important;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
        width: 100%;
        padding-top: 100%;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev{
        display: none !important; 
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
        display: none !important; 
    }
}

@media(max-width:768px){
    .hp_gallery .title-wrapper .content{
        text-align: center;
        width: 90%;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media(max-width:576px){
    .index_wrapper_8{        
        background-position: right;
        position: relative;
        
        &:before{
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgb(35, 122, 223, .5), transparent); 
            top: 0;
            left: 0;
        }
    }
}

/*footer*/
.footer_type9 {
    color: #666;
    padding-top: 4rem;
    background: #fff;
    font-size: 14.5px;
    line-height: 1.6;    
}

.footer_type9 .title{
    min-height: 100px;
    padding-bottom: 3rem;
    
    img{
        max-height: 100px;
    }
}

.footer_type9 .text {
    color: #666 !important;
    font-size: 14.5px;
}

.footer_type9 .bg_dark {    
    background-color: transparent;
    padding-bottom: 3rem !important;
}

.footer_type9 .copy_right small{
    font-size: 100%;
}

.footer_type9 .copy_right strong{
    font-size: 100% !important;
    font-weight: 400;
}

.footer_type9 .copy_right,
.footer_type9 .copy_right .text-light{
    font-size: clamp(.85rem, .92vw, .92vw);
    color: #666 !important;
}

.footer_type9 a:hover,
.footer_type9 a.text:hover {
    color: var(--pcolor) !important;
}

.footer_type9 a {
    color: #666;
}

.footer_type9 .nav_item li a::after {
    color: #666;
    content: '|';
}

.footer_type9 .nav_item li a {
    text-transform: unset;
}

.footer_type9 .col-12.col-md-6.mb-md-0:nth-child(1) {
    padding-right: 10vw !important;
}

.footer_type9 .col-12.col-md-6.mb-md-0:nth-child(2) {
    padding-left: 4vw !important;
}

.footer_type9 .sub_title p {
    font-size: clamp(1rem, 1.4vw, 1.4vw);
    font-family: "Sansation", sans-serif;
    color: var(--pcolor);    
}

.footer_type9 .line{
    border-color: var(--pcolor);
}

.footer_type9 .icon{
    padding: 0 10px;
}

@media (min-width: 768px) {
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(1) {
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
    }
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(2) {
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
    }
}

@media (max-width: 1200.5px) {
    .footer_type9 {
        padding-top: 3rem;
        font-size: 14px;
    }
    .footer_type9 .text {
        font-size: 14px;
    }
}

@media (max-width: 991.5px) {
    .footer_type9 .col-12.col-md-6.mb-md-0:nth-child(1) {
        padding-right: 15px !important;
    }
}

@media (max-width: 767.5px) {
    .footer_type9 .nav_item {
        flex-direction: column;
    }
    .footer_type9 .nav_item li a::after {
        display: none;
    }
}

@media(max-width:576px){
    .footer_type9 .icon{
        width: 30px;
        height: auto;                
    }
}

.arrow-group {
  display: flex;
  flex-direction: column;
  width: 45px;
  gap: 1rem;
  position: absolute;
  bottom: 115%;
  right: -22.5px;
}
.arr{
    cursor: pointer;
}

@media(max-width:768px){
    .arrow-group{
        display: none;        
    }
}