/* CSS BOILER PLATE */

* {
    margin: 0;
    padding: 0;
    font-family: "proxima-nova", sans-serif
}
    /* Custom scrollbar for webkit browsers */
    ::-webkit-scrollbar {
        width: 12px; /* Width of the scrollbar */
    }

    ::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Background color of the track */
        /*border-radius: 10px;  */
    }

    ::-webkit-scrollbar-thumb {
        background-color: #FFC30D; /* Color of the scrollbar handle */
        /*border-radius: 10px; */
        border: 3px solid #f1f1f1; /* Border color around the scrollbar handle */
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #e0b700; /* Darker shade of #FFC30D on hover */
    }
:root {
    --theme-black: #181714;
    --light-black: #1C1C1C; 
    --yellow: #C78D21;
    --grey: #f7f7f7;
}

body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "proxima-nova", sans-serif
}

body ul li {
    font-family: "proxima-nova", sans-serif
}

body a {
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-family: "proxima-nova", sans-serif
}
body .page-wrapper *:focus, .ui-dialog *:focus {
    outline: 0;
    box-shadow: none;
    border: 0;
    font-family: "proxima-nova", sans-serif
}
a:focus,a:hover,a:visited{
	text-decoration:none;
	outline:0
}
html body a:focus {
  outline: none;
  outline-offset: none;
}
.navigation_main nav ul li a {
    color: #fff;
    font-family: "proxima-nova", sans-serif
}

body p {
    font-size: 20px;
    line-height: 30px;
    color: #403F44;
    font-family: "proxima-nova", sans-serif;
}

body h1 {
    font-size: 64px;
    line-height: 74px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Portrait Text';
}

body h2 {
    font-size: 64px;
    line-height: 74px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #000;
    font-family: 'Portrait Text';
}

body h3 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: "proxima-nova", sans-serif
}

body h4 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 600;
}

body h5 {
    font-family: "proxima-nova", sans-serif
}

body h6 {
    font-family: "proxima-nova", sans-serif
}

body img {
    width: 100%;
    max-width: none;
}
.padding {
    padding: 100px 0px;
}

.bg-grey {
    background-color: #F5F3EC;
}




/* HOMEBANNER */

.home_video_outer {
    height: 90vh;
}
.home_video_main img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home_video_main {
    height: 100%;
    width: 100%;
}
section.Hero_Section {
    position: relative;
}
.home_video_content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: end;
    padding-bottom: 5%;
}
.hero_head_out {
    width: 37%;
    padding-left: 48px;
    border-left: 1px solid #fff;
    margin-left: auto;
}
.main_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.main_head_tagline span.para_line {
    width: 100px;
    height: 1px;
    background: #000;
    display: inline-block;
}
.main_head_tagline {
    width: 38%;
    display: flex;
    column-gap: 75px;
    align-items: baseline;
}


/* portfolio section */

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}
.portfolio_slider {
    width: 55%;
    margin: auto;
}
section.home_portfolio.padding > .container{
    overflow-x: hidden;
}
.portfolio_slider .slick-list.draggable {
    overflow: visible !important;
}
.portfolio_slider .slick-list.draggable {
    overflow: visible !important;
}
.portfolio_slider .item.slick-slide:not(.slick-current) {
    transform: scale(0.8);
}
.portfolio_slider .item.slick-slide {
    transition: 0.8s ease;
}



/* HOME About */

.home_about_main {
    display: grid;
    grid-template-columns: 68% 1fr;
}
.home_about_left:before {
    content: '';
    background: #F5F3EC;
    display: block;
    position: absolute;
    height: 100%;
    width: 75vw;
    right: 0;
    top: 0;
    z-index: -1;
}
.home_about_left {
    position: relative;
    padding: 125px 200px 200px 0px;
}
.hac_para {
    padding: 10px 0px;
    padding-left: 32px;
    border-left: 1px solid #000;
}
.hac_para {
    margin-bottom: 48px;
}

a.main_button {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 32px;
    background: linear-gradient(0deg, rgba(3, 3, 3, 0), rgba(3, 3, 3, 0)), linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
    border-radius: 85px;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    display: inline-flex;
    align-items: center;
    transition: 0.7s ease;
}
a.main_button svg {
    transition: 0.7s ease;
    margin-left: 10px;
}

a.main_button svg *{
    fill: var(--yellow);
    stroke: var(--yellow);
}

.home_about_right_inner {
    position: relative;
    transform: translateY(-50px);
}
img.small_image {
    position: absolute;
    height: 200px;
    width: auto;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
}
.home_about_right {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: -100px;
}

/* Solution Section CSS */

.solution_slider_outer {
    overflow: hidden;
    position: relative;
}
.solution_slider_outer .slick-list.draggable {
    padding: 0 !important;
    overflow: visible;
}
.solution_slider_outer .solution_box {
    margin-right: 48px;
}
.navs_outer{
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.solution_slider {
    width: 55%;
    margin: auto;
}

.solution_box_text {
    text-align: center;
    margin-top: 24px;
}
.navs_outer .navs {
    display: flex
;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}
.navs button svg path {
    fill: var(--yellow);
    stroke: var(--yellow);
}
.navs button {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    border: 1px solid var(--yellow);
    background: #fff;
}

section.home_sectors {
    overflow: hidden;
}

/* Testimonials Section  */

.testi_box {
    background: var(--yellow);
    padding: 78px 48px;
}
.testi_quote svg {
    width: 42px;
}

.testi_quote {
    margin-bottom: 24px;
}

.testimonial_content p {
    color: #fff;
    margin-bottom: 30px;
}
h4.tester_name {
    position: relative;
    text-align: right;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
}
h4.tester_name .line {
    width: 42px;
    height: 1px;
    background: #fff;
    display: block;
}
h4.tester_name {
    position: relative;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    display: inline-flex;
    column-gap: 24px;
    align-items: center;
    float: inline-end;
}
.home_testi_outer {
    display: grid;
    grid-template-columns: 1fr 67.3%;
}
.testi_box {
    background: var(--yellow);
    padding: 78px 48px;
    margin-right: -27%;
    position: relative;
    z-index: 99;
}
.testi_box_outer {
    display: flex;
    align-items: center;
    height: 100%;
}
.articles_main_outer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.article_main_content {
    background: #fff;
    padding: 34px 24px;
}
.article_main_content a {
    color: var(--yellow);
    font-size: 20px;
    line-height: 30px;
    display: flex
;
    align-items: baseline;
    column-gap: 12px;
}
.article_main_content h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
}
.article_sec_cta {
    margin-top: 48px;
}
footer.footer {
    background: #1C1C1A;
    padding-top: 108px;
}
.footer_navs_main {
    display: grid;
    grid-template-columns: 69% 1fr;
}
.footer_nav_outer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer_nav ul {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
.footer_nav ul li a {
    color: #fff;
    font-size: 20px;
}
.social_links ul {
    display: flex
;
    column-gap: 18px;
}
.social_links ul li {
    height: 42px;
    width: 42px;
    border: 1px solid #fff;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_copyright {
    margin-top: 120px;
}
.footer_copyright p {
    color: #fff;
}
.footer_logo img {
    width: 85%;
    margin: auto;
}
.footer_logo {
    margin-top: 48px;
    text-align: center;
}