@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
:root {
  --color-transparent: transparent;
  --color-white: #FFF;
  --color-black: #000;
  --color-dark: #333;
  --color-grey: #ccc;
  --color-dimgrey: #696969;
  --color-mediumslateblue: #7B68EE;
  --color-darkorange: #FF8C00;
  --color-orangered: #FF4500;
  --color-gold: #FFD700;
  --color-darkblue: #191970;
  --color-tomato: #FF6347;
  --color-coral: #FF7F50;
  --color-cornsilk: #FFF8DC;
  --color-ghostwhite: #F8F8FF;
  --color-lavender: #E6E6FA;
  --color-springgreen: #00FF7F;
}

.text-coral {
  color: var(--color-coral);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", "sans-serif";
}

nav .navbar {
  justify-content: end;
}
nav .navbar-nav li a {
  color: var(--color-dimgrey);
  font-size: 18px;
  font-weight: 500;
  padding-right: 30px;
}
nav .navbar-nav li a:last-child {
  padding-right: 0;
}
nav .navbar-nav li a:hover {
  color: var(--color-darkorange);
  text-decoration: none;
}
nav .navbar-nav li a .promo {
  background-color: var(--color-orangered);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 10px;
  padding: 3px 10px;
}
nav .navbar-nav li a .promo:hover {
  text-decoration: none;
}
nav .navbar-nav > li > .dropdown-menu {
  background-color: var(--color-ghostwhite);
  border-radius: 0;
  z-index: 9999;
}
nav .mega-dropdown {
  position: static !important;
  width: 100%;
}
nav .mega-dropdown a {
  padding-right: 10px;
}
nav .dropdown-menu.show {
  display: flex;
}
nav .mega-dropdown-menu {
  padding: 50px 75px;
  width: 100%;
  box-shadow: none;
  -webkit-box-shadow: none;
}
nav .mega-dropdown-menu > li > ul {
  padding: 0;
  margin: 0;
}
nav .mega-dropdown-menu > li > ul > li {
  list-style: none;
}
nav .mega-dropdown-menu > li > ul > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #999;
  white-space: normal;
}
nav .mega-dropdown-menu > li > ul ul > li > a:hover, nav .mega-dropdown-menu > li > ul ul > li > a:focus {
  text-decoration: none;
  color: #444;
  background-color: #f5f5f5;
}
nav .mega-dropdown-menu .dropdown-header {
  color: var(--color-darkorange);
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  white-space: pre-wrap;
}
nav .mega-dropdown-menu .dropdown-header:hover {
  text-decoration-line: underline;
}
nav .mega-dropdown-menu .dropdown-submenu a {
  color: var(--color-dimgrey);
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: normal;
  white-space: pre-wrap;
}
nav .mega-dropdown-menu .dropdown-submenu a:hover {
  color: var(--color-darkblue);
}

.navbar.scrolled {
  background-color: var(--color-lavender) !important;
}
.navbar.scrolled a:hover {
  color: var(--color-dark) !important;
  text-decoration: underline;
}
.navbar.scrolled a:hover sup {
  text-decoration: none !important;
}

.btn-main {
  background-color: var(--color-dark);
  border-radius: 50px;
  color: var(--color-white);
  font-size: 18px;
  padding: 8px 30px;
}
.btn-main:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
}
.btn-main:focus {
  border-color: var(--color-transparent);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.btn-main.custom {
  background-color: var(--color-coral);
  width: 60%;
}
.btn-main.custom:hover {
  background-color: var(--color-springgreen);
}

.btn-success:focus, .btn-success:hover {
  background-color: var(--color-coral);
  border: 1px solid var(--color-coral);
  box-shadow: 0 0 0 transparent inset, 0 0 0 transparent !important;
  color: var(--color-white);
}

.cursor-pointer {
  cursor: pointer;
}

.arrows-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  position: relative;
}
.arrows-nav .next-brand {
  background-image: url(../img/arrow-right.png);
  background-size: contain;
  border: 1px solid var(--color-transparent);
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  width: 50px;
}
.arrows-nav .next-brand:hover {
  border: 1px solid var(--color-dimgrey);
}
.arrows-nav .prev-brand {
  background-image: url(../img/arrow-left.png);
  background-size: contain;
  border: 1px solid var(--color-transparent);
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  width: 50px;
}
.arrows-nav .prev-brand:hover {
  border: 1px solid var(--color-dimgrey);
}

.section-wrapper {
  margin-bottom: 100px;
  margin-top: 100px;
}

.content-title {
  margin-bottom: 30px;
}

.container-box {
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 var(--color-grey), 0 6px 10px 0 var(--color-grey);
}
.container-box .content-box {
  padding: 50px;
}

.container-box-2 {
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 var(--color-grey), 0 6px 10px 0 var(--color-grey);
  padding: 25px 25px 10px 25px;
}

.form-control:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

select {
  box-shadow: 0 0 0 transparent inset, 0 0 0 transparent !important;
  cursor: pointer;
}
select:focus {
  border-color: var(--color-coral) !important;
}

textarea {
  max-height: 300px;
  min-height: 40px;
  resize: vertical;
}

.contact iframe {
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 var(--color-grey), 0 6px 10px 0 var(--color-grey);
}
.contact form {
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 var(--color-grey), 0 6px 10px 0 var(--color-grey);
  padding: 50px;
}

footer {
  background: var(--color-dark);
  position: relative;
}
footer .footer-cta {
  border-bottom: 1px solid var(--color-dimgrey);
}
footer .single-cta i {
  color: var(--color-coral);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
footer .cta-text {
  display: inline-block;
  padding-left: 15px;
}
footer .cta-text h4 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
footer .cta-text span {
  color: var(--color-dimgrey);
  font-size: 15px;
}
footer .footer-content {
  position: relative;
  z-index: 2;
}
footer .footer-pattern img {
  background-position: 100% 100%;
  background-size: cover;
  height: 330px;
  left: 0;
  position: absolute;
  top: 0;
}
footer .footer-logo {
  margin-bottom: 30px;
}
footer .footer-logo img {
  max-width: 150px;
}
footer .footer-text {
  padding: 20px;
}
footer .footer-text p {
  color: var(--color-white);
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 14px;
}
footer .footer-social-icon span {
  color: var(--color-white);
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-social-icon a {
  color: var(--color-white);
  font-size: 16px;
  margin-right: 15px;
}
footer .footer-social-icon i {
  border-radius: 50%;
  height: 40px;
  line-height: 38px;
  text-align: center;
  width: 40px;
}
footer .footer-widget-heading h3 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
footer .footer-widget-heading::before {
  background: var(--color-coral);
  bottom: -15px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
}
footer .footer-widget ul li {
  display: block;
  float: left;
  margin-bottom: 12px;
  width: 50%;
}
footer .footer-widget a {
  color: var(--color-cornsilk);
  text-transform: capitalize;
}
footer .footer-widget a:hover {
  color: var(--color-coral);
}

.copyright-area {
  background: var(--color-dimgrey);
  padding: 20px 0 0 0;
}

.copyright-text {
  padding-bottom: 0;
}
.copyright-text p {
  color: var(--color-white);
  font-size: 14px;
  margin: 0;
}
.copyright-text a {
  color: var(--color-coral);
}
.copyright-text .creator {
  color: var(--color-springgreen);
  font-weight: bold;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: var(--color-coral);
}
.footer-menu a {
  color: var(--color-cornsilk);
  font-size: 14px;
}

.notice input {
  color: var(--color-coral);
  font-family: "Gill Sans", sans-serif;
  padding-top: 12px;
}
.notice .form-control {
  border-radius: 0;
}
.notice .form-control:focus {
  border: 1px solid var(--color-dimgrey);
  box-shadow: none;
}

.mss-slider {
  background-image: url("../img/slidebg.png");
  background-size: cover;
  height: 550px;
}
.mss-slider .carousel .carousel-inner .carousel-item {
  height: 550px;
}
.mss-slider .carousel .carousel-inner .carousel-item .carousel-caption {
  align-items: start !important;
  bottom: 30% !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.mss-slider .carousel .carousel-inner .carousel-item .carousel-caption .caption-title {
  color: var(--color-coral);
  font-size: 75px;
}
.mss-slider .carousel .carousel-inner .carousel-item .carousel-caption p {
  font-size: 24px;
}

.btn-frontmenu {
  background-color: var(--color-white);
  box-shadow: 0 1px 4px 0 var(--color-dimgrey);
  border-radius: 30px;
  color: var(--color-darkorange);
  display: inline-block;
  font-size: 18px;
  margin: 20px 5px;
  padding: 8px 30px;
  padding-right: 40px;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
}
.btn-frontmenu .btn-icon {
  align-items: center;
  background-color: var(--color-dark);
  border-radius: 30px 0 0 30px;
  display: flex;
  float: right;
  height: 100%;
  justify-content: start;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.3s;
  width: 75px;
}
.btn-frontmenu .btn-icon::after {
  border-left: 32px solid var(--color-transparent);
  border-top: 43px solid var(--color-white);
  content: "";
  height: 0;
  right: 0px;
  position: absolute;
  top: 0px;
  width: 0;
}
.btn-frontmenu .btn-icon svg {
  margin-left: 25px;
}
.btn-frontmenu:hover {
  color: var(--color-white);
}

.btn-frontmenu:hover .btn-icon {
  border-radius: 30px;
  width: 100%;
}
.btn-frontmenu:hover .btn-icon::after {
  display: none;
  opacity: 0.1;
}

.btn-frontmenu-title {
  position: relative;
  z-index: 1;
}

.about-us .video-player {
  height: 100%;
}
.about-us .counters {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.about-us .counters .data-counter {
  color: var(--color-coral);
  font-size: 50px;
}

.banner .alert {
  background-color: var(--color-coral);
  color: var(--color-cornsilk);
}
.banner .alert:hover {
  background-color: var(--color-tomato);
}

.testimonials {
  background-color: var(--color-lavender);
  padding-bottom: 50px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 50px;
}
.testimonials .card {
  height: 350px;
  overflow: hidden;
  padding-bottom: 15px;
}
.testimonials .card .card-body .card-title {
  color: var(--color-mediumslateblue);
}
.testimonials .card .card-body .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials .card .card-body .centered {
  height: 30px !important;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px !important;
}
.testimonials .slider-testimonials .card {
  border: 1px solid var(--color-lavender);
  border-radius: 15px;
  padding-top: 30px;
}
.testimonials .slider-testimonials .card:hover {
  background-color: var(--color-dimgrey);
  border: 1px solid var(--color-dimgrey);
  color: var(--color-white);
}
.testimonials .slider-testimonials .card:hover .card-title {
  color: var(--color-gold);
}
.testimonials .slider-testimonials .card:hover .card-title small {
  color: var(--color-gold) !important;
}
.testimonials .slider-testimonials .card img {
  border-radius: 50%;
  height: 100px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  width: 100px;
}
.testimonials .slider-testimonials .card img:hover {
  transform: scale(1.2);
  transition: all 0.7s ease;
}

.pages {
  margin-top: 0;
}
.pages .jumbotron {
  border-radius: 0;
  color: var(--color-dark);
  height: 550px;
}
.pages .jumbotron.jumbotron-pages-1 {
  background-image: url("../img/pages-bg-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pages .jumbotron.jumbotron-pages-2 {
  background-image: url("../img/pages-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pages .jumbotron.jumbotron-pages-3 {
  background-image: url("../img/pages-bg-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card {
  background-color: var(--color-dimgrey);
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin: auto;
  padding: 70px 30px 30px 30px;
  position: relative;
  width: 85%;
}
.product-card:hover {
  box-shadow: 1px 3px 10px 1px var(--color-coral), 1px 3px 10px 1px var(--color-coral);
}
.product-card .title {
  font-weight: bold;
  letter-spacing: 1px;
}
.product-card .sub-title {
  letter-spacing: 0.6px;
}
.product-card .badge {
  font-size: 18px;
}
.product-card small {
  font-style: italic;
}

.product-card__promotion {
  align-items: center;
  background-color: var(--color-springgreen);
  border-radius: 5px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  color: var(--color-white);
  display: flex;
  font-weight: bold;
  height: 40px;
  justify-content: center;
  left: -1rem;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 0.5rem;
  transform: rotate(-15deg);
  transition: transform 0.25s cubic-bezier(0.29, -0.54, 0.81, 0.95);
  width: 150px;
}
.product-card__promotion.bg-orange {
  background-color: var(--color-orangered);
  width: 200px;
}

.product-card:hover .product-card__promotion {
  transform: rotate(0deg);
}

.product-card__footer {
  align-items: center;
  align-self: flex-end;
  background-color: var(--color-dimgrey);
  border-radius: 10px;
  color: var(--color-white);
  display: flex;
  height: 3.5rem;
  width: 100%;
}

.product-card__button {
  background: var(--color-cornsilk);
  border: 0;
  border-radius: 15px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: background 0.25s cubic-bezier(0.29, -0.54, 0.81, 0.95);
}

.mss-slider-2 {
  background-image: url("../img/slidebg.jpg");
  background-size: cover;
  height: 550px;
}
.mss-slider-2 .carousel .carousel-inner .carousel-item {
  height: 550px;
}
.mss-slider-2 .carousel .carousel-inner .carousel-item .carousel-caption {
  align-items: start !important;
  bottom: 30% !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.mss-slider-2 .carousel .carousel-inner .carousel-item .carousel-caption .caption-title {
  color: var(--color-white);
  font-size: 50px;
}
.mss-slider-2 .carousel .carousel-inner .carousel-item .carousel-caption p {
  font-size: 24px;
}

.promo-box-1 {
  background-image: url(../img/promo1.jpeg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  height: 540px;
}
.promo-box-1 .btn {
  bottom: 20px;
  position: absolute;
}

.promo-box-2 {
  background-image: url(../img/promo2.jpeg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  height: 540px;
}
.promo-box-2 .btn {
  bottom: 20px;
  position: absolute;
}

/*# sourceMappingURL=style.css.map */
