@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400..700&display=swap');

:root {
    --main_color: #c92127;
    --second_color: #fcb614;
    --third_color: #61b645;
    --black_color: #263238;
}

*,
:focus {
    outline: 0px !important;
    box-sizing: border-box
}

body {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    color: #fff;
    background-color: #000;
    padding: 0;
    margin: 0;
}

*,
:focus {
    scroll-behavior: smooth;
    outline: 0px !important;
}

::selection {
    background-color: var(--main_color) !important;
    color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
    border-radius: 25px;
    background-color: transparent;
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 25px;
    background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: var(--main_color);
}

ul {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

ul li {
    display: inline-block;
}

a,
a:hover,
a:focus {
    cursor: pointer;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

textarea.form-control {
    min-height: 80px;
    resize: none;
}

/* Links
==========================*/
.link {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    padding: 0 25px;
    background-color: var(--main_color);
    color: #fff;
    font-weight: 500;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: 0.3s color linear;
    -moz-transition: 0.3s color linear;
    -ms-transition: 0.3s color linear;
    -o-transition: 0.3s color linear;
    transition: 0.3s color linear;
}

.link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    clip-path: circle(15% at 0% 100%);
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.4s clip-path linear;
    -moz-transition: 0.4s clip-path linear;
    -ms-transition: 0.4s clip-path linear;
    -o-transition: 0.4s clip-path linear;
    transition: 0.4s clip-path linear;
}

.link i {
    margin: 0 3px;
}

.link span {
    position: relative;
    z-index: 999;
}

.link:hover {
    color: #fff;
}

.link:hover::before {
    clip-path: circle(100% at 50% 100%);
}

.white_btn.link {
    background-color: #ffffff;
    color: #000000;
}

.icon_link {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin: auto;
    line-height: 45px !important;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 21px;
    padding: 0 !important;
    background-color: var(--second_color);
    color: var(--black_color) !important;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Cursor
=========================*/
.cursor {
    z-index: 9999;
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--main_color);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    pointer-events: none;
    -webkit-transition: 0.3s none linear;
    -moz-transition: 0.3s none linear;
    -ms-transition: 0.3s none linear;
    -o-transition: 0.3s none linear;
    transition: 0.3s none linear;
    transition-property: background-color, width, height;
}

/* Header
==========================*/
header {
    position: fixed;
    top: 30px;
    padding: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: transparent;
    transition: 0.4s linear all;
    border-bottom: 1px solid #0001;
    min-height: 80px;
}


header.move {
    background-color: #000;
    top: 0;
    padding: 10px 0;
}


header .logo {
    margin: 0;
    z-index: 9998;
    position: relative;
    transition: 0.4s linear all;
    height: 80px;
    display: inline-block;
}


header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .btns {
    z-index: 9998;
    position: relative;
    display: flex;
    align-items: center;
}

header .btns a {
    margin: 0;
    padding: 0 15px;
    margin-inline-start: 15px;
}

header .btns .lang i {
    font-style: normal;
    line-height: 35px;
    display: block;
}

header .btns a:first-child i {
    margin-inline-end: 5px;
}


header .menu_btn {
    display: none;
    z-index: 999;
    min-width: 45px;
    height: 45px;
    line-height: 45px;
    border: 0;
    color: #fff;
    padding: 0;
    background-color: var(--main_color);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    font-size: 14px;
}

@media (max-width: 575px) {
    header .menu_btn {
        margin-inline-start: 5px !important;
        min-width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

header .navbar {
    min-height: 80px;
    width: 100%;
    margin: -80px auto auto;
    padding: 0;
}

header .navbar ul {
    width: 100%;
    align-items: center;
    justify-content: center;
}

header .navbar ul li {
    display: inline-block;
}

header .navbar ul li span {
    display: none;
}

header .navbar ul li a {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin: 0 20px;
    padding: 0 !important;
    line-height: 45px;
    display: block;
    padding: 0;
    letter-spacing: 1px;
    text-transform: capitalize;
    -webkit-transition: 0.3s linear all;
    -moz-transition: 0.3s linear all;
    -ms-transition: 0.3s linear all;
    -o-transition: 0.3s linear all;
    transition: 0.3s linear all;
}

header .navbar ul li a:hover {
    color: var(--second_color);
}

header .navbar ul li a.active {
    color: #fff;
}

header .navbar ul li a.active::before {
    content: "";
    position: absolute;
    bottom: -2px;
    inset-inline-start: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    width: 25px;
    height: 4px;
    background-color: var(--second_color);
    -webkit-transition: 0.3s, all, linear;
    -moz-transition: 0.3s, all, linear;
    -ms-transition: 0.3s, all, linear;
    -o-transition: 0.3s, all, linear;
    transition: 0.3s, all, linear;
}

@media (min-width: 992px) {
    .navbar ul.navbar-nav li.dropdown .dropdown-menu {
        display: block;
        inset-inline-start: 25px;
        margin: 0;
        top: 45px;
        width: 100%;
        min-width: 220px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        border: 0;
        background-color: #ffff;
        transform-origin: top;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-transform: rotateX(-90deg);
        -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        -webkit-transition: 0.4s all linear;
        -moz-transition: 0.4s all linear;
        -ms-transition: 0.4s all linear;
        -o-transition: 0.4s all linear;
        transition: 0.4s all linear;
    }

    .navbar ul.navbar-nav li.dropdown .dropdown-menu a {
        margin: 0;
        border-bottom: 1px solid #0001;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        padding: 0 15px !important;
        color: var(--black_color);
        font-size: 14px;
        letter-spacing: 0;
        text-align: start;
    }

    .navbar ul.navbar-nav li.dropdown .dropdown-menu a:hover {
        color: var(--second_color);
        background-color: transparent;
    }

    .navbar ul.navbar-nav li.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}

@media all and (max-width: 991px) {

    header .menu_btn {
        display: inline-block;
        margin-inline-start: 15px;
    }

    header .navbar {
        background-color: #000;
        margin: 0;
        z-index: 999;
        min-height: auto;
    }

    header .navbar .container,
    header .navbar .container .row,
    header .navbar .container .col-12 {
        min-width: 100%;
        width: 100%;
        margin: 0;
    }

    header .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 30px;
        transition: 0.4s linear all;
    }

    header.move .navbar ul {
        padding: 25px 0 0;
    }

    header .navbar ul li {
        display: block;
        min-width: 100%;
    }

    header .navbar ul li img {
        display: none;
    }

    header .navbar ul li span {
        display: block;
    }


    header .navbar ul li a {
        color: #fff;
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 15%);
        line-height: 40px;
        font-size: 12px;
        text-align: start;
    }

    header .navbar ul li a::before {
        display: none;
    }

}

/* Section
=========================*/
section {
    padding: 70px 0;
    position: relative;
}

.section_color {
    background-color: #000000;
}

.section_title {
    display: block;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 35px;
    font-weight: 600;
    position: relative;
    text-align: center;
    max-width: 340px;
}

.section_title::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    width: 150px;
    background-color: #fbdda9;
    z-index: -1;
    margin: auto;
}

.mt_35 {
    margin-top: 35px;
}

.text-start {
    text-align: start !important;
}

/* Page Head
=======================*/
.page_head {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 70px;
    background: url(../images/bc.jpg) no-repeat center;
    background-size: cover;
}

.page_head a {
    color: #fff;
}

.page_head li {
    letter-spacing: 1px;
    color: var(--second_color);
}

.page_head h3 {
    font-size: 44px;
    text-transform: capitalize;
    line-height: 40px;
    margin: 0 0 20px;
    color: #fff;
    font-weight: 700;
}

.page_head::before {
    content: "";
    background-color: rgba(0, 0, 0, 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

/* Main Section
=======================*/
.main_section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    background: url(../images/bc.jpg) no-repeat center;
    background-size: cover;
}

.main_section::before {
    content: "";
    background-color: rgba(0, 0, 0, 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.intro {
    position: relative;
}

.intro h1 {
    font-size: 115px;
    text-transform: capitalize;
    line-height: 120px;
    margin: 0 0 40px;
    color: #fff;
    font-weight: 700;
}

.intro h1 span {
    display: inline-block
}


.intro p {
    font-size: 28px;
    color: #fff;
    margin: 0 auto 35px;
    font-weight: 400;
    opacity: 85%;
    max-width: 840px;
    line-height: 45px;
}

/* Brands
=======================*/
#products {
    margin-bottom: -31px;
}

.brands_category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: block;
    background: #ffffff;
    padding: 50px 15px;
    margin: 0;
    text-align: center;
    transition: 0.4s all linear;
    width: calc(100% / 5);
    border: 2px solid transparent;
    border-left: 2px solid #f4f4f4;
    border: 2px solid #f4f4f4;
    transform: translateY(-30px);
    border-radius: 60px 60px 0 0;
    height: 320px;
}

.brand img {
    width: 100%;
    height: 180px;
    margin: auto;
    transition: 0.6s transform linear;
    object-fit: contain;
    background-color: #fff;
}

.brand h3 {
    font-weight: 600;
    margin: 25px auto 0;
    color: var(--black_color);
    font-size: 16px;
    text-transform: capitalize;
}

.brand:hover h3 {
    color: var(--main_color);
}


/* About
==========================*/
.about {
    text-align: start
}

.about h3 {
    font-size: 44px;
    text-transform: capitalize;
    line-height: 40px;
    margin: 0 0 30px;
    color: #fff;
    font-weight: 700;
    text-align: start;
}

.about h4 {
    font-size: 22px;
    text-transform: capitalize;
    line-height: 40px;
    margin: 30px auto 5px;
    color: var(--second_color);
    font-weight: 600;
    text-align: start;
}

.about p {
    margin: 0 0 25px;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    padding-inline-end: 50px;
    text-align: start;
}

.details h3 {
    margin: 0 0 15px;
    font-size: 22px;
    color: var(--main_color);
}

.details p {
    margin: 0 0 15px;
    font-size: 15px;
    color: var(--black_color);
}

/* Products
=========================*/
.logo_box {
    background-color: #fff7e9;
    padding: 50px;
    text-align: center;
    position: relative;
    border-radius: 25px;
}

.logo_box img {
    margin: auto;
}

.logo_box h3 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 15px;
    color: var(--main_color);
}

.logo_box p {
    font-size: 22px;
    text-transform: capitalize;
    letter-spacing: 2px;
    line-height: 20px;
}

.logo_box span {
    background-color: var(--third_color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo_box::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    border: 20px solid transparent;
    width: 10px;
    height: 10px;
    margin: auto;
    border-left-color: #fff7e9;
}

.logo_box.white {
    background-color: #fff;
    position: sticky;
    top: 115px;
}

.logo_box.white::after {
    border-left-color: #fff;
}

.brand_product {
    border: 3px solid #fff7e9;
    padding: 40px 0 40px 20px;
    height: 472px;
}

.brand_product img {
    width: calc(100% - 150px);
    object-fit: contain;
    height: 100%;
}

.brand_product img:first-child {
    min-width: 145px;
}

.hint {
    font-size: 34px;
    text-transform: capitalize;
    line-height: 50px;
    margin: 0 0 40px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.hint span {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-inline-start: 15px;
}

.product_item {
    display: block;
    padding: 25px 0;
    text-align: center;
    position: relative;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid #fff4;
}

.product_item:hover {
    background-color: #fff1;
}

.product_item img {
    height: 200px;
    width: 100%;
    object-fit: contain;
}

.product_item h3 {
    margin: 35px auto 10px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.product_item p {
    margin: 0;
    color: var(--second_color);
    font-size: 18px;
}

.small_p .product_item p {
    font-size: 15px;
}

.product_details {
    margin-bottom: 35px;
    text-align: start;
}

.product_details h2 {
    margin: 0 0 15px;
    font-size: 24px;
    color: var(--main_color);
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.product_details h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: var(--main_color);
    letter-spacing: 0.5px;
}

.product_details h3.big {
    font-size: 27px;
    letter-spacing: 0;
}

.product_details h5 {
    margin: 0 0 15px;
    color: var(--second_color);
    font-size: 18px;
    display: block;
}

.product_details h5 span {
    color: var(--main_color);
}

.product_details p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #fff;
    line-height: 25px;
}

.product_details ul {
    margin-left: 0;
    margin-right: 0
}

.product_details ul li {
    margin-bottom: 15px;
    font-size: 15px;
    display: block;
    position: relative;
}

.product_details ul.row li {

    padding-inline-start: 15px;
    padding-inline-end: 0;
    line-height: 25px;
}

.product_details ul.row span {
    margin-bottom: 5px
}

.product_details ul.row li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--main_color);
    border-radius: 50%;
    inset-inline-start: 0;
    top: 9px;
    margin: auto;
}

.product_details ul li span {
    margin: 0;
    color: var(--second_color);
    font-size: 16px;
    text-transform: capitalize;
    display: block;
}

.product_img {
    display: block;
    padding: 25px 0;
    text-align: center;
    position: sticky;
    border-radius: 25px;
    margin-bottom: 35px;
    border: 1px solid #fff4;
    width: 100%;
    height: 540px;
    overflow: hidden;
    top: 110px;
}

.product_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.snakes h3 {
    font-size: 36px;
    color: var(--second_color);
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 25px;
}

.snakes img {
    margin-bottom: 35px;
}

.snakes p {
    font-size: 16px;
    line-height: 28px;
}

.snakes ul.custom span {
    display: inline-block;
    margin-inline-end: 10px;
}

.contact_item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #fff1;
    padding: 25px;
    border-radius: 25px;
}

.contact_item i {
    width: 55px;
    height: 55px;
    background-color: var(--second_color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    margin-inline-end: 20px;
    color: var(--black_color);
}

.contact_item .cont span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: start;
}

.txt_link {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.form-control {
    border: 1px solid #ddd !important;
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
    box-shadow: none !important;
    outline: none !important;
    font-size: 16px;
    background-color: transparent !important;
    border-color: #fff5 !important;
    color: #fff !important;
}

.contact_form h3 {
    font-size: 32px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    margin: 0 0 30px;
    text-align: start;
}

.copyright {
    margin: 30px auto 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-top: 1px solid #fff2;
    padding-top: 20px;
}

.up_btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: -32px;
    background-color: var(--third_color);
    color: #000000;
    z-index: 99;
    border: 5px solid #fff;
    width: 65px;
    height: 65px;
    line-height: 55px;
    font-size: 18px;
}

.sec_id {
    position: absolute;
    height: 90px;
    top: -90px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.preloader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    text-align: center;
}

.preloader img {
    padding: 25px;
    object-fit: contain;
    width: 140px;
    height: 140px;
}

.preloader p {
    margin: 25px auto 0;
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
}

/* Scroll
====================*/
.scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    width: 110px;
    height: 40px;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
}

.scroll-btn:hover {
    color: #fff;
}

.scroll-btn::before {
    content: " ";
    height: 40px;
    width: 4px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    margin: auto;
    opacity: 0.4;
    border-radius: 25px;
    -webkit-border-radius: 25px;
}

.scroll-btn::after {
    content: " ";
    height: 20px;
    width: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -webkit-animation: move 1.5s ease-in-out alternate infinite;
    animation: move 1.5s ease-in-out alternate infinite;
}

@-webkit-keyframes move {
    0% {
        top: -45px;
    }

    100% {
        top: -35px;
    }
}

@keyframes move {
    0% {
        top: -45px;
    }

    100% {
        top: -35px;
    }
}

footer {
    padding: 30px 0;
    border-top: 1px solid #fff4 !important;
}

footer h3 {
    margin: 15px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    line-height: 30px;
    color: var(--second_color);
    margin-inline-start: -15px;
    text-align: start;
}

footer ul {
    padding-inline-start: 15px
}

footer p {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    padding-inline-end: 25px;
    text-align: justify;
    margin-inline-start: -15px;
}

footer ul.row li {
    display: block;
    position: relative;
    margin-bottom: 10px;
    text-align: start;
}

footer ul li::before {
    content: "";
    color: #fff9;
    position: absolute;
    content: "\f105";
    inset-inline-start: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

footer ul li a {
    display: inline-block;
    color: #fff;
    line-height: 24px;
    font-size: 15px;
    text-transform: capitalize;
    -webkit-transition: 0.4s linear color;
    -moz-transition: 0.4s linear color;
    -ms-transition: 0.4s linear color;
    -o-transition: 0.4s linear color;
    transition: 0.4s linear color;
    font-weight: 400;
}

footer ul li a:hover {
    color: var(--second_color);
}

.newsletters .link {
    margin: 15px 0 0;
    font-size: 12px;
    line-height: 40px;
    padding: 0 15px;
}

.chat-icon {
    position: fixed;
    inset-inline-end: 30px;
    bottom: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 5px;
    cursor: pointer;
    z-index: 99999999;
    background-color: #25d366;
    text-align: center;
    line-height: 50px;
}
.chat-icon a{
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
}
.chat-icon i {
    width: 100%;
    border-radius: inherit;
    color: #fff;
    font-size: 30px;
}

.chat-icon::after,
.chat-icon::before {
    width: 50px;
    height: 50px;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s, all, linear;
    -moz-transition: 0.4s, all, linear;
    -ms-transition: 0.4s, all, linear;
    -o-transition: 0.4s, all, linear;
    transition: 0.4s, all, linear;
    animation: ripple 1s infinite;
    animation-delay: 0.6s;
}

.chat-icon::after {
    animation-delay: 0.4s;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media all and (max-width:991px) {
    .main_section {
        min-height: auto;
        padding: 200px 0 !important;
        display: block;
    }

    .intro {
        margin: auto
    }

    .intro h1 {
        font-size: 80px;
        line-height: 90px;
        margin: 0 0 25px;
    }

    .intro p {
        font-size: 18px;
    }

    .logo_box.white {
        position: relative;
        top: 0
    }

    .brands {
        padding-top: 70px !important
    }

    .brands .section_title {
        display: block;
        margin: 0 0 -60px;
        max-width: 100%;
    }

    .logo_box::after {
        right: 0;
        left: 0;
        top: auto;
        bottom: -40px;
        border-left-color: transparent !important;
        border-top-color: #fff7e9 !important;
    }

    .logo_box.white::after {
        border-top-color: #fff !Important
    }

    .logo_box.white {
        padding: 0 15px 35px;
    }

    .logo_box.white img {
        margin-bottom: -65px;
    }

    .product_item {
        margin-top: 25px;
        margin-bottom: 0;
    }

    .contact_info {
        margin-top: 25px;
    }

    .brand {
        width: calc(100% / 3);
    }

    .brand:nth-child(4),
    .brand:nth-child(5),
    .brand:nth-child(6) {
        border-radius: 0;
        width: calc(100% / 2);
    }

    .row-reverse {
        flex-direction: column-reverse;
    }

    .row-reverse img {
        width: 100%;
        margin-bottom: 25px;
    }

    .hint {
        font-size: 24px;
        line-height: 30px;
        margin: 0;
    }
}

@media all and (max-width:767px) {
    .main_section {
        padding: 170px 0 !important;
    }

    .intro h1 {
        font-size: 64px;
    }

    .intro p {
        line-height: 25px;
    }

    .about_content {
        margin-bottom: 25px;
    }

    .brand {
        padding: 25px;
        height: 300px;
    }

    header {
        min-height: 65px;
        background-color: #000;
        top: 0;
        padding: 10px 0;
    }

    header .navbar ul {
        padding: 25px 0 0
    }

    .navbar-nav .dropdown-menu {
        background-color: #fff2;
    }

    .navbar-nav .dropdown-menu a {
        border: 0;
        font-weight: 400;
        padding-inline-start: 25px !important;
    }

    .hint span {
        display: block
    }

    .about_content p {
        padding: 0
    }

    .about_content {
        margin: 0;
    }

    .about_content .link {
        margin: 0;
    }
}

@media all and (max-width:576px) {
    .intro h1 {
        font-size: 36px;
        line-height: 50px;
    }

    .intro p {
        font-size: 13px;
        line-height: 20px;
    }

    .scroll-btn {
        display: none
    }

    .main_section {
        padding: 100px 0 50px !important;
    }

    section,
    .brands {
        padding: 35px 0 !important;
    }

    .brand:nth-child(5),
    .brand:nth-child(6) {
        border-radius: 0;
        width: calc(100% / 1);
    }

    .brands {
        padding-bottom: 70px !important
    }

    .section_title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .logo_box {
        padding: 50px 25px;
    }

    .brand {
        padding: 15px;
        width: calc(100% / 2);
        height: 175px;
    }

    .brand:nth-child(3) {
        border-radius: 0
    }

    .brand img {
        height: 100px;
    }

    .brand h3 {
        margin: 0;
    }


    header .logo {
        height: 45px;
    }

    header .btns a {
        margin-inline-start: 5px;
        padding: 0;
        width: 35px;
        height: 35px;
        overflow: hidden;
        line-height: 35px !important;
        font-size: 14px;
    }

    header .btns .link {
        padding: 0;
        width: 35px;
        height: 35px;
        overflow: hidden;
        margin: 0;
        line-height: 35px;
    }

    .hint {
        font-size: 18px;
        font-weight: 500;
    }

    .hint span {
        display: block
    }

    .page_head {
        padding: 100px 0 30px;
    }

    .page_head h3 {
        font-size: 18px;
        letter-spacing: 1px;
        margin: 0 0 10px;
        line-height: 25px;
    }

    .page_head li {
        font-size: 14px;
    }

    .about h3 {
        font-size: 30px;
        line-height: 30px;
        margin: 0 0 15px;
    }

    .about h4 {
        font-size: 18px;
        line-height: 30px;
        margin: 25px auto 0px;
    }

    .about p,
    .about_content p {
        margin: 0 0 15px;
        font-size: 14px;
        line-height: 25px;
        padding-inline-end: 0;
    }

    .details h3 {
        margin: 0 0 15px;
        font-size: 22px;
    }

    .details p {
        margin: 0 0 15px;
        font-size: 15px;
    }

    .product_img {
        height: 360px;
        overflow: hidden;
    }

    .product_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Ar
====================*/
html[dir=rtl] .fa-arrow-right,
html[dir=rtl] .fa-angle-right {
    transform: rotateY(180deg);
}

html[dir=rtl] footer ul li::before {
    content: "\f104";
}

html[dir=rtl] header .btns .lang i {
    line-height: 45px;
}

html[dir=rtl] body,
html[dir=rtl] .txt_link,
html[dir=rtl] .scroll-btn,
html[dir=rtl] .logo_box h3,
html[dir=rtl] .page_head li,
html[dir=rtl] header .navbar ul li a,
html[dir=rtl] .hint span,
html[dir=rtl] .link {
    letter-spacing: 0 !important;
}