* {
  margin: 0;
  padding: 0;
  box-sizing: 0;
}

@font-face {
  font-family: "lato-regular";
  src: url("../../frontend/Rom/default/en_GB/webfonts/lato-regular.woff2") format("woff2"), url("../../frontend/Rom/default/en_GB/webfonts/lato-bold.woff") format("woff");
}
@font-face {
  font-family: "lato-bold";
  src: url("../../frontend/Rom/default/en_GB/webfonts/lato-bold.woff2") format("woff2"), url("../../frontend/Rom/default/en_GB/webfonts/lato-bold.woff") format("woff");
}
@font-face {
  font-family: "lato-semibold";
  src: url("../../frontend/Rom/default/en_GB/webfonts/lato-semibold.woff2") format("woff2"), url("../../frontend/Rom/default/en_GB/webfonts/lato-semibold.woff") format("woff");
}
@font-face {
  font-family: "lato-medium";
  src: url("../../frontend/Rom/default/en_GB/webfonts/lato-medium.woff2") format("woff2"), url("../../frontend/Rom/default/en_GB/webfonts/lato-medium.woff") format("woff");
}
@font-face {
  font-family: "lato-light";
  src: url("../../frontend/Rom/default/en_GB/webfonts/lato-light.woff2") format("woff2"), url("../../frontend/Rom/default/en_GB/webfonts/lato-light.woff") format("woff");
}
/* .page-main {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
} */
/* .container {
  max-width: 1470px;
  margin: 0 auto;
} */

/* .container-two {
  max-width: 1740px;
  margin: 0 auto;
} */

body {
  font-family: "lato-regular";
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  /* display: inline-block; */
}

.mr-60 {
  margin: 0 60px;
}

/* header {
  position: absolute;
  top: 0px;
  background-color: var(--clr-bg-header);
  width: 100%;
  z-index: 1000;
} */

/* .menu-container {
  display: flex;
  position: relative;
} */

/* .logo-container {
  flex: 1;
}
.logo-container a {
  text-decoration: none;
  display: inline-block;
}
.logo-container a img {
  width: auto;
  background: #fff;
  padding: 25px 60px 15px;
  border-radius: 0px 0 12px 12px;
} */

/* .nav-links {
  flex: 2;
} */

/* .log-sign {
  margin-bottom: 18px;
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
} */

/* .nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
  margin-left: 50px;
}

.nav-link > a {
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  font-family: "lato-regular";
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
  text-transform: uppercase;
}
.nav-link > a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  visibility: visible;
  left: 0;
  bottom: 0;
  margin-bottom: -9px;
  transition: 0.5s;
}

.nav-link:hover > a::after {
  width: 100%;
  height: 1px;
  background-color: #fff;
  visibility: visible;
  left: 0;
  bottom: 0;
  margin-bottom: -9px;
} */

/* .dropdown {
  position: absolute;
  top: 25px;
  left: 0;
  width: auto;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid #fff;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: #6f7285;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 18px;
  font-family: "lato-regular";
  font-weight: lighter;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  border-bottom: 1px solid #fff;
}

.dropdown-link:hover > a {
  background-color: #007200;
  color: #fff;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
  margin-bottom: 0px;
} */

/* .nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
} */

/* .hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #1c314c;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #be3032;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#mobileMenu {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#mobileMenu:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#mobileMenu:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#mobileMenu:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
} */

/* .social-media-icon-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 20px 0 0 0;
} */

/* .login {
  margin-left: 20px;
}
.login a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-family: "lato-regular";
  font-weight: lighter;
  text-decoration: none;
  color: #fff;
} */

/* .header-icon {
  margin-left: 20px;
}
.header-icon a {
  text-decoration: none;
} */
/* @keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
} */
/* .home-slider .home-img-slider .slick-prev {
  display: none !important;
}
.home-slider .home-img-slider .slick-next {
  display: none !important;
}
.home-slider .home-img-slider .slick-dots {
  bottom: 40px;
}
.home-slider .home-img-slider .slick-dotted.slick-slider {
  margin: 0 !important;
}
.home-slider .home-img-slider .slick-dots li button:before {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 18px;
  color: transparent;
  opacity: 1;
}
.home-slider .home-img-slider .slick-dots li.slick-active button:before {
  background: #fff;
  opacity: 1;
}
.home-slider .home-img-slider .brand-img {
  position: relative;
}
.home-slider .home-img-slider .brand-img img {
  width: 100%;
}
.home-slider .home-img-slider .brand-img h1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "lato-Bold";
  font-size: 90px;
  text-transform: uppercase;
} */

/* a.login-portal-btn {
  background: #224370;
  border-radius: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 16px;
  font-family: "lato-regular";
  font-weight: lighter;
  height: 50px;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: bottom right;
  width: 250px;
  bottom: 50%;
}
.login-portal-btn img {
  -webkit-transform: rotate(90deg);
  width: 24px;
  height: 18px;
} */

/* .three-img-section {
  padding: 40px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
}
.three-img-section .three-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.three-img-section .three-img .images-wrapper-one {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.three-img-section .three-img .images-wrapper-one:hover .detail-content-btn {
  background-color: #be3032
}
.three-img-section .three-img .images-wrapper-one .images img {
  border: 1px solid #be3032;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5411764706);
  width: 100%;
}
.three-img-section .three-img .images-wrapper-one .detail-content-btn {
  background-color:rgb(34 67 112);
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 4px;
  text-decoration: none;
}
.three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
  color: #fff;
  text-transform: uppercase;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 30px;
  padding: 0 0 12px 0;
} */
/* .three-img-section .three-img .images-wrapper-one .detail-content-btn .view-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
} */
/* .three-img-section .three-img .images-wrapper-one .detail-content-btn p a{
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.three-img-section .three-img .images-wrapper-two {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin: 0 60px;
}
.three-img-section .three-img .images-wrapper-two:hover .detail-content-btn {
  background-color: #be3032;
}
.three-img-section .three-img .images-wrapper-two .images img {
  border: 1px solid #be3032;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5411764706);
  width: 100%;
}
.three-img-section .three-img .images-wrapper-two .detail-content-btn {
  background-color: #be3032;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 4px;
  text-decoration: none;
}
.three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
  color: #fff;
  text-transform: uppercase;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 30px;
  padding: 0 0 12px 0;
} */
/* .three-img-section .three-img .images-wrapper-two .detail-content-btn .view-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
} */
/* .three-img-section .three-img .images-wrapper-two .detail-content-btn p a {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
} */

/* .video-section {
  padding: 40px 0;
}
.video-section .video-with-box-wrapper {
  display: flex;
  justify-content: space-between;
}
.video-section .video-with-box-wrapper iframe {
  width: 100%;
  height: auto;
}
.video-section .video-with-box-wrapper .box-wrapper {
  width: 35%;
  margin-left: 60px;
}
.video-section .video-with-box-wrapper .our-website-box p a {
  border: 1px solid #be3032;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3215686275);
  padding: 12px 0px 14px 30px;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  color: #1c314c;
  font-size: 23px;
  font-family: "lato-regular";
  transition: all 0.3s ease-in-out;
}
.video-section .video-with-box-wrapper .our-website-box:hover {
  background: #aaaaaa;
  color: #fff;
}
.video-section .video-with-box-wrapper .call-box p a {
  border: 1px solid #be3032;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3215686275);
  padding: 12px 0 14px 30px;
  margin: 70px 0px;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  color: #1c314c;
  font-size: 23px;
  font-family: "lato-regular";
  transition: all 0.3s ease-in-out;
}
.video-section .video-with-box-wrapper .call-box:hover {
  background: #aaaaaa;
  color: #fff;
} */

/* .three-box-content-with-images-section {
  padding: 40px 0;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  flex-wrap: wrap;
}
.three-box-content-with-images-section .three-box-content-with-images {
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images {
  border: 1px solid #1c314c;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3215686275);
  background-color: #f5f5f5;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images img {
  width: 100%;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
  padding: 33px 40px;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 30px;
  color: #1c314c;
  text-transform: uppercase;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li {
  color: #be3032;
  font-size: 23px;
  font-family: "lato-regular";
  position: relative;
  margin: 24px 0px 0px 31px;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li::before {
  position: absolute;
  background-image: url(../../frontend/Rom/default/en_GB/images/cricle-right-icon-black.png);
  color: transparent;
  content: " ";
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  margin-right: 10px;
  left: -30px;
  top: 2px;
} */

/* .what-we-offer-section {
  padding: 40px 0;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  flex-wrap: wrap;
}
.what-we-offer-section h1 {
  text-align: center;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 40px;
  color: #1c314c;
  padding: 0 0 38px 0;
  text-transform: uppercase;
}
.what-we-offer-section .three-img-what-we-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-one {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-one:hover .detail-content-btn {
  background-color: rgba(7, 22, 137, 0.5803921569);
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn {
  background-color: rgba(52, 133, 50, 0.5803921569);
  text-align: center;
  padding: 22px 0;
  position: absolute;
  width: 100%;
  bottom: 4px;
  text-decoration: none;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn h4 {
  color: #fff;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 33px;
  text-transform: uppercase;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-one .images img {
  width: 100%;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-two {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin: 0 18px;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-two:hover .detail-content-btn {
  background-color: rgba(52, 133, 50, 0.5803921569);
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn {
  background-color: rgba(7, 22, 137, 0.5803921569);
  text-align: center;
  padding: 22px 0;
  position: absolute;
  width: 100%;
  bottom: 4px;
  text-decoration: none;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn h4 {
  color: #fff;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 33px;
  text-transform: uppercase;
}
.what-we-offer-section .three-img-what-we-offer .images-wrapper-two .images img {
  width: 100%;
} */

/* .downloads-section {
  padding: 40px 0;
}
.downloads-section h1 {
  text-align: center;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 40px;
  color: #1c314c;
  padding: 0 0 38px 0;
  text-transform: uppercase;
}
.downloads-section .four-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.downloads-section .four-images .downloads-one-img {
  position: relative;
  display: inline-block;
}
.downloads-section .four-images .downloads-one-img .images img {
  width: 100%;
}
.downloads-section .four-images .downloads-one-img .downloads-btn {
  position: absolute;
  right: 22px;
  bottom: 14px;
}
.downloads-section .four-images .downloads-one-img h4 {
  text-align: center;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 24px;
  color: #be3032;
  text-transform: capitalize;
} */

.page-footer {
  padding: 40px 0 0 0;
  background-color: #1e1d2f;
}
.page-footer .footer-wrapper {
  display: flex;
}
.page-footer .footer-wrapper .footer-logo-wrapper {
  width: 25%;
}
.page-footer .footer-wrapper .footer-logo-wrapper .sub-brand {
  margin: 34px 0;
}
.page-footer .footer-wrapper .footer-logo-wrapper .social-media-icon ul {
  display: flex;
}
.page-footer .footer-wrapper .footer-logo-wrapper .social-media-icon ul li {
  margin-right: 10px;
}
.page-footer .footer-wrapper .footer-logo-wrapper .social-media-icon ul li a {
  text-decoration: none;
  display: inline-block;
}
.page-footer .footer-wrapper .footer-product-list {
  width: 35%;
}
.page-footer .footer-wrapper .footer-product-list h5 {
  position: relative;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 20px;
  color: #fff;
}
.page-footer .footer-wrapper .footer-product-list h5::before {
  content: " ";
  position: absolute;
  width: 51px;
  height: 2px;
  background: #be3032;
  bottom: -20px;
}
.page-footer .footer-wrapper .footer-product-list .sub-product-list {
  display: flex;
  margin-top: 24px;
}
.page-footer .footer-wrapper .footer-product-list .sub-product-list ul {
  list-style-type: none;
  padding-left: 20px;
  padding-right: 30px;
}
.page-footer .footer-wrapper .footer-product-list .sub-product-list ul li {
  list-style-image: url(../../frontend/Rom/default/en_GB/images/cricle-right-icon-green.png);
  margin: 17px 0;
}
.page-footer .footer-wrapper .footer-product-list .sub-product-list ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: lighter;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.page-footer .footer-wrapper .footer-product-list .sub-product-list ul li a:hover {
  color: #be3032;
}
.page-footer .footer-wrapper .information-policy-list {
  width: 20%;
}
.page-footer .footer-wrapper .information-policy-list h5 {
  position: relative;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 20px;
  color: #fff;
}
.page-footer .footer-wrapper .information-policy-list h5::before {
  content: " ";
  position: absolute;
  width: 51px;
  height: 2px;
  background: #be3032;
  bottom: -20px;
}
.page-footer .footer-wrapper .information-policy-list .sub-product-list {
  margin-top: 42px;
}
.page-footer .footer-wrapper .information-policy-list ul {
  list-style-type: none;
  padding-left: 20px;
}
.page-footer .footer-wrapper .information-policy-list ul li {
  list-style-image: url(../../frontend/Rom/default/en_GB/images/cricle-right-icon-green.png);
  margin: 17px 0;
}
.page-footer .footer-wrapper .information-policy-list ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}
.page-footer .footer-wrapper .information-policy-list ul li a:hover {
  color: #be3032;
}
.page-footer .footer-wrapper .contact-info {
  color: #fff;
  width: 20%;
}
.page-footer .footer-wrapper .contact-info h5 {
  position: relative;
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 20px;
  color: #fff;
}
.page-footer .footer-wrapper .contact-info h5::before {
  content: " ";
  position: absolute;
  width: 51px;
  height: 2px;
  background: #be3032;
  bottom: -20px;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper {
  margin-top: 42px;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .company-address h6 {
  font-size: 15px;
  font-family: "lato-bold";
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .company-address p {
  font-family: "lato-regular";
  font-size: 15px;
  margin: 17px 0;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .email {
  margin: 17px 0 0 0;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .email a {
  text-decoration: none;
  color: #fff;
  font-family: "lato-bold";
  font-size: 16px;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .email a p {
  font-family: "lato-regular";
  font-size: 15px;
  margin: 10px 0 0 0;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .phonenumber {
  margin: 17px 0 0 0;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .phonenumber a {
  text-decoration: none;
  color: #fff;
  font-family: "lato-bold";
  font-size: 16px;
}
.page-footer .footer-wrapper .contact-info .contact-info-wrapper .phonenumber a p {
  font-family: "lato-regular";
  font-size: 15px;
  margin: 10px 0 0 0;
}
.page-footer .we-accept {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 40px 0;
}
.page-footer .we-accept h5 {
  font-family: "lato-medium";
  font-weight: lighter;
  font-size: 20px;
  color: #fff;
}
.page-footer .we-accept img {
  width: auto;
}
.page-footer .footer-row {
  border-top: 1px solid rgba(245, 245, 245, 0.2901960784);
  text-align: center;
  padding: 23px 0;
}
.page-footer .footer-row p {
  color: #fff;
}
.page-footer .footer-row p a {
  text-decoration: none;
  color: #be3032;
}

/* .banner-section {
  position: relative;
}
.banner-section img {
  width: 100%;
}
.banner-section h1 {
  position: absolute;
  bottom: 28%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "lato-Bold";
  font-size: 66px;
  text-transform: uppercase;
} */
/* 
.product-list-view-section {
  padding: 40px 0;
}
.product-list-view-section .product-category-wrapper {
  display: flex;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper {
  width: 25%;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper h4 {
  color: #1c314c;
  font-family: "lato-bold";
  font-weight: lighter;
  font-size: 23px;
  text-transform: capitalize;
  padding: 28px 0 28px 52px;
  border: 1px solid #f3f3f3;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul {
  display: block;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul li {
  border: 1px solid #f3f3f3;
  padding: 15px 22px;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul label {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-family: "lato-semibold";
  color: #6f7285;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul label::before {
  content: "";
  background-color: transparent;
  border: 1px solid #cfcfcf;
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 11px;
  border-radius: 4px;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper form ul input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 11px;
  border: solid #1c314c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper .bar-bg-img {
  background-image: url(../../frontend/Rom/default/en_GB/images/bar-bg-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18px 0 115px 18px;
  margin: 28px 0 0 0;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper .bar-bg-img h3 {
  font-family: "lato-bold";
  font-size: 37px;
  color: #fff;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper .bar-bg-img h5 {
  font-family: "lato-light";
  font-size: 32px;
  font-weight: lighter;
  color: #fff;
  margin-bottom: 22px;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper .bar-bg-img a {
  text-decoration: none;
  background: #fff;
  color: #007200;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: "lato-semibold";
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.product-list-view-section .product-category-wrapper .shop-by-brand-wrapper .bar-bg-img a:hover {
  background: #1c314c;
  color: #fff;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper {
  width: 75%;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .view-btn {
  display: flex;
  align-items: center;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .view-btn p {
  font-size: 16px;
  color: #8a8a8a;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .view-btn a {
  margin-left: 14px;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .sort-by-dropdown label {
  font-family: "lato-semibold";
  font-size: 16px;
  color: #8a8a8a;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .sort-by-dropdown select {
  width: 162px;
  padding: 7px 14px;
  background: #f5f5f5;
  border: 1px solid #f3f3f3;
  border-radius: 6px;
  color: #8a8a8a;
  font-family: "lato-medium";
  font-size: 15px;
  margin: 0 12px;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .sort-by-dropdown select option {
  color: #8a8a8a;
  font-family: "lato-medium";
  font-size: 15px;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .view-dropdown-wrapper .sort-by-dropdown a {
  vertical-align: middle;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .product-wrapper ol {
  list-style-type: none;
}
.product-list-view-section .product-category-wrapper .product-category-img-wrapper .product-wrapper ol li .product-info a {
  position: relative;
}/*# sourceMappingURL=style.css.map */

/* .social-media-row {
  display: flex !important;
  flex-direction: row !important;
}

.page-header {
  border-bottom: none;
  margin-bottom: 20px;
} */
/* .nav-link:hover > a {
  text-decoration: none;
} */
/* .minicart-wrapper .action.showcart:before {
  content: "";
  background-image: url(../../frontend/Rom/default/en_GB/images/cart-icon.png);
  width: 22px;
  height: 29px;
}
.show-cart {
  display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-family: "lato-regular";
    font-weight: lighter;
    text-decoration: none;
    color: #fff;
} */
.copyright {
  background-color: #1e1d2f;}

/*------------------------------------List Page 25/09 -----------------------------------------------*/
/* .block.block-wishlist {display: none;}
    .wishlist-table {width: 100%;border-collapse: collapse;}
    .wishlist-table th, .wishlist-table td {border: 1px solid #ddd;padding: 8px;text-align: left;width: 1% !important;}
    .wishlist-table th {background-color: #f4f4f4;}
    .wishlist-table tr:nth-child(even) {background-color: #f9f9f9;} */
    /* Style for the delete button */
    /* .wishlist-table .action.delete {background-color: #ff6f6f; 
        border: none;
        color: white;
        padding: 5px 10px;
        text-align: center;
        text-decoration: none;          
        display: inline-block;
        font-size: 12px;
        cursor: pointer;
        border-radius: 3px;
    }

    .wishlist-table .action.delete:hover {
        background-color: #ff4c4c;
    } */

    /* Optional: Style for the qty column */
    /* .wishlist-table th.qty, .wishlist-table td.qty {
        text-align: center;
    }
    
    .wishlist-table td.qty {
        font-weight: bold;
    } */

    /* Reset CSS rules that match the original selectors and properties */
    /* @media (min-width: 769px), print {
        .wishlist-index-index .product-item-inner {
            background: none !important;
            border: none !important;
            box-shadow: none !important;
            border-top: none !important;
            left: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            position: static !important;
            right: auto !important;
            z-index: auto !important;
        }
    } */

    /* @media (min-width: 640px) {
        .products-grid .product-item-inner {
            background: none !important;
            box-shadow: none !important;
            border: none !important;
            border-top: none !important;
            left: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            position: static !important;
            right: auto !important;
            z-index: auto !important;
        }
    } */

    /* .products-grid.wishlist .product-item-actions .action.edit:before ,.products-grid.wishlist .product-item-actions a.btn-remove.action.delete {
        display: none;
    }

    .products-grid.wishlist .product-item-name, .products-grid.wishlist .product-item-actions {
        text-align: center;
    }
    .products-grid.wishlist .product-item-actions .action.edit > span {clip:unset;overflow:unset;}
    .box-tocart .action.tocart {
        width: 100%;
    } */
      /*------------------------------------Checkout Page 25/09 -----------------------------------------------*/
  /* .cart-summary._sticky {position: inherit;}
  .cart-container .form-cart .actions.main .continue {display: inline;}
  .cart-container .form-cart {width: 100%;}  */@charset "UTF-8";
/* Slider */
/* .slick-loading .slick-list {
  background: #fff url("../../frontend/Rom/default/en_GB/css/ajax-loader.gif") center center no-repeat;
} */

/* Icons */
/* @font-face {
  font-family: "slick";
  src: url("../../frontend/Rom/default/en_GB/css/fonts/slick.eot");
  src: url("../../frontend/Rom/default/en_GB/css/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../../frontend/Rom/default/en_GB/css/fonts/slick.woff") format("woff"), url("../../frontend/Rom/default/en_GB/css/fonts/slick.ttf") format("truetype"), url("../../frontend/Rom/default/en_GB/css/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
} */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}/*# sourceMappingURL=slick-theme.css.map *//* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }
  .slick-list:focus {
    outline: none;
  }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table;
  }
  .slick-track:after {
    clear: both;
  }
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
  }
  [dir=rtl] .slick-slide {
    float: right;
  }
  .slick-slide img {
    display: block;
  }
  .slick-slide.slick-loading img {
    display: none;
  }
  .slick-slide.dragging img {
    pointer-events: none;
  }
  .slick-initialized .slick-slide {
    display: block;
  }
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }/*# sourceMappingURL=slick.css.map *//* @media (max-width: 3840px) {
  .three-img-section .three-img {
    justify-content: center;
  }
  .three-box-content-with-images-section .three-box-content-with-images {
    justify-content: center;
  }
} */
@media (max-width: 1680px) {
  /* .container-two {
    margin: 0 45px;
  } */
}
@media (max-width: 1440px) {
  /* .container {
    padding: 0 48px;
  } */
  /* .home-slider .home-img-slider .brand-img h1 {
    font-size: 64px;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
    font-size: 26px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
    font-size: 26px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    font-size: 20px;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    font-size: 20px;
  }
  .three-box-content-with-images-section .three-box-content-with-images {
    align-items: normal;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
    font-size: 24px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li {
    font-size: 18px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn h4 {
    font-size: 28px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn h4 {
    font-size: 28px;
  }
  .downloads-section .four-images {
    gap: 18px;
  } */
  .page-footer .footer-wrapper .footer-logo-wrapper .sub-brand img {
    width: 80%;
  }
  .page-footer .footer-wrapper .footer-product-list {
    width: 40%;
  }
}
@media (max-width: 1366px) {
  .nav-link {
    margin-left: 36px;
  }
  /* .three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
    font-size: 22px;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn .view-btn p {
    font-size: 16px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
    font-size: 22px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn .view-btn p {
    font-size: 16px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    font-size: 18px;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    font-size: 18px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
    padding: 33px 25px;
  }
  .downloads-section .four-images .downloads-one-img h4 {
    font-size: 22px;
  } */
  .page-footer .footer-wrapper .footer-logo-wrapper a img {
    width: auto;
    height: 55px;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper .social-media-icon ul li a img {
    width: auto;
    height: 40px;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list ul li a {
    font-size: 14px;
  }
  .page-footer .footer-wrapper .information-policy-list ul li a {
    font-size: 14px;
  }
  .page-footer .footer-wrapper .contact-info .contact-info-wrapper .company-address p {
    font-size: 14px;
  }
  /* .login-portal-btn {
    z-index: 9999;
  } */
}
@media (max-width: 1280px) {
  /* .nav-link {
    margin-left: 26px;
  }
  .container {
    padding: 0 40px;
  } */
  /* .three-img-section .three-img .images-wrapper-one .detail-content-btn a h4 {
    font-size: 25px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn a h4 {
    font-size: 25px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a img {
    width: auto;
    height: 38px;
  }
  .video-section .video-with-box-wrapper .call-box p a img {
    width: auto;
    height: 38px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
    padding: 28px 20px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper {
    padding: 28px 20px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper .oneline-content {
    padding: 20px 0 0 0;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper .oneline-content p {
    font-size: 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper .oneline-content {
    padding: 20px 0 0 0;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper .oneline-content p {
    font-size: 16px;
  }
  .what-we-offer-section h1 {
    font-size: 36px;
    padding: 0 0 26px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn {
    padding: 14px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn h4 {
    font-size: 24px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn {
    padding: 14px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn h4 {
    font-size: 24px;
  }
  .downloads-section h1 {
    font-size: 36px;
    padding: 0 0 26px 0;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn a img {
    width: auto;
    height: 33px;
  } */
  .page-footer .footer-wrapper .footer-product-list {
    width: 47%;
  }
  .page-footer .footer-wrapper .information-policy-list {
    width: 22%;
  }
  /* .social-media-icon-header {
    display: none;
  } */
  /* .right-header .social-media-icon-header .login p {
    font-size: 16px;
  }
  .social-media-icon-header {
    justify-content: space-around;
  }
  .nav-link a {
    font-size: 14px;
  }
  .log-sign {
    margin-bottom: 0;
  }
  .hamburger-menu-container {
    display: flex;
  } */
  #mobileMenu {
    display: block;
  }
  /* .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 0%;
    left: 0;
    width: 100%;
    background-color: #071689;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
    z-index: -1111;
  } */
  #mobileMenu:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #mobileMenu:checked ~ .nav-btn .nav-link,
  #mobileMenu:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }
  /* .nav-links {
    flex: initial;
    width: 100%;
  }
  .nav-links > ul {
    flex-direction: column;
  }
  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }
  .nav-link > a {
    padding: 18px;
  }
  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }
  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }
  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }
  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }
  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }
  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }
  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }
  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }
  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }
  .dropdown .dropdown .arrow {
    display: none;
  }
  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }
  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }
  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }
  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }
  .log-sign {
    flex: initial;
    width: 100%;
    padding: 50px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
  .nav-links > ul {
    gap: 0;
  } */
}
@media (max-width: 1024px) {
  /* .social-media-icon-header {
    display: none;
  }
  .right-header .social-media-icon-header .login p {
    font-size: 16px;
  }
  .social-media-icon-header {
    justify-content: space-around;
  }
  .nav-link a {
    font-size: 14px;
  }
  .log-sign {
    margin-bottom: 0;
  }
  .hamburger-menu-container {
    display: flex;
  } */
  #mobileMenu {
    display: block;
  }
  /* .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 0%;
    left: 0;
    width: 100%;
    background-color: #071689;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
    z-index: -1111;
  }
  #mobileMenu:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #mobileMenu:checked ~ .nav-btn .nav-link,
  #mobileMenu:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }
  .nav-links {
    flex: initial;
    width: 100%;
  }
  .nav-links > ul {
    flex-direction: column;
  }
  .nav-link {
    width: 100%; */
    /* opacity: 0; */
    /* transform: translateY(15px);
  }
  .nav-link > a {
    padding: 18px;
  }
  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }
  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }
  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }
  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }
  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }
  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }
  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }
  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }
  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }
  .dropdown .dropdown .arrow {
    display: none;
  }
  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }
  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }
  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }
  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }
  .log-sign {
    flex: initial;
    width: 100%;
    padding: 50px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
  .nav-links > ul {
    gap: 0;
  } */
  /* .home-slider .home-img-slider .brand-img h1 {
    font-size: 48px;
  }
  .three-img-section {
    padding: 25px 0;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
    font-size: 17px;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn .view-btn p {
    font-size: 14px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
    font-size: 17px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn .view-btn p {
    font-size: 14px;
  }
  .video-section {
    padding: 25px 0;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    font-size: 14px;
    padding: 12px 0px 14px 20px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a img {
    width: auto;
    height: 30px;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    font-size: 14px;
    padding: 12px 0px 14px 20px;
  }
  .video-section .video-with-box-wrapper .call-box p a img {
    width: auto;
    height: 30px;
  }
  .three-box-content-with-images-section {
    padding: 25px 0;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper .oneline-content img {
    width: 16px;
    height: 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper .oneline-content p {
    font-size: 14px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
    padding: 16px 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper .oneline-content {
    padding: 14px 0 0 0;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper .oneline-content img {
    width: 16px;
    height: 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper .oneline-content p {
    font-size: 14px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper {
    padding: 16px 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper .oneline-content {
    padding: 14px 0 0 0;
  }
  .what-we-offer-section {
    padding: 25px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn h4 {
    font-size: 18px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn h4 {
    font-size: 18px;
  }
  .downloads-section {
    padding: 25px 0;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn a img {
    width: auto;
    height: 26px;
  }
  .downloads-section .four-images .downloads-one-img h4 {
    font-size: 18px;
  } */
  .page-footer .footer-wrapper {
    flex-wrap: wrap;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper {
    width: 50%;
  }
  .page-footer .footer-wrapper .footer-product-list {
    width: 50%;
  }
  .page-footer .footer-wrapper .information-policy-list {
    width: 50%;
  }
  .page-footer .footer-wrapper .contact-info {
    width: 50%;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper .footer-logo img {
    width: 180px;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list {
    margin-top: 25px;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper .sub-brand img {
    width: 180px;
  }
  /* .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
    font-size: 18px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two .content-wrapper h4 {
    font-size: 18px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    font-size: 16px;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    font-size: 16px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a img {
    width: 40px;
  }
  .video-section .video-with-box-wrapper .call-box p a img {
    width: 40px;
  }
  .login-portal-btn {
    height: 42px;
  } */
  /* .home-slider .home-img-slider .slick-dots {
    bottom: 20px;
  } */
}
@media (max-width: 820px) {
  /* .container {
    padding: 0 15px;
  }
  .container-two {
    margin: 0 15px;
  }
  .logo-container a img {
    height: 65px;
  } */
  /* .three-img-section .three-img .images-wrapper-two {
    margin: 0 24px;
  } */
  .mr-60 {
    margin: 0 24px;
  }
  /* .home-slider .home-img-slider .brand-img h1 {
    font-size: 40px;
  }
  .downloads-section h1 {
    font-size: 28px;
    padding: 0 0 16px 0;
  }
  .what-we-offer-section h1 {
    font-size: 28px;
    padding: 0 0 16px 0;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
    padding: 16px 12px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
    font-size: 16px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li {
    font-size: 15px;
  } */
  .page-footer .footer-wrapper .footer-logo-wrapper {
    width: 40%;
  }
  .page-footer .footer-wrapper .footer-product-list {
    width: 60%;
  }
  .page-footer .footer-wrapper .information-policy-list {
    width: 40%;
  }
  .page-footer .footer-wrapper .contact-info {
    width: 60%;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list ul {
    padding-right: 9px;
  }
  /* .video-section .video-with-box-wrapper iframe {
    width: 100%;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    margin: 24px 0;
  }
  .video-section .video-with-box-wrapper .box-wrapper {
    width: 45%;
    margin-left: 24px;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn {
    padding: 8px 0;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
    font-size: 15px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn {
    padding: 8px 0;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
    font-size: 15px;
  } */
}
@media (max-width: 768px) {
  /* .container-two {
    margin: 0 25px;
  }
  .container {
    padding: 0 25px;
  } */
  /* .home-slider .home-img-slider .brand-img h1 {
    font-size: 34px;
  } */
  /* .logo-container a img {
    height: 60px;
  } */
  /* .three-img-section .three-img .images-wrapper-two {
    margin: 0 24px;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn h4 {
    font-size: 14px;
    padding: 0 0 10px 0;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn {
    padding: 8px 0;
  }
  .three-img-section .three-img .images-wrapper-one .detail-content-btn .view-btn p {
    font-size: 12px;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn h4 {
    font-size: 14px;
    padding: 0 0 10px 0;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn {
    padding: 8px 0;
  }
  .three-img-section .three-img .images-wrapper-two .detail-content-btn .view-btn p {
    font-size: 12px;
  }
  .video-section .video-with-box-wrapper {
    display: block;
  }
  .video-section .video-with-box-wrapper .box-wrapper {
    width: 100%;
    margin-top: 27px;
    margin-left: 0;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 18px;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    width: 45%;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    margin: 0;
    width: 45%;
  }
  .video-section .video-with-box-wrapper iframe {
    width: 100%;
    height: 270px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two {
    margin: 0 25px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper {
    padding: 12px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
    font-size: 15px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li {
    font-size: 15px;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li::before {
    top: 0;
  } */
  .mr-60 {
    margin: 0 24px;
  }
  /* .what-we-offer-section h1 {
    font-size: 28px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn {
    padding: 12px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-one .detail-content-btn h4 {
    font-size: 14px;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn {
    padding: 12px 0;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two .detail-content-btn h4 {
    font-size: 14px;
  }
  .downloads-section h1 {
    font-size: 28px;
  }
  .downloads-section .four-images .downloads-one-img h4 {
    font-size: 16px;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn {
    right: 4px;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn a img {
    width: auto;
    height: 18px;
  } */
  .page-footer .footer-wrapper {
    flex-flow: wrap;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list {
    display: flex;
  }
  .page-footer .we-accept h5 {
    font-size: 14px;
    text-align: center;
  }
  .page-footer .footer-row p {
    font-size: 14px;
  }
  .page-footer .footer-row {
    padding: 18px 0;
  }
  .page-footer .we-accept {
    margin: 20px 0;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper {
    width: 40%;
  }
  .page-footer .footer-wrapper .footer-product-list {
    width: 60%;
  }
  .page-footer .footer-wrapper .information-policy-list {
    width: 40%;
  }
  .page-footer .footer-wrapper .contact-info {
    width: 60%;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list ul {
    padding-right: 9px;
  }
  /* .pagebuilder-column-group.three-img .pagebuilder-column-line {
    flex-wrap: nowrap;
  }
  
  .pagebuilder-column-group.three-box-content-with-images .pagebuilder-column-line {
    flex-wrap: nowrap;
  }
  
  .pagebuilder-column-group.three-img-what-we-offer .pagebuilder-column-line {
    flex-wrap: nowrap;
  } */
}
@media (max-width: 525px) {
  .logo-container a img {
    height: 36px;
  }
  /* .home-slider .home-img-slider .brand-img h1 {
    font-size: 20px;
  }
  .three-img-section .three-img {
    display: grid;
  }
  .three-img-section .three-img .images-wrapper-two {
    margin: 24px 0px;
  }
  .three-box-content-with-images-section .three-box-content-with-images {
    display: grid;
  }
  .video-section .video-with-box-wrapper .our-website-box p a {
    width: auto;
  }
  .video-section .video-with-box-wrapper .call-box p a {
    width: auto;
  }
  .three-box-content-with-images-section .three-box-content-with-images .box-content-images-two {
    margin: 24px 0;
  }
  .what-we-offer-section .three-img-what-we-offer {
    display: grid;
  }
  .what-we-offer-section .three-img-what-we-offer .images-wrapper-two {
    margin: 18px 0;
  }
  .downloads-section .four-images {
    display: grid;
    justify-content: center;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn a img {
    height: 30px;
  }
  .downloads-section .four-images .downloads-one-img .downloads-btn {
    right: 15px;
    bottom: 10px;
  } */
  /* .login-portal-btn {
    font-size: 14px;
    height: 34px;
    z-index: 9999;
  } */
  .page-footer .footer-wrapper .footer-logo-wrapper .footer-logo img {
    width: auto;
    height: auto;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper .sub-brand img {
    width: auto;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper .sub-brand {
    margin: 18px;
  }
  .page-footer .footer-wrapper .footer-logo-wrapper {
    width: 100%;
  }
  .page-footer .footer-wrapper .footer-product-list {
    width: 100%;
  }
  .page-footer .footer-wrapper .information-policy-list {
    width: 100%;
  }
  .page-footer .footer-wrapper .contact-info {
    width: 100%;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list {
    margin-top: 42px;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list {
    display: block;
  }
  .page-footer .footer-wrapper .footer-product-list .sub-product-list ul li {
    margin: 12px 0;
  }
  .page-footer .footer-wrapper .information-policy-list ul li {
    margin: 12px 0;
  }
  .page-footer .footer-wrapper .contact-info .contact-info-wrapper .company-address p {
    margin: 12px 0;
  }
  .page-footer .footer-wrapper .contact-info .contact-info-wrapper .email {
    margin: 12px 0;
  }
  .page-footer .footer-wrapper .contact-info .contact-info-wrapper .phonenumber {
    margin: 12px 0;
  }
  .page-footer .we-accept {
    display: grid;
    margin: 12px 0;
  }
  .page-footer .we-accept img {
    width: auto;
    height: 20px;
  }
  .page-footer .footer-row {
    padding: 12px 0;
  }
  .mr-60 {
    margin: 24px 0;
  }
  /* .three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper h4 {
    font-size: 18px;
  }
  .pagebuilder-column-group.three-img .pagebuilder-column-line {
    flex-wrap: wrap;
  }
  
  .pagebuilder-column-group.three-box-content-with-images .pagebuilder-column-line {
    flex-wrap: wrap;
  }
  
  .pagebuilder-column-group.three-img-what-we-offer .pagebuilder-column-line {
    flex-wrap: wrap;
  } */
}/*# sourceMappingURL=responsive.css.map */