:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --primary-color:  #af8e52;
    --secondary-color: #19448f;
    --bg-gray: #f5f5f5;
}
.bg_gray {
    background-color: var(--bg-gray);
}
.at_btn {
   padding: 15px 20px;
   font-size: 14px;
   line-height: 24px; 
}
.at_btn_primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.at_btn:hover {
    background-color: var(--secondary-color);
    /* transform: translateY(-5px); */
}
.hero_area {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 0px;
}
.hero_area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 35%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgb(0 0 0 / 100%) 100%);
    bottom: 0;
    z-index: -1;
}
.hero_image {
    background-image: url(../images/hero_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    z-index: -1;
}
.hero_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.hero_content h1 {
    font-size: 65px;
    line-height: 125%;
    color: var(--white-color);
    /* margin-bottom: 10px; */
    /* font-weight: 300; */
    letter-spacing: 1px;
    font-family: 'Inter Thin';
}

.hero_content p {
    font-size: 20px;
    line-height: 170%;
    color: var(--white-color);
}
.hero_actions {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    margin-top: 30px;
}
.hero_actions .at_btn {
    color: var(--white-color);
}

header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1;
}
.at_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    height: 80px;
}
.at_brand {
    display: flex;
    align-items: stretch;
    height: 100%;
}
.at_sidenav {
    width: 80px;
    height: 100%;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.at_sidenav a {
    color: var(--white-color);
    font-size: 20px;
}
.brand_logo {
    width: 150px;
    padding: 8px 20px;
    background-color: var(--white-color);
}
.at_nav ul {
    display: flex;
    align-items: center;
    gap: 0px 30px;
    padding: 0px 30px 0px 0px;
}

.at_nav ul li a {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 125%;
    padding: 12px 5px;
    text-transform: uppercase;
    font-weight: 300;
    transition: 0.3s ease;
    position: relative;
    font-family: 'Inter Medium';
}

.at_nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 0px;
    background-color: var(--primary-color);
    height: 2px;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.at_nav ul li a:hover::after {
    width: 100%;
}

.at_nav ul li a:hover {
    color: var(--primary-color);
}
.at_header.sticky {
    height: 60px;
    box-shadow: 0px 3px 20px 0 #4e4e4e17;
    /* box-shadow: 0px 10px 20px 9px #4e4e4e91; */
}
.at_header.sticky .brand_logo {
    width: 120px;
    padding: 5px 15px;
}
.at_header.sticky .at_nav ul li a {
    font-size: 13px;
}
.at_header.sticky .at_sidenav {
    width: 70px;
}


h2 {
    font-size: 28px;
    line-height: 125%;
    margin: 0 0 30px 0;
    font-family: 'Inter Thin';
}

/* About section starts */

.about_section .flex_box {
    justify-content: center;
    /* align-items: center; */
    max-width: 1200px;
    margin: 0 auto;
}
.flex_right {
    width: 55%;
}
.flex_left {
    width: 45%;
    margin: 0 140px 0 0px;
}
.flex_left img {
    width: 150px;
}
.flex_left p {
    font-size: 16px;
    line-height: 180%;
    text-align: left;
    color: var(--black-color);
    margin: 0 0 20px 0;
}
.flex_left a {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 125%;
    text-align: left;
    font-weight: 600;
    font-family: 'Inter Bold';
}
.flex_left a:hover {
    color: var(--secondary-color);
    padding: 0 0 0 5px;
}
.flex_right img{
    height: 100%;
    border-radius: 5px;
    /* object-fit: cover; */
}


/* Awards section style starts */

.awards_section .flex_box {
    flex-wrap: wrap;
    justify-content: space-between;
}
.awards_card {
    width: calc(25% - 10px);
    height: 100%;
    background-color: var(--bg-gray);
    padding: 30px 20px 0 20px;
    /* transition: 0.4s ease; */
}
.awards_card:hover {
    background-color: var(--secondary-color);
}
.awards_card:hover .card_top h3, .awards_card:hover .card_top p, .awards_card:hover .card_bottom a {
    color: var(--white-color);
}
.awards_card:hover .card_bottom {
    border-top-color: var(--secondary-color);
}
.hover_img {
    display: none;
    /* transition: 0.4s ease; */
}
.awards_card:hover img {
    display: none;
}
.awards_card:hover .hover_img {
    display: block;
}
.card_top {
    display: block;
    min-height: 230px;
    height: 100%;
}
.card_top img {
    max-width: 150px;
    width: 100%;
    height: 35px;
    object-fit: contain;
    object-position: left;
    /* transition: 0.4s ease; */
}
.card_top h3 {
    font-size: 18px;
    line-height: 125%;
    margin: 15px 0;
    font-family: 'Inter Bold';
    /* transition: 0.4s ease; */
}
.card_top p {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    /* transition: 0.4s ease; */
}
.card_bottom {
    display: block;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    /* transition: 0.2s ease; */
}
.card_bottom a {
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter Bold';
    font-weight: 800;
    transition: none;
}
.card_bottom a:hover {
    color: var(--primary-color) !important;
}


/* Business section style starts  */
.business_section {
    display: block;
}
/* .business_section .container {
    max-width: 1000px;
} */
.business_section .flex_box {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 40px;
    width: 100%;
    margin: 0 auto;
}
.business_section .flex_box ul.slick-dots {
    bottom: 0;
}
.product_card {
    width: calc(33.3333% - 60px);
    /* margin: 0 20px; */
}
.product_card img {
    object-fit: cover;
}
.product_card h3 {
    font-size: 16px;
    line-height: 125%;
    margin: 15px 0;
    color: var(--primary-color);
    font-family: 'Inter Bold';
}
.product_card h4 {
    font-size: 20px;
    line-height: 125%;
    margin: 0 0 20px 0;
}
.product_card ul {
    min-height: 115px;
    margin: 0 0 15px 25px;
}
.product_card ul li {
    font-size: 16px;
    line-height: 150%;
    /* font-family: 'Inter Thin'; */
    list-style-type: disc;
    padding: 0 0 10px 0;
}
.product_card a {
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter Bold';
}
.product_card a:hover {
    color: var(--secondary-color);
    padding: 0 0 0 5px;
}


/* Background slider section style starts here  */
.bg_slider_section {
    padding: 0;
    display: block;
}
.bg_slider_section .container {
    padding: 0;
}
.bg_slider {
    overflow: hidden;
    margin: 0 !important;
}
.bg_slide {
    width: 100vw;
    height: 100vh;
    position: relative;
}
.bg_slide img {
    height: 100%;
    object-fit: cover;
}
.slider_text {
    position: absolute;
    bottom: 20px;
    right: 15px;
    font-size: 15px;
    color: #ffffff50;
}
.slider_text b {
    display: block;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2.5px;
}
.bg_slider .slick-dots {
    bottom: 15px;
}
.bg_slider .slick-dots li button {
    border-color: var(--white-color);
}
.bg_slider .slick-dots li.slick-active button {
    background-color: var(--white-color);
}
.bg_slider .slick-dots li.slick-active button:before {
    color: var(--white-color);
}


/* Collaboration section style starts  */

.collab_section .flex_box {
    flex-wrap: wrap;
    justify-content: space-between;
}
.collab_card {
    width: calc(33.3333% - 15px);
    background-color: #ebf8f7;
    padding: 15px;
}
.collab_card img {
    object-fit: cover;
}
.collab_card h3 {
    font-size: 20px;
    line-height: 150%;
    margin: 15px 0;
}
.collab_card p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px;
}
.collab_card ul {
    margin: 0 0 0 20px;
}
.collab_card ul li {
    font-size: 16px;
    line-height: 170%;
    /* font-family: 'Inter Thin'; */
    list-style-type: disc;
    padding: 0 0 10px 0;
}


/* Testimonials section style starts here  */

.testimonials_section {
    display: block;
}
.testi_slider {
    display: block;
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
    margin: 0 auto;
}
.testi_slide {
    width: calc(100% - 30px);
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}
.testi_slide_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testi_slide img {
    height: 150px;
    object-fit: contain;
}
.testi_slide p {
    font-size: 18px;
    line-height: 150%;
    font-family: 'Inter Bold';
    font-weight: 800;
    margin: 20px 0 0 0;
    text-align: center;
}
.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 8px;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--black-color);
}
.slick-dots li button:before {
    width: auto;
    height: auto;
    line-height: 0;
    top: 3px;
    left: 1px;
    color: #000000;
}
.testi_slider .slick-dots {
    bottom: 0px;
}
.slick-dots li.slick-active button {
    background-color: var(--black-color);
}


/* Video section style starts here  */
.vid_section {
    padding: 80px 0 0 0;
}
.vid_box {
    width: 60%;
    position: relative;
}
.dup_img {
    background-image: url(../images/img_slide1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: transparent;
    background-color: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
}
.content_box {
    width: 40%;
    padding: 40px 30px 40px 50px;
    background-color: var(--secondary-color);
}
.content_box h3, .content_box p {
    color: var(--white-color);
    font-family: 'Inter Thin';
    font-weight: 600;
}
.content_box h3 {
    font-size: 20px;
    line-height: 150%;
    margin: 0 0 10px 0;
}
.content_box p {
    font-size: 16px;
    line-height: 150%;
    margin: 0 0 25px 0;
}
.content_box p:last-child {
    margin: 0;
}

/* Updates section style starts here  */
/* .updates_section {
    padding: 80px 0 0 0;
} */
.updates_section .flex_box {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.update_card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(25% - 10px);
    padding: 30px;
    min-height: 250px;
    color: var(--white-color);
    background-color: var(--secondary-color);
    transition: 0.4s ease;

}
.update_card:hover {
    background-color: var(--primary-color);
}
.update_card h3 {
    font-size: 22px;
    line-height: 150%;
    margin: 0;
    font-family: 'Inter Regular';
    font-weight: 500;
}


/* Footer section style starts here  */

.footer_section {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #e9ecf0;
}
.footer_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/* .footer_inner .footer_logo {
    margin: 0 0 30px 0;
} */
.footer_inner img {
    max-width: 150px;
    object-fit: contain;
}
.social_logo {
    display: none;
}
.social_logo a {
    font-size: 20px;
    margin: 0 5px;
    color: var(--black-color);
    transition: 0.4s ease;
}
.social_logo a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}
.footer_inner ul {
    display: none;
    padding: 30px 0;
    margin: 0;
}
.footer_inner ul li {
    float: left;
}
.footer_inner ul li:not(:last-child) {
    margin: 0 20px 0 0;
}
.footer_inner ul li a {
    font-size: 14px;
    line-height: 150%;
    font-family: 'Inter Thin';
    font-weight: 700;
}
.footer_inner ul li a:hover {
    color: var(--secondary-color);
}
.footer_inner p {
    font-size: 14px;
    line-height: 150%;
    font-family: 'Inter Bold';
    font-weight: 800;
    margin: 30px 0 0 0;
}

/* Mobie menu  */
.at_nav ul.mobile_menu {
    position: absolute;
    top: 80px;
    left: 0px;
    padding: 0;
    background-color: var(--secondary-color);
    width: 200px;
    align-items: flex-start;
    display: none;
}
.at_header.sticky .at_nav ul.mobile_menu {
    top: 60px;
}
ul.mobile_menu li {
    padding: 0 0 0 15px;
}
ul.mobile_menu li a {
    display: block;
    color: var(--white-color);
}
ul.mobile_menu li:not(:last-child) {
    border-bottom: 1px solid #ffffff17;
}
ul.mobile_menu li a:hover {
    padding-left: 10px;
}
ul.mobile_menu li a::after {
    content: none;
}
/* Hamburger menu  */

.hamburger_menu{
    width: 24px;
    transition-duration: 0.5s;
    cursor: pointer;
    position:relative;
    margin: 0 0 35px 0;
}
.hamburger_menu .icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 12px;
    top: 20px;
    background-color: #fff;
    left: 12px;
}
.hamburger_menu.open .icon-right {
    transition-duration: 0.5s;
    background: transparent;
}
.hamburger_menu .icon-right:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -8px;
    margin-left:0;
}
.hamburger_menu.open .icon-right:after {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    margin-left:-1px;
}
.hamburger_menu.open .icon-right:before {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    margin-left:-1px;
}
.hamburger_menu .icon-right:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 8px;
}
.hamburger_menu .icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 12px;
    top: 20px;
    background-color: #fff;
}
.hamburger_menu.open .icon-left {
    transition-duration: 0.5s;
    background: transparent;
}
.hamburger_menu .icon-left:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: -8px;
    margin-left:0;
}
.hamburger_menu .icon-left:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    content: "";
    top: 8px;
}
.hamburger_menu.open .icon-left:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
.hamburger_menu.open .icon-left:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
.at_header.sticky .hamburger_menu {
    margin: 0 4px 37px 0;
}


/* Responsive style starts here  */
@media (max-width: 1440px) {
    .hero_content h1 {
        font-size: 46px;
    }
}
@media (max-width: 1280px) {
    .hero_content {
        padding: 0 15px;
    }
    .hero_content h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 24px;
    }
    .update_card h3 {
        font-size: 20px;
    }
    .hero_content p , .card_top h3 {
        font-size: 16px;
    }
    .testi_slide p {
        font-size: 15px;
    }
}
@media (max-width: 1080px) {
    .at_header {
        height: 60px;
    }
    .at_header.sticky .at_sidenav {
        width: 80px;
    }
    .at_nav ul.mobile_menu {
        top: 60px;
    }
    .brand_logo {
        width: 120px;
        padding: 5px 15px;
    }
    .at_nav ul {
        gap: 15px;
    }
    .at_nav ul li a, .at_header.sticky .at_nav ul li a {
        font-size: 12px;
    }
    .hero_content h1 {
        font-size: 34px;
        margin: 0 0 10px 0;
    }
    .product_card {
        width: calc(33.3333% - 20px);
    }
    .collab_card {
        width: calc(33.3333% - 10px);
    }
    .content_box {
        padding: 40px 30px;
    }
    /* .card_top {
        min-height: 210px;
    } */
}

@media (max-width: 992px) {
    .at_header {
        height: 60px;
    }
    .at_nav ul li a {
        font-size: 12px;
    }
    .at_nav ul {
        gap: 0 20px;
    }
    .brand_logo {
        width: 120px;
        padding: 5px 15px;
    }
    .at_sidenav, .at_header.sticky .at_sidenav {
        width: 60px;
    }
    .at_header.sticky .hamburger_menu {
        margin: 0 0 35px 0;
    }
    .hero_content {
        max-width: 100%;
        padding: 0 15px;
    }
    .hero_content h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 22px;
    }
    .product_card h3 {
        font-size: 15px;
    }
    .product_card h4, .collab_card h3, .content_box h3 {
        font-size: 16px;
    }
    .hero_content p, .card_top h3, .product_card ul li, .product_card a, 
    .flex_left a, .flex_left p, .collab_card p, .collab_card ul li, .content_box p {
        font-size: 14px;
    }
    .flex_left {
        margin: 0 20px;
    }
    .flex_right {
        text-align: center;
    }
    .flex_right img {
        max-width: 500px;
    }
    .awards_card {
        width: calc(50% - 10px);
    }
    .awards_card:nth-child(1), .awards_card:nth-child(2) {
        margin: 0 0 20px;
    }
    .card_top p, .card_bottom a {
        font-size: 14px;
    }
    .business_section .flex_box, .collab_section .flex_box {
        justify-content: center;
        gap: 20px;
    }
    .product_card, .collab_card {
        width: calc(50% - 10px);
    }
    .product_card:last-child {
        margin: 15px 0 0 0;
    }
    .bg_slide {
        height: 70vh;
    }
    .vid_section .flex_box {
        flex-direction: column;
    }
    .vid_box, .content_box {
        width: 100%;
    }
    .updates_section .flex_box {
        gap: 20px;
    }
    .update_card {
        min-height: 200px;
        width: calc(50% - 10px);
    }
    .update_card h3 {
        font-size: 18px;
    }
    .dup_img {
        min-height: 80vh;
    }
}
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .vid_section {
        padding: 60px 0 0 0;
    }
    .desk_menu {
        display: none;
    }
    .hero_content h1 {
        font-size: 28px;
    }
    .at_btn {
        font-size: 13px;
    }
    .about_section .flex_box {
        flex-direction: column;
    }
    .flex_left, .flex_right {
        width: 100%;
        margin: 0 auto;
    }
    .product_card, .collab_card {
        max-width: 350px;
        width: 100%;
    }
    .product_card{
        padding: 0 0 20px 0;
    }
    .bg_slide {
        height: 60vh;
    }
    .dup_img {
        min-height: 60vh;
    }
}
@media (max-width: 576px) {
    h2 {
        font-size: 20px;
    }
    .awards_section .flex_box, .updates_section .flex_box {
        justify-content: center;
    }
    .awards_card, .update_card {
        max-width: 300px;
        width: 100%;
    }
    .awards_card:not(:last-child) {
        margin: 0 0 20px 0;
    }
    .dup_img {
        min-height: 50vh;
    }
    section.footer_section {
        padding: 60px 0 30px;
    }
    .vid_section {
        padding: 30px 0 0 0;
    }

}
@media (max-width: 480px) {
    .footer_inner ul {
        display: none;
        /* display: flex; */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .dup_img {
        min-height: 40vh;
    }
}


