:root{
    --primaryColor: #06518F;
    --secondaryColor: #E74926;
    --orangeColor: #FFE600;
    --backgroundColor: #EDF1FF;
    --blackColor: #000000;
    --whiteColor: #FFFFFF;
    --grayColor: #8E8E8E;
    --lightColor: #FFF1ED;
}

@font-face {
    font-family: Unna-Bold;
    src: url(../fonts/Unna-Bold.ttf) format("truetype");
}

@font-face {
    font-family: Unna-BoldItalic;
    src: url(../fonts/Unna-BoldItalic.ttf) format("truetype");
}

@font-face {
    font-family: Unna-Italic;
    src: url(../fonts/Unna-Italic.ttf) format("truetype");
}

@font-face {
    font-family: Unna-Regular;
    src: url(../fonts/Unna-Regular.ttf) format("truetype");
}

* {
    font-family: "Unna-Regular";
}

a {
  color: var(--whiteColor);
  text-decoration: none;
}

a:hover {
  color: var(--secondaryColor);
  text-decoration: none;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--primaryColor);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--orangeColor);
  border-top-color: var(--secondaryColor);
  border-bottom-color: var(--secondaryColor);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondaryColor);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--whiteColor);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--orangeColor);
  color: var(--whiteColor);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: var(--secondaryColor);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 75px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--whiteColor);
  white-space: nowrap;
  transition: 0.3s;
  font-family: Unna-Bold;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--orangeColor);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--whiteColor);
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bx-x {
  color: var(--secondaryColor);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--primaryColor);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: Unna-Bold;
  color: var(--whiteColor);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--secondaryColor);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: var(--secondaryColor);
}

#homebanner {
  padding-bottom: 0px;
  background-color: var(--lightColor);
}

#homebanner .img-banner {
    width: 100%;
    height: 85vh;
}

#homebanner .img-icon {
    width: 80px;
    height: 80px;
}

#homebanner h2 {
    font-family: Unna-Bold;
    color: var(--secondaryColor);
    margin: 10px 0px 5px 0px;
}

#homebanner p {
    color: var(--primaryColor);
    margin: 0px;
    font-size: 18px;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: Unna-Bold;
  color: var(--primaryColor);
}

.section-title p {
  margin-bottom: 0;
}


.section-title2 {
  text-align: center;
  padding-bottom: 10px;
}

.section-title2 h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: Unna-Bold;
  color: var(--orangeColor);
}

.section-title2 p {
  margin-bottom: 0;
}

.about {
    background: linear-gradient(#7F4682,#3A4B92);
}

.about img {
    max-height: 300px;
}

.about p {
    color: var(--whiteColor);
    margin-bottom: 10px;
    font-size: 18px;
    text-align: justify;
}

.products {
    background: var(--orangeColor);
}


.productSlider .productbox {
    text-align: center;
    margin-bottom: 20px;
}


.productSlider .productbox img {
    height: 200px;
    width: 200px;
}

.productSlider .productbox h6 {
    color: var(--primaryColor);
    font-weight: 700;
    font-family: Unna-Bold;
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 0px;
}

.productSlider .productbox span {
    color: var(--secondaryColor);
}

.productSlider .slider-nav-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.productSlider .slider-nav {
    position: absolute;
    bottom: 0px;
    height: 35px;
    width: 35px;
    background: red;
    border-radius: 50%;
    text-align: center;
    color: var(--whiteColor);
}

.slider-nav::before, .slider-nav::after {
    display: none;
}

.productSlider .slider-nav-previous {
    left: 45%;
}

.productSlider .slider-nav-next {
    right: 45%;
}

.wheretobuy {
    background: var(--primaryColor);
}

.wheretobuySlider .item {
    background-color: var(--whiteColor);
    padding: 10px;
    border-radius: 10px;
}

.wheretobuySlider img {
    width: 40px;
    margin-bottom: 10px;
}

.wheretobuySlider p {
    color: var(--grayColor);
    margin: 0px;
}

.wheretobuySlider h3 {
    font-weight: 700;
    font-family: Unna-Bold;
    color: var(--secondaryColor);
    margin-bottom: 0px;
}

.wheretobuySlider h5 {
    font-weight: 700;
    font-family: Unna-Bold;
    color: var(--blackColor);
}

.contactus {
    background: linear-gradient(#A3B25F,#EBC424);
}

.contactus img {
    margin-top: 20px;
}

.contactus h2 {
    color: var(--primaryColor);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Unna-Bold;
    margin-top: 40px;
}

.contactus ul {
    padding: 0;
    list-style: none;
}

.contactus ul li {
    color: var(--whiteColor);
    margin-bottom: 20px;
}

.contactus ul li i {
    color: var(--primaryColor);
    font-size: 22px;
}

.gallery ul {
    border: none;
    width: 200px;
    margin: auto;
    text-align: center;
}

.gallery ul li {
    margin: auto;
}

.gallery ul li button {
    border: none !important;
    color: var(--grayColor);
    font-weight: 700;
    font-family: Unna-Bold;
    font-size: 18px;
}

.gallery ul li button.active {
    color: var(--secondaryColor) !important;
    border-bottom: 1px solid var(--secondaryColor) !important;
}

.gallery ul li button:hover {
    color: var(--secondaryColor) !important;
    border-bottom: 1px solid var(--secondaryColor) !important;
}

.gallerybox {
    position: relative;
}

.playicon {
    width: 50px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 25px);
}

#footer {
  font-size: 18px;
  background: var(--whiteColor);
  text-align: center;
}

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--primaryColor);
}


@media (max-width: 768px) {

    section {
        padding: 30px 0;
        overflow: hidden;
    }

    .section-title h2 {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    #header {
        padding: 5px 0;
    }

    #header .logo img {
        max-height: 60px;
    }

    #homebanner .img-banner {
        width: 100%;
        height: 250px;
    }

    .wheretobuySlider p {
        font-size: 20px;
    }

    .wheretobuySlider h3 {
        font-size: 32px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .wheretobuySlider h5 {
        font-size: 22px;
    }

    .productSlider .slider-nav-box {
        bottom: 15px;    
    }

    .productSlider .slider-nav-previous {
        left: 38%;
    }

    .productSlider .slider-nav-next {
        right: 38%;
    }
}