* {
    box-sizing: border-box;
}

:root {
    --primary-color: #fdb913;
    --primary-dark-color: #b48818;
    --secondary-color: #0b213e;
    --menu-color: #0a0d14;
    --txt-primary-color: #ffffff;
    --txt-secondary-color: #000000;
    --txt-light-color: #ebf4ff;
    --txt-soft-color: #868c98;
    --border-color: #378cfb;
    --card-border-color: #1d45a2;
    --border-light-color: #c2dcff;
    --bg-color: #070d26;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/wp-content/themes/aurora/assets/fonts/Montserrat-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'TimesNewRoman';
    src: url(/wp-content/themes/aurora/assets/fonts/times\ new\ roman.ttf);
    font-weight: 400;
    font-style: normal;
}


body {
    max-width: 1920px;
    margin: 0 auto;
    line-height: 1.2;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--txt-primary-color);
    background-color: var(--bg-color);
    letter-spacing: -0.2px;
}


img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    vertical-align: middle;
}

.container {
    width: 88.5%;
    margin: 0 auto;
}

a {
    color: var(--txt-primary-color);
    text-decoration: none;
    cursor: pointer;
}

input[type=submit] {
	cursor: pointer !important;
}

.link {
    text-decoration: underline;
}

/*common-code for all pages*/
.d-flex {
    display: flex;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--txt-primary-color);
    letter-spacing: 0px;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--txt-primary-color);
    letter-spacing: 0px;
}

h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--txt-primary-color);
    letter-spacing: 0px;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--border-light-color);
}

.btn {
    background-color: var(--primary-color);
    color: var(--txt-secondary-color) !important;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    display: inline-block;
    border-radius: 10px;
    transform: all 0.2s ease-out;

}

.btn:hover {
    background-color: var(--primary-dark-color);
    transform: all 0.2s ease-out;
}

.btn-secondary {
    color: var(--txt-primary-color);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid var(--txt-primary-color);
}

.container {
    width: 88.5%;
}

.burger {
    display: none;
}

.mobile-nav, .mobile-logo {
    display: none;
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
}

.header.scrolled {
    background-color: var(--bg-color);
}

.header .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--txt-primary-color);
}

.header .logo {
    width: 120px;
    margin: 0 80px;
}

.header .left-menu, .header .right-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 83px;
}

.header .left-menu .nv-menu a, .header .right-menu .nv-menu a {
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    display: block;
    z-index: 1;
}

.header .nv-menu:hover a {
    color: var(--primary-color);
}

.header .nv-menu.active a {
    color: var(--primary-color);
}

.header .nv-menu.active-submenu a {
    color: var(--primary-color);
}

.header .nv-menu:hover a::after {
    filter: brightness(0) saturate(100%) invert(74%) sepia(93%) saturate(526%) hue-rotate(-17deg);
}

.header .nv-menu.active-submenu a::after {
    filter: brightness(0) saturate(100%) invert(74%) sepia(93%) saturate(526%) hue-rotate(-17deg);
}

.header .nv-submenu a::after
 {
    position: absolute;
    content: "";
    background: url('/wp-content/themes/aurora/assets/img/ico_dropdown.svg') no-repeat center/cover;
    width: 11px;
    height: 7px;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    filter: invert(1);
}

.header .left-menu .submenu a::after, .header .right-menu .submenu a::after {
    content: none;
}

.header .left-menu .submenu, .header .right-menu .submenu {
    position: absolute;
    top: 80px;
    width: fit-content;
    z-index: 2;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    background-color: var(--secondary-color);
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--border-color);
}

.header .right-menu .submenu {
    width: 308px;
}

.nv-submenu:hover>.submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.header .left-menu .submenu li, .header .right-menu .submenu li {
    padding-bottom: 20px;
    transition: all 0.3s ease-out;
}

.header .left-menu .submenu li:last-child, .header .right-menu .submenu li:last-child {
    padding-bottom: 0;
}

.header .left-menu .submenu li a, .header .right-menu .submenu li a {
    color: var(--txt-primary-color);
}

.header .left-menu .submenu li:hover a, .header .right-menu .submenu li:hover a{
    color: var(--primary-color);
}

/* Banner Section */


.home-banner .banner-ttl-blk {
    top: 30%;
    width: 74%;
    left: 13%;
}

.banner-ttl-blk {
    position: absolute;
    left: 15%;
    top: 65%;
    text-align: center;
    z-index: 99;
}

.home-banner .banner-ttl-blk h2 {
    font-size: 78px;
}

.home-banner .banner-ttl-blk p {
    margin: 25px 0;
}

.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('/wp-content/themes/aurora/assets/img/img_vd_banner.gif') no-repeat center center/cover;
    object-fit: cover;
}

.home-banner {
    height: 90vh;
}

.banner .banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0D1731 100%);
}

.ttl-blk {
    text-align: center;
}

.btn-gp .btn {
    margin-right: 20px;
}

.common-banner {
    position: absolute;
    top: 60%;
    z-index: 99;
    padding: 0 100px;
}

.common-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-banner .content-blk {
    width: 60%;
    margin-right: 19px;
}

.common-banner .video-blk {
    width: 45%;
}

.common-banner .video-blk img {
	border-radius: 19px;
}

.common-banner .content-blk h2 .unhighlight {
    color: var(--txt-primary-color);
}

.common-banner .img-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-banner .img-blk img {
	border-radius: 16px;
}

.common-banner .img-blk .img01 {
    margin-right: 20px;
}

.common-banner .img-blk .img02 {
    margin: 80px 0 30px;
}

.ico-bg {
    background: radial-gradient(85.87% 172.2% at 114.6% -25.56%, #194988 0%, #061222 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border: 1px solid var(--border-light-color);
    box-shadow: 0px 15px 18.4px 0px #00000078;
    border-radius: 10px;
    padding: 12px;
    width: 48px;
    height: 48px;
}

.ico-bg img {
    width: 24px;
    height: 24px;
}

/* Why Choose us */

.why-choose-us {
    background: linear-gradient(to bottom, #0D1731, #000F24);
    position: relative;
}

.why-choose-us::after {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(13, 26, 51, 0) 0%, rgba(13, 26, 51, 1) 100%);
    z-index: 1;
}

.why-choose-us .container {
    display: flex;
}

.why-choose-us h3 {
    color: var(--txt-primary-color);
    margin-bottom: 30px;
}

.why-choose-us .left-blk {
    width: 45%;
    margin-right: 30px;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }

.why-choose-us .right-blk {
    width: 45%;
    height: 800px;
    overflow-y: auto;
}

.wcu-list {
    padding-bottom: 150px;
}

.wcu-list li {
    padding: 35px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--card-border-color);
    display: flex;
}

.wcu-list li .no {
    margin-right: 20px;
}

.wcu-list-detail h4 {
    color: var(--primary-color);
}

.wcu-list-detail p {
    font-size: 16px;
    color: var(--txt-primary-color);
}

/* Our Services */
.our-services .tabs{
    background: #0B213E;
}
.our-services h3 {
    margin-bottom: 30px;
}

.our-services .tab-list {
    width: fit-content;
    background: var(--bg-color);
    padding: 5px;
    border-radius: 35px;
    margin-bottom: 40px;
}

.our-services .tab-list li {
    margin-bottom: 0;
}

.service-slider {
    display: flex;
}

.service-slider .slick-list {
    margin-right: -102px;
}

.service-card {
    margin-right: 20px;
    position: relative;
}

.service-card img {
    border-radius: 30px;
    width: 1324px;
    height: 700px;
    object-fit: cover;
}

.service-card .service-detail {
    background-color: var(--txt-primary-color);
    position: absolute;
    top: 300px;
    width: 481px;
    padding: 35px;
    border-radius: 30px;
    margin-left: 75px;
    z-index: 99;
}

.service-card .service-detail h4 {
    color: var(--txt-secondary-color);
}

.service-card .service-detail p {
    color: var(--menu-color);
    margin: 20px 0;
}

.service-card .service-detail .btn {
    color: var(--txt-primary-color) !important;
    display: inline-flex;
}

.service-card .service-detail .btn img {
    width: 13px;
    height: 13px;
    transform: rotate(-45deg);
    margin-left: 3px;
    margin-top: 3px;
}

/* Our Gallery */
.our-gallery {
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.our-gallery::after {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(7, 13, 38, 0) 0%, #070D26 82%);
    bottom: 0;
    width: 100%;
    height: 50%;
    left: 0;
}
.our-gallery h3 {
    margin: 50px 0;
}
.gallery-slider {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    width: max-content;
}
.gallery-slider:nth-child(odd) { 
    animation: scroll-right 20s linear infinite; 
} 
   
.gallery-slider:nth-child(even) { 
    animation: scroll-left 20s linear infinite; 
}

.gallery-slider-wrap{
	transform: rotate(-3.54deg);
    transition: transform 0.3s ease; 
}

.slide {
    flex-shrink: 0; 
    width: 443px; 
    height: 300px; 
    border-radius: 15px; 
    overflow: hidden; 
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes scroll-left { 
    from { 
      transform: translateX(0); 
    } 
    to { 
      transform: translateX(-50%); 
    } 
  } 
   
  @keyframes scroll-right { 
    from { 
      transform: translateX(-50%); 
    } 
    to { 
      transform: translateX(0); 
    } 
  }

/* Our team Member */
.our-team {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0D1731, #000F24);
}

.our-team-member {
    padding: 100px 0;
}

.team-member-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.team-member-list li {
    width: 32%;
    margin-right: 22px;
    margin-bottom: 20px;
}

.team-member-list li:nth-child(3n+0) {
    margin-right: 0;
}

.our-team-member .team-member-list li:nth-child(3n+0) {
    margin-right: 22px;
}

.team-member-list li .member-img {
    width: auto;
    height: auto;
    margin-bottom: 15px;
    border-radius: 15px;
    margin-left: 0;
}

.team-member-list li .position {
    display: block;
    color: var(--primary-color);
}

.team-member-list li .name {
    margin: 10px 0;
}

.team-member-list .social-list {
    display: flex;
    align-items: center;
}

.team-member-list .social-list li {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.team-member-list .social-list li:nth-child(3n+0) {
    margin-right: 15px;
}


.team-member-list .social-list img{
    width: 20px;
    height: 20px;
}

/* Slider */
.slick-list {
    margin-right: -82px !important;
}

.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    top: -15%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--txt-primary-color);
    border: none;
    cursor: pointer;
}

.slick-next {
    right: 3%;
}

.slick-prev {
    right: 8%;
}

.slick-prev::before,
.slick-next:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 18px;
    background: url('/wp-content/themes/aurora/assets/img/ico_arr-right.svg') no-repeat center / cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
}

.slick-prev:before {
    transform: rotate(180deg) translate(50%, 50%);
}

/* Valued Clients */
.valued-client {
    padding-bottom: 100px;
}

.client-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 75px;
}

.client-list li {
    margin-right: 50px;
    margin-bottom: 40px;
}

/* tabs */

.tabs {
    background: linear-gradient(to bottom, #0D1731, #000F24);
    padding: 100px 0;
}

.tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 73%;
    margin: 0 auto;
}

.tab-list li {
    margin-right: 24px;
    margin-bottom: 24px;
    padding: 12px 16px;
}

.tab-list li:last-child {
    margin-right: 0;
}

.tab-list li a {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.tab-list li.active {
    color: var(--txt-secondary-color);
    background-color: var(--txt-primary-color);
    border-radius: 35px;
}

.tab-list li.active a {
    color: var(--bg-color);
}

/* Grid Layout */
.services-grid,
.gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr); 
    grid-auto-rows: 200px;   
    grid-auto-flow: dense;
    padding: 50px 0;
}

.service-item,
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-item img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.service-item::before,
.gallery-item::before {
    content: '';
    background: linear-gradient(180deg, rgba(11, 33, 62, 0) 69.19%, #0B213E 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(0);
    border-radius: 10px;
}

.service-item,
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.service-item img,
.gallery-item im {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Define specific sizes */

.service-item,
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.service-item img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Define specific sizes */
.x-large {
    grid-column: span 12;
    grid-row: span 2;
}

.large {
    grid-column: span 6;
    grid-row: span 4;
}

.h-large {
    grid-column: span 6;
    grid-row: span 5;
}

.medium,
.gallery-item {
    grid-column: span 6;
    grid-row: span 2;
}

.small {
    grid-column: span 3;
}

/* pagination */

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.pagination-container .pagination-item .page-numbers {
    margin: 0 5px;
    border: 1px solid #E2E4E9;
    background-color: var(--txt-primary-color);
    color: #525866;
    transition: all 0.2s;
    border-radius: 10px;
    padding: 10px 13px;
}

.pagination-container .pagination-item .page-numbers.current {
    background: transparent;
    color: var(--txt-primary-color);
}


.pagination-container .prev.page-numbers,
.pagination-container .next.page-numbers {
    padding: 9.3px 0;
    text-align: center;
    border: none;
    background-color: unset;
    color: var(--txt-primary-color);
}

.pagination-container .prev.page-numbers {
    margin-right: 10px;
}

.pagination-container .next.page-numbers {
    margin-left: 10px;
}

/*footer*/
.footer {
    background: radial-gradient(87.45% 69.65% at 54.03% 126.89%, #194988 0%, #070D26 100%);
    padding-bottom: 50px;
}

.footer .ft-social-list {
    display: flex;
    width: 25%;
    padding: 35px 0;
}

.footer .ft-content {
    border-bottom: 1px solid #d9d9d9;
}

.footer .ft-logo {
    width: 108px;
    display: block;
    padding-bottom: 18px;
}

.footer .ft-logo-blk {
    width: 25%;
}

.footer .ft-logo-blk a {
    display: block;
    line-height: 1.5;
    letter-spacing: 0.1px;
}


.footer .ft-fb-logo img{
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
}

.footer a {
    font-size: 12px;
    font-weight: 400;
}

.footer .contact-info a {
    padding: 5px 0;
}

.footer .ft-right-blk {
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.footer .page-blk {
    width: 32%;
    padding: 19px 0;
}

.footer .ft-page-list, .footer .ft-service-list {
    padding: 20px 0;
}

.footer .ft-page-list a, footer .ft-service-list a {
    position: relative;
    padding-bottom: 11px;
    display: block;
}

.footer .ft-page-list a:hover, .footer .ft-service-list a:hover {
    color: var(--primary-color);
}

.footer .ft-service-list a::after {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/aurora/assets/img/ico_right_line.svg) no-repeat center / cover;
    width: 14px;
    height: 14px;
    top: 0;
    right: 10px;
}

.footer .ft-service-list a:hover::after {
    transform: rotate(-45deg);
    filter: brightness(0) saturate(100%) invert(74%) sepia(93%) saturate(526%) hue-rotate(-17deg);
}

.footer .copy-right {
    font-size: 12px;
    padding: 20px 0;
    letter-spacing: 0.5px;
    font-size: 12px;
    padding: 38px 0;
    color: var(--txt-primary-color)
}

.copyright-blk {
	display: flex;
	justify-content: space-between;
}

.copyright-blk .sc:hover {
	color: var(--primary-color);
}

/*Ipad*/
@media only screen and (min-width:768px) and (max-width:1280px) {

    body {
        letter-spacing: -0.016vw;
        font-size: 1.25vw;
    }

    .container {
        width: 85%;
    }

    /*common-code for all pages*/

    
    h2 {
        font-size: 4.375vw;
        letter-spacing: -0.039vw;
    }

    h3 {
        font-size: 3.75vw;
        letter-spacing: -0.039vw;
    }

    h4 {
        font-size: 3.125vw;
    }

    h5 {
        font-size: 2.5vw;
    }

    h6 {
        font-size: 1.875vw;
    }

    p {
        font-size: 1.406vw;
    }

    .btn, .btn-secondary {
        padding: 1.25vw 1.406vw;
    }

    .header .nav {
        padding: 1.563vw;
    }

    .header .logo {
        width: 9.375vw;
        margin: 0 6.25vw;
    }

    .header .left-menu, .header .right-menu {
        gap: 5vw;
    }

    .header .left-menu .nv-menu a, .header .right-menu .nv-menu a {
        letter-spacing: 0.039vw;
        font-size: 1.25vw;
    }

    .header .nv-submenu a::after {
        width: 0.859vw;
        height: 0.547vw;
        right: -1.563vw;
    }

    .header .left-menu .submenu, .header .right-menu .submenu {
        top: 6.25vw;
        padding: 1.563vw;
        border-radius: 0.625vw;
    }

    .header .left-menu .submenu li, .header .right-menu .submenu li {
        padding-bottom: 1.563vw;
    }

        
    /* Banner Section */
    .home-banner .banner-ttl-blk h2 {
        font-size: 6.094vw;
    }

    .home-banner .banner-ttl-blk p {
        margin: 1.953vw 0;
    }

    .common-banner {
        padding: 0 7.813vw;
    }

    .common-banner .img-blk .img01 {
        margin-right: 1.563vw;
    }

    .common-banner .img-blk .img02 {
        margin: 6.25vw 0 2.344vw;
    }

    .ico-bg {
        border-radius: 0.781vw;
        padding: 0.938vw;
        width: 3.75vw;
        height: 3.75vw;
    }

    .ico-bg img {
        width: 1.875vw;
        height: 1.875vw;
    }

    /* Why Choose us */

    .why-choose-us .left-blk {
        margin-right: 2.344vw;
    }
    .why-choose-us .right-blk {
        height: 62.5vw;
    }

    .wcu-list {
        padding-bottom: 11.719vw;
    }

    .wcu-list li {
        padding: 2.734vw;
        border-radius: 2.344vw;
        margin-bottom: 1.563vw;
    }

    .wcu-list li .no {
        margin-right: 1.563vw;
    }

    /* Our Services */
    .our-services h3 {
        margin-bottom: 2.344vw;
    }

    .service-card img {
        border-radius: 2.344vw;
        width: 95.625vw;
        height: 57.688vw;
    }

    .service-card .service-detail {
        top: 25vw;
        width: 37.578vw;
        padding: 2.734vw;
        border-radius: 2.344vw;
        margin-left: 5.859vw;
    }

    .service-card:first-child .service-detail {
        left: 3.906vw;
    }

    .service-card .service-detail p {
        margin: 1.563vw 0;
    }

    /* Our Gallery */
    .our-gallery h3 {
        margin: 3.906vw 0;
    }
    .slide {
        width: 34.609vw;
        height: 25.781vw;
        border-radius: 1.172vw;
    }

    /* Our team Member */
    .our-team {
        padding: 7.813vw 0;
    }

    .our-team-member {
        padding: 7.813vw 0;
    }

    .team-member-list {
        margin: 3.906vw 0;
    }

    .team-member-list li {
        width: 31%;
        margin-right: 1.719vw;
        margin-bottom: 1.563vw;
    }

    .our-team-member .team-member-list li:nth-child(3n+0) {
        margin-right: 1.719vw;
    }

    .team-member-list li .member-img {
        margin-bottom: 1.172vw;
        border-radius: 1.172vw;
    }
    .team-member-list li .name {
        margin: 0.781vw 0;
    }

    .team-member-list .social-list li {
        width: 1.563vw;
        height: 1.563vw;
        margin-right: 1.172vw;
    }

    .team-member-list .social-list img{
        width: 1.563vw;
        height: 1.563vw;
    }

    /* Slider */
    .slick-list {
        margin-right: -6.406vw !important;
    }

    .slick-prev,
    .slick-next {
        width: 3.906vw;
        height: 3.906vw;
        border-radius: 0.625vw;
    }

    .slick-prev::before,
    .slick-next:before {
        width: 0.938vw;
        height: 1.406vw;
    }

    /* Valued Clients */
    .valued-client {
        padding-bottom: 7.813vw;
    }

    .client-list {
        margin: 2.344vw 0;
    }

    .client-list li {
        margin-right: 1.906vw;
        margin-bottom: 2.125vw;
    }

    /* tabs */

    .tabs {
        padding: 7.813vw 0;
    }

    .tab-list li {
        margin-right: 1.1vw;
		margin-bottom: 1.1vw;
        padding: 0.938vw 1.25vw;
    }

    .tab-list li a {
        font-size: 1.25vw;
    }

    .tab-list li.active {
        border-radius: 2.734vw;
    }

    /* Grid Layout */
    .services-grid,
    .gallery {
        gap: 1.563vw;
        grid-auto-rows: 15.625vw;  
        padding: 3.906vw;
    }

    .service-item,
    .gallery-item {
        border-radius: 0.781vw;
    }

    .service-item img,
    .gallery-item img {
        border-radius: 1.172vw;
    }

    
    /* pagination */

    .pagination-container {
        padding: 1.875vw 0;
    }

    .pagination-container .pagination-item .page-numbers {
        margin: 0 0.391vw;
        border-radius: 0.781vw;
        padding: 0.625vw 0.781vw;
    }

    .pagination-container .prev.page-numbers,
    .pagination-container .next.page-numbers {
        padding: 0.727vw 0;
    }

    .pagination-container .prev.page-numbers {
        margin-right: 0.781vw;
    }

    .pagination-container .next.page-numbers {
        margin-left: 0.781vw;
    }


    /*footer*/
    .footer {
        padding-bottom: 3.906vw;
    }

    .footer .ft-content {
        padding-right: 10.156vw;
    }

    .footer .ft-logo {
        width: 8.438vw;
        padding-bottom: 0.625vw;
    }

    .footer .ft-logo-blk a {
        letter-spacing: 0.008vw;
    }

    .footer .ft-fb-logo {
        width: 1.875vw;
        padding: 0.859vw 0vw 2.109vw;
    }

    .footer a {
        font-size: 0.938vw;
    }

    .footer .page-blk {
        padding: 1.484vw 0;
    }

    .footer .ft-service-list,
    .footer .ft-page-list {
        padding: 1.563vw 0;
    }

    .footer .ft-service-list a,
    .footer .ft-page-list a {
        padding-bottom: 0.859vw;
    }

    .footer .copy-right {
        font-size: 0.938vw;
        padding: 1.563vw 0;
        letter-spacing: 0.039vw;
        font-size: 0.938vw;
        padding: 2.969vw 0;
    }


}

/* SP */
@media all and (max-width:767.9px) {
    body {
        letter-spacing: 0.267vw;
        font-size: 3.733vw;
    }

    /*common-code for all pages*/
    .container {
        width: 95%;
		padding: 0 15px;
    }

    .d-flex {
        flex-wrap: wrap;
    }

    h2 {
        font-size: 7.467vw;
        letter-spacing: -0.133vw;
    }

    h3 {
        font-size: 6.4vw;
        letter-spacing: -0.133vw;
    }

    h4 {
        font-size: 5.333vw;
    }

    h5 {
        font-size: 4.8vw;
    }

    h6 {
        font-size: 4.267vw;
    }

    p {
        font-size: 3.733vw;
    }

    .btn, .btn-secondary {
        padding: 2.267vw 2.8vw;
    }

    .burger {
        position: relative;
        display: block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 1.6rem;
        height: 1.15rem;
        opacity: 1;
        z-index: 11;
        visibility: visible;
        background: transparent;
    }

    .burger-line:nth-child(1) {
        top: 0px;
    }

    .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 70%;
    }

    .burger-line:nth-child(3) {
        top: 1rem;
    }

    .burger-line {
        position: absolute;
        display: block;
        right: 0;
        width: 100%;
        height: 0.56vw;
        opacity: 1;
        border: none;
        outline: none;
        border-radius: 1rem;
        background: var(--txt-primary-color);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .burger.burger.active .burger-line {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .burger.active .burger-line:nth-child(1) {
        transform: translateY(1.6vw) rotate(45deg);
    }

    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-2.667vw) rotate(-45deg);
    }

    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5.333vw 2.667vw;
    }

    .header .nav {
        display: none;
    }

    .mobile-nav, .mobile-logo {
        display: block;
    }

    .header .mobile-logo {
        width: 26.667vw;
    }
    
    .header .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background-color: var(--bg-color);
        transition: all 0.5s ease;
    }

    .header .mobile-nav.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }

    .header .nav-list {
        display: block;
        padding: 18.667vw 6.667vw;
    }

    .header .nav-list .nv-menu {
        padding-bottom: 5.333vw;
    }

    .header .nav-list .nv-menu a {
        letter-spacing: 0.133vw;
        font-size: 3.733vw;
    }

    .header .nv-submenu a::after {
        right: 0;
        width: 2.933vw;
        height: 1.867vw;
    }

    .header .nav-list .submenu a::after {
        content: none;
    }

    .header .nav-list .nv-submenu a {
        position: relative;
        padding-right: 8vw;
    }

    .header .nav-list .submenu {
        position: relative;
        top: 0rem;
        left: 1.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        transition: all 0.5s ease-out;
    }

    .header .nav-list .submenu li {
        padding-bottom: 5.333vw;
    }

    .header .nav-list .submenu li:first-child {
        padding-top: 5.333vw;
    }

        
    /* Banner Section */


    .home-banner .banner-ttl-blk {
        width: 100%;
        left: 0;
		padding: 15px;
    }
	
	.banner-ttl-blk {
        left: 0;
        top: 50%;
    }

    .home-banner .banner-ttl-blk h2 {
        font-size: 7.4vw;
    }

    .home-banner .banner-ttl-blk p {
        margin: 6.667vw 0;
    }

    .home-banner {
        height: 80vh;
    }

    .btn-gp .btn {
        margin: 2.333vw;
    }

    .common-banner {
        top: 40%;
        padding: 0;
    }

    .common-banner .container {
       flex-direction: column;
    }

    .common-banner .content-blk {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5.333vw;
    }

    .common-banner .video-blk {
        width: 60%;
    }

    .common-banner .img-blk .img01 {
        margin-right: 2.667vw;
    }

    .common-banner .img-blk .img02 {
        margin: 16vw 0 5.333vw;
    }

    .ico-bg {
        border-radius: 2.667vw;
        padding: 3.2vw;
        width: 12.8vw;
        height: 12.8vw;
    }

    .ico-bg img {
        width: 6.4vw;
        height: 6.4vw;
    }

    /* Why Choose us */

    .why-choose-us::after {
        height: 66.667vw;
    }

    .why-choose-us .container {
        flex-direction: column;
		padding: 0 15px;
    }

    .why-choose-us .left-blk {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8vw;
    }

    .why-choose-us .right-blk {
        width: 100%;
        height: 133.333vw;
    }

    .wcu-list {
        padding-bottom: 26.667vw;
    }

    .wcu-list li {
        padding: 6.667vw;
        border-radius: 8vw;
        margin-bottom: 5.333vw;
    }

    .wcu-list li .no {
        margin-right: 5.333vw;
    }

    /* Our Services */
    .our-services h3 {
        margin-bottom: 8vw;
    }

    .our-services .tab-list {
        width: 100%;
        padding: 4vw 1.333vw 0 1.333vw;
        border-radius: 9.333vw;
        margin-bottom: 5.333vw;
    }

    .service-card img {
        border-radius: 8vw;
        width: 133.333vw;
        height: 93.333vw;
    }

    .service-card .service-detail {
        top: 21.333vw;
        width: 66.667vw;
        height: 66.667vw;
        padding: 2.667vw;
        border-radius: 4vw;
        margin-left: 8vw;
    }

    .service-card:first-child .service-detail {
        left: 2.667vw;
    }

    .service-card .service-detail p {
        margin: 2.667vw 0;
    }

    /* Our Gallery */
    .our-gallery h3 {
        margin: 13.333vw 0;
    }
    .slide {
        width: 38.133vw;
        height: 34.667vw;
        border-radius: 4vw;
    }

    /* Our team Member */

    /* for team sub page */
    .our-team {
        padding: 0;
    }

    .our-team .team-member-list {
        flex-direction: column;
    }

    .our-team .team-member-list li {
        width: 100%;
        margin-right: 0;
    }
    /* for team sub page */

    .our-team-member {
        padding: 13.333vw 0;
    }

    .our-team-member .team-ttl-blk {
        width: 70%;
    }

    .team-member-list {
        margin: 13.333vw 0;
    }

    .team-member-list li {
        margin-right: 5.867vw;
        margin-bottom: 5.333vw;
    }

    .our-team-member .team-member-list li:nth-child(3n+0) {
        margin-right: 5.867vw;
    }

    .team-member-list li .member-img {
        margin-bottom: 4vw;
        border-radius: 4vw;
    }

    .team-member-list li .name {
        margin: 2.667vw 0;
    }

    .team-member-list .social-list li {
        width: 5.333vw;
        height: 5.333vw;
        margin-right: 4vw;
    }

    
    .team-member-list .social-list img{
        width: 5.333vw;
        height: 5.333vw;
    }

    /* Slider */
    .slick-list {
        margin-right: 0 !important;
    }

    .slick-prev,
    .slick-next {
        width: 10.667vw;
        height: 10.667vw;
        border-radius: 2.133vw;
    }
    .slick-prev {
        right: 18%;
    }

    .slick-prev::before,
    .slick-next:before {
        width: 2.667vw;
        height: 3.733vw;
    }

    .slick-prev:before {
        transform: rotate(180deg) translate(50%, 50%);
    }

    /* Valued Clients */
    .valued-client {
        padding-bottom: 13.333vw;
    }

    .client-list {
        margin: 8vw 0;
    }

    .client-list li {
        margin-right: 1.333vw;
        margin-bottom: 5.333vw;
    }

    /* tabs */

    .tabs {
        padding: 21.333vw 0;
    }

	.tabs .container {
		padding: 0;
	}
    .tab-list {
        width: 90%;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }

    .tab-list li {
        margin-right: 4vw;
        margin-bottom: 4vw;
        padding: 3.2vw 2.667vw;
    }

    .tab-list li a {
        font-size: 3.733vw;
    }

    .tab-list li.active {
        color: var(--txt-secondary-color);
        background-color: var(--txt-primary-color);
        border-radius: 9.333vw;
    }

    .tab-list li.active a {
        color: var(--bg-color);
    }

    /* Grid Layout */
    .services-grid,
    .gallery {
        display: grid;
        gap: 5.333vw;
        grid-template-columns: repeat(6, 1fr); 
        grid-auto-rows: auto;   
        grid-auto-flow: dense;
        padding: 1.333vw;
    }
	
	.x-large {
		grid-column: span 6;
	}
	
	.small {
		grid-column: span 6;
	}

    .service-item,
    .gallery-item {
        border-radius: 2.667vw;
        overflow: hidden;
        position: relative;
    }

    .service-item img,
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 4vw;
    }

    .service-item::before,
    .gallery-item::before {
        content: '';
        background: linear-gradient(180deg, rgba(11, 33, 62, 0) 69.19%, #0B213E 100%);
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translateY(0);
        border-radius: 2.667vw;
    }

    /*footer*/
    .footer {
        padding-bottom: 6.667vw;
    }

    .footer .ft-social-list li {
        margin-right: 10px;
    }

    .footer .ft-content {
        padding-right: 0;
    }

    .footer .ft-logo {
        width: 24vw;
        margin: 0 auto;
        padding-bottom: 2.133vw;
    }
    .footer .ft-logo-blk {
        width: 100%;
    }

    .footer .ft-logo-blk a {
        letter-spacing: 0.027vw;
        margin: unset;
    }

    .footer .ft-fb-logo {
        width: 5.333vw;
        padding: 2.933vw 0vw 7.2vw;
    }

    .footer a {
        font-size: 3.2vw;
    }

    .footer .ft-right-blk {
        width: 100%;
    }

    .footer .product-blk,
    .footer .page-blk {
        width: 100%;
        padding: 0;
    }

    .footer .page-blk {
        width: 50%;
    }

    .footer .ft-product-list,
    .footer .ft-page-list {
        padding: 5.333vw 0;
    }

    .footer .ft-product-list a,
    .footer .ft-page-list a {
        padding-bottom: 2.933vw;
    }

    .footer .copy-right {
        font-size: 3.2vw;
        padding: 5.333vw 0;
        letter-spacing: 0.133vw;
        font-size: 3.2vw;
        padding: 10.133vw 0;
    }
	
	.footer .copy-right:last-child {
		padding: 0;
	}
	
	.copyright-blk {
		display: block;
	}
}