/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --dark_red: #e2211c;
  --light_red: #e1251b;
  --light: #a7afd6;
  --dark_blue: #16216c;
  --light_blue: #004fa3;
}

/*======================
   02. Basic css
========================*/
::-moz-selection {
  background-color: var(--dark_blue);
  color: #fff;
}
::selection {
  background-color: var(--dark_blue);
  color: #fff;
}
html {
  font-size: 62.5%;
}
a,
button,
img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #494949;
  font-weight: 400;
  font-size: 1.6rem;
}

ol,
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--dark_red);
}
img {
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.14;
  color: #000;
}
h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.14;
}
h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.14;
  color: #000;
}

/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0rem;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--dark_blue);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
  cursor: pointer;
  display: none;
  z-index: 999;
  margin-left: 2.5rem;
  position: relative;
}
.hamburger-menu span {
  background: #333333;
  width: 4rem;
  height: 0.34rem;
  display: block;
  margin: 0.7rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
  -webkit-transform: translateY(315%) rotate(135deg);
  -ms-transform: translateY(315%) rotate(135deg);
  transform: translateY(315%) rotate(135deg);
}
.hamburger-menu .line-center.current {
  opacity: 0;
}
.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-300%) rotate(-135deg);
  -ms-transform: translateY(-300%) rotate(-135deg);
  transform: translateY(-300%) rotate(-135deg);
}
.top_header {
  background-color: var(--dark_blue);
  color: #fff;
  padding: 1rem 1rem;
  width: 100%;
  z-index: 1025;
  font-size: 1.4rem;
  line-height: 1.2;
}
.top_header .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top_header ul li:not(:last-child) {
  border-right: 0.2rem solid var(--light_blue);
  padding-right: 1.4rem;
  margin-right: 1.4rem;
}

header {
  background-color: #fff;
  position: relative;
  z-index: 1024;
}

.logo {
  display: block;
  width: 100%;
  max-width: 19rem;
}
.middle_menu {
  border-bottom: 0.1rem solid #e6e6e6;
  padding: 1.2rem 1rem;
}
.menu {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.menu > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu > ul > li > a {
  padding: 1.9rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.menu > ul li.dropdown_wrap {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  flex-grow: 1;
  text-align: center;
}
.menu > ul li.dropdown_wrap:hover {
  background-color: var(--dark_blue);
}
.menu > ul li.dropdown_wrap:hover > a {
  color: #fff !important;
}
.menu > ul li.dropdown_wrap > a::after {
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  margin-left: 0.5rem;
  position: relative;
  top: 0.1rem;
}
.menu > ul li.dropdown_wrap > .mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  padding: 1rem 1rem;
  border-top: 0.1rem solid #e6e6e6;
}
.mega_img_hoover
{
    padding: 5px;
}
.menu_img .hover_overlay > span
{
    min-width: 80%;
    line-height: 40px;
    font-size: 18px;
    color: var(--dark_blue) !important;
    background-color: #fff;
    border-radius: 3px;
}
.menu_img {
    position: relative;
}

.hover_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu_img:hover .hover_overlay {
    opacity: 1;
}

.hover_overlay span {
    font-size: 24px;
    text-align: center;
}
.menu_item
{
    flex-grow: 1;
    text-align: center;
}
/* .menu > ul li.dropdown_wrap:hover > .mega_menu {
  opacity: 1;
  pointer-events: all;
} */
.search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* max-width: 61rem; */
  margin-left: auto;
  margin-right: auto;
}
.search_form input {
  padding: 0 1.5rem;
  color: var(--dark_blue);
  height: 4rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
  width: 100%;
}
.search_form button {
  width: 4rem;
  text-align: center;
  border: 1px solid #e6e6e6;
  border-left: none;
  background-color: var(--light_red);
  color: #fff;
  padding: 0;
  font-size: 1.8rem;
  border-radius: 0 0.5rem 0.5rem 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.search_form button:hover {
  background-color: var(--dark_blue);
}
.header_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  font-size: 1.5rem;
  color: var(--dark_blue);
  padding: 1rem 1.9rem;
  border: 0.2rem solid var(--light_red);
  border-radius: 0.5rem;
  font-weight: 400;
}
.header_btn:hover {
  background-color: var(--dark_blue);
  color: #fff;
  border-color: var(--dark_blue);
}
.header_btn i {
  font-size: 140%;
}
.mega_menu .col_five:not(.no-gutters) {
  margin-left: -0.7rem;
  margin-right: -0.7rem;
}
.mega_menu
{
    /* bottom border 1px solid ccc and add shadow */
    border-bottom: 3px solid #ccc;
    box-shadow: 0 15px 15px 0 rgba(22, 33, 108, 0.2);
}
.mega_menu_img
{
    width: 100%;
    height: auto;
}
.mega_menu .col_five:not(.no-gutters) > div {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  max-width: 20%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.menu_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  padding: 1rem 1.5rem;
  min-height: 50px;
}
.mega_view_all {
  min-width: 48px;
}
.menu_img_align_wrap {
  height: 200px;
  background-color: #fff;
  overflow: hidden;
}
.menu_header h6 {
  color: var(--dark_blue);
  font-size: 1.5rem;
  font-weight: 600;
}
.menu_header a {
  font-size: 1.4rem;
  color: #9a9a9a;
}
.menu_header a:hover {
  color: var(--dark_red);
}
.menu_img {
  background-color: #f0f0f0;
  padding: 1rem;
  border-top: 0.2rem solid var(--dark_blue);
}
.mega_menu_subcat_wrap ul li a {
  font-size: 1.5rem;
  color: #000;
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 0.1rem solid #eaeaea;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.mega_menu_subcat_wrap ul li a:hover {
  color: var(--dark_red);
}
/*button*/
.button {
  display: inline-block;
  border: none;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  font-size: 1.5rem;
  background-color: var(--dark_red);
  padding: 1.55rem 2.5rem;
}
.button:hover {
  color: var(--dark_red);
  background-color: #fff;
}
.outline {
  background-color: transparent;
  border-color: #fff;
}
.outline:hover {
  border-color: var(--blue);
}
.black_btn {
  background-color: var(--dark_blue);
  color: #fff;
}
.black_btn:hover {
  background-color: var(--blue);
}
.yellow_btn {
  background-color: var(--yellow);
  color: var(--dark_blue);
}
.yellow_btn:hover {
  background-color: var(--dark_blue);
  color: #fff;
}
.white_btn {
  background-color: #fff;
  color: var(--dark_blue) !important;
}
.white_btn:hover {
  background-color: var(--dark_blue);
  color: #fff !important;
}



.row:not(.no-gutters) {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.row:not(.no-gutters) > div {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/*home area*/






/*discover area*/



/*feature area*/
.feature_box {
  background-color: #000;
  color: #fff;
  padding: 6rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 49.8rem;
}
.feature_content {
  max-width: 43rem;
  text-align: center;
  margin-left: 26rem;
}
.feature_content img {
  max-width: 30.8rem;
}
.feature_content p {
  margin: 4.2rem 0;
}
.slider2 .owl-nav button {
  height: 7.7rem;
  width: 7.7rem;
  border-radius: 50%;
  border: 0.1rem solid #a9a9a9 !important;
  color: #a9a9a9;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.slider2 .owl-nav button:hover {
  background-color: #fff;
  border-color: #fff !important;
  color: var(--dark_red);
}
.slider2 .owl-nav button.owl-prev {
  left: 5.7rem;
}
.slider2 .owl-nav button.owl-next {
  right: 5.7rem;
}
.owl-carousel img {
    max-height: 400px; /* Set your desired maximum height */
    object-fit: contain; /* Ensures the image scales proportionally without distortion */
  }
/*who area*/





/*access area*/


.access_area .title_wrap {
  max-width: 62.6rem;
  padding: 6.4rem 0 9.3rem;
}
.access_area .title_wrap img {
  width: 35rem;
  margin-bottom: 1rem;
}
.access_right {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  max-width: 63.5rem;
  margin-left: auto;
}
.access_right::before {
  position: absolute;
  content: '';
  top: 0;
  left: -6.5rem;
  height: 100%;
  width: 300rem;
  background-color: var(--dark_blue);
  z-index: -1;
}
.access_right h2 {
  color: #fff;
  padding-bottom: 2.5rem;
}
.access_right ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  font-size: 1.8rem;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}
.access_right ul li {
  position: relative;
  padding-left: 4.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
.access_right ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0rem;
  height: 2.6rem;
  width: 2.6rem;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.access_right .button {
  padding: 1rem 2.5rem;
  min-width: 14rem;
  border-radius: 4rem;
}
/*brand area*/

/*subscribe area*/
.subscribe_area {
  background-color: #4c4e53;
  padding: 1rem 0 5rem;
  color: #fff;
  font-size: 1.4rem;
}
.subscribe_area h2 {
  color: #fff;
  max-width: 48rem;
  margin-top: 1rem;
}
.subscribe_area h6 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #d1d9e9;
  font-weight: 300;
}
.subscribe_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5rem;
}
.subscribe_form input {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 0 3rem;
  font-size: 1.6rem;
  color: #000;
  height: 6rem;
}
.subscribe_form .button {
  font-size: 1.6rem;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 1.6rem 3.8rem;
}
.subscribe_form .button:hover {
  background-color: #000;
}
/*footer*/
footer {
  background-color: #fff;
  color: #202731;
  font-size: 1.4rem;
  font-weight: 500;
}
footer a:hover {
  color: var(--dark_red);
}
footer ul {
  margin-bottom: -1.4rem;
}
footer ul li {
  margin-bottom: 1.4rem;
}
footer h5 {
  color: #202731;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 1rem;
}
.footer_logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  width: 100%;
  max-width: 27rem;
  text-align: center;
}
.footer_logo img {
  width: 9rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer_logo h5 {
  margin-bottom: 0;
  padding-top: 0;
}
.member_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1.3rem;
  -moz-column-gap: 1.3rem;
  column-gap: 1.3rem;
  width: 22.3rem;
}
.member_wrap img {
  max-height: 6.2rem;
  margin-bottom: 1.3rem;
}
.social_media {
  margin-top: 7rem;
}
.social_media p {
  font-weight: 500;
  white-space: nowrap;
}
.icon_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.8rem;
  -moz-column-gap: 1.8rem;
  column-gap: 1.8rem;
  font-size: 2.4rem;
  margin-top: 1rem;
}
.icon_box a {
  display: block;
  line-height: 1;
  color: var(--dark_blue);
}
.icon_box a img {
  max-height: 2.8rem;
}
.icon_box a:hover {
  color: var(--red);
}
.contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  color: var(--dark_blue);
  font-size: 1.6rem;
  white-space: nowrap;
  margin-bottom: 2.7rem;
}
.contact_item a {
  font-weight: 700;
}
.contact_item p {
  font-size: 1.4rem;
  color: #a9a9a9;
  font-weight: 400;
}
.contact_item i {
  vertical-align: middle;
  font-size: 130%;
}
.fa-phone {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.footer_bottom {
  border-top: 0.1rem solid #a9a9a9;
  padding: 3.7rem 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 400;
  margin-top: 4.8rem;
}
.footer_bottom ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer_bottom ul li {
  margin-bottom: 0;
}
.footer_bottom ul li:not(:last-child) {
  border-right: 0.1rem solid #c7c7c7;
  margin-right: 2.6rem;
  padding-right: 2.7rem;
}
.back-to-top {
  height: 4rem;
  width: 4rem;
  background-color: var(--dark_blue);
  color: #fff !important;
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  display: none;
  z-index: 10;
}

/*inner pages*/
.pagination_area {
  background-color: #f6f6f6;
  padding: 1rem 0;
}
.breadcrumb {
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb li,
.breadcrumb li a {
  font-size: 1.3rem;
  color: #4c4e53;
}
.breadcrumb li.active {
  font-weight: 700;
  color: var(--dark_blue);
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 1rem;
  color: #4c4e53;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 130%;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 1rem;
}
.catalog_area {
  padding: 4.5rem 0 10rem;
}
.catalog_area h2 {
  color: var(--dark_blue);
}
.catalog_box {
  border: 0.1rem solid #eaeaea;
  height: 100%;
  display: block;
}
.catalog_img {
  padding: 3.2rem;
}
.catalog_img img {
  border: 0.1rem solid #eee;
}
.catalog_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--dark_blue);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.4rem 2rem;
}
.catalog_link i {
  font-size: 120%;
}
.catalog_link h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}
.catalog_box:hover .catalog_link,
.catalog_box:hover h5 {
  color: var(--light_red);
}
.text_blue {
  color: var(--dark_blue);
}

.destination_area {
  background-color: #f8f8f8;
  padding: 6.4rem 0;
  color: #000;
}
.destination_area h5 {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 400;
}
.destination_box {
  text-align: center;
  padding: 3.2rem 2.4rem;
  background-color: #fff;
  height: 100%;
}
.country {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--light_red);
  font-weight: 300;
  margin-bottom: 1rem;
}
.destination_box h4 {
  color: var(--dark_blue);
}
.destination_box h3 {
    color: var(--dark_blue);
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
.destination_box p strong {
  max-width: 23rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.destination_box p:last-child {
  font-size: 1.4rem;
  margin-top: 1rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.career_area {
  font-weight: 300;
  padding: 6rem 0;
}
.career_area p {
  margin-top: 3rem;
}
.career_area p a {
  text-decoration: underline;
  color: var(--dark_blue);
}
.career_area h4 {
  font-weight: 400;
  margin-top: 3rem;
}
.career_area h2 {
  margin-top: 3rem;
}
.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: var(--dark_blue);
  font-size: 1.5rem;
  font-weight: 400;
}
.details_head {
  background-color: var(--dark_blue);
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 600;
}
.career_box ul li {
  padding: 1rem 2rem;
}

.omcan_area {
  padding: 4.4rem 0 8.4rem;
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
}
.omcan_area p:first-child {
  color: #4c4e53;
}
.omcan_area p {
  max-width: 68rem;
}
.omcan_area p a {
  text-decoration: underline;
}
.omcan_area ul {
  padding-bottom: 6rem;
  padding-top: 1rem;
}
.omcan_area ul li {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark_blue);
  position: relative;
  padding-left: 5.8rem;
  margin-top: 4rem;
}
.omcan_area ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: -0.5rem;
  height: 3.5rem;
  width: 3.5rem;
  background-repeat: no-repeat;
  background-image: url(../img/star.svg);
  background-size: contain;
}

.product_single_details {
  background-color: #f0f0f0;
  padding: 3.5rem 0;
}
.fixed_social {
    display: none !important;
  position: fixed;
  right: 0;
  top: 26rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 55;
}
.fixed_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.3rem;
  width: 4.3rem;
  background-color: #f4f4f4;
}
.fixed_social a svg {
  fill: var(--dark_blue);
  height: 2.4rem;
}

.s_b_img img {
  width: 65rem;
}

.s_s_img {
  text-align: center;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.5rem;
}
.s_s_img img {
  width: 12rem;
  max-height: 100px;
  object-fit: contain;
}

.single_box_design {
  background-color: white;
  padding: 2.4rem;
  border-radius: 0.5rem;
}
.single_box_design:not(:last-child) {
  margin-bottom: 2.6rem;
}
.single_box_design.single_title_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.single_product_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9rem;
}
.single_product_meta p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #a9a9a9;
}
.single_product_meta p span {
  font-weight: 700;
  color: var(--dark_blue);
}
.single_box_design.single_available {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6rem;
}
.single_box_design.single_available > div {
  width: 100%;
  overflow: hidden;
}
.single_box_design.single_available h3 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: black;
  margin-bottom: 0.9rem;
}
.single_box_design.single_available ul {
  /* height: 10rem;
  overflow: auto; */
}
.single_box_design.single_available ul li a {
  display: block;
  color: #202731;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.5rem 1.3rem;
  width: calc(100% - 1.5rem);
}
.nicescroll-rails.nicescroll-rails-vr {
  width: 0.6rem !important;
}
.single_box_design.single_available ul li a:hover,
.single_box_design.single_available ul li a.active {
  background-color: var(--dark_blue);
  color: white;
  cursor: pointer;
}
.single_box_design.elevate_beverage p {
  margin-bottom: 2.6rem;
  line-height: 1.5;
}
.single_box_design.elevate_beverage li {
  margin-bottom: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.single_box_design.elevate_beverage li img {
  width: 1rem;
}
.single_box_design.box_design_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
.single_box_design.box_design_2 a {
  display: block;
  width: 13.4rem;
}
.single_box_design.box_design_2 a h3 {
  color: var(--dark_blue);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
}
.details_list_1 ul {
  border: 0.1rem solid #d9d9d9;
}
.details_list_1 li {
  border-bottom: 0.1rem solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.details_list_1 li:last-child {
  border-bottom: none;
}
.details_list_1 li span {
  display: block;
  padding: 0.5rem 1rem;
  width: 60%; 
}
.details_list_1 li span:first-child {
  background-color: #ededed;
  width: 40%;
}
.single_box_design h6 {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.1rem;
}

.product_single_box {
  border-radius: 0.5rem;
  background-color: #fff;
  overflow: hidden;
}
.single_box_head {
  background-color: #5c6571;
  padding: 0.8rem 1.6rem;
}
.single_box_head p {
  font-size: 2.4rem;
  line-height: 1.5;
  color: white;
}
.single_box_content {
  padding: 2rem 1.6rem;
}
.single_box_content h5 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #494949;
}
.single_box_content p {
  color: #494949;
  margin-top: 3rem;
  line-height: 1.5;
  font-size: 1.6rem;
}
.single_box_list {
  padding: 2rem 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.single_box_list > div {
  width: 100%;
}
.single_box_list ul {
  margin-bottom: 3rem;
}
.single_box_list li {
  color: #494949;
  font-size: 1.6rem;
  line-height: 1.5;
}
.question_about_product {
  background-color: #f0f0f0;
  padding-bottom: 3rem;
}
.question_product_outer {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2.7rem 4rem 4rem 4rem;
}
.question_product_outer h2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  margin-bottom: 2.7rem;
  text-align: center;
}
.question_product_inner {
  background-color: #f4f4f4;
  padding: 5rem 10.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
}
.question_product_inner > div:first-child {
  width: 60%;
}
.question_product_inner > div:last-child {
  width: 40%;
}
.question_product_inner form > div {
  margin-bottom: 2.4rem;
}
.question_product_inner form ::-webkit-input-placeholder {
  color: #a9a9a9;
  font-size: 1.4rem;
  line-height: 1.5;
}
.question_product_inner form ::-moz-placeholder {
  color: #a9a9a9;
  font-size: 1.4rem;
  line-height: 1.5;
}
.question_product_inner form :-ms-input-placeholder {
  color: #a9a9a9;
  font-size: 1.4rem;
  line-height: 1.5;
}
.question_product_inner form ::-ms-input-placeholder {
  color: #a9a9a9;
  font-size: 1.4rem;
  line-height: 1.5;
}
.question_product_inner form ::placeholder {
  color: #a9a9a9;
  font-size: 1.4rem;
  line-height: 1.5;
}
.question_product_inner label {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.8rem;
}
.question_product_inner label span {
  color: var(--light_red);
}
.question_product_inner label span.optional {
  color: #a9a9a9;
}
.question_product_inner form input {
  height: 4.8rem;
}
.question_product_inner form input,
.question_product_inner form textarea {
  padding: 1.35rem 1.2rem;
  font-size: 1.6rem;
}
.question_product_inner form input:focus,
.question_product_inner form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--dark_blue);
}
.form_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
.form_btn_wrap button {
  border-color: var(--dark_blue);
}
.form_submit_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  font-size: 1.5rem;
  background-color: var(--dark_blue);
  color: #fff;
  padding: 1rem 1.9rem;
  border: 0.2rem solid;
  border-radius: 0.5rem;
  font-weight: 400;
}
.form_submit_btn:hover {
  background-color: transparent;
  color: var(--dark_blue);
}
.question_product_text h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #494949;
  margin-bottom: 3rem;
  font-weight: 700;
}
.question_product_text ul {
  padding-left: 2rem;
  margin-bottom: 2.2rem;
}
.question_product_text ul li {
  list-style-type: disc;
  font-size: 1.6rem;
  line-height: 1.5;
}
.question_product_text p {
  color: #494949;
  line-height: 1.5;
}

/* related product */
.related_product {
  background-color: #f0f0f0;
  padding-bottom: 5rem;
}
.related_product h3 {
  color: black;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 3.6rem;
}
.related_product_slider {
  position: relative;
}
.related_product_slider .owl-nav {
  position: absolute;
  top: -7.6rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.related_product_slider.owl-carousel .owl-nav button.owl-next,
.related_product_slider.owl-carousel .owl-nav button.owl-prev {
  border: 0.1rem solid var(--dark_blue);
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  background-color: var(--dark_blue);
  color: white;


  /* height: 4rem;
  width: 4rem;
  background-color: var(--dark_blue);
  color: #fff !important;
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  z-index: 10; */


}
.related_product_slider.owl-carousel .owl-nav button.owl-next.disabled,
.related_product_slider.owl-carousel .owl-nav button.owl-prev.disabled {
  background-color: transparent;
  color: #a9a9a9;
  border-color: #a9a9a9;
}
.product_card {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 2.4rem;
  height: 61.5rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.product_card .product_img_wrap {
  padding: 1rem;
  text-align: center;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_card img {
  object-fit: contain;
  max-height: 29rem;
  width: auto !important;
  max-width: 20rem;
  height: auto;
}
.product_card .product_text {
  padding: 2.4rem 2rem 1.4rem 2rem;
}
.product_card p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #a9a9a9;
}
.product_card p span {
  color: var(--dark_blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product_card .header_btn {
  border-color: var(--dark_blue);
}
.product_card h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: black;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.product_card > div:last-child {
  text-align: center;
}

.text_dark_blue {
  color: var(--dark_blue);
}
.light_red {
  color: var(--light_red);
}
.dark_red {
  color: var(--dark_red);
}
.light_blue {
  color: var(--light_blue);
}
.light {
  color: var(--light);
}

.f_300 {
  font-weight: 300;
}
.f_400 {
  font-weight: 400;
}
.f_600 {
  font-weight: 600;
}
.f_700 {
  font-weight: 700;
}

/* ============ Food Industry area =========== */
.s_bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.s_bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s_bg_filter_blue:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #16216cb2;
}

.s_food_industry_logo {
  width: 17.1rem;
}

/* ============ about us area =========== */
.s_about_us_area {
  padding-top: 8.7rem;
  padding-bottom: 13.4rem;
}
.s_about_us_area .row > * {
  padding: 0 3.1rem !important;
}
.s_about_us_area .row {
  gap: 3rem 0;
  margin-left: -3.1rem;
  margin-right: -3.1rem;
}
.s_aboutus_content h2 {
  color: var(--dark_blue);
}

.s_aboutus_content p {
  font-weight: 300;
}

/* ============ Counter area =========== */
.s_counters_area {
  background: #eaeaea;
  padding: 3.5rem 0;
}

.counter {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 4.8rem;
}

.s_counter_box p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.6rem;
}

/* ============ Who we are area =========== */
.s_WhoWeAre_area {
  background: var(--dark_blue);
  padding: 4.5rem 0 7.1rem 0;
}

.play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7.4rem;
  height: 7.4rem;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
}

.play_video:hover .play_icon {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============ solution area =========== */
.s_solution_area {
  border-color: #eaeaea !important;
}
.s_solution_area .row > * {
  padding: 0 4.2rem !important;
}
.s_solution_area .row {
  gap: 3rem 0;
  margin-left: -4.2rem;
  margin-right: -4.2rem;
}
.s_solution_area .s_content p {
  font-weight: 300;
}

/* ============ s_our_value_area =========== */
.s_our_value_area {
  padding: 4.5rem 0 8.4rem 0;
}
.s_value_box p {
  font-weight: 300;
  line-height: 1.51;
}

/* ============ s_why_choose_area =========== */
.s_why_choose_area {
  padding: 8rem 0 12.2rem;
  background: var(--dark_blue);
  position: relative;
}
.s_why_choose_area .access_right ul {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
.s_why_choose_area .access_right ul li {
  padding-left: 6.2rem;
}
.s_why_choose_area .access_right {
  margin-left: 0;
}
.star_bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.s_why_choose_area .row > * {
  padding: 0 3rem !important;
}
.s_why_choose_area .row {
  gap: 3rem 0;
  margin-left: -3rem;
  margin-right: -3rem;
}
.owl-carousel.slider5 .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sf_brand_slider h4 {
  font-weight: 400;
}

/* ============ distribution area =========== */
.s_distribution_area {
  background: #36495e;
  /* padding-bottom: 6.3rem; */
}
.s_places_area .row > * {
  padding: 0 8rem !important;
}
.s_places_area .row {
  gap: 3rem 0;
  margin-left: -9rem;
  margin-right: -9rem;
}

.s_badge {
  background: var(--dark_red);
  padding: 0.4rem 1.6rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.s_places_area {
  padding: 5.2rem 8.5rem;
  background: #fff;
  margin-top: -4rem;
  position: relative;
  z-index: 0;
}

.truck_img {
  width: calc(100% + 5.6rem);
  position: relative;
  z-index: 0;
}

.s_distribution_area .star_bg {
  left: 25rem;
  top: 6rem;
}

/* ============ Service area =========== */
.s_service_area {
  padding: 7rem 0;
  background: url(../img/s_service_bg.png) no-repeat scroll top left / cover;
}
.s_service {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0fr 1fr;
  grid-template-columns: 0fr 1fr;
  background: #fff;
}

.s_service_icon {
  width: 16.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eaeaea;
}

.s_service_content.text-white > * {
  color: #000 !important;
}

.s_service_content h4 {
  padding-bottom: 0.7rem;
}

.s_service_icon img {
  width: 6.8rem;
}

.s_service_content {
  padding: 2.9rem 4.8rem 3rem 3.7rem;
}

/* ====================== Waranty registration area ======================= */
.contact_form h5 {
  font-size: 1.6rem;
}

.s_input_field {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  border: 0.1rem solid #e8e8e8;
  border-radius: 0.4rem;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.s_input_field:focus {
  border: 0.1rem solid #000;
}

.s_input_field::-webkit-input-placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a9a9a9;
}

.s_input_field::-moz-placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a9a9a9;
}

.s_input_field:-ms-input-placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a9a9a9;
}

.s_input_field::-ms-input-placeholder {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a9a9a9;
}

.s_input_field::placeholder,
.nice-select .current {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a9a9a9;
}

.row.s_form_row {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
  gap: 2.4rem 0;
}

.row.s_form_row > * {
  padding: 0 1.2rem !important;
}

.s_form_group label span:not(.light_red) {
  color: #a9a9a9;
  font-weight: 400;
}

.nice-select.right .list {
  width: 100%;
}
.s_radio_circle {
  background: #fff;
  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #e8e8e8;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.s_radio.active .s_radio_circle {
  background: var(--dark_blue);
}
.s_radio_circle span {
  position: absolute;
  background: #ffffff;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 10rem;
  opacity: 0;
}
.s_radio {
  cursor: pointer;
}
.s_radio.active .s_radio_circle span {
  opacity: 1;
}
.s_radio p {
  color: #949596;
  line-height: 1.4;
}

.s_radio_buttons {
  height: 4.8rem;
}

.s_form_btn .header_btn:not(:hover) {
  background: #fff;
}

.s_form_btn .header_btn .arrow_right {
  width: 1.85rem;
}

.s_form_btn .header_btn:hover .arrow_right {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(222deg) brightness(104%) contrast(103%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(222deg) brightness(104%) contrast(103%);
}

.s_form_capcha img {
  width: 30.1rem;
}

/* ================ s_contact_area ================ */
.s_contact_area .s_warranty_reg_content {
  padding: 2.4rem;
  border: 0.1rem solid #e6e6e6;
}
.s_contact_area .text_12 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  color: #4c4e53;
}
.s_contact_area .col-lg-5 {
  width: 39%;
  max-width: none !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 39%;
  flex: 0 0 39%;
}

.s_contact_area .col-lg-7 {
  width: 61%;
  max-width: none !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 61%;
  flex: 0 0 61%;
}

.s_contact_area .row > * {
  padding: 0 1.2rem !important;
}

.s_contact_area .row {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}

.s_customer_link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0fr 1.3rem 1fr;
  grid-template-columns: 0fr 1fr;
  gap: 1.3rem;
}

.s_customer_link_icon img {
  width: 3.2rem;
}

.s_customer_link_icon {
  padding: 0 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.s_customer_right p {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #e2211c;
}

.s_customer_right h6 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #16216c;
}

.s_customer_service h4 {
  font-weight: 400;
}

.s_customer_links {
  gap: 1rem;
  display: -ms-grid;
  display: grid;
}

.s_customer_link:hover .s_customer_right h6 {
  color: var(--light_red);
}

.s_contact_area .row:not(.s_form_row) {
  padding-left: 12rem;
}

.destination_area_v2 .row > * {
  padding: 0 2rem !important;
}

.destination_area_v2 .row {
  margin-left: -3.1rem;
  margin-right: -3.1rem;
}

.destination_area_v2 .row .destination_box {
  padding: 3.2rem 1rem;
}

.s_radio_buttons_blue .s_radio.active .s_radio_circle {
  background: #0084ff;
}

/* ===================== Disclaimer page =================== */
.title20 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  padding-bottom: 0.8rem;
  color: var(--dark_blue);
}

.s_col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.s_col.s_col_dark_blue > * {
  background: #16216c;
  color: #fff;
}

.s_col > * {
  padding: 1rem 1.2rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s_col.s_col_grey > * {
  background: #eaeaea;
}

.s_col_span ul {
  list-style: disc;
}

/* ======================== Salary Area ========================= */
.s_salary_area {
  padding: 6rem 0 9rem;
}
.bg_img_opacity20 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.2;
}
.s_salary_box > p {
  background: #16216c;
  color: #fff;
  padding: 1.5rem;
  font-size: 2rem;
}

.s_salary_bottom p {
  font-size: 1.4rem;
  color: #16216c;
}

.s_salary_bottom h1 {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  color: #e2211c;
}

.s_salary_bottom {
  background: #fff;
  padding: 2rem;
}

.s_salary_box {
  width: 35.8rem;
}

.s_salary_boxes {
  display: -ms-grid;
  display: grid;
  gap: 5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: 0fr 5rem 0fr;
  grid-template-columns: 0fr 0fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.salary_img {
  width: 43.2rem;
}

/* ========== inner banner============= */
.inner_banner {
  background-color: #e1e0dc;
  height: 36.1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner_banner_text {
  padding-right: 3rem;
}
.inner_banner_text p {
  line-height: 1.5;
  margin-top: 0.8rem;
}
.inner_banner_img img {
  position: absolute;
  right: 0;
  top: 0;
  width: 75.5rem;
}
/* ========== post list============= */
.post_list {
  padding: 4.8rem 0;
}
.post_list .row {
  row-gap: 2.4rem;
}
.post_img {
  padding: 1rem;
  border-bottom: 0.2rem solid var(--dark_blue);
  background-color: #f0f0f0;
}
.post_img img {
  width: 100%;
}
.post_content {
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.post_content h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--dark_blue);
}
.post_content p {
  font-size: 1.4rem;
  line-height: 1.55;
}
.post_content a {
  font-size: 1.4rem;
  color: #9a9a9a;
}
.post_content a:hover {
  color: var(--dark_red);
}

/* ========= blog page============== */
.blog_list {
  padding-top: 4.4rem;
  padding-bottom: 12.4rem;
}
.blog_list h2 {
  color: var(--dark_blue);
  margin-bottom: 4rem;
}
.blog_sidebar_top {
  background-color: #eaeaea;
  padding: 1.3rem 2rem;
}
.blog_sidebar_top h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}
.blog_sidebar_bottom a {
  border-bottom: 0.1rem solid #eaeaea;
  padding: 1.3rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog_sidebar_bottom a:hover {
  background-color: var(--dark_blue);
  color: white;
}
.blog_sidebar_bottom a.active {
  font-weight: 700;
  background-color: var(--dark_blue);
  color: white;
}
.blog_sidebar_bottom a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: black;
}
.blog_sidebar_bottom a:hover::after,
.blog_sidebar_bottom a.active::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: white;
}
.blog_img img {
  width: 100%;
}
.blog_meta {
  padding-top: 2.4rem;
  padding-bottom: 1.3rem;
}
.blog_meta .blog_date {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #5c6571;
}
.blog_meta h3 {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
  color: var(--dark_blue);
}
.blog_meta .blog_excerpt {
  color: #5c6571;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.5;
}
.blog_list .row:not(.no-gutters) {
  margin-left: -1.2rem;
  margin-right: -1.28rem;
}
.blog_list .row:not(.no-gutters) > div {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.blog_list .inner_row.row:not(.no-gutters) {
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  row-gap: 2.6rem;
}
.blog_list .inner_row.row:not(.no-gutters) > div {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

/* ========= blog single page============== */
.single_blog {
  padding-top: 5.8rem;
  padding-bottom: 2.2rem;
}
.single_blog_details {
  max-width: 107rem;
  padding-right: 9.8rem;
  position: relative;
}
.single_blog_details h2 {
  color: #0f2137;
  margin-bottom: 2.4rem;
}
.single_blog_details p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #5c6571;
  padding-bottom: 2rem !important;
}
.single_blog_details > img {
  width: 100%;
  margin-bottom: 2rem;
}
.single_blog_details .video_wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.single_blog_details iframe {
  width: 84.5rem;
  height: 45rem;
  max-width: 100%;
}
.single_blog_social {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.single_blog_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.8rem;
  width: 5.8rem;
  border-radius: 50%;
  background-color: var(--dark_blue);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}
.related_blog_list {
  padding-bottom: 3.6rem;
}
.related_blog_list h2 {
  border-top: 0.1rem solid #dfdfdf;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2rem;
}
.related_blog_list .row:not(.no-gutters) {
  margin-left: -0.8rem;
  margin-right: -0.8rem;
}
.related_blog_list .row:not(.no-gutters) > div {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

/* =========== career page================= */
.career_details {
  padding-top: 4.4rem;
  padding-bottom: 8.5rem;
}
.career_details_content h2 {
  color: var(--dark_blue);
  margin-bottom: 2.8rem;
}
.career_details_content p {
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 300;
}
.career_details_content iframe {
  width: 100%;
  height: 32rem;
  margin-bottom: 2.8rem;
}
.career_question h5 {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  color: white;
  background-color: var(--dark_blue);
}
.career_question p {
  padding: 0.7rem 2rem 1rem 2rem;
  line-height: 1.5;
  background-color: #f4f4f4;
}
.career_question p a {
  font-weight: 700;
  color: var(--dark_blue);
}
.career_details_content h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.career_details_content h4 {
  color: var(--dark_blue);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.career_details_content > div > a {
  text-decoration: underline;
}

.career_sidebar_top {
  background-color: #eaeaea;
  padding: 1.3rem 2rem;
}
.career_sidebar_top h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}
.career_sidebar_bottom a {
  border-bottom: 0.1rem solid #eaeaea;
  padding: 1.3rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.career_sidebar_bottom a:hover {
  background-color: var(--dark_blue);
  color: white;
}
.career_sidebar_bottom a.active {
  font-weight: 700;
  background-color: var(--dark_blue);
  color: white;
}
.career_sidebar_bottom a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: black;
}
.career_sidebar_bottom a:hover::after,
.career_sidebar_bottom a.active::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: white;
}
.career_table table {
  table-layout: fixed;
}
.career_table tr > * {
  padding: 1rem 2rem;
}
.career_table tr th {
  background-color: var(--dark_blue);
  color: white;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
}
.career_table .table-striped tbody tr:nth-of-type(odd) {
  background-color: #e6e6e6;
}
.career_table .table-bordered td,
.career_table .table-bordered th {
  border: 0.1rem solid #fff;
}

/*============ bakeware================ */
.bakeware_list {
  padding: 4.8rem 0;
}
.bakeware_sidebar_top {
  background-color: #eaeaea;
  padding: 1.3rem 2rem;
}
.bakeware_sidebar_top h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}


.has_children::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: 'currentCollor';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.bakeware_sidebar_bottom ul > li > ul a {
  border: none;
  padding-left: 3rem;
}
.bakeware_sidebar_bottom ul > li > ul a::after {
  display: none;
  padding-left: 1rem;
}
.bakeware_list .row:not(.no-gutters) {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
.bakeware_list .row:not(.no-gutters) > div {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.bakeware_list .inner_row.row:not(.no-gutters) {
  margin-left: -0.55rem;
  margin-right: -0.55rem;
  row-gap: 1.1rem;
}
.bakeware_list .inner_row.row:not(.no-gutters) > div {
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}


.bw_cat_img {
  text-align: center;
  overflow: hidden;
  height: 17.5rem;
  width: 18.5rem;
  margin: auto;
  position: relative;
}


/* ================= cake pan==================== */
.cakepan_list {
  padding: 4.8rem 0;
}
.cakepan_list .row:not(.no-gutters) {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
.cakepan_list .row:not(.no-gutters) > div {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.cakepan_list .inner_row.row:not(.no-gutters) {
  margin-left: -0.55rem;
  margin-right: -0.55rem;
  row-gap: 1.1rem;
}
.cakepan_list .inner_row.row:not(.no-gutters) > div {
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}
.cakepan_sidebar_top {
  background-color: #eaeaea;
  padding: 1.3rem 2rem;
}
.cakepan_sidebar_top h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}
.cakepan_sidebar_bottom ul li {
  padding: 1.3rem 2rem;
}
.cakepan_sidebar_bottom a {
  border-bottom: 0.1rem solid #eaeaea;
  padding: 1.3rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cakepan_sidebar_bottom a:hover {
  background-color: var(--dark_blue);
  color: white;
}
.cakepan_sidebar_bottom a.active,
.cakepan_sidebar_bottom a[aria-expanded='true'] {
  font-weight: 700;
  background-color: var(--dark_blue);
  color: white;
}
.cakepan_sidebar_bottom a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: black;
}
.cakepan_sidebar_bottom a:hover::after,
.cakepan_sidebar_bottom a.active::after,
.cakepan_sidebar_bottom a[aria-expanded='true']::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: white;
}
.custom_checkbox_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #585757;
  line-height: 1.5;
}
.custom_checkbox_wrap input {
  display: none;
}
.custom_checkbox_wrap .custom_checkbox {
  height: 2rem;
  width: 2rem;
  border: 0.1rem solid #e8e8e8;
  display: block;
  background-color: transparent;
  position: relative;
  left: 0;
  top: 0;
  border-radius: 0.5rem;
}
.custom_checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  color: white;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.4rem;
  display: none;
  font-size: 1.2rem;
}
.custom_checkbox_wrap input:checked ~ .custom_checkbox {
  background-color: var(--dark_blue);
}
.custom_checkbox_wrap input:checked ~ .custom_checkbox::after {
  display: block;
}

.s_warranty_reg_area .blog_sidebar_bottom a {
  font-weight: 600;
}
.blog_sidebar_top,
.bakeware_sidebar_top {
  /* pointer-events: none; */
}

.col_five > div {
  max-width: 20%;
  flex: 0 0 20%;
}

.no-margin > p {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}
.cat_img_wrap {
  height: 200px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.h6_mega_href
{
    color:var(--dark_blue) !important;
}
.h6_mega_href:hover
{
    color:var(--dark_red) !important;
}
.mega_cat_desc
{
    text-align: left;
    line-height: 25px;
    padding-top: 5px;
}
.mega_menu_view_cat_href
{
    display: block;
    text-align: center;
    padding: 5px 0;
    background-color: #f9f9f9;
}
.mega_menu_view_cat_href:hover
{
    background-color: var(--dark_blue);
}

.container-fluid.main_menu_wrap
{
    background-color: #fff;
}
.mega_menu
{
    background-color: #f3f2f2;
}
.wyseditor li
{
    margin-bottom: 15px;
}
.wyseditor p
{
    margin-bottom: 15px;
    line-height: 19px;
    font-weight: 300;
}
/* .wyseditor li > p
{
    display: inline !important;
    margin-bottom: 0.3rem;
} */
.wyseditor b,
.wyseditor strong
{
    font-weight: 700;
}
.wyseditor h2
{
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    padding-bottom: 0.8rem;
    color: var(--dark_blue);
}
.wyseditor a
{
    color: var(--dark_blue);
    text-decoration: underline;
}
.hr_questions
{
    width: 100%;
    height: 100%;
    background-color: var(--dark_blue);
    padding: 15px;
    margin-left: 15px;
    color: #fff;
}
.hr_questions h4
{
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 2px solid #787ea2;
    margin-bottom: 10px;
}
.rebates-content img
{
    max-width: 100%;
}
#mobile_search_field_wrap
{
    display: none;
}
#mobile_search_field_wrap input
{
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
#mobile_all_results {
    background-color: var(--dark_blue);
    display: block;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 3px;
    color: #fff;
    max-width: 180px;
    text-align: center;
    margin-top: 10px;
}
.mobile_subcats
{
    display: none;
}
.mobile_subcats ul
{
    padding-left: 3rem;
    border-top: 0.1rem solid #E6E6E6;
}
.mobile_subcats a
{
    line-height: 4rem;
    font-size: 2rem;
    text-align: left;
    display: block !important;
}
.disclaimer_content h5,
.disclaimer_content h4
{
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    padding-bottom: 0.8rem;
    color: var(--dark_blue);
}
.disclaimer_content table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ccc;
}

.disclaimer_content th,  
.disclaimer_content td {
    border: 1px solid #ccc;
    padding: 8px;
}