/*- Color
---------------------------*/
.shadow1 {
  box-shadow: 0 3px 10px rgba(32, 39, 76, 0.1);
}
.bg1 {
  background-image: -moz-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -webkit-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -ms-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
}
/*- Reset ------------------------*/
body {
  font-family: "IBM Plex Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #20274c;
  font-weight: 400;
  font-size: 16px;
}
::-webkit-scrollbar {
  width: 10px;
}
@media only screen and (max-width: 720px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
::-webkit-scrollbar-track {
  background: #d1dce7;
}
::-webkit-scrollbar-thumb {
  background: #524444;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #170303;
}
*:focus {
  outline: none;
}
input,
button,
textarea {
  font-family: "IBM Plex Sans", sans-serif;
}
/*- General ------------------------*/
.container {
  max-width: 1600px;
}
@media only screen and (max-width: 1366px) {
  .container {
    max-width: 1140px;
  }
}
main {
  overflow: hidden;
}
@media only screen and (max-width: 1366px) {
  h1 {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 720px) {
  h2 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 720px) {
  h3 {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1366px) {
  h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 720px) {
  h4 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 720px) {
  p {
    font-size: 0.9rem;
  }
}
/*- Spinner ------------------------*/
.spinner-wrapper {
  background-color: #ffffff;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
.spinner-wrapper .logo-image {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  position: absolute;
  margin: 0 auto;
}
@media only screen and (max-width: 720px) {
  .spinner-wrapper .logo-image {
    width: 150px;
  }
}
.spinner-wrapper .st0,
.spinner-wrapper .st1,
.spinner-wrapper .st2 {
  animation: draw 1000ms ease-in-out infinite;
  stroke: #20274c;
}
@keyframes draw {
  0% {
    stroke-dasharray: 0 400;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2;
  }
  37% {
    stroke-dasharray: 200 0;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2;
  }
  50% {
    fill-opacity: 1;
    stroke-width: 0;
  }
  90% {
    fill-opacity: 1;
    stroke-width: 0;
  }
  100% {
    fill-opacity: 0;
    stroke-width: 0;
  }
}
/*- Header ------------------------*/
header {
  padding: 15px 0;
  text-align: right;
}
header .left-menu {
  display: inline-block;
  vertical-align: middle;
  float: left;
  text-align: left;
}
header .left-menu .main-logo {
  display: inline-block;
  width: auto;
  height: 75px;
  font-size: 0;
}
header .left-menu .main-logo img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 720px) {
  header .left-menu .main-logo {
    height: 55px;
  }
}
header .left-menu .menu-button {
  display: none;
  height: 40px;
  width: 35px;
  background-color: transparent;
  border: none;
  padding: 0;
  float: right;
  font-size: 0;
  text-align: right;
  margin: 7px auto;
}
header .left-menu .menu-button:focus {
  outline: none;
}
header .left-menu .menu-button span {
  display: inline-block;
  background-color: #20274c;
  height: 4px;
  width: 65%;
  border-radius: 25px;
}
header .left-menu .menu-button span:nth-child(2) {
  width: 100%;
  margin: 7px 0;
}
header .left-menu .menu-button span:last-child {
  width: 50%;
}
@media only screen and (max-width: 720px) {
  header .left-menu .menu-button {
    display: inline-block;
  }
}
@media only screen and (max-width: 720px) {
  header .left-menu {
    display: block;
    float: none;
  }
}
header .right-menu {
  display: inline-block;
  vertical-align: middle;
}
header .right-menu nav {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  line-height: 50px;
}
header .right-menu nav ul {
  padding: 0;
  margin: 0;
}
header .right-menu nav ul li {
  display: inline-block;
  padding-right: 30px;
}
header .right-menu nav ul li:last-child {
  padding-right: 0;
}
header .right-menu nav ul li.active a {
  color: #e81920;
}
header .right-menu nav ul li.active a::after {
  transition: all 0.2s ease;
  width: 100%;
}
header .right-menu nav ul li a {
  display: inline-block;
  color: #20274c;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}
header .right-menu nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #e81920;
  bottom: 10px;
  transition: all 0.2s ease;
  width: 0;
}
header .right-menu nav ul li a:hover {
  color: #e81920;
  text-decoration: none;
  transition: all 0.2s ease;
}
header .right-menu nav ul li a:hover::after {
  transition: all 0.2s ease;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  header .right-menu nav ul li a {
    display: block;
    height: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 720px) {
  header .right-menu nav ul li {
    display: block;
    padding: 0;
  }
}
@media only screen and (max-width: 720px) {
  header .right-menu nav {
    display: block;
    height: auto;
    line-height: normal;
    text-align: left;
    margin-bottom: 15px;
  }
}
header .right-menu .support {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #d1dce7;
  text-align: center;
  border-radius: 30px;
  padding: 0 30px;
  margin-left: 50px;
}
header .right-menu .support .support-label {
  font-size: 0.8rem;
  margin-top: -10px;
  background-color: #ffffff;
}
@media only screen and (max-width: 720px) {
  header .right-menu .support .support-label {
    display: block;
    margin-top: 0;
  }
}
header .right-menu .support .support-value {
  color: #e81920;
  font-weight: 600;
}
header .right-menu .support .support-value::before {
  margin-right: 10px;
  font-size: 1.3rem;
  vertical-align: middle;
}
@media only screen and (max-width: 720px) {
  header .right-menu .support {
    display: block;
    margin: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  header .right-menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 70px;
    left: 0;
    background-color: #ffffff;
    padding: 15px;
    z-index: 101;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.11);
  }
}
.main-banner {
  background: url(../images/banner-1.webp) no-repeat center top / cover;
  min-height: calc(100vh - 105px);
}
@media only screen and (max-width: 720px) {
  .main-banner .container .row .col {
    min-height: calc(100vh - 85px);
  }
}
.main-banner .banner-content {
  max-width: 60%;
  padding-top: 250px;
}
.main-banner .banner-content .sub-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .main-banner .banner-content .sub-text {
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
}
.main-banner .banner-content .title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .main-banner .banner-content .title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 720px) {
  .main-banner .banner-content {
    max-width: 100%;
    padding-top: 25px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 50px;
  }
}
.main-banner .enquiry {
  margin-top: 50px;
}
.main-banner .enquiry .enquiry-button {
  background-image: -moz-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -webkit-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -ms-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  border: none;
  color: #ffffff;
  height: 50px;
  border-radius: 25px;
  padding: 0 40px;
  box-shadow: 0 5px 12px #e81920, 0 3px 3px #e81920, inset 0 4px 8px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  line-height: 50px;
}
.main-banner .enquiry .enquiry-button::before {
  font-size: 1.4rem;
  margin-right: 10px;
  float: left;
}
.main-banner .enquiry .enquiry-button:focus {
  outline: none;
}
@media only screen and (max-width: 720px) {
  .main-banner .enquiry {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 720px) {
  .main-banner {
    min-height: calc(100vh - 85px);
  }
}
.about-section {
  padding: 100px 0;
}
.about-section .about-title {
  margin-bottom: 40px;
  line-height: 1.6;
}
.about-section .about-title mark {
  background-color: transparent;
  color: #e81920;
}
@media only screen and (max-width: 720px) {
  .about-section .about-title {
    margin-bottom: 10px;
  }
}
.about-section .about-image {
  display: inline-block;
}
.about-section .about-image img {
  max-width: 100%;
}
.about-section .about-head {
  background-color: #e81920;
  color: #ffffff;
  padding: 25px;
  font-size: 1.4rem;
  margin-top: 50px;
  margin-bottom: 30px;
  margin-left: -150px;
  width: 90%;
  line-height: 1.5;
}
@media only screen and (max-width: 720px) {
  .about-section .about-head {
    width: 100%;
    margin: 15px auto;
    font-size: 1.1rem;
  }
}
.about-section .about-text {
  color: #5e6875;
  line-height: 1.7;
}
.about-section .about-more {
  display: inline-block;
  margin-top: 25px;
  position: relative;
  font-weight: 500;
  font-size: 1.2rem;
  color: #20274c;
  transition: all 0.4s ease;
}
.about-section .about-more::before {
  content: "";
  height: 4px;
  width: 30px;
  background-color: #e81920;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.2s ease;
  z-index: -1;
}
.about-section .about-more:hover {
  text-decoration: none;
  transition: all 0.4s ease;
}
.about-section .about-more:hover::before {
  left: 75px;
  width: 60px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 720px) {
  .about-section .about-more {
    margin-top: 0;
  }
}
@media only screen and (max-width: 720px) {
  .about-section {
    padding: 50px 0;
  }
}
.product-section {
  background: #ecf1f4 url(../images/bg-01.webp) no-repeat center center / cover;
  padding: 100px 0;
}
.product-section .title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .product-section .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.product-section .text {
  color: #5e6875;
  line-height: 1.7;
  font-size: 1rem;
}
@media only screen and (max-width: 720px) {
  .product-section .text {
    font-size: 0.9rem;
  }
}
.product-section .more-button {
  background-image: -moz-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -webkit-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -ms-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  border: none;
  color: #ffffff;
  height: 50px;
  border-radius: 30px;
  padding: 0 40px;
  box-shadow: 0 5px 12px #e81920, 0 3px 3px #e81920, inset 0 4px 8px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  line-height: 50px;
  display: inline-block;
  min-width: 250px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 720px) {
  .product-section .more-button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 0.9rem;
    margin-top: 15px;
  }
}
.product-section .product-list a .text {
  color: #ffffff;
}
@media only screen and (max-width: 720px) {
  .product-section {
    padding: 50px 0;
  }
}
.product-list {
  padding: 0;
  margin-bottom: 0;
  margin-top: 50px;
  font-size: 0;
}
.product-list li {
  display: inline-block;
  width: 25%;
  font-size: 1rem;
  text-align: center;
  padding: 10px;
  position: relative;
  z-index: 10;
}
.product-list li .product-col {
  background-color: #421010;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}
.product-list li .product-col::after {
  content: "";
  background-color: rgba(66, 16, 16, 0.5);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  height: 15px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -12px;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.product-list li .product-col:hover {
  text-decoration: none;
}
.product-list li .product-col:hover .details-button::before {
  left: 75px;
  width: 60px;
  transition: all 0.2s ease;
}
.product-list li .product-col .image {
  background-color: rgba(236, 241, 244, 0.6);
  border-radius: 10px;
  height: 250px;
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 15px;
}
.product-list li .product-col .image img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 720px) {
  .product-list li .product-col .image {
    height: 160px;
    margin-bottom: 6px;
  }
}
.product-list li .product-col .title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .product-list li .product-col .title {
    font-size: 1.1rem;
  }
}
.product-list li .product-col .text {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 15px;
}
@media only screen and (max-width: 1366px) {
  .product-list li .product-col .text {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 720px) {
  .product-list li .product-col .text {
    line-height: 1.4;
  }
}
.product-list li .product-col .details-button {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  color: #ffffff;
  transition: all 0.4s ease;
}
.product-list li .product-col .details-button::before {
  content: "";
  height: 4px;
  width: 30px;
  background-color: #e81920;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.2s ease;
}
.product-list li .product-col .details-button:hover {
  text-decoration: none;
  transition: all 0.4s ease;
}
.product-list li .product-col .details-button:hover::before {
  left: 75px;
  width: 60px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 720px) {
  .product-list li .product-col .details-button {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .product-list li {
    width: 100%;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 720px) {
  .product-list {
    margin-top: 15px;
  }
}
.preparation-section {
  padding: 100px 0;
  text-align: center;
}
.preparation-section .preparation-list {
  padding: 0;
  margin-bottom: 0;
  margin-top: 25px;
  text-align: center;
  font-size: 0;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  border-left: 1px solid #d1dce7;
  border-top: 1px solid #d1dce7;
}
.preparation-section .preparation-list li {
  display: block;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  position: relative;
  padding: 30px;
  border-right: 1px solid #d1dce7;
  border-bottom: 1px solid #d1dce7;
}
.preparation-section .preparation-list li .text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 720px) {
  .preparation-section .preparation-list li .text {
    font-size: 0.9rem;
  }
}
.preparation-section .preparation-list li .number {
  color: #20274c;
  font-weight: 700;
  font-size: 5.5rem;
  position: absolute;
  line-height: 1;
  left: 30px;
  bottom: 30px;
  opacity: 0.1;
}
@media only screen and (max-width: 720px) {
  .preparation-section .preparation-list li .number {
    left: 10px;
    bottom: 10px;
    font-size: 2.5rem;
  }
}
.preparation-section .preparation-list li .image {
  display: inline-block;
  width: 50%;
  float: right;
  max-width: 150px;
}
.preparation-section .preparation-list li .image img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 720px) {
  .preparation-section .preparation-list li {
    padding: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .preparation-section .preparation-list {
    grid-template-columns: 50% 50%;
  }
}
@media only screen and (max-width: 720px) {
  .preparation-section {
    padding: 50px 0;
  }
}
footer {
  background-color: #421010;
  color: #ffffff;
  margin-top: 100px;
  position: relative;
}
footer::before {
  content: "";
  background-color: #421010;
  height: 200px;
  width: 110%;
  position: absolute;
  top: -60px;
  border-radius: 50% 50% 0 0;
  left: -5%;
}
footer .footer-box {
  background-color: #a89798;
  margin-bottom: 75px;
  margin-top: -100px;
  color: #ffffff;
  display: flex;
  padding: 50px;
  border-radius: 15px;
}
footer .footer-box .text {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
}
@media only screen and (max-width: 720px) {
  footer .footer-box .text {
    font-size: 1.1rem;
    font-weight: 400;
  }
}
footer .footer-box .more-button {
  background-color: #ffffff;
  color: #20274c;
  display: inline-block;
  white-space: nowrap;
  padding: 0 35px;
  font-size: 1.2rem;
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  margin-left: 25px;
  font-weight: 500;
  align-self: center;
}
@media only screen and (max-width: 720px) {
  footer .footer-box .more-button {
    width: 100%;
    margin: 10px auto 0;
    height: 40px;
    line-height: 40px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
  }
}
@media only screen and (max-width: 720px) {
  footer .footer-box {
    display: block;
    padding: 20px;
    margin-bottom: 50px;
  }
}
footer .head {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (max-width: 720px) {
  footer .head {
    margin-bottom: 12px;
  }
}
footer .fotter-link {
  padding: 0;
  margin: 0;
}
footer .fotter-link li {
  display: block;
  line-height: 1.1;
  margin-bottom: 20px;
}
footer .fotter-link li:last-child {
  margin-bottom: 0;
}
footer .fotter-link li a {
  color: #fbd2d4;
  font-size: 1rem;
}
footer .fotter-link li a:hover {
  color: #e81920;
  text-decoration: none;
}
footer .fotter-link li a i {
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 720px) {
  footer .fotter-link {
    margin-bottom: 20px;
  }
}
footer .footer-contact {
  padding: 0;
  margin: 0;
}
footer .footer-contact li {
  margin-bottom: 20px;
  display: block;
  color: #fbd2d4;
}
footer .footer-contact li:last-child {
  margin-bottom: 0;
}
footer .footer-contact li i {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.4rem;
  vertical-align: middle;
}
footer .copyright {
  color: #fbd2d4;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(251, 210, 212, 0.2);
  padding-top: 50px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 720px) {
  footer .copyright {
    margin-top: 30px;
    padding-top: 25px;
    margin-bottom: 0;
  }
}
footer .footer-logo {
  display: inline-block;
  height: 75px;
  margin-bottom: 15px;
}
footer .footer-logo img {
  max-width: 100%;
  max-height: 100%;
}
footer .footer-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #fbd2d4;
}
@media only screen and (max-width: 720px) {
  footer .footer-text {
    font-size: 0.9rem;
  }
}
.about-page {
  padding: 100px 0;
}
.about-page .head {
  line-height: 1.4;
}
@media only screen and (max-width: 720px) {
  .about-page .text-center {
    text-align: left !important;
  }
}
.about-page .mt-5 {
  margin-top: 15px !important;
}
.about-page .title {
  line-height: 1.7;
  margin-bottom: 55px;
}
@media only screen and (max-width: 720px) {
  .about-page .title {
    margin: 0;
  }
}
.about-page .about-title {
  line-height: 1.6;
}
.about-page .about-text {
  color: #5e6875;
  line-height: 1.7;
}
.about-page .about-image-2 {
  display: inline-block;
  position: relative;
  left: -90px;
  bottom: -65px;
}
@media only screen and (max-width: 720px) {
  .about-page .about-image-2 {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .about-page {
    padding: 50px 0;
  }
}
.contact-page {
  padding: 100px 0;
}
.contact-page .contact-map {
  width: 100%;
  height: 200px;
  margin-bottom: 35px;
}
.contact-page .contact-map .map {
  width: 100%;
  height: 100%;
}
.contact-page .contact-col .head {
  display: table-cell;
  vertical-align: top;
  width: 80px;
}
.contact-page .contact-col .head .title {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
  color: #20274c;
}
@media only screen and (max-width: 720px) {
  .contact-page .contact-col .head {
    display: block;
    width: 100%;
  }
}
.contact-page .contact-col .content {
  display: table-cell;
  vertical-align: top;
  padding-left: 20px;
}
.contact-page .contact-col .content .heading {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #20274c;
  margin-bottom: 5px;
}
.contact-page .contact-col .content .value {
  font-size: 0.9rem;
  color: #5e6875;
  line-height: 1.4;
  margin-bottom: 30px;
}
.contact-page .contact-col .content .value:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .contact-page .contact-col .content .value {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .contact-page .contact-col .content {
    display: block;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1366px) {
  .contact-page .contact-col {
    max-width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .contact-page .contact-col {
    max-width: none;
  }
}
@media only screen and (max-width: 1366px) {
  .contact-page .support-col {
    max-width: 33.333333%;
    flex: 0 0 33.333%;
  }
}
@media only screen and (max-width: 720px) {
  .contact-page .support-col {
    max-width: none;
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 720px) {
  .contact-page {
    padding: 50px 0;
  }
}
.support-form {
  background-color: #ffffff;
  color: #20274c;
  padding: 30px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}
.support-form::after {
  content: "";
  background-color: #ffffff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  height: 15px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -12px;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.support-form .form-group:last-child {
  margin: 0;
}
.support-form .form-group .form-control {
  height: 50px;
  padding: 0 15px;
  border-radius: 25px;
  border: 1px solid rgba(209, 220, 231, 0.4);
  background-color: rgba(209, 220, 231, 0.1);
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}
.support-form .form-group .form-control::placeholder {
  color: #c5cfd6;
}
.support-form .form-group .form-control:focus {
  color: #e81920;
  box-shadow: 0 0 0 0.2rem rgba(232, 25, 32, 0.25);
  border-color: #e81920;
}
@media only screen and (max-width: 720px) {
  .support-form .form-group .form-control {
    text-align: left;
  }
}
.support-form .form-group textarea.form-control {
  padding: 15px;
  height: 100px;
  resize: none;
}
.support-form .submit-btn {
  background-image: -moz-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -webkit-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  background-image: -ms-linear-gradient(0deg, #e81920 0%, #fb8018 100%);
  height: 50px;
  padding: 0 15px;
  border-radius: 25px;
  border: none;
  color: #ffffff;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(232, 25, 32, 0.35), 0 4px 1px #e81920, inset 0 4px 8px rgba(255, 255, 255, 0.9);
}
.support-form .submit-btn:focus {
  outline: none;
}
@media only screen and (max-width: 720px) {
  .support-form {
    text-align: left;
    padding: 20px;
  }
}
.product-page {
  padding: 100px 0;
}
.product-page .head {
  line-height: 1.4;
}
.product-page .title {
  line-height: 1.7;
  margin-bottom: 55px;
}
@media only screen and (max-width: 720px) {
  .product-page .title {
    margin-bottom: 15px;
  }
}
.product-page .product-list {
  margin-top: 0;
}
.product-page .product-list li {
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .product-page .product-list li {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 720px) {
  .product-page .text-center {
    text-align: left !important;
  }
}
@media only screen and (max-width: 720px) {
  .product-page {
    padding: 50px 0;
  }
}
.modal-product {
  padding: 0 !important;
}
.modal-product .modal-dialog {
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.modal-product .modal-dialog .modal-content {
  height: 100vh;
  border: none;
  border-radius: 0;
}
@media only screen and (max-width: 720px) {
  .modal-product .modal-dialog .modal-content {
    overflow: auto;
  }
}
.modal-product .close {
  width: 60px;
  background-color: #20274c;
  color: #c5cfd6;
  height: 60px;
  text-shadow: none;
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
}
.product-content .content-row {
  height: 100vh;
  overflow: hidden;
}
.product-content .content-row .content {
  max-height: 100vh;
  overflow: auto;
  padding: 60px;
}
.product-content .content-row .content .title {
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #20274c;
}
.product-content .content-row .content .title::before {
  content: "";
  width: 150px;
  height: 5px;
  background-color: #e81920;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.product-content .content-row .content .text,
.product-content .content-row .content p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #5e6875;
}
@media only screen and (max-width: 720px) {
  .product-content .content-row .content .text,
  .product-content .content-row .content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.product-content .content-row .content .sub-head,
.product-content .content-row .content .wp-block-heading,
.product-content .content-row .content h3 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .product-content .content-row .content .sub-head,
  .product-content .content-row .content .wp-block-heading,
  .product-content .content-row .content h3 {
    margin-bottom: 5px;
  }
}
.product-content .content-row .content .list,
.product-content .content-row .content .wp-block-list {
  margin-bottom: 40px;
  padding-left: 20px;
}
.product-content .content-row .content .list li,
.product-content .content-row .content .wp-block-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.product-content .content-row .content .list li:last-child,
.product-content .content-row .content .wp-block-list li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 720px) {
  .product-content .content-row .content .list li,
  .product-content .content-row .content .wp-block-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
}
.product-content .content-row .content .variation-list {
  padding: 0;
  font-size: 0;
  margin-bottom: 40px;
}
.product-content .content-row .content .variation-list li {
  display: inline-block;
  width: 200px;
  border: 1px solid #d1dce7;
  font-size: 1.2rem;
  margin-right: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 8px;
  padding-left: 0;
  margin-bottom: 0;
}
.product-content .content-row .content .variation-list li img {
  max-width: 100%;
  margin-bottom: 8px;
}
.product-content .content-row .content .variation-list li .value {
  display: block;
  text-align: center;
  padding: 10px;
  font-weight: 600;
}
@media only screen and (max-width: 720px) {
  .product-content .content-row .content .variation-list li {
    margin-bottom: 2%;
    margin-right: 2%;
    width: 48%;
  }
}
.product-content .content-row .content .gilt-color {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-content .content-row .content .gilt-color li {
  display: inline-flex;
  padding: 0;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-weight: 600;
}
.product-content .content-row .content .gilt-color li img {
  border-radius: 40px;
  display: block;
}
.product-content .content-row .content .gilt-color li span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.product-content .content-row .content .step,
.product-content .content-row .content ol.wp-block-list {
  margin: 0;
  padding: 0;
  counter-reset: step-counter;
}
.product-content .content-row .content .step li,
.product-content .content-row .content ol.wp-block-list li {
  margin-bottom: 30px;
  display: block;
  counter-increment: step-counter;
  padding-left: 50px;
  position: relative;
}
.product-content .content-row .content .step li:last-child,
.product-content .content-row .content ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
.product-content .content-row .content .step li::before,
.product-content .content-row .content ol.wp-block-list li::before {
  content: counter(step-counter);
  background-color: #c5cfd6;
  color: #ffffff;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(197, 207, 214, 0.25);
  display: inline-block;
  text-align: center;
  line-height: 35px;
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}
.product-content .content-row .content .step li .step-test,
.product-content .content-row .content ol.wp-block-list li .step-test {
  margin: 0;
  color: #5e6875;
  line-height: 1.7;
}
@media only screen and (max-width: 720px) {
  .product-content .content-row .content {
    padding: 20px;
    max-height: none;
  }
}
@media only screen and (max-width: 720px) {
  .product-content .content-row {
    height: auto;
  }
}
.product-content .image-col {
  height: 100%;
  padding: 0;
}
.product-content .image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-content .table,
.product-content .wp-block-table table {
  border: 1px solid #d1dce7;
  margin-bottom: 40px;
}
.product-content .table th,
.product-content .wp-block-table table th,
.product-content .table td,
.product-content .wp-block-table table td {
  background-color: rgba(236, 241, 244, 0.2);
  border: 1px solid #d1dce7;
  text-transform: capitalize;
}
.product-content .color-list {
  padding: 0;
  margin: 0 -10px;
  font-size: 0;
}
.product-content .color-list li {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  border: 1px solid #d1dce7;
  margin: 10px;
  font-size: 1.2rem;
  line-height: 36px;
  font-weight: 600;
  vertical-align: top;
  width: 150px;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .product-content .color-list li {
    margin: 5px;
    height: 30px;
    padding: 0 25px;
    font-size: 0.9rem;
    line-height: 30px;
  }
}
@media only screen and (max-width: 720px) {
  .product-content .color-list {
    margin: 0 -5px;
  }
}
.product-content .color-buttons {
  padding: 0;
  margin: 0 -10px;
  font-size: 0;
}
.product-content .color-buttons .wp-block-button a {
  display: inline-flex;
  border: 1px solid #d1dce7;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  width: 150px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 720px) {
  .product-content .color-buttons .wp-block-button a {
    margin: 5px;
    height: 30px;
    padding: 0 25px;
    font-size: 0.9rem;
    line-height: 30px;
  }
}
@media only screen and (max-width: 720px) {
  .product-content .color-buttons {
    margin: 0 -5px;
  }
}
.about-image {
  display: inline-block;
  width: 60%;
}
.about-image img {
  max-width: 100%;
}
@media only screen and (max-width: 720px) {
  .about-image {
    width: 100%;
  }
}
.about-image-2 {
  display: inline-block;
  width: 39%;
}
.about-image-2 img {
  max-width: 100%;
}
.enquiry-modal .modal-content {
  border: none;
}
.enquiry-modal .close {
  position: absolute;
  right: -50px;
  top: 20px;
  background: #f65454;
  color: #ffffff;
  width: 50px;
  height: 60px;
  z-index: 101;
  border-radius: 0 10px 10px 0;
  opacity: 1;
}
.enquiry-modal .close:focus,
.enquiry-modal .close:active {
  outline: none;
  box-shadow: none;
}
