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

@font-face {
  font-family: "lato-regular";
  src: url("../webfonts/lato-regular.woff2") format("woff2"), url("../webfonts/lato-bold.woff") format("woff");
}
@font-face {
  font-family: "lato-bold";
  src: url("../webfonts/lato-bold.woff2") format("woff2"), url("../webfonts/lato-bold.woff") format("woff");
}
@font-face {
  font-family: "lato-semibold";
  src: url("../webfonts/lato-semibold.woff2") format("woff2"), url("../webfonts/lato-semibold.woff") format("woff");
}
@font-face {
  font-family: "lato-medium";
  src: url("../webfonts/lato-medium.woff2") format("woff2"), url("../webfonts/lato-medium.woff") format("woff");
}
@font-face {
  font-family: "lato-light";
  src: url("../webfonts/lato-light.woff2") format("woff2"), url("../webfonts/lato-light.woff") format("woff");
}
.page-main {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.container {
  max-width: 1470px;
  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: 8px;
  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;
}
.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: #071689;
  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: #348532;
  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;
}
.login-portal-btn {
  background: #348532;
  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: rgba(52, 133, 50, 0.7294117647);
}
.three-img-section .three-img .images-wrapper-one .images img {
  border: 1px solid #348532;
  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: rgba(7, 22, 137, 0.7019607843);
  text-align: center;
  padding: 15px 0;
  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: rgba(7, 22, 137, 0.7019607843);
}
.three-img-section .three-img .images-wrapper-two .images img {
  border: 1px solid #348532;
  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: rgba(52, 133, 50, 0.7294117647);
  text-align: center;
  padding: 15px 0;
  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 #348532;
  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: #071689;
  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 #348532;
  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: #071689;
  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 #348532;
  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: #071689;
  text-transform: uppercase;
}
.three-box-content-with-images-section .three-box-content-with-images .box-content-images .content-wrapper ul li {
  color: #348532;
  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(../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: #071689;
  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: #071689;
  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: #348532;
  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: #348532;
  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(../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: #348532;
}
.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: #348532;
  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(../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: #348532;
}
.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: #348532;
  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: #348532;
}