/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Singo-1Goqv';
    src: url('../fonts/Singo-1Goqv.woff') format('woff'), url('../fonts/Singo-1Goqv.woff2') format('woff2'), url('../fonts/Singo-1Goqv.svg#Singo-1Goqv') format('svg'), url('../fonts/Singo-1Goqv.eot'), url('../fonts/Singo-1Goqv.eot?#iefix') format('embedded-opentype'), url('../fonts/Singo-1Goqv.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fal,
.far {
    font-family: "Font Awesome 5 Pro";
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--blue);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: var(--green);
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
}

p {
    font-size: 18px;
    line-height: 26px;
    color: var(--light_dark);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

:root {
    --orange: #fe9b36;
    --red: #de0903;
    --white: #ffffff;
    --blue: #002455;
    --light_dark: #4f4f4f;
    --font18: 18px;
    --font20: 20px;
    --font22: 22px;
    --font24: 24px;
    --font26: 26px;
    --font28: 28px;
    --font28: 28px;
    --font30: 30px;
    --font32: 32px;
    --font34: 34px;
    --font36: 36px;
    --font38: 38px;
    --font40: 40px;
    --font55: 55px;
    --font72: 72px;
    --font85: 85px;
}

.comnpadding {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Khand", sans-serif !important;
    font-weight: 600;
}

.comntitle {
    font-size: 45px;
    margin-bottom: 25px;
    color: var(--blue);
}

.comnbtn {
    font-size: 18px;
    padding: 5px 15px;
    font-weight: bold;
    background: linear-gradient( 26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%);
}


/*=================== start here =================== */

#header {
    width: 100%;
    position: absolute;
    top: 50px;
    z-index: 2;
}

#header.show {
    position: sticky !important;
    top: 30px;
    left: 0 !important;
    width: 100%;
    z-index: 999;
    -webkit-animation: sticky_section 1.2s;
    animation: sticky_section 1.2s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

@keyframes sticky_section {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-150%);
    }
}

#header.show .container {
    box-shadow: 0px 0px 10px 0px #00000024;
}


/* header .container {
  
    background: var(--white);
    border-radius: 90px;
} */

#header .container {
    /* padding: 5px 30px 5px 50px; */
    background: var(--white);
    border-radius: 90px;
    position: relative;
}


/* .logo {
    width: 60px;
} */

.logo {
    width: 100px;
    position: absolute;
    left: 90px;
    background: white;
    padding: 15px;
    border-radius: 5px;
}


/* .navbar-nav {
    margin: auto;
} */

.navbar-nav .nav-item {
    padding: 15px;
}

.nav-link {
    font-size: var(--font22);
    font-weight: 600;
    color: var(--blue) !important;
    position: relative;
    z-index: 1;
}

#header .nav-link:hover {
    transform: scale(1.05);
}

.nav-link::before {
    content: "";
    background: var(--orange);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 1s;
    z-index: 2;
}

.nav-link:hover::before {
    width: 100%;
}

#header .navbar-nav .nav-item:last-child .comnbtn {
    display: none;
}

#header .comnbtn {
    /* background: var(--blue); */
    background: linear-gradient( 26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%);
    color: var(--white);
    border: none;
    padding: 15px 45px;
    border-radius: 30px;
    font-size: var(--font22);
}

#header .comnbtn:hover {
    background: var(--blue);
}

#header .navbar-collapse {
    margin-left: 230px;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.menu li a {
    font-size: 20px;
    padding: 10px 15px;
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
}

.Main_Logo img {
    max-width: 70px;
}


/* .menu li.Main_Logo a {
    padding: 0;
} */


/* ======================= */

.banner {
    /* background: linear-gradient( 26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%); */
    background: url("../images/Header_img.png") no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product_banner_img {
    background: url("../images/Our-Product.jpg") no-repeat;
    background-size: cover;
}

.contact_us_img {
    background: url("../images/Contact-Us.jpg") no-repeat;
    background-size: cover;
}

.about_us_img {
    background: url("../images/About-Us.jpg") no-repeat;
    background-size: cover;
}

.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0000006e;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner_caption {
    color: var(--white);
    padding-top: 150px;
}

.banner_caption h1 {
    font-size: var(--font72);
    font-weight: 700;
}

.banner_caption p {
    font-size: var(--font20);
    line-height: 28px;
    font-weight: 300;
    color: var(--white);
}

.banner_caption .comnbtn {
    background: linear-gradient( 26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%);
    color: var(--white);
    font-size: var(--font20);
    padding: 15px;
    margin-top: 50px;
    display: inline-block;
    border-radius: 5px;
}

.banner_caption .comnbtn:hover {
    background: var(--white);
    color: var(--blue);
}

.services_part {
    background: var(--white);
}

.services_part .comntitle {
    text-align: center;
    color: var(--blue);
    margin-bottom: 70px;
}

.list_stayle_one {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.list_stayle_one li {
    width: calc(33% - 30px);
    background: #F3F3F3;
    border-radius: 20px;
    padding: 30px;
    /* border: 4px solid #002455; */
}

.list_stayle_one li img {
    width: 50px;
}

.list_stayle_one li h4 {
    font-size: var(--font34);
    font-family: 'Francy';
    color: var(--blue);
    margin: 30px 0 5px;
}

.we_are {
    background: var(--blue);
    position: relative;
    z-index: 1;
}

.we_are::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/Pattern-02.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.we_are {
    color: var(--white);
}

.whu_img {
    position: relative;
    width: 75%;
}

.whu_about {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60%;
    border: 10px solid white;
    transform: translate(50%, -50%);
}

.food_had {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}


/* .food{
 position: relative;
    z-index: 1;
}

.food::before{
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/Pattern-03.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
} */

.food_tittle {
    font-size: var(--font24);
    color: var(--blue);
    font-weight: 600;
    text-align: center;
    /* border-bottom: 2px solid #002455; */
    display: inline-block;
    position: relative;
}

.food_tittle::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 0;
    bottom: 0;
}

.food_had .comnbtn {
    background: var(--blue);
    color: var(--white);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 5px;
}

.food_had .comnbtn:hover {
    background: var(--orange);
}

.food .row_colum .col-12 {
    margin-bottom: 70px;
}

.food .row_colum .col-12:last-child {
    margin-bottom: 0;
}

.list_two {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.list_two li {
    width: 32%;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #e9e9e9;
}

.food_img {
    overflow: hidden;
}

.food_box:hover .food_img img {
    transform: scale(1.1);
    transition: 1s;
}

.food .comntitle {
    margin-bottom: 70px;
}

.food_box h4 {
    font-size: var(--font28);
    color: var(--blue);
    font-weight: 600;
    margin: 30px 0 15px;
}

.food_box a {
    font-size: var(--font20);
    font-weight: 500;
    color: var(--orange);
}

.food_box a:hover {
    color: var(--blue);
}

.partner {
    background: url("../images/parner_img.png") no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

.we_are .comntitle,
.we_are p,
.partner p,
.partner .comntitle {
    color: var(--white);
}

.partner .comntitle {
    margin-bottom: 15px;
}

.partner a {
    background: var(--orange);
    color: var(--white);
    padding: 15px 50px;
    margin-top: 30px;
    display: inline-block;
    border-radius: 5px;
}

.partner a:hover {
    background: var(--white);
    color: var(--blue);
}

.intro {
    background: url("../images/Pattern-01.png") no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}


/* .intro::before{
    content: "";
    width: 100%;
    height: 100%;
background: #00000040;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
} */

.intro p,
.intro .comntitle {
    color: var(--white);
}

.intro .comntitle {
    margin-bottom: 15px;
}

#testimonail {
    margin-top: 70px;
}

.client_div {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    /* align-items: center; */
    /* padding: 15px; */
}

.slider_img {
    width: 30%;
    /* height: 100%; */
}

.slider_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.intro_text {
    width: 70%;
    padding: 15px;
}

.intro_text p {
    color: var(--light_dark);
}

.intro_text h6 {
    font-size: var(--font22);
    margin-bottom: 5px;
}

.intro_text span {
    display: block;
    margin-bottom: 15px;
    color: var(--orange);
}

.contact_us .comntitle {
    margin-bottom: 15px;
}

.contact_us iframe {
    width: 100%;
    height: 100%;
}

.detail_call {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.detail_call li {
    width: 48%;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.detail_call li:last-child {
    width: 100%;
    margin-bottom: 0;
}

.detail_call li span {
    font-size: var(--font22);
    background: var(--blue);
    color: var(--white);
    border-radius: 50px;
    vertical-align: middle;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail_call h6 {
    font-size: var(--font22);
    color: var(--blue);
    margin-bottom: 5px;
    font-weight: 500;
}

.detail_call a {
    font-size: var(--font18);
    color: var(--light_dark);
}

.form_div {
    margin-top: 50px;
}

.form_div .row div {
    margin-bottom: 30px;
}

label {
    font-size: var(--font20);
    color: var(--blue);
    margin-bottom: 5px;
    font-family: "Khand", sans-serif !important;
    font-weight: 500;
}

input {
    font-size: var(--font18);
    height: 50px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dedede;
}

textarea:focus,
input:focus {
    border: 1px solid var(--blue);
}

textarea {
    font-size: var(--font18);
    height: 150px;
    border: 1px solid #dedede;
    resize: none;
    padding: 15px;
    border-radius: 5px;
}

.form_div .comnbtn {
    background: var(--blue);
    color: var(--white);
    padding: 15px 60px;
    border: unset;
    display: table;
    margin: auto;
    border-radius: 5px;
}

.form_div .comnbtn:hover {
    background: linear-gradient(26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%);
}

.food_trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
}

.food_trust li {
    width: 31%;
}

.Commitment .comntitle {
    margin-bottom: 15px;
}

.text_content {
    background: var(--white);
    padding: 15px;
    width: 90%;
    margin: -50px auto 0;
    position: relative;
    box-shadow: 0px 0px 10px 0px #00000024;
    border-radius: 3px;
}

.text_content h4 {
    font-size: var(--font22);
}

.text_content span {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    background: #F3F3F3;
    padding: 15px;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_content span img {
    max-width: 35px;
}

.trust_img {
    overflow: hidden;
    border-radius: 3px;
}

.trust_img img {
    height: 330px;
    object-fit: cover;
}

.box_one:hover .trust_img img {
    transform: scale(1.1);
    transition: 0.5s;
}

.box_one:hover .text_content span {
    background: var(--blue);
}

.box_one:hover .text_content span img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(36deg) brightness(108%) contrast(101%);
}


/*==================== footer start here ==================== */

#footer {
    background: var(--blue);
    color: var(--white);
    padding: 70px 0 0 0;
}

.ftlogo>a {
    display: block;
    width: 90px;
    margin: 0 auto 15px;
}

.ftlogo p {
    color: var(--white);
    text-align: center;
}

.ft_social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.ft_social a {
    font-size: var(--font34);
    color: var(--white);
}

.ft_social a:hover i {
    color: var(--orange);
}

.ft_about h6 {
    font-size: var(--font30);
    margin-bottom: 30px;
}

.list-unstyled {
    display: flex;
    flex-wrap: wrap;
}

.list-unstyled li {
    width: 50%;
    padding-bottom: 15px;
}

.list-unstyled li:last-child {
    padding-bottom: 0;
}

.list-unstyled a {
    color: white;
    position: relative;
    overflow: hidden;
    /* transition: 1s; */
    display: inline-block;
}

.list-unstyled a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: -100%;
    transition: 0.2s;
}

.list-unstyled a:hover {
    padding-left: 15px;
    color: var(--orange);
}

.list-unstyled a:hover::before {
    left: 0;
    color: var(--orange);
}

.copyright {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid var(--white);
}

.copyright a {
    color: var(--orange);
}

.ft_cotadd aside {
    display: flex;
    align-items: baseline;
}

.ft_cotadd a i,
.ft_cotadd aside i {
    font-size: 22px;
    padding-right: 15px;
}

.ft_cotadd a,
.ft_cotadd aside,
.list-unstyled a {
    font-size: var(--font22);
}

.ft_cotadd a {
    font-size: var(--font22);
    display: block;
    padding-bottom: 15px;
    color: var(--white);
}

.ft_cotadd aside:hover i,
.ft_cotadd aside:hover,
.ft_cotadd a:hover i,
.ft_cotadd a:hover {
    color: var(--orange);
}


/* =================================================== */

.product_banner {
    height: 700px;
}

.quality {
    background: none;
}

.quality::before {
    display: none;
}

.quality .comntitle {
    color: var(--blue);
}

.quality p {
    color: var(--light_dark);
}

.reach_list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px dashed #dedede;
}

.reach_list li::before {
    content: "\f336";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    top: -3px;
    left: 0;
    font-size: 26px;
    color: var(--orange);
}

.reach_list h6 {
    font-size: var(--font24);
    color: var(--blue);
}

.global_reach img {
    height: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
}

#testimonail .client_div {
    height: 250px !important;
}

#footer {
    position: relative;
}

.wp_icon {
    position: fixed;
    width: 80px;
    height: 80px;
    background: linear-gradient( 26deg, rgba(221, 7, 2, 1) 0%, rgba(255, 158, 55, 1) 100%);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10%;
    right: 15px;
    font-size: 42px;
    color: var(--white);
    z-index: 5;
}

.wp_icon:hover {
    color: var(--white);
}