:root {
    --font-primary: "franklin-gothic-urw", sans-serif;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;

    --color-body: #5d5b5b;
    --color-title: #232323;
    --color-light: #eeeeee;
    --color-blue: #0c1c2f;
    --color-blue_var1: #0129a7;
    --color-black: #000000;
    --color-white: #fff;
    --color-line: #ccc;
}

*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
*:focus-visible {
    outline: none;
}

body {
    font-size: 18px;
    line-height: 24px;
    color: var(--color-body);
    font-weight: var(--font-light);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

figure {
    font-size: 0;
    line-height: 1;
}

img {
    max-width: 100%;
}

.custom-container {
    margin: 0 auto;
    max-width: 1755px;
}

a,
a:hover,
button {
    text-decoration: none;
}

a,
button {
    transition: .35s all ease-in-out;
    cursor: pointer;
}

h2,
.h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: var(--font-medium);
    color: var(--color-title);
}

.punchline {
    text-transform: uppercase;
    color: var(--color-black);
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

ul {
    list-style: none;
}

.btn {
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: var(--font-medium);
    padding: 18px 20px;
    line-height: 1;
    display: inline-block;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--color-blue_var1);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-blue);
}

.btn-secondary:hover {
    background: var(--color-blue_var1);
    color: var(--color-white);
}

h1 {
    font-size: 82px;
    line-height: 96px;
    font-weight: var(--font-normal);
}


/* Header Main */

.header-main {
    border-bottom: 4px solid var(--color-blue_var1);
}

.header-main .header_inner {
    padding: 0 44px 0 108px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main .logo-and-toggle-btn {
    padding: 12px 0;
}

.header__navigation {
    display: flex;
    align-items: center;
}

.header-main .nav-main>ul {
    display: flex;
}

.header-main .nav-main>ul>li {
    padding: 0 44px;
    line-height: 76px;
}

.header-main .nav-main>ul>li.has-children {
    position: relative;
}

.header-main .nav-main>ul>li.has-children:after {
    content: '';
    position: absolute;
    top: 2px;
    left: calc(100% - 40px);
    width: 15px;
    height: 10px;
    background: url(../images/down-angle.svg) center center no-repeat;
    background-size: 15px;
    bottom: 0;
    margin: auto;
}

.header-main .nav-main>ul .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-light);
    z-index: 99;
    padding: 30px 25px 10px;
    border-radius: 0 0 12px 12px;
    min-width: 215px;
}

.header-main .nav-main>ul .dropdown-menu li {
    padding: 0 0 15px 0;
    line-height: 1;
}

.header-main .nav-main>ul .dropdown-menu li a {
    padding: 0;
    display: block;
    line-height: 1;
    color: var(--color-black);
    text-transform: capitalize;
    font-weight: var(--font-light);
    font-size: 16px;
    font-weight: var(--font-medium);
}

.header-main .nav-main>ul .dropdown-menu li a:hover,
.header-main .nav-main>ul .dropdown-menu li.active a {
    color: var(--color-blue_var1);
}

.header-main .nav-main ul li.mobile-show {
    display: none;
}

.header-main .nav-main>ul>li>a {
    font-size: 17px;
    font-weight: var(--font-medium);
    line-height: 1;
    color: var(--color-black);
    text-transform: capitalize;
}

.header-main .nav-main>ul>li>a:hover,
.header-main .nav-main>ul>li.active>a {
    color: var(--color-blue_var1);
}

.header-main .header-btn {
    padding: 16px 50px;
    border-radius: 5px;
    color: var(--color-white);
    background: var(--color-blue_var1);
    text-transform: capitalize;
    border: none;
    font-size: 16px;
    font-weight: var(--color-blue_var1);
}

.header-main .header-btn:hover {
    background: var(--color-blue);
}

.menu-toggle.mobile-show {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    position: relative;
}

.menu-toggle .menu-inner,
.menu-toggle .menu-inner::before,
.menu-toggle .menu-inner::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--color-blue_var1);
    transition: 0.4s;
    border-radius: 2px;
}

.menu-toggle .menu-inner::before {
    top: -8px;
}

.menu-toggle .menu-inner::after {
    top: 8px;
}

.header-main .nav-main>ul>li .dropdown-open {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.header-main .nav-main>ul>li .megamenu {
    position: absolute;
    width: 775px;
    background: var(--color-light);
    padding: 28px 65px 50px;
    border-radius: 0 0 12px 12px;
    z-index: 99;
    left: -25px;
    top: 100%;
}

.header-main .nav-main>ul>li .megamenu .megamenu_inner {
    display: flex;
    gap: 0 85px;
}

.header-main .nav-main>ul>li .megamenu h4 {
    position: relative;
    font-size: 14px;
    font-weight: var(--font-medium);
    line-height: 28px;
    text-transform: uppercase;
    color: var(--color-blue_var1);
    padding-left: 20px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.header-main .nav-main>ul>li .megamenu h4:before {
    content: '';
    position: absolute;
    height: 28px;
    width: 3px;
    background: var(--color-blue_var1);
    left: 0;
    top: 0;
}

.header-main .nav-main>ul>li .megamenu_list li a {
    font-size: 16px;
    line-height: 1;
    font-weight: var(--font-medium);
    color: var(--color-blue);
}

.header-main .nav-main>ul>li .megamenu_list li {
    margin-bottom: 14px;
    line-height: 1;
}

.header-main .nav-main>ul>li .megamenu_list li:last-child {
    margin-bottom: 0;
}

.header-main .nav-main>ul>li .megamenu_list li a:hover,
.header-main .nav-main>ul>li .megamenu_list li.active a {
    color: var(--color-blue_var1);
}

/* .header-main .nav-main > ul > li .dropdown-menu,
.header-main .nav-main > ul > li .megamenu {
    display: none;
}
/* .header-main .nav-main > ul > li .megamenu {
    display: none;
}
.header-main .nav-main > ul > li .megamenu.show {
    display: flex;
} */


/* Hero Banner */
.hero-banner_main {
    width: 100%;
    height: calc(100dvh - 76px);
    position: relative;
    overflow: hidden;
}

.hero-banner_main .brand-logo {
    position: absolute;
    right: 0;
    bottom: -32px;
    z-index: 3;
}

.hero-banner_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-banner_img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(2, 15, 52, .4);
}

.hero-banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-banner_video iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
}

.hero-banner_text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 105px;
    z-index: 4;
    max-width: 1775px;
    margin: 0 auto;
}

.hero-banner_text h1 {
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 12px;
    padding-left: 108px;
}

.hero-banner_main .line_one {
    width: 77px;
    height: 68%;
    position: absolute;
    left: 0px;
    bottom: 0;
}

.hero-banner_main .line_one .line-ver {
    width: 2px;
    height: 0;
    position: absolute;
    right: 0px;
    top: 0;
    background: var(--color-line);
    z-index: 99;
    transition: .65s ease-in-out height;
    transition-delay: .65s;
}

.hero-banner_main.line-animated .line_one .line-ver {
    height: 100%;
}

.hero-banner_main .line_one .line-hor {
    width: 0;
    height: 2px;
    position: absolute;
    left: 0px;
    top: 0;
    background: var(--color-line);
    z-index: 99;
    transition: .65s ease-in-out width;
}

.hero-banner_main.line-animated .line_one .line-hor {
    width: 100%;
}


/* Resuable Module 1 Start */
[class^="reusable-module"] .text-part p:not(:last-child) {
    margin-bottom: 24px;
}

.reusable-module_one {
    padding: 125px 0 0;
    position: relative;
    z-index: 2;
}

.reusable-module_one.culture_module {
    padding-bottom: 125px;
}

.reusable-module_inner {
    padding-left: 108px;
    padding-right: 44px;
    position: relative;
}

.reusable-module_one .two-part {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 105px;
    align-items: flex-start;
}

.reusable-module_one .image-part {
    width: 41.75%;
    position: relative;
}

.reusable-module_one .btm-line {
    width: 375px;
    height: 410px;
    position: absolute;
    right: -36px;
    bottom: -36px;
}

.reusable-module_one .btm-line .line-ver {
    height: 0;
    width: 2px;
    background: #cccccc;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: .65s height ease-in-out;
}

.reusable-module_one.line-animated-btm .btm-line .line-ver {
    height: 100%;
}

.reusable-module_one .btm-line .line-hor {
    height: 2px;
    width: 0;
    background: #cccccc;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: .65s ease-in-out width;
}

.reusable-module_one.line-animated-btm .btm-line .line-hor {
    width: 100%;
}

.reusable-module_one .top-line_one {
    width: 218px;
    height: 42px;
    position: absolute;
    left: 0;
    top: -42px;
    z-index: 2;
}

.reusable-module_one .top-line_one .line-ver {
    /* height: 100%; */
    height: 0;
    width: 2px;
    background: var(--color-blue_var1);
    position: absolute;
    right: 0;
    bottom: 0;
    transition: .65s ease-in-out height;
    /* transition-delay: 2s; */
}

.reusable-module_one.line-animated .top-line_one .line-ver {
    height: 100%;
}

.reusable-module_one .top-line_one .line-hor {
    height: 2px;
    width: 0;
    background: var(--color-blue_var1);
    position: absolute;
    right: 0;
    top: 0;
    transition: 2s ease-in-out width;
    transition-delay: .65s;
}

.reusable-module_one.line-animated .top-line_one .line-hor {
    width: 5000%;
}

.reusable-module_one .top-line_two {
    width: 40vw;
    height: 46%;
    position: absolute;
    left: 75px;
    top: 0;
}

.reusable-module_one .top-line_two .line-ver {
    width: 2px;
    height: 0;
    background: var(--color-line);
    position: absolute;
    top: 0;
    left: 0;
    transition: .65s ease-in-out height;
}

.reusable-module_one.line-animated .top-line_two .line-ver {
    height: 100%;
}

.reusable-module_one .top-line_two .line-hor {
    width: 0;
    height: 2px;
    background: var(--color-line);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .65s ease-in-out width;
    transition-delay: .65s;
}

.reusable-module_one.line-animated .top-line_two .line-hor {
    width: 100%;
}

.reusable-module_one .image-part figure {
    width: 100%;
}

.reusable-module_one .image-part img {
    width: 100%;
    aspect-ratio: 1 / 1.17;
}

.reusable-module_one .text-part {
    width: 47.75%;
    padding-top: 60px;
    max-width: 650px;
}

.reusable-module_title .punchline {
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.reusable-module_title h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: var(--font-medium);
    color: var(--color-title);
    margin-bottom: 15px;
}

.reusable-module_one .btn {
    width: 158px;
    text-align: center;
}

.reusable-module_one.is-reverse .two-part {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.reusable-module_one.is-reverse .top-line_two {
    left: inherit;
    right: 75px;
}

.reusable-module_one.is-reverse .top-line_one {
    left: inherit;
    right: 0;
}

.reusable-module_one.is-reverse .top-line_one .line-ver {
    left: 0;
    right: inherit;
}

.reusable-module_one.is-reverse .top-line_one .line-hor {
    left: 0;
    right: inherit;
}

.reusable-module_one.is-reverse .top-line_two .line-ver {
    left: inherit;
    right: 0;
}

.reusable-module_one.is-reverse .top-line_two .line-hor {
    left: inherit;
    right: 0;
}

.reusable-module_one.is-reverse .btm-line {
    left: -36px;
}

.reusable-module_one.is-reverse .btm-line .line-ver {
    left: 0;
    right: inherit;
}

.reusable-module_one.is-reverse .image-part {
    margin-left: 100px;
}

.reusable-module_one .image-logo-gallery {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    margin-top: 35px;
}

.reusable-module_one .image-logo-gallery .gallery-item {
    padding: 0 23px;
    position: relative;
    line-height: 1;
    font-size: 0;
}

.reusable-module_one .image-logo-gallery .gallery-item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-line);
}

.reusable-module_one .image-logo-gallery .gallery-item:first-child {
    padding-left: 0;
}

.reusable-module_one .image-logo-gallery .gallery-item:first-child::after {
    display: none;
}

.reusable-module_one .image-logo-gallery .gallery-item:last-child {
    padding-right: 0;
}

/* Resuable Module 1 End */

/* Resuable Module 2 Start */
.reusable-module_two {
    padding: 355px 0 112px;
    overflow: hidden;
    background-color: var(--color-light);
    margin-top: -215px;
}

.reusable-module_two .two-part {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 50px 105px;
    align-items: flex-start;
}

.reusable-module_two .image-part {
    width: 52%;
    position: relative;
}

.reusable-module_two .text-part {
    width: 38.75%;
    padding-right: 40px;
    position: relative;
}

.reusable-module_two .text-part .punchline.vertical {
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 4px;
    position: absolute;
    left: -65px;
    top: 10px;
    color: var(--color-black);
    text-transform: uppercase;
}

.reusable-module_two.is-reverse .two-part {
    flex-direction: row;
}

.approach-list {
    width: 392px;
}

.approach-list li {
    font-size: 14px;
    padding: 27px 0;
    color: var(--color-black);
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid #898989;
}

.reusable-module_two .line-gray {
    width: 80px;
    height: 54px;
    position: absolute;
    right: 0;
    top: -54px;
}

.reusable-module_two .line-gray .line1 {
    height: 2px;
    width: 0;
    background: var(--color-line);
    position: absolute;
    left: 0;
    top: 0;
    transition: 2s ease-in-out width;
    transition-delay: .65s;
}

.reusable-module_two.line-animated .line-gray .line1 {
    width: 5000%;
}

.reusable-module_two .line-gray .line2 {
    height: 0;
    width: 2px;
    background: var(--color-line);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .65s ease-in-out height;
}

.reusable-module_two.line-animated .line-gray .line2 {
    height: 100%;
}

.reusable-module_two .line-blue {
    width: 400px;
    height: calc(100% + 245px);
    position: absolute;
    right: 0;
    top: -245px;
}

.reusable-module_two .line-blue .line3 {
    height: 2px;
    width: 0;
    background: var(--color-blue_var1);
    position: absolute;
    left: calc(100% + 44px);
    top: 0;
    transition: 2s ease-in-out width;
}

.reusable-module_two.line-animated .line-blue .line3 {
    width: 1500%;
}

.reusable-module_two .line-blue .line2 {
    height: 2px;
    width: 0;
    background: var(--color-blue_var1);
    position: absolute;
    right: -44px;
    bottom: -44px;
    transition: .65s width ease-in-out;
    transition-delay: 1s;
}

.reusable-module_two.line-animated .line-blue .line2 {
    width: 100%;
}

.reusable-module_two .line-blue .line1 {
    height: 0;
    width: 2px;
    background: var(--color-blue_var1);
    position: absolute;
    right: -44px;
    top: 0;
    transition: 1s ease-in-out height;
}

.reusable-module_two.line-animated .line-blue .line1 {
    height: calc(100% + 44px);
}

.reusable-module_two.is-reverse .line-blue {
    left: 0;
    right: inherit;
}

.reusable-module_two.is-reverse .line-blue .line1 {
    left: -44px;
    right: inherit;
}

.reusable-module_two.is-reverse .line-blue .line2 {
    left: -44px;
    right: inherit;
}

.reusable-module_two.is-reverse .line-blue .line3 {
    left: calc(-1500% - 44px);
    right: inherit;
}

.reusable-module_two.is-reverse .line-gray {
    /* left: 0; */
    right: inherit;
}

.reusable-module_two.is-reverse .line-gray .line2 {
    left: inherit;
    right: 0;
}

.reusable-module_two.is-reverse .line-gray .line1 {
    left: inherit;
    right: 0;
}

/* Resuable Module 3 Start */
.reusable-module_three {
    background: var(--color-blue);
    padding: 100px 0 98px;
    border-bottom: 4px solid var(--color-blue_var1);
    position: relative;
}

.reusable-module_three:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: var(--color-white);
    height: 1px;
}

.reusable-module_three .two-part {
    display: flex;
}

.reusable-module_three .title-part {
    width: 35.5%;
}

.reusable-module_three .title-part h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: var(--font-medium);
    color: var(--color-white);
}

.reusable-module_three .text-part {
    width: 44.6%;
    padding-left: 68px;
    position: relative;
    padding-top: 10px;
}

.reusable-module_three .text-part .btn {
    min-width: 158px;
    text-align: center;
}

.reusable-module_three .text-part:before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--color-white);
    left: 0;
    top: 0;
}

.reusable-module_three p {
    color: var(--color-white);
    margin-bottom: 25px;
}

.reusable-module_three-vector {
    position: absolute;
    right: 0;
    bottom: -6px;
}


/* Resuable Module 3 End */

/* project_block Start */
.project_block {
    padding: 125px 0;
    overflow: hidden;
}

.project_block .title-part {
    position: relative;
}

.project_block .line-blue {
    width: 80px;
    height: 54px;
    position: absolute;
    right: 44px;
    top: -54px;
}

.project_block .line-blue .line1 {
    height: 2px;
    width: 0;
    background: var(--color-blue_var1);
    position: absolute;
    left: 0;
    top: 0;
    transition: 2s ease-in-out width;
    transition-delay: .65s;
}

.project_block.line-animated .line-blue .line1 {
    width: 5000%;
}

.project_block .line-blue .line2 {
    height: 0;
    width: 2px;
    background: var(--color-blue_var1);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .65s ease-in-out height;
}

.project_block.line-animated .line-blue .line2 {
    height: 100%;
}

.project_block .line-gray {
    width: 54px;
    height: 100%;
    position: absolute;
    right: 0;
    top: -125px;
}

.project_block .line-gray .line1 {
    height: 2px;
    width: 0;
    background: var(--color-line);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .65s ease-in-out width;
}

.project_block.line-animated .line-gray .line1 {
    width: 100%;
}

.project_block .line-gray .line2 {
    height: 0;
    width: 2px;
    background: var(--color-line);
    position: absolute;
    left: 52px;
    bottom: 0;
    transition: 1s ease-in-out height;
    transition-delay: .65s;
}

.project_block.line-animated .line-gray .line2 {
    height: 100%;
}

.project_block .punchline.vertical {
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 4px;
    position: absolute;
    left: -65px;
    top: 0;
    text-transform: uppercase;
    color: var(--color-black);
}

.project_block .project_block_inner {
    padding-right: 44px;
    padding-left: 108px;
    position: relative;
}

.project-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-list-grid .lpart {
    width: calc(35% - 10px);
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.project-list-grid .rpart {
    width: calc(65% - 10px);
}

.project-list-grid .project-card {
    font-size: 0;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.project-list-grid .project-card .project-image {
    position: relative;
}

.project-list-grid .project-card .project-image .image-hover {
    opacity: 0.8;
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(2, 15, 52, .7) 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: .35s all ease-in-out;
}

.project-list-grid .project-card:hover .project-image .image-hover {
    background: transparent;
}

.project-list-grid .project-card .project-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.624/1;
}

.project-list-grid .rpart .project-card .project-image img {
    aspect-ratio: 1.477 / 1;
}

.project-list-grid .project-card .project-details {
    position: absolute;
    bottom: -82px;
    left: 0;
    right: 0;
    z-index: 8;
    padding: 32px;
    transition: .35s all ease-in-out;
}

.project-list-grid .project-card:hover .project-details {
    bottom: 0;
}

.project-list-grid .project-card .project-details .project-category {
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white);
    display: block;
    margin-bottom: 5px;
}

.project-list-grid .project-card .project-details h4 {
    font-size: 28px;
    line-height: 40px;
    font-weight: var(--font-medium);
    color: var(--color-white);
}

.project-list-grid .project-card .project-details .btn {
    font-size: 14px;
    width: 156px;
    text-align: center;
    margin-top: 25px;
}

/* project_block End */

/* Footer Main */
.footer-main {
    border-top: 4px solid var(--color-blue_var1);
    background: var(--color-blue);
    position: relative;
}

.footer-main:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background: var(--color-white);
    height: 1px;
}

.footer-inner {
    padding: 0 44px 0 108px;
    display: flex;
    flex-direction: column;
}

.footer-main .footer-top {
    padding: 55px 0 30px 0;
    display: flex;
    align-items: flex-start;
}

.footer-top .left-part {
    display: flex;
    width: 50%;
    align-items: center;
}

.footer-top .left-part .logo-and-social {
    padding-right: 80px;
}

.footer-top .left-part .social-list {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.footer-top .left-part .social-list li img {
    height: 22px;
    transition: .35s all ease-in-out;
}

.footer-top .left-part .social-list li a:hover img {
    opacity: 0.7;
}

.footer-top .left-part .innovation-box {
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 2px solid var(--color-white);
}

.footer-top .left-part .innovation-box h4 {
    font-size: 28px;
    line-height: 40px;
    font-weight: var(--font-medium);
    color: var(--color-white);
    margin-bottom: 25px;
}

.footer-top .left-part .innovation-box h4 span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: var(--font-light);
    display: block;
    margin-bottom: 5px;
}

.footer-top .left-part .innovation-box .btn {
    font-size: 14px;
}

.footer-top .left-part .innovation-box .btn.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-blue_var1);
}

.footer-top .right-part {
    display: flex;
    width: 50%;
    gap: 0 100px;
    padding-left: 70px;
}

.footer-top .right-part .office-number-part ul li {
    color: var(--color-white);
    font-size: 15px;
    line-height: 28px;
    font-weight: var(--font-normal);
}

.footer-top .right-part .office-number-part ul li a {
    color: var(--color-white);
}

.footer-top .right-part .office-number-part ul li a:hover {
    opacity: 0.8;
}

.footer-top .right-part .menu-part ul li a {
    color: var(--color-white);
    font-size: 15px;
    line-height: 28px;
    font-weight: var(--font-normal);
}

.footer-top .right-part .menu-part ul li a:hover {
    opacity: 0.8;
}

.footer-btm {
    padding: 30px 0;
    display: flex;
    gap: 17px;
}

.footer-btm p {
    font-size: 14px;
    font-weight: var(--font-normal);
    color: var(--color-white);
}

.footer-btm .link-list {
    display: flex;
    gap: 15px;
}

.footer-btm .link-list li,
.footer-btm .link-list li a {
    font-size: 14px;
    font-weight: var(--font-normal);
    color: var(--color-white);
}

.footer-btm .link-list li a:hover {
    opacity: .8;
}



/* +++++++++++++++++++++++++++ Sub Pages ++++++++++++++++++++++++++++ */

/* About Page Start */
.hero-banner_main.subbanner .hero-banner_text {
    bottom: 90px;
}

/* Timeline Start */
.block-timeline {
    padding: 355px 0 150px;
    overflow: hidden;
    background-color: var(--color-light);
    margin-top: -215px;
    position: relative;
}

.block-timeline_inner {
    padding-left: 108px;
    padding-right: 44px;
}

.block-timeline .title-part {
    margin-bottom: 40px;
}

.block-timeline .title-part .punchline {
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.block-timeline .title-part h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: var(--font-medium);
    color: var(--color-title);
    margin-bottom: 20px;
}

.block-timeline__slider {
    padding-right: 45px;
    position: relative;
}

.block-timeline__year-slider {
    padding-left: 50px;
    padding-right: 50px;
}

.block-timeline .line_one {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 376px;
    top: -334px;
}

.block-timeline .line_one .line1 {
    position: absolute;
    right: -50px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue_var1);
    transition: 1s width ease-in-out;
    transition-delay: .65s;
}

.block-timeline.line-animated .line_one .line1 {
    width: calc(100% + 50px);
}

.block-timeline .line_one .line2 {
    position: absolute;
    right: -50px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-blue_var1);
    transition: .65s height ease-in-out;
}

.block-timeline.line-animated .line_one .line2 {
    height: 100%;
}

.block-timeline .line_one .line3 {
    position: absolute;
    left: calc(100% + 50px);
    top: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue_var1);
    transition: 2.5s width ease-in-out;
}

.block-timeline.line-animated .line_one .line3 {
    width: 2000%;
}

.block-timeline__year-slider .block-timeline__year-item h6 {
    font-size: 28px;
    font-weight: var(--font-light);
    color: var(--color-black);
}

.block-timeline__year-slider .block-timeline__year-item.slick-current h6 {
    font-weight: var(--font-medium);
    color: var(--color-blue_var1);
}

.block-timeline__year-slider .slick-arrow:before {
    display: none;
}

.block-timeline__year-slider .slick-arrow {
    width: 16px;
    height: 23px;
    transition: .35s all ease-in-out;
}

.block-timeline__year-slider .slick-arrow:hover {
    opacity: .8;
}

.block-timeline__year-slider .slick-prev {
    background: url(../images/left-angle.svg) center center no-repeat;
    background-size: auto 23px;
    left: 0;
}

.block-timeline__year-slider .slick-next {
    background: url(../images/right-angle.svg) center center no-repeat;
    background-size: auto 23px;
    right: 0;
}

.block-timeline__detail-slider {
    padding-top: 20px;
}

.block-timeline__detail-slider .block-timeline__detail-inner {
    display: flex;

}

.block-timeline__detail-slider .block-timeline__detail-copy {
    width: 60%;
    padding-right: 50px;
}

.block-timeline__detail-slider .block-timeline__detail-img {
    width: 40%;
    padding-top: 40px;
}

.timeline__list {
    max-width: 620px;
    padding-left: 125px;
    position: relative;
    padding-top: 56px;
}

.timeline__list:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    left: 84px;
    background: var(--color-blue_var1);
}

.timeline__list:after {
    content: '';
    position: absolute;
    top: 0;
    width: 66px;
    height: 4px;
    left: 49px;
    background: var(--color-blue_var1);
}

.timeline__list li {
    padding-bottom: 42px;
    position: relative;
}

.timeline__list li:before {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -40px;
    border-width: 10px 0 10px 16px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-blue_var1);
}

/* Timeline End */

/* Gallery Module Start */
.gallery-module {
    padding: 140px 0 90px;
    background: var(--color-light);
}

.block-module_inner {
    padding-left: 108px;
    padding-right: 44px;
}

.gallery__slider {
    padding-bottom: 60px;
}

.gallery__slider .gallery-item {
    padding-right: 1px;
    line-height: 1;
    font-size: 0;
}

.gallery__slider .gallery-item img {
    width: 100%;
    aspect-ratio: 1.06 / 1;
}

.gallery-module .custom-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gallery-module .slick-next,
.gallery-module .slick-prev {
    position: inherit;
    width: 54px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue_var1);
    margin: 0;
    transform: none;
}

.gallery-module .slick-next img,
.gallery-module .slick-prev img {
    width: 7px;
}

.gallery-module .slick-prev {
    margin-right: -1px;
    border-radius: 2px 0 0 2px;
}

.gallery-module .slick-next {
    margin-right: -1px;
    border-radius: 0 2px 2px 0;
}

.gallery-module .slick-next:before,
.gallery-module .slick-prev:before {
    display: none;
}

/* Gallery Module End */

/* Accordion Module Start */
.accordion-module {
    padding: 135px 0 105px;
}

.accordion_inner {
    max-width: 1260px;
    margin: 0 auto;
}

.accordion-module_title {
    max-width: 1040px;
    margin-bottom: 20px;
}

.accordion-module_title h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: var(--font-medium);
    color: var(--color-title);
    margin-bottom: 10px;
}

.block-accordion__listing {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.block-accordion__item h3 {
    padding: 30px 100px 30px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='26' height='26%0A' x='0' y='0' viewBox='0 0 512.011 512.011' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M505.755 123.592c-8.341-8.341-21.824-8.341-30.165 0L256.005 343.176 36.421 123.592c-8.341-8.341-21.824-8.341-30.165 0s-8.341 21.824 0 30.165l234.667 234.667a21.275 21.275 0 0 0 15.083 6.251 21.275 21.275 0 0 0 15.083-6.251l234.667-234.667c8.34-8.341 8.34-21.824-.001-30.165z' fill='%23000000' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 38px) 50%;
    background-size: 28px;
    cursor: pointer;
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.block-accordion__item-content {
    padding: 30px 50px 20px 20px;
    max-width: 1180px;
}

.block-accordion__item.active h3,
.block-accordion__item h3:hover {
    color: var(--color-blue_var1);
}

.block-accordion__item.active h3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='26' height='26' x='0' y='0' viewBox='0 0 512.011 512.011' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(-1.8369701987210297e-16,-1,1,-1.8369701987210297e-16,-0.0000553131103515625,512.011236190796)'%3E%3Cpath d='M505.755 123.592c-8.341-8.341-21.824-8.341-30.165 0L256.005 343.176 36.421 123.592c-8.341-8.341-21.824-8.341-30.165 0s-8.341 21.824 0 30.165l234.667 234.667a21.275 21.275 0 0 0 15.083 6.251 21.275 21.275 0 0 0 15.083-6.251l234.667-234.667c8.34-8.341 8.34-21.824-.001-30.165z' fill='%23112a96' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.block-accordion__item-content .two-part_text {
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 100px;
}

.block-accordion__item-content .one-part_text {
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

.block-accordion__item-content h5 {
    font-size: 22px;
    font-weight: var(--font-medium);
    color: var(--color-blue_var1);
    margin-bottom: 10px;
}

.block-accordion__item-content ul li {
    padding-bottom: 10px;
}

.block-accordion__item-content ul li h6 {
    font-weight: var(--font-medium);
    font-size: 18px;
}

.block-accordion__item-content .apply-btn {
    margin-top: 15px;
    min-width: 158px;
    text-align: center;
    font-size: 14px;
}

/* Accordion Module End */

/* Featured Module Start */
.featured-module {
    padding: 95px 0 70px;
    background: var(--color-light);
    position: relative;
    overflow: hidden;
}

.featured-module .brand-background {
    position: absolute;
    bottom: -17px;
    right: 0;
}

.featured-module_inner {
    padding-left: 108px;
}

.featured-module .text-part .punchline.vertical {
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 4px;
    position: absolute;
    left: -65px;
    top: 10px;
    text-transform: uppercase;
}

.featured-module .two-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 105px;
    align-items: flex-start;
}

.featured-module .text-part {
    width: 32.75%;
    padding-right: 0;
    position: relative;

}

.featured-module .text-part h2 {
    color: var(--color-black);
}

.featured-module .text-part p:not(:last-child) {
    margin-bottom: 25px;
}

.featured-module .text-part .recreation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.featured-module .text-part .recreation-list li {
    padding-left: 14px;
    position: relative;
}

.featured-module .text-part .recreation-list li:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-body);
    position: absolute;
    left: 0;
    top: 8px;
}

.featured-module .image-part {
    width: 53.5%;
    position: relative;
    padding-left: 50px;
}

.featured-module .image-part .punchline.vertical {
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 4px;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-black);
    text-transform: uppercase;
}

.featured-module .image-part .marketsleader-card {
    max-width: 405px;
    position: relative;
    overflow: hidden;
}

.featured-module .image-part .marketsleader-card img {
    width: 100%;
    aspect-ratio: 1 / 1.16;
}

.featured-module .image-part .marketsleader-card .card-details {
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(2, 15, 52, 1) 100%);
    padding: 32px 24px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: -170px;
    left: 0;
    right: 0;
    transition: .35s all ease-in-out;
}

.featured-module .image-part .marketsleader-card:hover .card-details {
    bottom: 0;
}

.featured-module .card-details .person-name {
    font-size: 28px;
    font-weight: var(--font-medium);
    color: var(--color-white);
    margin: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.featured-module .card-details .person-designation {
    font-size: 16px;
    font-weight: var(--font-light);
    color: var(--color-white);
    letter-spacing: 4px;
    line-height: 1;
    margin: 0;
}

.featured-module .card-details .btn {
    font-size: 14px;
    width: 158px;
    text-align: center;
    margin-top: 20px;
}

.featured-module .card-details .btn:hover {
    background: var(--color-white);
    color: var(--color-blue_var1);
}

/* Featured Module End */
/* About Page End */


/* LeaderShip Start */

.leadership-page .custom-container {
    max-width: 1675px;
    margin: 0 auto;
}

.leadership-page .header-main .header_inner {
    padding-left: 0;
    padding-right: 0;
}

.leadership-block-main {
    padding: 116px 0 60px
}

.leadership-block-main .title-part {
    padding-bottom: 50px;
}

.leadership-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.leadership-list .leadership-card {
    width: 100%;
    aspect-ratio: 1 / 1.179;
    position: relative;
    background: #949599;
    line-height: 1;
    font-size: 0;
    overflow: hidden;
}

.leadership-list .leadership-card figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-list .leadership-card .card-details {
    position: absolute;
    z-index: 2;
    bottom: -80px;
    left: 0;
    right: 0;
    padding: 28px 30px;
    transition: .35s all ease-in-out;
}

.leadership-list .leadership-card:hover .card-details {
    bottom: 0;
}

.leadership-list .leadership-card .card-details .person-name {
    color: var(--color-white);
    font-size: 28px;
    line-height: 1;
    font-weight: var(--font-medium);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.leadership-list .leadership-card .card-details .person-designation {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--font-light);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.leadership-list .leadership-card .card-details .btn {
    margin-top: 20px;
    min-width: 157px;
    text-align: center;
    font-size: 14px;
}

.leadership-list .leadership-card .card-details .btn:hover {
    background: var(--color-white);
    color: var(--color-blue_var1);
}

.leadership-block-list-wrapper .loadmore-btn-div {
    padding-top: 65px;
    text-align: center;
}

.leadership-block-list-wrapper .loadmore-btn-div .btn {
    text-align: center;
    min-width: 157px;
    font-size: 14px;
}

/* Custom Modal */
.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 1);
}

.custom-modal-box {
    position: relative;
    z-index: 10;
    /* Move modal above overlay */
    max-height: 100vh;
    overflow-y: auto;
    padding: 0 30px;
}

.custom-modal-box-inner {
    position: relative;
    max-width: 1340px;
    background: #fff;
    margin: 0 auto;
    padding: 80px 0;
    border-radius: 10px;
    z-index: 2;
}

.custom-modal-box-inner .punchline {
    margin: 0;
    writing-mode: vertical-rl;
    position: absolute;
    left: -70px;
    top: 80px;
}

.close-modal {
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 0;
    line-height: 1;
    background: transparent;
    transition: .35s all ease-in-out;
}

.close-modal:hover {
    opacity: .8;
}

.leadership-details-wrapper {
    display: flex;
}

.leadership-details-wrapper .lpart {
    width: 402px;
}

.leadership-details-wrapper .leadership-card {
    width: 100%;
    aspect-ratio: 1 / 1.179;
    position: relative;
    background: #949599;
    line-height: 1;
    font-size: 0;
    overflow: hidden;
}

.leadership-details-wrapper .leadership-card figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-details-wrapper .details-list {
    padding-top: 20px;
}

.leadership-details-wrapper .details-list li {
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
}

.leadership-details-wrapper .details-list li:last-child {
    padding-bottom: 0;
}

.leadership-details-wrapper .details-list li label {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--color-black);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.leadership-details-wrapper .rpart {
    width: calc(100% - 402px);
    padding-left: 88px;
}

.leadership-details-wrapper .rpart .text-header {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.leadership-details-wrapper .rpart .text-header .title-part {
    padding-bottom: 0;
}

.leadership-details-wrapper .rpart .text-header span {
    font-size: 30px;
    color: var(--color-black);
    font-weight: var(--font-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: block;
    padding-top: 10px;
}

.leadership-details-wrapper .rpart p:not(:last-child) {
    margin-bottom: 30px;
}

/* LeaderShip End */

/* News Start */
.news-page .custom-container {
    max-width: 1675px;
    margin: 0 auto;
}

.news-page .header-main .header_inner {
    padding-left: 0;
    padding-right: 0;
}

.news-list-main {
    padding: 60px 0 100px;
}

.news-list-main .title-part {
    padding-bottom: 50px;
}

.news-list-filter {
    padding: 35px 0;
    background: rgba(188, 188, 187, .25);
}

.news-list-filter .filter-list {
    display: flex;
    gap: 0 48px;
}

.news-list-filter .filter-list li a {
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 4px;
}

.news-list-filter .filter-list li.active a,
.news-list-filter .filter-list li a:hover {
    color: var(--color-blue_var1);
}

.news-list-wrapper {
    padding: 60px 0 0;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 68px 22px;
}

.news-list .news-card figure {
    width: 100%;
    aspect-ratio: 1.29 / 1;
    position: relative;
    background: #949599;
    line-height: 1;
    font-size: 0;
    overflow: hidden;
}

.news-list .news-card figure:before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(2, 15, 52, .3);
    height: 0;
    transition: .35s all ease-in-out;

}

.news-list .news-card figure:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 1;
    width: 0;
    background: var(--color-blue_var1);
    transition: .35s all ease-in-out;
}

.news-list .news-card:hover figure:before {
    height: 100%;
}

.news-list .news-card:hover figure:after {
    width: 100%
}

.news-list .news-card figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .news-card .card-details {
    padding-top: 22px;
}

.news-list .news-card .card-details .news-category {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--color-blue_var1);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.news-list .news-card .card-details .card-title {
    font-size: 24px;
    color: var(--color-black);
    line-height: 30px;
    font-weight: var(--font-medium);
    margin-bottom: 25px;
}

.news-list .news-card .card-details .card-title a {
    color: var(--color-black);
}

.news-list .news-card .card-details .card-title a:hover {
    color: var(--color-blue_var1);
}

.news-list .news-card .card-details .btn {
    min-width: 157px;
    text-align: center;
    font-size: 14px;
}

.news-list-wrapper .loadmore-btn-div {
    padding-top: 130px;
    text-align: center;
}

.loadmore-btn-div .btn {
    min-width: 157px;
    text-align: center;
    font-size: 14px;
}

/* News Details page */
.news-details-page .custom-container {
    max-width: 1675px;
    margin: 0 auto;
}

.news-details-page .header-main .header_inner {
    padding-left: 0;
    padding-right: 0;
}

.news-details-page .content-block .custom-container {
    max-width: 1140px;
    margin: 0 auto;
}

.news-details-page .title-part {
    margin-bottom: 30px;
}

.news-details-page .title-part .category {
    margin-bottom: 10px;
}

.news-details-main {
    padding: 85px 0;
    position: relative;
}

.news-details-main:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: var(--color-light);
    z-index: -1;
    height: 435px;
}

.news-details-main .news-image-main {
    font-size: 0;
    line-height: 1;
    margin-bottom: 30px;
}

.news-details-main .news-image-main img {
    width: 100%;
    aspect-ratio: 1.965 / 1;
}

.news-details-main .news-text-part h2 {
    margin-bottom: 28px;
}

.news-details-main .news-text-part h2 span {
    font-weight: var(--font-normal);
    display: block;
}

.news-details-main .news-text-part p {
    margin-bottom: 24px;
}

.news-details-main .news-text-part p:last-child {
    margin-bottom: 0;
}

.news-details-main .news-text-part blockquote {
    font-size: 28px;
    line-height: 38px;
    color: var(--color-black);
    max-width: 655px;
    position: relative;
    padding: 15px 0 15px 28px;
    margin: 20px 0 55px;
}

.news-details-main .news-text-part blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: var(--color-blue_var1);
}

.news_gallery_main {
    padding-bottom: 55px;
}

.news_gallery {
    padding-bottom: 38px;
}

.news_gallery .gallery-item {
    padding-right: 1px;
    line-height: 1;
    font-size: 0;
}

.news_gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 1.06 / 1;
}

.news_gallery_main .custom-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.news_gallery_main .slick-next,
.news_gallery_main .slick-prev {
    position: inherit;
    width: 54px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue_var1);
    margin: 0;
    transform: none;
}

.news_gallery_main .slick-next img,
.news_gallery_main .slick-prev img {
    width: 7px;
}

.news_gallery_main .slick-prev {
    margin-right: -1px;
    border-radius: 2px 0 0 2px;
}

.news_gallery_main .slick-next {
    margin-right: -1px;
    border-radius: 0 2px 2px 0;
}

.news_gallery_main .slick-next:before,
.news_gallery_main .slick-prev:before {
    display: none;
}

.news-details-main .next-prev-streep {
    display: flex;
    margin-top: 50px;
}

.news-details-main .next-prev-streep .btn {
    border-radius: 0;
    background: transparent;
    height: 40px;
    line-height: 1;
    font-size: 0;
    padding: 0 20px;
    border: 1px solid var(--color-blue_var1);
    margin-right: -1px;
}

.news-details-main .next-prev-streep .btn img {
    width: 8px;
}

.news-details-main .next-prev-streep .btn.close-btn img {
    width: 12px;
}

.news-details-main .next-prev-streep .btn.next-btn {
    border-radius: 0 2px 2px 0;
}

.news-details-main .next-prev-streep .btn.prev-btn {
    border-radius: 2px 0 0 2px;
}

/* End Start */

/* Project Page Start */
.project-list-page .custom-container,
.project-list-filter {
    max-width: 1675px;
    margin: 0 auto;
}

.project-list-page .header-main .header_inner {
    padding-left: 0;
    padding-right: 0;
}

.project-list-main {
    padding: 60px 0 100px;
}

.project-list-main .title-part {
    padding-bottom: 50px;
}

.project-list-filter {
    padding: 35px 30px;
    background: rgba(188, 188, 187, .25);
}

.project-list-wrapper {
    padding: 60px 0 0;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-list .project-card {
    width: 100%;
    aspect-ratio: 1.66 / 1;
    position: relative;
    background: #949599;
    line-height: 1;
    font-size: 0;
    overflow: hidden;
}

.project-list .project-card figure:before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(2, 15, 52, .5);
    height: 100%;
    transition: .35s all ease-in-out;
}

.project-list .project-card:hover figure:before {
    top: 100%;
}

.project-list .project-card figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0%);
    transition: .35s all ease-in-out;
}

.project-list .project-card:hover figure img {
    filter: saturate(100%);
}

.project-list .project-card .card-details {
    position: absolute;
    z-index: 2;
    bottom: -80px;
    left: 0;
    right: 0;
    padding: 28px 30px;
    transition: .35s all ease-in-out;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 1) 100%);
}

.project-list .project-card:hover .card-details {
    bottom: 0;
}

.project-list .project-card .card-details .project-name {
    color: var(--color-white);
    font-size: 28px;
    line-height: 1;
    font-weight: var(--font-medium);
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-list .project-card .card-details .category {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--font-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.project-list .project-card .card-details .btn {
    margin-top: 20px;
    min-width: 157px;
    text-align: center;
    font-size: 14px;
}

.project-list .project-card .card-details .btn:hover {
    background: var(--color-white);
    color: var(--color-blue_var1);
}

.project-list-wrapper .loadmore-btn-div {
    padding-top: 65px;
    text-align: center;
}

.project-list-wrapper .loadmore-btn-div .btn {
    text-align: center;
    min-width: 157px;
    font-size: 14px;
}

/* Project details */
.project-detail-page .custom-container {
    max-width: 1675px;
    margin: 0 auto;
}

.project-detail-page .header-main .header_inner {
    padding-left: 0;
    padding-right: 0;
}

.project-detail-page .hero-banner_text {
    max-width: 1675px;
}

.project-detail-page .hero-banner_text h1 {
    padding-left: 0;
}

.project-detail-page .hero-banner_text .punchline {
    color: var(--color-white);
}


.project_gallery_main {
    padding: 65px 0;
}

.project_gallery {
    padding-bottom: 20px;
}

.project_gallery .gallery-item {
    padding-right: 1px;
    line-height: 1;
    font-size: 0;
}

.project_gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 1.06 / 1;
}

.project_gallery_main .custom-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.project_gallery_main .slick-next,
.project_gallery_main .slick-prev {
    position: inherit;
    width: 54px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue_var1);
    margin: 0;
    transform: none;
}

.project_gallery_main .slick-next img,
.project_gallery_main .slick-prev img {
    width: 7px;
}

.project_gallery_main .slick-prev {
    margin-right: -1px;
    border-radius: 2px 0 0 2px;
}

.project_gallery_main .slick-next {
    margin-right: -1px;
    border-radius: 0 2px 2px 0;
}

.project_gallery_main .slick-next:before,
.project_gallery_main .slick-prev:before {
    display: none;
}

/* .news-details-main .next-prev-streep {
    display: flex;
    margin-top: 50px;
}
.news-details-main .next-prev-streep .btn {
    border-radius: 0;
    background: transparent;
    height: 40px;
    line-height: 1;
    font-size: 0;
    padding: 0 20px;
    border: 1px solid var(--color-blue_var1);
    margin-right: -1px;
}
.news-details-main .next-prev-streep .btn img {
    width: 8px;
}
.news-details-main .next-prev-streep .btn.close-btn img {
    width: 12px;
}
.news-details-main .next-prev-streep .btn.next-btn {
    border-radius: 0 2px 2px 0;
}
.news-details-main .next-prev-streep .btn.prev-btn {
    border-radius: 2px 0 0 2px;
} */

.project-content_wrapper {
    padding: 105px 0 15px;
}

.project-content_wrapper .two-part {
    display: flex;
    flex-direction: row;
}

.project-content_wrapper .two-part .left-part {
    width: 30%;
}

.project-content_wrapper .two-part .right-part {
    width: 70%;
    padding-right: 200px;
    padding-left: 30px;
}

.project-content_wrapper .two-part .right-part h2 {
    margin-bottom: 25px;
}

.project-content_wrapper .two-part .right-part p {
    margin-bottom: 25px;
}

.project-content_wrapper .two-part .right-part h5 {
    font-weight: var(--font-medium);
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
}

.project-content_wrapper .two-part .right-part ul li {
    position: relative;
    padding-bottom: 8px;
    padding-left: 17px;
}

.project-content_wrapper .two-part .right-part ul li:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-body);
}

.project-content_wrapper .two-part .left-part .punchline {
    margin-bottom: 40px;
}

.project-content_wrapper .project-details-list li {
    line-height: 30px;
}

.project-content_wrapper .project-details-list li label {
    color: var(--color-black);
    font-weight: var(--font-medium);
}

.project-content_wrapper .project-details-list li.reference {
    margin-top: 30px;
}

.project-content_wrapper .project-details-list li.reference label {
    display: block;
}

.project-content-btm_wrapper {
    padding: 100px 0;
    background: var(--color-light);
}

.project-content-btm_wrapper .two-part {
    display: flex;
    flex-direction: row;
}

.project-content-btm_wrapper .two-part .text-part {
    width: 50%;
    padding-right: 75px;
}

.project-content-btm_wrapper .two-part .right-part {
    width: 50%;
    padding-left: 190px;
}

.project-content-btm_wrapper .right-part img {
    width: 100%;
    aspect-ratio: 1 / 1.275;
    object-fit: cover;
    object-position: center;
}

.project-content-btm_wrapper .block-accordion-listing {
    /* border-top: 1px solid rgba(0, 0, 0, .3); */
    margin-top: 28px;
}

.project-content-btm_wrapper .block-accordion__item h3 {
    font-weight: var(--font-light);
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .3);
    border-bottom: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='9.875' x2='20' y2='9.875' stroke='black' stroke-opacity='0.4' stroke-width='2.25'/%3E%3Cline x1='9.875' y1='20' x2='9.875' stroke='black' stroke-opacity='0.4' stroke-width='2.25'/%3E%3C/svg%3E%0A");
    background-position: right 50%;
    background-size: 20px;
}

.project-content-btm_wrapper .block-accordion__item.active h3 {
    color: var(--color-black);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='3' viewBox='0 0 20 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='1.125' x2='20' y2='1.125' stroke='black' stroke-width='2.25'/%3E%3C/svg%3E%0A");
}

.project-content-btm_wrapper .block-accordion__item ul.list {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
    width: 70%;
}

.project-content-btm_wrapper .block-accordion__item .block-accordion__item-content {
    padding: 0 0 40px 0;
}

.project-content-btm_wrapper .block-accordion__item ul.list li {
    min-width: 168px;
    padding-bottom: 8px;
    position: relative;
    padding-left: 17px;
}

.project-content-btm_wrapper .block-accordion__item ul.list li:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-body);
}


.project-details-streep .next-prev-streep {
    display: flex;
    padding: 35px 0 85px;
    justify-content: center;
}

.project-details-streep .next-prev-streep .btn {
    border-radius: 0;
    background: transparent;
    height: 40px;
    line-height: 1;
    font-size: 0;
    padding: 0 20px;
    border: 1px solid var(--color-blue_var1);
    margin-right: -1px;
}

.project-details-streep .next-prev-streep .btn img {
    width: 8px;
}

.project-details-streep .next-prev-streep .btn.close-btn img {
    width: 12px;
}

.project-details-streep .next-prev-streep .btn.next-btn {
    border-radius: 0 2px 2px 0;
}

.project-details-streep .next-prev-streep .btn.prev-btn {
    border-radius: 2px 0 0 2px;
}

/* Project Page End */

/* Responsive */

@media (max-width: 1790px) {
    .custom-container {
        max-width: 1550px;
    }

    .project-list-page .custom-container,
    .leadership-page .custom-container,
    .news-page .custom-container {
        max-width: 1550px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .project-list-filter {
        max-width: 1490px;
    }

    .project-list-filter .custom-container {
        padding-left: 0;
        padding-right: 0;
    }

    .news-details-page .custom-container {
        max-width: 1550px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .project-detail-page .custom-container {
        max-width: 1550px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .project-detail-page .hero-banner_text {
        max-width: 1550px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-banner_text {
        max-width: 1550px;
    }

    h1 {
        font-size: 72px;
        line-height: 86px;
    }

    .hero-manner_main .brand-logo {
        max-width: 620px;
    }

    .reusable-module_three .title-part {
        width: 35.3%;
    }

}

@media (max-width: 1680px) {

    h2,
    .h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .accordion-module_title h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .custom-container {
        max-width: 1170px;
    }

    .header-main .nav-main>ul>li {
        padding: 0 20px;
    }

    .header-main .header-btn {
        padding: 14px 40px;
    }

    .header-main .nav-main .header__logo img {
        max-width: 220px;
    }

    .header-main .nav-main>ul>li.has-children:after {
        left: calc(100% - 15px);
    }

    .footer-top .left-part .logo-and-social {
        padding-right: 30px;
    }

    .footer-top .left-part .innovation-box {
        padding-left: 30px;
    }

    .footer-top .left-part {
        width: 45%;
    }

    .footer-top .right-part {
        width: 55%;
        gap: 0 60px;
        padding-left: 50px;
    }

    .hero-banner_text {
        max-width: 1170px;
    }

    .hero-manner_main .brand-logo {
        max-width: 520px;
    }

    .reusable-module_title h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .reusable-module_two {
        margin-top: -55px;
        padding: 185px 0 112px;
    }

    .reusable-module_two .text-part {
        width: 41%;
    }

    .reusable-module_two .image-part {
        width: 50%;
    }

    .reusable-module_two .two-part {
        gap: 50px 90px;
    }

    .reusable-module_two .text-part {
        padding-right: 0;
    }

    .approach-list li {
        padding: 22px 0;
    }

    .reusable-module_three .title-part {
        width: 46%;
    }

    .reusable-module_three .text-part {
        width: 54%;
    }

    .reusable-module_three .title-part h2 {
        font-size: 46px;
        line-height: 52px;
    }

    .project-list-grid .lpart {
        width: calc(40% - 10px);
    }

    .project-list-grid .rpart {
        width: calc(60% - 10px);
    }

    .project-list-grid .rpart .project-card .project-image img {
        aspect-ratio: 1 / .85;
    }

    .project-list-grid .project-card .project-details h4 {
        font-size: 24px;
        line-height: 34px;
    }

    .project-list-grid .project-card .project-details .project-category {
        letter-spacing: 3px;
        font-size: 12px;
    }

    .project-list-grid .project-card .project-details {
        padding: 20px;
    }

    .reusable-module_one .btm-line {
        width: 275px;
        height: 300px;
    }

    .reusable-module_two .line-blue {
        width: 290px;
    }

    .reusable-module_one .top-line_two {
        width: 30vw;
    }

    .reusable-module_two .line-blue {
        top: -120px;
        height: calc(100% + 120px);
    }

    .block-timeline {
        padding: 112px 0;
        margin-top: 112px;
    }

    .block-timeline .line_one {
        height: 195px;
        top: -155px;
    }

    .gallery-module {
        padding: 120px 0;
    }

    .news_gallery {
        padding-bottom: 70px;
    }

    .accordion_inner {
        max-width: 100%;
        padding-left: 108px;
        padding-right: 44px;
    }

    .featured-module .two-part {
        gap: 50px;
    }

    .featured-module .text-part {
        width: 43%;
    }

    .featured-module .image-part {
        width: 52%;
    }

    .accordion-module {
        padding: 105px 0;
    }

    .block-accordion__item-content .two-part_text {
        gap: 50px;
    }

    .block-timeline.line-animated .line_one .line1 {
        width: calc(100% + 25px);
        right: -25px;
    }

    .block-timeline .line_one .line2 {
        right: -25px;
    }

    .block-timeline .line_one .line3 {
        left: calc(100% + 25px);
    }

    .custom-modal-box {
        padding: 0 20px;
    }

    .custom-modal-box-inner {
        padding-right: 80px;
        padding-left: 80px;
    }

    .custom-modal-box-inner .punchline {
        left: 0;
    }

    .leadership-list .leadership-card .card-details .person-name {
        font-size: 24px;
    }
}

@media(max-width:1540px) {
    .project-list-filter {
        max-width: 100%;
        margin: 0 30px;
    }

}

@media (max-width: 1455px) {
    .project-content-btm_wrapper .two-part .text-part {
        padding-right: 0;
    }

    .project-content-btm_wrapper .two-part .right-part {
        padding-left: 120px;
    }

    .project-content_wrapper .two-part .right-part {
        padding-right: 120px;
    }

    .project-content-btm_wrapper .block-accordion__item ul.list {
        width: 100%;
    }

    .project-content-btm_wrapper .block-accordion__item ul.list li {
        min-width: 180px;
    }
}

@media (max-width: 1199px) {

    h2,
    .h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .accordion-module_title h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .custom-container {
        max-width: 980px;
    }

    .header-main .header_inner {
        padding: 0 25px 0 25px;
    }

    .header-main .nav-main>ul>li {
        padding: 0 15px;
    }

    .header-main .header-btn {
        padding: 14px 30px;
    }

    .header-main .nav-main .header__logo img {
        max-width: 180px;
    }

    .header-main .nav-main {
        padding-right: 10px;
    }

    .header-main .nav-main>ul>li.has-children:after {
        left: calc(100% - 12px);
    }

    .footer-top .right-part {
        gap: 0 40px;
        padding-left: 50px;
    }

    .footer-top .right-part .menu-part {
        min-width: 110px;
    }

    .footer-main .footer-top {
        padding: 55px 0 0px 0;
    }

    .hero-banner_text {
        max-width: 980px;
    }

    .hero-banner_text h1 {
        padding-left: 39px;
        padding-right: 25px;
    }

    h1 {
        font-size: 66px;
        line-height: 80px;
    }

    .hero-banner_text {
        bottom: 85px;
    }

    .reusable-module_inner {
        padding-left: 44px;
        padding-right: 25px;
    }

    .reusable-module_one .two-part {
        gap: 50px 95px;
    }

    .reusable-module_one .text-part {
        padding-top: 30px;
    }

    .reusable-module_title h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .reusable-module_two .two-part {
        gap: 50px 95px;
    }

    .reusable-module_two .two-part {
        gap: 50px 82px;
    }

    .reusable-module_two .image-part {
        width: 47%;
    }

    .reusable-module_two .text-part {
        width: 44%;
    }

    .reusable-module_two {
        margin-top: -55px;
        padding: 185px 0 80px;
    }

    .reusable-module_two .text-part .punchline.vertical {
        left: -40px;
    }

    .reusable-module_three {
        padding: 80px 0;
        overflow: hidden;
    }

    .reusable-module_three .title-part h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .reusable-module_three .text-part {
        padding-left: 60px;
    }

    .project_block {
        padding: 90px 0;
    }

    .project_block .line-gray {
        width: 22px;
        right: 22px;
    }

    .project_block.line-animated .line-gray .line2 {
        left: 100%;
    }

    .project_block .line-blue {
        width: 60px;
        height: 35px;
        top: -35px;
    }

    .hero-banner_main .line_one {
        width: 26px;
    }

    .reusable-module_one .top-line_two {
        left: 24px;
    }

    .reusable-module_two .line-blue {
        width: 250px;
    }

    .reusable-module_two .line-blue .line1 {
        right: -16px;
    }

    .reusable-module_two .line-blue .line2 {
        right: -16px;
        bottom: -16px;
    }

    .reusable-module_two .line-blue .line3 {
        left: calc(100% + 14px);
    }

    .reusable-module_two.line-animated .line-blue .line1 {
        height: calc(100% + 16px);
    }

    .reusable-module_two .line-blue {
        top: -100px;
        height: calc(100% + 100px);
    }

    .featured-module_inner {
        padding-right: 44px;
    }

    .featured-module .image-part {
        width: calc(53% - 50px);
    }

    .gallery-module {
        padding: 90px 0;
    }

    .gallery-module .slick-next,
    .gallery-module .slick-prev {
        transform: none;
    }

    .gallery__slider {
        padding-bottom: 50px;
    }

    .accordion-module {
        padding: 90px 0;
    }

    .reusable-module_one.culture_module {
        padding-bottom: 100px;
    }

    .custom-modal-box-inner {
        padding: 50px;
    }

    .leadership-details-wrapper .rpart {
        padding-left: 50px;
    }

    .leadership-details-wrapper .details-list li {
        padding-bottom: 18px;
    }

    .custom-modal-box-inner .punchline {
        top: 50px;
    }

    .leadership-details-wrapper .lpart {
        width: 350px;
    }

    .leadership-details-wrapper .rpart {
        width: calc(100% - 350px);
    }

    .close-modal {
        width: 44px;
    }

    .leadership-block-main {
        padding: 95px 0 60px;
    }

    .punchline {
        margin-bottom: 10px;
    }

    .leadership-block-main .title-part {
        padding-bottom: 30px;
    }

    .leadership-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 54px 22px;
    }

    .news-list-wrapper .loadmore-btn-div {
        padding-top: 80px;
    }

    .news-list-main {
        padding: 60px 0;
    }

    .news-details-page .content-block .custom-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .project-content-btm_wrapper .two-part .right-part {
        padding-left: 70px;
    }

    .project-content_wrapper .two-part .right-part {
        padding-right: 0;
    }

    .project-list .project-card {
        aspect-ratio: 1.3 / 1;
    }

    .project-list-wrapper .loadmore-btn-div {
        padding-top: 60px;
    }

    .project-list-main {
        padding: 60px 0;
    }

    .header-main .nav-main>ul>li .megamenu {
        width: auto;
    }
}

@media (max-width: 991px) {

    h2,
    .h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .custom-container {
        max-width: 100%;
    }

    .header-main .header_inner {
        padding: 0 20px 0 20px;
    }

    .header-main {
        position: relative;
    }

    .header__navigation {
        display: block;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        z-index: 1024;
        background: var(--color-white);
    }

    .header-main .logo-and-toggle-btn {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .menu-toggle.mobile-show {
        display: flex;
    }

    .header-main .nav-main {
        padding: 0;
    }

    .header-main .nav-main>ul {
        flex-direction: column;
    }

    .header-main .nav-main>ul>li {
        padding: 0;
        border-bottom: 1px solid var(--color-blue_var1);
    }

    .header-main .nav-main>ul>li>a {
        padding: 12px 20px;
        display: block;
    }

    .header-main .nav-main>ul>li.has-children:after {
        display: none;
    }

    .header-main .nav-main>ul>li.has-children>a {
        padding-right: 60px;
    }

    .header-main .nav-main>ul>li .dropdown-open {
        display: block;
    }

    .header-main .nav-main>ul>li .dropdown-open:after {
        content: '+';
        background: transparent;
        width: 41px;
        height: 41px;
        left: inherit;
        right: 0;
        top: 0;
        border-left: 1px solid var(--color-blue_var1);
        font-size: 20px;
        color: var(--color-blue_var1);
        font-weight: var(--font-medium);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-main .nav-main>ul .dropdown-menu {
        position: static;
        border-radius: 0;
        border-top: 1px solid var(--color-blue_var1);
    }

    .header-main .nav-main>ul .dropdown-menu li a {
        font-size: 15px;
    }

    .header-main .nav-main>ul>li.mobile-show {
        display: block;
    }

    .header-main .header-btn {
        display: none;
    }

    .project_block .project_block_inner,
    .reusable-module_inner,
    .footer-inner {
        padding-right: 20px;
        padding-left: 64px;
    }

    .footer-main .footer-top {
        flex-wrap: wrap;
    }

    .footer-top .left-part {
        width: 100%;
    }

    .footer-top .right-part {
        width: 100%;
        padding-left: 0;
        padding-top: 55px;
        justify-content: space-between;
    }

    .reusable-module_one .two-part {
        gap: 50px 95px;
        flex-direction: column;
    }

    .reusable-module_two .two-part {
        gap: 50px 95px;
        flex-direction: column;
    }

    .reusable-module_one .image-part,
    .reusable-module_one .text-part {
        width: calc(100% - 100px);
        margin: 0 auto;
    }

    .reusable-module_one {
        padding: 90px 0;
    }

    .reusable-module_two {
        margin-top: 0;
        padding: 90px 0;
    }

    .reusable-module_two .image-part,
    .reusable-module_two .text-part {
        width: calc(100% - 100px);
        margin: 0 auto;
    }

    h1 {
        font-size: 54px;
        line-height: 68px;
    }

    .hero-banner_text {
        bottom: 65px;
    }

    .reusable-module_three .two-part {
        flex-direction: column;
    }

    .reusable-module_three .title-part {
        width: 100%;
    }

    .reusable-module_three .text-part {
        padding-left: 0;
        width: 100%;
    }

    .reusable-module_three .text-part:before {
        display: none;
    }

    .reusable-module_three {
        padding: 60px 0;
    }

    .reusable-module_three .title-part h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .project-list-grid {
        width: calc(100% - 100px);
        margin: 0 auto;
    }

    .project_block .punchline.vertical {
        left: 10px;
    }

    .project-list-grid .project-card .project-details h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .project-list-grid .project-card .project-details {
        padding: 15px;
    }

    .project-list-grid .project-card .project-details .btn {
        font-size: 14px;
        width: 135px;
        text-align: center;
        margin-top: 15px;
        padding: 12px 15px;
    }

    .project-list-grid .project-card .project-details {
        bottom: -60px;
    }

    .project-list-grid .project-card .project-image img {
        aspect-ratio: 1.424 / 1;
    }

    .project-list-grid .rpart .project-card .project-image img {
        aspect-ratio: 1 / .98;
    }

    .reusable-module_one .text-part {
        max-width: 100%;
    }

    .hero-banner_text h1 {
        padding-left: 108px;
        font-size: 45px;
        line-height: 60px;
    }

    .reusable-module_one .top-line_two {
        left: 50px;
        height: 415px;
    }

    .hero-banner_main .line_one {
        width: 52px;
    }

    .hero-banner_main .brand-logo {
        max-width: 550px;
    }

    .reusable-module_two .line-gray {
        top: -36px;
        height: 36px;
    }

    .reusable-module_two .line-blue {
        top: -60px;
        height: calc(100% + 60px);
    }

    .reusable-module_two .line-blue .line1 {
        right: -30px;
    }

    .reusable-module_two .line-blue .line2 {
        right: -30px;
        bottom: -30px;
    }

    .reusable-module_two .line-blue .line3 {
        left: calc(100% + 30px);
    }

    .reusable-module_two.line-animated .line-blue .line1 {
        height: calc(100% + 30px);
    }

    .project_block .line-gray {
        width: 36px;
        right: 36px;
    }

    .block-timeline {
        padding: 90px 0;
        margin-top: 0;
    }

    .reusable-module_one.culture_module {
        padding-bottom: 90px;
    }

    .featured-module .text-part {
        width: 100%;
    }

    .featured-module .two-part {
        justify-content: center;
    }

    .block-timeline__detail-slider .block-timeline__detail-inner {
        flex-wrap: wrap;
    }

    .block-timeline__detail-slider .block-timeline__detail-copy {
        width: 100%;
        padding-right: 0;
    }

    .block-timeline__detail-slider .block-timeline__detail-img {
        width: 100%;
    }

    .block-timeline__detail-slider .block-timeline__detail-img img {
        max-width: 100%;
        margin: 0 auto;
    }

    .featured-module .image-part {
        width: calc(57% - 50px);
    }

    .custom-modal-box-inner {
        padding: 70px 35px 35px;
    }

    .leadership-details-wrapper .lpart {
        width: 270px;
    }

    .custom-modal-box-inner .punchline {
        top: 70px;
    }

    .leadership-details-wrapper .rpart {
        width: calc(100% - 270px);
        padding-left: 28px;
    }

    .leadership-details-wrapper .rpart .text-header span {
        font-size: 20px;
    }

    .leadership-details-wrapper .rpart .text-header .title-part h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .close-modal {
        width: 44px;
        position: absolute;
        top: 20px;
        right: 0;
    }

    .leadership-list .leadership-card .card-details {
        padding: 24px 18px;
    }

    .leadership-list .leadership-card .card-details .person-name {
        font-size: 20px;
    }

    .news-list .news-card .card-details .card-title {
        line-height: 22px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .news-list .news-card .card-details .news-category {
        font-size: 12px;
    }

    .news-list {
        gap: 40px 22px;
    }

    .news-list-filter {
        padding: 25px 0;
    }

    .news-list-wrapper .loadmore-btn-div {
        padding-top: 60px;
    }

    .news-details-main {
        padding: 55px 0;
    }

    .news-details-main:before {
        height: 340px;
    }

    .project-content_wrapper {
        padding: 50px 0;
    }

    .project_gallery_main {
        padding: 0 0 50px;
    }

    .project-content-btm_wrapper {
        padding: 50px 0;
    }

    .project-details-streep .next-prev-streep {
        padding: 35px 0;
    }

    .project-content_wrapper .two-part .left-part .punchline {
        margin-bottom: 25px;
    }

    .project-content_wrapper .project-details-list li.reference {
        margin-top: 20px;
    }

    .header-main .nav-main>ul>li .megamenu {
        position: inherit;
        width: 100%;
        right: 0px;
        border-radius: 0px;
        border-top: 1px solid var(--color-blue_var1);
        left: 0;
    }

    .header-main .nav-main>ul .dropdown-menu {
        padding: 12px 20px;
    }

    .header-main .nav-main>ul>li .megamenu {
        padding: 25px 20px;
    }

    .header-main .nav-main>ul .dropdown-menu li:last-child {
        padding-bottom: 0;
    }

    .header-main .nav-main>ul>li .megamenu h4 {
        margin-bottom: 20px;
    }

    /* .project-list .project-card {
        aspect-ratio: 1.4 / 1;
    } */
    .project-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-banner_text h1 {
        letter-spacing: 6px;
    }

    h1 {
        font-size: 44px;
        line-height: 58px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-manner_main .brand-logo {
        max-width: 420px;
    }

    .hero-banner_text {
        bottom: 45px;
    }

    .reusable-module_one .image-part,
    .reusable-module_one .text-part {
        width: calc(100% - 30px);
    }

    .reusable-module_two .image-part,
    .reusable-module_two .text-part {
        width: calc(100% - 30px);
    }

    .project_block .project_block_inner,
    .reusable-module_inner,
    .footer-inner {
        padding-right: 34px;
        padding-left: 34px;
    }

    .reusable-module_one .btm-line {
        right: -24px;
        bottom: -24px;
    }

    .reusable-module_one {
        padding: 90px 0 45px;
    }

    .reusable-module_one .text-part {
        padding-top: 0px;
    }

    .reusable-module_two {
        margin-top: 0;
        padding: 90px 0 45px;
    }

    .reusable-module_three {
        padding: 40px 0;
        overflow: hidden;
    }

    .reusable-module_three .title-part h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .project-list-grid {
        flex-direction: column;
    }

    .project-list-grid .lpart,
    .project-list-grid .rpart {
        width: 100%;
    }

    .project-list-grid .project-card .project-details {
        padding: 20px;
        bottom: -59px;
    }

    .project-list-grid .project-card .project-image img,
    .project-list-grid .rpart .project-card .project-image img {
        aspect-ratio: 2/1;
    }

    .project-list-grid {
        width: calc(100% - 30px);
    }

    .project_block .punchline.vertical {
        left: -26px;
    }

    .project_block {
        padding: 60px 0 45px;
    }

    .project_block .line-blue {
        height: 34px;
        top: -34px;
    }

    .footer-btm {
        flex-wrap: wrap;
        gap: 0 17px;
    }

    .footer-top .left-part .logo-and-social {
        width: 40%;
    }

    .footer-top .left-part .linnovation-box {
        width: 60%;
    }

    .footer-top .left-part .innovation-box h4 {
        font-size: 26px;
        line-height: 38px;
    }

    .hero-banner_text h1 {
        padding-left: 48px;
    }

    .hero-banner_main .line_one {
        width: 26px;
    }

    .reusable-module_one .top-line_two {
        left: 24px;
    }

    .reusable-module_two .line-blue .line1 {
        right: -26px;
    }

    .reusable-module_two .line-blue .line3 {
        left: calc(100% + 24px);
    }

    .reusable-module_two .line-blue .line2 {
        right: -24px;
        bottom: -26px;
    }

    .reusable-module_two.line-animated .line-blue .line1 {
        height: calc(100% + 26px);
    }

    .reusable-module_two .line-blue {
        width: 200px;
    }

    .project_block .line-gray {
        height: 60%;
    }

    .block-timeline_inner {
        padding-left: 34px;
        padding-right: 34px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .block-module_inner {
        padding-left: 34px;
        padding-right: 34px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .accordion_inner {
        padding-left: 34px;
        padding-right: 34px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .block-accordion__item-content .two-part_text {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }

    .featured-module {
        padding: 70px 0;
    }

    .block-timeline__year-slider {
        padding-left: 30px;
        padding-right: 30px;
    }

    .timeline__list:after {
        left: 28px;
    }

    .timeline__list:before {
        left: 56px;
    }

    .timeline__list {
        padding-left: 98px;
    }

    .featured-module .image-part {
        width: calc(90% - 50px);
    }

    .block-timeline__slider {
        padding-right: 0;
    }

    .reusable-module_one.culture_module {
        padding-bottom: 45px;
    }

    .gallery-module {
        padding: 45px 0;
    }

    .gallery__slider {
        padding-bottom: 20px;
    }

    .accordion-module {
        padding: 45px 0;
    }

    .featured-module_inner {
        padding-right: 34px;
        padding-left: 34px;
    }

    .featured-module .text-part .punchline.vertical {
        left: -40px;
    }

    .featured-module .text-part {
        width: calc(100% - 30px);
    }

    .leadership-details-wrapper {
        flex-wrap: wrap;
    }

    .leadership-details-wrapper .rpart {
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
    }

    .leadership-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leadership-block-main {
        padding: 60px 0 60px;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-list .news-card figure {
        aspect-ratio: 1.1 / 1;
    }

    .news-list-filter .filter-list {
        gap: 0 35px;
    }

    .news-details-main:before {
        height: 270px;
    }

    .news-details-main .news-text-part h2 {
        margin-bottom: 18px;
    }

    .news_gallery {
        padding-bottom: 30px;
    }

    .news_gallery_main {
        padding-bottom: 20px;
    }

    .project-content_wrapper .two-part {
        flex-direction: column;
        gap: 30px;
    }

    .project-content_wrapper .two-part .left-part {
        width: 100%;
    }

    .project-content_wrapper .two-part .right-part {
        width: 100%;
        padding-left: 0;
    }

    .project-content-btm_wrapper .two-part {
        flex-direction: column;
        gap: 30px;
    }

    .project-content-btm_wrapper .two-part .text-part {
        width: 100%;
    }

    .project-content-btm_wrapper .two-part .right-part {
        width: 100%;
        padding-left: 0;
    }

    .header-main .nav-main>ul>li .megamenu .megamenu_inner {
        gap: 35px;
    }

    .header-main .nav-main>ul>li .megamenu h4 {
        letter-spacing: 3px;
        padding-left: 14px;
    }

    .project-list .project-card .card-details {
        padding: 18px 20px;
    }

    .project-list .project-card .card-details .project-name {
        font-size: 22px;
    }

    .project-list .project-card .card-details {
        bottom: -70px;
    }
}

@media (max-width: 575px) {

    h2,
    .h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .accordion-module_title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .header-main .header__logo img {
        max-width: 180px;
    }

    .hero-banner_text h1 {
        letter-spacing: 4px;
    }

    h1 {
        font-size: 26px;
        line-height: 36px;
    }

    .hero-manner_main {
        height: calc(100% - 66px);
    }

    .reusable-module_one .btm-line {
        width: 140px;
        height: 140px;
    }

    .reusable-module_title .punchline {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .reusable-module_one .text-part {
        padding-top: 0;
    }

    .reusable-module_title .punchline {
        margin-bottom: 10px;
    }

    .reusable-module_title h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .approach-list {
        width: 350px;
    }

    .reusable-module_three .title-part h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .project-list-grid .lpart {
        gap: 15px;
    }

    .project-list-grid {
        gap: 15px;
    }

    .project-list-grid .project-card .project-image img,
    .project-list-grid .rpart .project-card .project-image img {
        aspect-ratio: 1 / 1;
    }

    .footer-top .left-part {
        flex-direction: column;
    }

    .footer-top .left-part .logo-and-social {
        width: 100%;
        padding-right: 0;
    }

    .footer-top .left-part .innovation-box {
        padding-left: 0;
        border-left: 0;
        padding-top: 30px;
        width: 100%;
        padding-bottom: 0;
    }

    .footer-top .right-part {
        flex-direction: column;
        padding-top: 30px;
        gap: 20px;
    }

    .footer-btm {
        padding: 20px 0;
    }

    .footer-btm .link-list {
        flex-wrap: wrap;
        gap: 0 15px;
    }

    .hero-banner_text h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .reusable-module_one .top-line_two {
        height: 225px;
    }

    .reusable-module_two .line-blue {
        width: 140px;
    }

    .block-timeline .title-part h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .timeline__list {
        padding-left: 0;
        padding-top: 15px;
    }

    .timeline__list:before,
    .timeline__list:after {
        display: none;
    }

    .timeline__list li {
        padding-bottom: 15px;
    }

    .block-timeline__detail-slider .block-timeline__detail-img {
        padding-top: 10px;
    }

    .block-timeline {
        padding: 90px 0 50px;
    }

    .block-accordion__item h3 {
        padding: 15px 40px 15px 10px;
        background-position: calc(100% - 10px) 50%;
        background-size: 15px;
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 18px;
    }

    .block-accordion__item-content {
        padding: 20px 10px 20px 10px;
    }

    .featured-module .text-part .recreation-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .block-timeline .title-part .punchline {
        margin-bottom: 10px;
    }

    .featured-module .image-part {
        width: calc(100% - 30px);
        padding-left: 0;
    }

    .featured-module .image-part .punchline.vertical {
        left: -40px;
    }

    .leadership-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .news-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .news-list-filter .filter-list {
        flex-wrap: wrap;
    }

    .news-details-page .title-part {
        margin-bottom: 20px;
    }

    .news-details-main:before {
        height: 230px;
    }

    .header-main .nav-main>ul>li .megamenu .megamenu_inner {
        flex-direction: column;
    }

    .project-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 440px) {
    .approach-list {
        width: 240px;
    }

    .leadership-details-wrapper .lpart {
        width: 100%;
    }

    .custom-modal-box-inner {
        padding: 70px 0 35px 35px;
    }
}

.error404 .content-block {
    margin: 0 auto;
    max-width: 1755px;
    padding: 60px 44px 60px 105px;
    min-height: 48vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.error-404.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
}

.error-actions {
    padding-top: 20px;
}

@media (max-width: 1790px) {
    .error404 .content-block {
        margin: 0 auto;
        max-width: 1550px;
    }
}

@media (max-width: 1680px) {
    .error404 .content-block {
        margin: 0 auto;
        max-width: 1170px;
    }
}

@media (max-width: 1199px) {
    .error404 .content-block {
        margin: 0 auto;
        max-width: 980px;
        padding: 50px 25px;
    }
}

@media (max-width: 991px) {

    .error404 .content-block {
        margin: 0 auto;
        max-width: 100%;
        padding: 40px 20px;
        min-height: 30vh;
    }

}

.page-id-449 .search-filter-query .search-filter-meta {
    display: none;
}

.page-id-449 .project-list-filter .custom-container {
    display: flex;
    grid-gap: 25px;
}

.page-id-449 .project-list-filter .custom-container .search-filter,
.page-id-449 .project-list-filter .custom-container .client-filter,
.page-id-449 .project-list-filter .custom-container .market-filter {
    width: 300px;
}

.page-id-449 .project-list-filter .custom-container .search-filter .search-filter-base .search-filter-input-text {
    background: transparent !important;
    padding: 15px 20px;
}

.page-id-449 .project-list-filter .custom-container .search-filter-base .search-filter-component-combobox-base {
    background: transparent;
    padding: 15px 20px;
}

.page-id-449 .project-list-filter .custom-container .search-filter .search-filter-base .search-filter-input-text input {
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-black);
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    letter-spacing: 4px;
    text-transform: uppercase;

}

.page-id-449 .project-list-filter .custom-container .search-filter .search-filter-base .search-filter-input-text input::placeholder {
    font-family: var(--font-primary);
    color: var(--color-black);
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-id-449 .project-list-filter .custom-container .search-filter .search-filter-base .search-filter-input-text .search-filter-icon {
    padding: 0;
    margin: 0;
}

.page-id-449 .project-list-filter .custom-container .search-filter-component-combobox__selection, .page-id-449 .project-list-filter .custom-container .search-filter-component-combobox__actions {
    padding: 0 !important;
    font-family: var(--font-primary);
    color: var(--color-black);
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-normal);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.page-id-449 .project-list-filter .custom-container .search-filter-component-combobox__selection input{
    pointer-events: none;
    
}
.page-id-449 .project-list-filter .custom-container .search-filter-component-combobox__listbox-toggle::before {
    display: none !important;
}

.page-id-449 .project-list-filter .custom-container .search-filter-component-combobox__header {
    line-height: 0 !important;
    display: flex;
    justify-content: center;
    height: 17px;
}

.page-id-449 .project-list-filter .custom-container .search-filter-icon svg {
    fill: #112a96;
}

.page-id-449 .loadmore-btn-div {
    display: flex;
    justify-content: center;
}

.page-id-449 .loadmore-btn-div .search-filter-input-button {
    background: var(--color-blue_var1);
    color: var(--color-white);
    border: 1px solid var(--color-blue_var1);
    border-radius: 5px;
    font-size: 14px;
    font-weight: var(--font-medium);
    padding: 16px 40px;
    line-height: 1;
    text-transform: capitalize;
}

@media(max-width:767px) {
    .page-id-449 .project-list-filter .custom-container {
        flex-direction: column;
    }

    .page-id-449 .project-list-filter .custom-container .search-filter,
    .page-id-449 .project-list-filter .custom-container .client-filter,
    .page-id-449 .project-list-filter .custom-container .market-filter {
        width: 100%;
    }
    .page-id-449 .project-list-filter .custom-container .search-filter .search-filter-base .search-filter-input-text input{
        font-size: 16px;
    }
}