@charset "utf-8";

:root {
    scroll-behavior: initial;
}

*:focus {
    outline: none;
}

figure {
    margin-bottom: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #003057;
    line-height: 28px;
}

p {
    margin-bottom: 20px;
}

b,
strong {
    font-weight: 700;
}

a {
    color: #003057;
    text-decoration: none;
    outline: none;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    color: #EC2227;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin: 0px;
    padding: 0px;
    color: #003057;
}

h1,
h2 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #EC2227;
}

h5 {
    font-size: 30px;
    margin-bottom: 15px;
}

h6 {
    font-size: 24px;
    margin-bottom: 10px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.pmb0 p:last-child {
    margin-bottom: 0px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-100 {
    margin-bottom: 100px;
}

/* common css end */

/*bullet start*/
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bullet-list ul li {
    position: relative;
    padding-left: 15px;
    padding-bottom: 3px;
}

.bullet-list ul li::before {
    background-color: #003057;
    content: '';
    height: 5px;
    width: 5px;
    left: 0px;
    position: absolute;
    top: 10px;
    border-radius: 50%;
}

.bullet-list ul ul {
    padding-top: 8px;
    margin-bottom: 0px;
}

.bullet-list ul {
    margin-bottom: 20px;
}

/*bullet end*/

/*form start*/
input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="button"] {
    outline: none;
}

label {
    display: inline-block;
    max-width: 100%;
}

textarea {
    resize: none;
    height: 110px;
    border-radius: 20px;
}

.form-control {
    /* font-family: "Figtree", serif; */
    display: block;
    width: 100%;
    height: auto;
    padding: 0px 0px 15px;
    font-size: 20px;
    line-height: 1;
    color: #555;
    border: none;
    border-bottom: 1px solid #888888;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    font-weight: 400;
}

.form-control:focus,
.input-text:focus {
    color: #333;
    border-bottom-color: #555555;
    background-color: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #777777;
    font-weight: 400;
}

.form-control::-moz-placeholder {
    color: #777777;
    opacity: 1;
    font-weight: 400;
}

.form-control::-ms-input-placeholder {
    color: #777777;
    font-weight: 400;
}

.form-control:focus::-webkit-input-placeholder {
    color: #333;
    font-weight: 400;
}

.form-control:focus::-moz-placeholder {
    color: #333;
    opacity: 1;
    font-weight: 400;
}

.form-control:focus::-ms-input-placeholder {
    color: #333;
    font-weight: 400;
}

textarea.form-control,
textarea {
    height: 100px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: none;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    background-image: none;
    background: transparent;
}

input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

.form-group {
    margin-bottom: 20px;
    z-index: 1;
}

.form-check-input[type=checkbox] {
    border-radius: 0px;
}

.form-check-input {
    margin-top: 8px;
    border-radius: 0px;
    border-color: #000;
}

.form-check-input:focus {
    border-color: #000;
    box-shadow: none;
}

.form-check-input:checked:focus {
    border-color: #0d6efd;
}

.img-scale {
    overflow: hidden;
    vertical-align: top;
}

.img-scale img {
    transition: all 0.3s ease;
    transform: scale(1);
}

.img-scale:hover img {
    transition: all 0.3s ease;
    transform: scale(1.1);
}

.text-red {
    color: #EC2227;
}

.bg-white {
    background-color: #fff;
}

/*form end*/

/*button start*/
ins {
    text-decoration: none;
}

button:focus {
    outline: none;
}

.btn-theme {
    border-radius: 10px;
    background: #EC2227;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    color: #FFF;
    font-weight: 500;
    display: inline-flex;
}

.btn-theme:hover {
    background: #003057;
    color: #FFF;
}

.btn-theme-white {
    border-radius: 10px;
    background: #EC2227;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    line-height: 1.3;
    font-weight: 500;
    display: inline-flex;
}

.btn-theme-white:hover {
    color: #EC2227;
    background: #FFFFFF;
}


.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

section.d-inline-block {
    vertical-align: top;
}

/* header menu css start */
.logo {
    padding: 20px 0px;
}

.logo a {
    display: block;
}

.logo img,
.logo {
    transition: all 0.3s ease;
}

.sticky .logo {
    padding: 10px 0px;
}

.sticky .logo img {
    width: 120px;
}

.mainheader {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 30;
    transition: all 0.3s ease;
}

.wpcf7-spinner {
    margin-top: 13px;
    vertical-align: top;
}

.wpcf7 form.sent .wpcf7-response-output {
    line-height: 24px;
    background: #dff0d8;
    border: 1px solid #c3e6cb;
    margin: 20px 0 0;
    padding: 7px 12px;
    color: #155724;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    line-height: 24px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    margin: 20px 0 0;
    padding: 7px 15px;
    color: #721c24;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    font-size: 16px;
}

span.wpcf7-not-valid-tip {
    position: relative;
    text-align: left;
    font-size: 14px;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
    top: 0;
    left: 0;
}

section.hero-section {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
}

.hero-content-item {
    width: 33.33%;
    padding: 0px 12px;
    border-right: 1px solid #D4D4D4;
}

.hero-content-item:last-child {
    border: none;
}

.hero-content-item h5 {
    line-height: 1.5;
}

.hero-top {
    padding-top: 70px;
}

.text-black h5 {
    color: #000;
}

.hm-advancing-img img {
    width: 100%;
    object-fit: cover;
}

.hm-advancing-content {
    align-content: center;
}

.production-lines-bottom {
    margin-bottom: 50px;
    border: 1px solid #DDDDDD;
}

.production-lines-top h5 {
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #003057;
}

.advanced-bakery-item {
    width: 25%;
}

.advanced-bakery-item img {
    width: 100%;
    object-fit: cover;
}

.advanced-bakery-item h5 {
    font-size: 24px;
    padding: 0px 12px;
}





.excellence_track {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.excellence-item p {
    font-size: 18px;
    font-weight: 600;

}

@keyframes scrollLogos {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.icon-slider {
    overflow: hidden;
    position: relative;
    padding: 30px 0px 30px 0px;
}

.excellence_track {
    display: flex;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.excellence_items {
    display: flex;
    margin: 0px 12px;
    padding: 50px 60px;
    border-radius: 12px;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    background: #F5F5F5;
    flex-direction: column;
    justify-content: center;
}

.excellence_items img {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.excellence_track:hover {
    animation-play-state: paused;
}


.black-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%) no-repeat;
}

.take-the-leap-section {
    overflow: hidden;
}

.take-the-leap-section .contentrow {
    top: 50%;
    content: '';
    position: absolute;
    text-align: center;
    align-items: center;
    align-content: center;
    transform: translateY(-50%);
}

.take-the-leap-section video {
    vertical-align: bottom;
}

footer {
    padding: 100px 0px;
    text-align: center;
    background: #003057;
}

footer h5 {
    font-weight: 400;
}

footer .certificate-menu ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialicon ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialicon ul li {
    display: flex;
    margin-right: 10px;
    align-items: center;
}

.socialicon ul li:last-child {
    margin-right: 0px;
}

.socialicon ul li a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #003057;
    background-color: #FFFFFF;
}

.socialicon ul li a:hover {
    border: 1px solid #FFFFFF;
    background-color: #003057;
}

.socialicon ul li a svg {
    fill: #003057;
    transition: all 0.3s ease;
}

.socialicon ul li a:hover svg {
    fill: #FFFFFF;
    transition: all 0.3s ease;
}



.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: #EC2227;
}







.form-container {
    max-width: 800px;
    width: 100%;
    background: #fafafa;
    padding: 75px 100px;
    box-sizing: border-box;
}

.form-container h2 {
    text-align: center;
    color: #EC2227;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    padding: 8px 0;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-size: 16px;

    background-image: url(../images/down-arrow-vector.svg);
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 10px;
}

input.btn-theme {
    outline: none;
    border: navajowhite;
}



.closebtn {
    z-index: 5;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
    padding: 0px;
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.closebtn::after,
.closebtn::before {
    background-color: #000;
    width: 100%;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
}

.closebtn::before {
    height: 100%;
    width: 2px;
    position: absolute;
}

.modal-content .closebtn {
    top: 15px;
    right: 15px;
}

.modal-content .closebtn::after,
.modal-content .closebtn::before {
    background-color: #EC2227;
}

.modal-content .closebtn:hover::after,
.modal-content .closebtn:hover::before {
    background-color: #003057;
}

.modal-body {
    padding: 50px;
    text-align: center;
    background-color: #F5F5F5;
}

.modal-content {
    box-shadow: none;
    border: none;
    border-start-end-radius: 10px;
}

.modal-dialog {
    max-width: 800px;
}

.thankyoupage {
    margin: 200px 0px
}

.grecaptcha-badge {
    display: none !important;
}

.production-lines-top ul {
    min-height: 122px;
}

.wpcf7-spinner {
    position: absolute;
    margin-top: 18px;
}

.form-submit {
    position: relative;
}