@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
    font-size: 10px;
}
@media (max-width: 1900px) {
     :root {
        font-size: 8px;
    }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
b,
strong {
    font-weight: 700;
}
a {
    display: inline-block;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    margin: 0;
}
a,
a:hover,
a:focus {
    text-decoration: none !important;
    color: inherit;
}
img {
    display: block;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.color-mar {
    color: rgb(208, 69, 78);
}
.color-dg {
    color: rgb(38, 38, 38) !important;
}
.color-white {
    color: #fff;
}
.color-lg {
    color: rgb(102, 100, 101);
}
.color-red {
    color: rgb(237, 28, 36);
}
.color-blue {
    color: rgb(23, 70, 158);
}
.color-cb {
    color: rgb(106, 201, 201);
}
.color-yellow {
    color: rgb(246, 170, 28);
}
.color-sb {
    color: rgb(15, 17, 8);
}
.bg-mar {
    background-color: rgb(208, 69, 78);
}
.bg-red {
    background-color: rgb(237, 28, 36);
}
.bg-body {
    background-color: #F7F8FA;
}
.bg-grey {
    background-color: rgb(247, 248, 250);
}
.bg-blue-grad {
    background: linear-gradient(251.83deg, #17469e 0%, #132e60 100%);
}
.bg-cb-grad {
    background: linear-gradient(251.83deg, #6ac9c9 0%, #00919b 100%);
}
.bg-white {
    background: #fff;
}
.bg-dg {
    background: rgb(38, 38, 38);
}
.calibri {
    font-family: "Calibri";
    font-weight: 400;
}
.calibriLight {
    font-family: "Calibri Light";
    font-weight: 300;
}
.fulbo {
    font-family: "fulboargenta";
}
.pb-8 {
    padding-bottom: 8rem;
}
html {
    scroll-behavior: smooth;
}
.overflow-hidden {
    overflow: hidden;
}
.top-header {
    background-color: #fff;
    padding: 10px 0 0;
}
.top-header .th-col1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-header .th-col1 .g-link {
    margin-left: 20px;
}
.top-header p {
    font-size: 2.5rem;
    color: rgb(15, 17, 8);
    font-weight: 400;
    font-family: "Calibri";
}
.top-header li {
    display: inline-block;
    font-size: 2.5rem;
    padding: 0 10px;
}
.top-header li a {
    position: relative;
    text-decoration: none;
}
.top-header li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: rgb(38, 38, 38);
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.top-header li a:hover:before {
    transform-origin: left;
    transform: scaleX(1);
}
header {
    position: relative;
    z-index: 2;
}
.primary-header {
    padding: 20px 0;
    background-image: url(assets/images/ph-bg.png);
    background-size: 100%;
    position: relative;
    top: 8px;
}
.primary-header li {
    display: inline-block;
    font-size: 3.2rem;
    font-family: "fulboargenta";
    color: #fff;
    padding: 17px 16px;
    font-weight: 900;
    cursor: url("assets/images/circle.png"), auto;
}
.primary-header li>a {
    background-image: linear-gradient(to right, rgb(251, 185, 72), rgb(251, 185, 72) 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
    cursor: url("assets/images/circle.png"), auto;
}
.primary-header li>a:before {
    content: "";
    background: rgb(251, 185, 72);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s ease-in-out;
}
.primary-header li>a:hover {
    background-position: 0;
}
.primary-header li>a:hover::before {
    width: 100%;
}
.primary-header li.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}
.primary-header .ph-col2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.primary-header .icon-serch i {
    color: rgb(251, 185, 72);
    font-size: 3rem;
    margin-left: 50px;
    cursor: pointer;
}
.primary-header .nav-bar {
    display: none;
}
.primary-header .nav-bar i {
    color: rgb(251, 185, 72);
    font-size: 3.5rem;
}
.primary-header .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0px;
    text-transform: capitalize;
    display: block;
    margin: 0;
    padding: 0 2.2rem;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s ease-out, opacity 0.3s ease-out, top 0.2s ease-out;
    top: calc(100% + 9px);
    min-width: 200px !important;
    left: 15px;
}
.primary-header .dropdown-menu:before {
    content: url(assets/images/arrow-reverse.png);
    position: absolute;
    top: -9px;
    z-index: 3;
    left: 4px;
}
.primary-header .dropdown-menu a {
    width: 100%;
    color: rgb(102, 100, 101);
    padding: 14px 0;
    font-size: 2.2rem;
    border-bottom: 1px solid rgba(38, 38, 38, 0.74);
}
.primary-header .dropdown-menu a:last-child {
    border: none;
}
@keyframes animateIn {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(-8px);
    }
    100% {
        opacity: 1;
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.mob-menu {
    position: absolute;
    visibility: hidden;
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    opacity: 0;
    z-index: 10;
}
.mob-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    z-index: 5;
    visibility: hidden;
    list-style: none;
}
.mob-menu .splash {
    position: absolute;
    top: 40px;
    width: 1px;
    height: 1px;
}
.mob-menu .splash:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(251, 185, 72);
    width: 284vmax;
    height: 284vmax;
    top: -142vmax;
    left: -142vmax;
    transform: scale(0);
    transform-origin: 50% 50%;
    transition: all 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    will-change: transform;
    z-index: 2;
}
.mob-menu .close-menu {
    position: absolute;
    z-index: 6;
    right: 20px;
    top: 12px;
    font-size: 4.5rem;
    color: rgb(102, 100, 101);
}
.mob-menu .close-menu i {
    transform: rotate(134deg);
    transition: all ease 0.5s;
}
.mob-menu.m-open {
    visibility: visible;
}
.mob-menu.m-open i {
    transform: rotate(0deg);
}
.mob-menu li {
    font-size: 5rem;
    font-family: "fulboargenta";
    color: rgb(102, 100, 101);
    visibility: hidden;
    transition: visibility ease-in 0.5s;
    padding: 0 2rem;
}
.mob-menu li.animate {
    visibility: visible;
    animation-name: animateIn;
    animation-duration: 350ms;
    animation-delay: calc(var(--animation-order) * 200ms);
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.mob-menu .circle-rotate {
    z-index: 3;
    position: relative;
    opacity: 0.6 !important;
    padding-top: 50px;
    visibility: hidden;
    transition: visibility ease-in 0.5s;
}
.mob-menu .circle-rotate img {
    animation: rotation 40s infinite linear;
    display: inline-block;
}
.mob-menu .circle-rotate.animate {
    visibility: visible;
    animation-name: animateIn;
    animation-duration: 350ms;
    animation-delay: calc(var(--animation-order) * 200ms);
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.mob-menu .has-child {
    position: relative;
}
.mob-menu .has-child>a {
    position: relative;
}
.mob-menu .has-child>a:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    border: none;
    position: relative;
    color: rgb(102, 100, 101);
    font-size: 3rem;
    vertical-align: baseline;
    transition: all 0.6s ease-in-out;
    position: relative;
    left: 15px;
    top: 0px;
    display: inline-block;
}
.mob-menu .has-child.open>a:after {
    transform: rotate(135deg);
}
.mob-menu .mob-subMenu {
    display: none;
}
.mob-menu .mob-subMenu a {
    font-size: 3rem;
    width: 100%;
    display: inherit;
    padding: 0.5rem 0;
    font-family: "Calibri";
}
.m-open ul {
    visibility: visible;
}
.m-open .splash:after {
    transform: scale(1);
}
.m-open .splash {
    right: 0;
}
.main-slider {
    position: relative;
}
.main-slider .slide-caption {
    position: absolute;
    top: 24%;
    left: 10%;
    width: 48%;
}
.main-slider .slide-caption h2 {
    font-size: 6.5rem;
    color: #fff;
    padding-bottom: 0;
    font-weight: 900;
    margin: 0;
    position: relative;
    line-height: 8.5rem;
}
.main-slider .owl-dots {
    position: absolute;
    left: 4%;
    top: 34%;
}
.main-slider button.owl-dot {
    width: 3px;
    height: 41px;
    background: rgb(255, 255, 255);
    margin: 10px;
    border-radius: 0px;
    outline: none;
    display: block;
}
.main-slider button.owl-dot.active {
    background: rgb(251, 185, 72);
}
.main-slider .owl-carousel .owl-item img.sm-img {
    display: none;
}
.slide-caption h2>div {
    position: relative;
    margin: 0;
}
.split-parent {
    overflow: hidden;
}
.split-child {
    display: inline-block;
}
.btn-std {
    padding: 12px 28px 20px 20px;
    border: 2px solid rgb(251, 185, 72);
    border-radius: 100px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    font-family: "Calibri";
    position: relative;
    overflow: hidden;
    transition: color 1s;
}
.btn-std:hover {
    color: rgb(251, 185, 72);
    border: 2px solid #fff;
    z-index: 2;
}
.btn-std:focus {
    color: rgb(251, 185, 72);
    border: 2px solid #fff;
    z-index: 2;
}
.btn-std:before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 0;
    height: 100%;
    background-color: #fff;
    transform: skewX(35deg);
    z-index: -1;
    transition: width 1s;
}
.btn-std:hover::before {
    width: 150%;
    transition: width 1s;
}
.btn-std .btn-icon {
    background-image: url(assets/images/btn-arrows.png);
    width: 50px;
    height: 25px;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 8px;
    margin-right: 10px;
}
.btn-std-t2 {
    font-family: "Calibri";
    font-size: 2.2rem;
    font-weight: 400;
}
.btn-std-t2 .btn-icon {
    background-image: url(assets/images/btn-arrows.png);
    width: 50px;
    height: 25px;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 8px;
    margin-right: 10px;
}
.content {
    padding: 6rem 0;
}
.head-xs {
    color: rgb(208, 69, 78);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    padding: 1rem 0;
    display: inline-block;
}
.head-md {
    font-weight: 600;
    font-size: 4.5rem;
    padding: 1rem 0;
}
.head-lg {
    font-weight: 900;
    font-size: 6.5rem;
    padding: 1rem 0;
}
.text-md {
    font-size: 2.6rem;
    line-height: 3.6rem;
}
.text-sm {
    font-size: 2.2rem;
    line-height: 3.2rem;
}
.text-xxs {
    font-size: 1.8rem;
    line-height: 2.8rem;
}
.aboutIG {
    background-image: url(assets/images/bg-aboutIG-.png);
    background-size: 100% 100%;
    padding: 12rem 0;
}
.OCtabs-links {
    text-align: center;
    padding-top: 4rem;
}
.OCtabs-content {
    position: relative;
    height: 480px;
    margin-top: 35px;
}
.OCtabCont-single {
    width: 100%;
    position: absolute;
    transition: all ease-in 0.4s;
    padding: 5rem 12rem;
}
.OCtabCont-single.TabContent3,
.OCtabCont-single.TabContent2,
.OCtabCont-single.TabContent1 {
    background-size: 100%;
    background-repeat: no-repeat;
}
.OCtabCont-single.TabContent1 {
    background-image: url(assets/images/bis-tab-bg.png);
    z-index: 3;
    top: 0;
}
.OCtabCont-single.TabContent2 {
    background-image: url(assets/images/candy-tab-bg.png);
    z-index: 2;
    top: 25px;
}
.OCtabCont-single.TabContent3 {
    background-image: url(assets/images/snack-tab-bg.png);
    z-index: 1;
    top: 50px;
}
.OCtablink {
    color: rgb(15, 17, 8);
    padding: 12px 28px 20px 20px;
    border-radius: 100px;
    font-size: 2.4rem;
    font-family: "Calibri";
    width: 210px;
    margin: 0px 8px;
}
.OCtablink .btn-icon {
    background-image: url(assets/images/btn-arrows.png);
    width: 50px;
    height: 25px;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 8px;
    margin-right: 10px;
}
.tabLinkBisconi {
    border: 2px solid rgb(237, 28, 36);
}
.tabLinkBisconi .btn-icon {
    background-position: -296px;
}
.tabLinkCandyland {
    border: 2px solid rgb(23, 70, 158);
}
.tabLinkCandyland .btn-icon {
    background-position-x: -58px;
}
.tabLinkSnackcity {
    border: 2px solid rgb(106, 201, 201);
}
.tabLinkSnackcity .btn-icon {
    background-position-x: -118px;
}
.tabLinkBisconi.current {
    background-color: rgb(237, 28, 36);
    color: #fff;
}
.tabLinkCandyland.current {
    background-color: rgb(23, 70, 158);
    color: #fff;
}
.tabLinkSnackcity.current {
    background-color: rgb(106, 201, 201);
    color: #fff;
}
.OCtablink.current .btn-icon {
    background-position-x: 0px;
}
.brand-kpis {
    padding: 5rem 0;
    position: relative;
}
.brand-kpis .kpis-carousel {
    z-index: 2;
    position: relative;
    text-align: center;
}
.brand-kpis .kpis-carousel .owl-item {
    margin: 14px 0;
}
.brand-kpis .kpi-single {
    display: inline-block;
    text-align: center;
    background: #fff;
    box-shadow: 9px 6px 18px 0px rgba(0, 0, 0, 0.1);
    width: 80%;
    padding: 50px 0;
    border-radius: 25px;
}
.brand-kpis .kpi-single img {
    display: inline-block !important;
    height: 50px !important;
    width: auto;
}
.brand-kpis .kpi-single h4 {
    color: rgb(15, 17, 8);
    font-size: 4rem;
    font-weight: 900;
    margin-top: 3rem;
    font-family: "fulboargenta";
}
.brand-kpis .kpi-single h4 span {
    color: rgb(15, 17, 8);
    font-size: 4rem;
    font-weight: 900;
    margin-top: 3rem;
    font-family: "fulboargenta";
}
.brand-kpis .kpi-single span {
    color: rgb(237, 28, 36);
    font-size: 3rem;
    font-weight: 400;
    font-family: "Calibri";
}
.IGcorporate {
    background: -webkit-linear-gradient(180deg, #0f1108 42%, #de1a1a 25%);
    background: -o-linear-gradient(180deg, #0f1108 42%, #de1a1a 25%);
    background: -moz-linear-gradient(180deg, #0f1108 42%, #de1a1a 25%);
    background: linear-gradient(180deg, #0f1108 42%, #de1a1a 25%);
}
.IGcorporate .storySecImg {
    position: absolute;
    right: 0;
    bottom: -76px;
    text-align: right;
}
.IGcorporate .storySecImg img {
    width: 65%;
    display: inline-block;
}
.IGcsr>p {
    padding: 2rem 15rem 5rem;
}
.IGcsr .owl-item:nth-child(2) {
    margin-top: 30px;
}
.csrSingle {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.csrSingle span {
    font-family: "fulboargenta";
    font-weight: 900;
    font-size: 2rem;
}
.csrSingle h4 {
    color: rgb(237, 28, 36);
    font-family: "Calibri Light";
    font-weight: 300;
    font-size: 5.2rem;
}
.csrSingle .csrCont {
    padding: 3rem 1rem;
}
.csrSingle .csrCont span {
    padding-bottom: 0.5rem;
    display: inline-block;
}
.csrSingle .csrCont p {
    padding: 1rem 0;
    font-size: 2rem;
    line-height: 3rem;
}
.csrSingle .csrCta {
    padding: 0 1rem 3rem;
}
.csrSingle .csrImg {
    text-align: center;
}
.csrSingle .csrImg img {
    display: inline-block;
    width: 100%;
}
.IGstory {
    padding: 14rem 0 0;
}
.customer-service {
    background: -webkit-linear-gradient(90deg, #de1a1a 50%, #f6aa1c 50%);
    background: -o-linear-gradient(90deg, #de1a1a 50%, #f6aa1c 50%);
    background: -moz-linear-gradient(90deg, #de1a1a 50%, #f6aa1c 50%);
    background: linear-gradient(90deg, #de1a1a 50%, #f6aa1c 50%);
}
.customer-service p {
    padding-bottom: 4rem;
}
.customer-service h3 {
    font-size: 4rem;
}
.customer-service .ig-contact {
    padding: 12rem 0;
}
.customer-service .ig-contact p {
    padding-right: 12rem;
}
.customer-service .ig-connect {
    padding: 12rem 0 12rem 15rem;
}
.customer-service .ig-connect li {
    display: inline-block;
    margin-right: 1rem;
}
.customer-service .ig-connect a {
    width: 5rem;
    height: 5rem;
    border: 1px solid #fff;
    border-radius: 24px;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.IGfuture {
    background: #F7F8FA;
    padding: 24rem 0 0;
}
.IGfuture p {
    padding: 0 16rem 4rem;
}
.IGfuture img {
    margin-top: 8rem;
}
.IGfuture .btn-std {
    color: rgb(15, 17, 8);
}
footer {
    background-color: #0d0630;
}
footer .footer-inner-wrap {
    position: relative;
    bottom: 15px;
    padding: 5rem 0px 25px;
    background-repeat: no-repeat;
    background: url(assets/images/footer-bg.png);
}
footer li {
    display: inline-block;
    border-right: 1px solid rgb(102, 100, 101);
    padding: 0px 1.25rem;
}
footer a {
    font-size: 2.2rem;
    color: #fff;
    line-height: 2.5rem;
    font-weight: 400;
    font-family: "Calibri";
    position: relative;
}
footer a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
footer a:hover {
    color: #fff;
}
footer a:hover:before {
    transform-origin: left;
    transform: scaleX(1);
}
footer li:last-child {
    border-right: none;
}
.product-showcase {
    padding: 12rem 0;
}
.pdImg {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    animation: morph 6s linear infinite;
    transform-style: preserve-3d;
    outline: 1px solid transparent;
    will-change: border-radius;
    text-align: center;
}
.pdImg img {
    width: 400px;
    display: inline-block;
}
.pdImg:before {
    animation: morph 6s linear infinite;
    opacity: 0.21;
    animation-duration: 1.5s;
}
@keyframes morph {
    0%,
    100% {
        border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        opacity: 0.89;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}
@keyframes fadeIn {
    100% {
        transform: scale(1.03);
        opacity: 0;
    }
}
.product-lane {
    padding: 6rem 10rem 0;
}
.pdCont p {
    font-size: 3rem;
    line-height: 3.5rem;
}
.oddLeft .pdCont {
    padding-left: 5rem;
}
.brand-single {
    width: 24%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin: 20px 0;
}
.brand-single img {
    display: inline-block;
    border-radius: 100px;
    transition: all ease 0.4s;
    width: 180px;
}
.brand-single h4 {
    font-size: 2.6rem;
    font-family: "fulboargenta";
    font-weight: 900;
    line-height: 3.6rem;
    color: rgb(15, 17, 8);
    padding: 4rem 0 2rem;
    transition: all ease 0.4s;
}
.brand-single:hover img {
    transform: scale(1.3);
}
.brand-single:hover h4 {
    transform: scale(0.7);
}
.products-slider {
    position: relative;
    width: 100%;
}
.products-slider-bar {
    -webkit-text-fill-color: #fff;
    z-index: 10000;
    bottom: -70px;
    right: -1500px;
    position: absolute;
}
.inner-banner {
    position: relative;
    text-align: center;
    background: #f7f8fa;
}
.inner-banner img {
    transition: all ease 0.8s;
    animation-name: fade;
    animation-duration: 4s;
    animation-iteration-count: 1;
    display: inline-block;
}
.ceo-message {
    background-color: #DE1A1A;
    background-image: url(assets/images/build-bg.png);
    padding: 12rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.ceo-message span {
    font-size: 2.7rem;
    padding-bottom: 2rem;
}
.Cimg-Wrap {
    position: relative;
}
.Cimg-Wrap img {
    position: relative;
    z-index: 2;
}
.Cimg-Wrap .animate-border {
    position: absolute;
    height: 100%;
    width: 100%;
    border: 5px solid rgb(251, 185, 72);
    transform: rotate(356deg);
    animation-name: mvngBrdr;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes mvngBrdr {
    0% {
        left: 0px;
        top: 0px;
    }
    25% {
        left: 20px;
        top: 0px;
    }
    50% {
        left: 20px;
        top: 20px;
    }
    75% {
        left: 0px;
        top: 20px;
    }
    100% {
        left: 0px;
        top: 0px;
    }
}
.comp-certificates li {
    display: inline-block;
}
.our-employee .padd7 {
    padding: 10rem;
}
.csr-single {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.csr-single p {
    padding: 2rem 0;
}
.csr-single .csrImg {
    text-align: center;
}
.csr-single .csrImg img {
    display: inline-block;
    width: 100%;
}
.height {
    height: 750px;
}
.height2 {
    height: 550px;
}
.contact-us .cont-details-list li {
    font-size: 2.3rem;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: nowrap;
    align-content: space-between;
    color: #fff;
    padding: 1rem 0;
    font-family: "Calibri";
}
.contact-us .cont-details-list i {
    color: rgb(251, 185, 72);
    padding-right: 1rem;
}
.contact-us .contact-info {
    padding: 8rem 10rem !important;
}
.contact-us .contact-info h5 {
    font-size: 2.8rem;
    font-weight: 600;
}
.contact-us .contact-info .cs-desig {
    color: rgb(251, 185, 72);
    font-size: 2.2rem;
    font-weight: 400;
}
.contact-us .contact-form {
    padding: 8rem 10rem !important;
    font-family: "Calibri";
}
.contact-us .contact-form input[type=text],
.contact-us .contact-form input[type=email],
.contact-us .contact-form select {
    font-size: 1.8rem;
    height: 45px;
    border: none;
    width: 100%;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    text-indent: 0.5rem;
}
.contact-us .contact-form input[type=text]:placeholder,
.contact-us .contact-form input[type=email]:placeholder,
.contact-us .contact-form select:placeholder {
    color: rgb(255, 255, 255);
}
.contact-us .contact-form input[type=text] option,
.contact-us .contact-form input[type=email] option,
.contact-us .contact-form select option {
    color: #000;
}
.contact-us .contact-form textarea {
    font-size: 1.8rem;
    height: 100px;
    border: none;
    width: 100%;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.2);
    outline: none;
    text-indent: 0.5rem;
    resize: none;
}
.contact-us .contact-form .cust-upload .input-group-text {
    background: #3c3c3c;
    color: #75756a;
    font-size: 1.8rem;
    height: 45px;
    border: none;
    width: 100%;
    border: none;
}
.contact-us .contact-form .cust-upload .custom-file-label {
    height: 45px;
    color: rgba(255, 255, 255, 0.2);
    background-color: #3c3c3c;
    border: 1px solid #ced4da;
    border-radius: 0px;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.8rem;
}
.contact-us .contact-form .cust-upload .custom-file-label::after {
    height: 45px;
    background-color: #3c3c3c;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    border-left: 1px solid #757563;
}
.contact-us .contact-form .btn-std {
    padding: 12px 21px 12px 26px;
}
.connect-us li {
    list-style: none;
    display: inline-block;
    margin: 5rem 2rem;
}
.connect-us li:nth-child(1) a {
    border: 1px solid #0a66c2;
}
.connect-us li:nth-child(1) a i {
    color: #0a66c2;
}
.connect-us li:nth-child(2) a {
    border: 1px solid rgb(10, 102, 194);
}
.connect-us li:nth-child(2) a i {
    color: rgb(10, 102, 194);
}
.connect-us li:nth-child(3) a {
    border: 1px solid rgb(205, 32, 31);
}
.connect-us li:nth-child(3) a i {
    color: rgb(205, 32, 31);
}
.connect-us li:nth-child(1) a:before {
    background: #0a66c2;
}
.connect-us li:nth-child(2) a:before {
    background: rgb(10, 102, 194);
}
.connect-us li:nth-child(3) a:before {
    background: rgb(205, 32, 31);
}
.connect-us a {
    width: 90px;
    height: 90px;
    text-align: center;
    font-size: 35px;
    margin: 0 10px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.connect-us a i {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}
.connect-us a:hover i {
    color: #fff !important;
    transform: rotateY(360deg);
}
.connect-us a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}
.connect-us a:hover:before {
    top: 0;
}
