@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Montserrat&family=Poppins&family=Roboto&family=Ubuntu&family=Maven+Pro&display=swap&family=Cormorant+Garamond&display=swap&family=Cormorant+Garamond:ital@1&display=swap&family=Lora:ital@1&display=swap&family=Lato:ital@0;1&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary-color: rgb(0,133,145);
  --secondary-color: #222;
  --secondary-light-color: #555;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: #eeeeee;
}

::-webkit-scrollbar-thumb {
  transition: 0.5s;
  background: var(--secondary-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-light-color);
}

.before--loader {
  width: 100vw;
  height: 100vh;
  display: block;
  padding: 5rem 0;
  background: #FFF;
}
.before--loader .content {
  display: grid;
  place-items: center;
}
.before--loader .title {
  margin: 1.5rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}
.before--loader ul {
  width: 2rem;
  display: grid;
  padding: 0;
  list-style: none;
  grid-gap: 0.1rem 0.1rem;
  grid-template-columns: auto auto;
}
.before--loader ul li {
  width: 1rem;
  height: 1rem;
  background: var(--secondary-color);
}
.before--loader ul li:nth-child(1) {
  opacity: 0;
  animation: firstLoader 2s linear infinite;
}
.before--loader ul li:nth-child(2) {
  animation: secondLoader 2s linear infinite;
}
.before--loader ul li:nth-child(3) {
  animation: thirdLoader 2s linear infinite;
}
.before--loader ul li:nth-child(4) {
  animation: fourthLoader 2s linear infinite;
}
@keyframes firstLoader {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes secondLoader {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes thirdLoader {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fourthLoader {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.after--loader {
  display: none;
}

.custom-nav {
  z-index: 666;
  font-family: "Roboto", sans-serif;
  background: var(--secondary-color);
}

footer.footer {
  font-family: "Ubuntu", sans-serif;
  background: whitesmoke;
}
footer.footer a {
  transition: 0.5s;
  text-decoration: none;
  color: var(--secondary-color);
}
footer.footer a:hover {
  color: var(--secondary-light-color);
}
footer.footer .first {
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  justify-content: space-around;
}
footer.footer .first div.social span.title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 1rem;
}
footer.footer .first div.social a {
  color: #FFF;
  margin: 0 0.2rem;
  transition: 0.5s;
  padding: 0.9rem 0.8rem;
  border-radius: 100%;
}
footer.footer .first div.social a:hover {
  opacity: 0.8;
}
footer.footer .first div.social .facebook a {
  background: #4267b2;
}
footer.footer .first div.social .instagram a {
  background: #e1306c;
}
footer.footer .first div.social .twitter a {
  background: #1da1f2;
}
footer.footer .first div.social .gmail a {
  background: #db4437;
}
footer.footer .first div.logo {
  font-weight: 500;
  font-size: 1.2rem;
  font-family: "Monserrat", sans-serif;
}
footer.footer .second {
  border-top: 1px solid #cecece;
  padding: 0.5rem 2rem;
}
footer.footer .second span {
  margin: 0.5rem 1rem;
}
@media screen and (max-width: 800px) {
  footer.footer .first {
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
  }
  footer.footer .first span.title {
    display: none;
  }
  footer.footer .first div {
    margin: 0.5rem 0;
  }
  footer.footer .second span {
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
  }
}

div.onTop {
  right: 1rem;
  z-index: 666;
  display: none;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  position: fixed;
  transition: 0.5s;
  cursor: pointer;
  padding: 0.7rem;
  place-items: center;
  border-radius: 100%;
  background: var(--secondary-color);
}
div.onTop:hover {
  background: var(--primary-color);
}
div.onTop svg {
  height: 100%;
  width: 100%;
  color: #FFF;
  display: grid;
  font-size: 1rem;
  place-items: center;
  animation: onTop 0.6s ease infinite;
}
@keyframes onTop {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.minigallery h4 {
  cursor: pointer;
  margin: 1.3rem 0;
  text-align: center;
}
.minigallery h4 span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.minigallery h4 span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.minigallery h4 span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.minigallery h4:hover span::before {
  width: 100%;
}
.minigallery h4:hover span::after {
  left: 0%;
  width: 100%;
}
.minigallery .minigallery--carousel .img {
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
  place-items: center;
}
.minigallery .minigallery--carousel .img h4.title {
  z-index: 6;
  transition: all 0.5s;
  display: none;
  cursor: pointer;
  margin: 1.3rem 0;
  text-align: center;
}
.minigallery .minigallery--carousel .img h4.title span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: #FFF;
}
.minigallery .minigallery--carousel .img h4.title span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid #FFF;
}
.minigallery .minigallery--carousel .img h4.title span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid #FFF;
}
.minigallery .minigallery--carousel .img:hover h4.title span::before {
  width: 100%;
}
.minigallery .minigallery--carousel .img:hover h4.title span::after {
  left: 0%;
  width: 100%;
}
.minigallery .minigallery--carousel .img:hover h4.title {
  display: block;
}
.minigallery .minigallery--carousel .img img {
  cursor: pointer;
  transition: 0.5s;
}
.minigallery .minigallery--carousel .img:hover img {
  filter: blur(5px);
}
.minigallery .minigallery--carousel .img .title {
  display: grid;
  color: #FFF;
  place-items: center;
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .minigallery .minigallery--carousel {
    padding: 0 1rem;
  }
}

body {
  overflow-x: hidden;
}

.parallex {
  height: 600px;
  width: 100%;
}
.parallex .img {
  height: 600px;
  width: 100%;
  overflow: hidden;
}
.parallex .img img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  animation: scaleimg 15s linear infinite;
}
@keyframes scaleimg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.parallex .animatebtn {
  width: 1.6rem;
  height: 2.5rem;
  left: 50%;
  bottom: 1rem;
  position: absolute;
  border-radius: 1rem;
  border: 0.2rem solid var(--secondary-color);
}
.parallex .animatebtn::before {
  content: "";
  top: 1px;
  left: 1px;
  width: 1rem;
  height: 1rem;
  position: absolute;
  border-radius: 100%;
  background: var(--secondary-color);
  animation: animatebtn 2s linear infinite;
}
@keyframes animatebtn {
  0% {
    top: 1px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 1px;
  }
}
.parallex h4.slogan {
  left: 0;
  z-index: 55;
  right: 0;
  opacity: 0;
  top: 12rem;
  transition: 0.5s;
  width: 50rem;
  margin: 0 auto;
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  position: absolute;
  background: #FFF;
  animation: showimg 1s linear;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  font-family: "Cormorant Garamond", serif;
}
@keyframes showimg {
  100% {
    opacity: 1;
  }
}
.parallex h4.slogan .cfont {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.parallex .btn {
  left: 0;
  right: 0;
  width: 10%;
  top: 20rem;
  color: #FFF;
  transition: 0.5s;
  cursor: pointer;
  padding: 1rem;
  margin: 0 auto;
  border-radius: 0;
  position: absolute;
  background: var(--secondary-color);
}
.parallex .btn:hover {
  background: var(--secondary-light-color);
}
@media screen and (max-width: 800px) {
  .parallex {
    height: auto;
  }
  .parallex h4.slogan {
    top: 6rem;
    width: 20rem;
    font-size: 1rem;
  }
  .parallex .img {
    height: auto;
  }
  .parallex .img img {
    height: auto;
  }
  .parallex .animatebtn {
    display: none;
  }
  .parallex .btn {
    width: 7rem;
    top: 11rem;
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

.featured .row {
  width: 100%;
}
.featured .row .content {
  font-size: 1.02rem;
  line-height: 1.8rem;
  display: grid;
  place-items: center;
  padding: 0rem 6rem;
  font-family: "Poppins", sans-serif;
}
.featured .row .content h4 {
  font-weight: 600;
  font-family: "Cormorant Garamond", sans-serif;
}
.featured .row .content p {
  font-size: 0.9rem;
  font-family: "lora", sans-serif;
}
.featured .row .content a {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}
.featured .row .content a::before {
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  transition: 0.5s;
  position: absolute;
  border-top: 0.1rem solid var(--primary-color);
}
.featured .row .content a::after {
  content: "";
  bottom: 0;
  right: 0;
  width: 0%;
  transition: 0.5s;
  position: absolute;
  border-bottom: 0.1rem solid var(--primary-color);
}
.featured .row .content a:hover::before {
  width: 100%;
}
.featured .row .content a:hover::after {
  width: 100%;
}
.featured .row .content .left {
  padding: 3rem;
  border-top: 0.2rem solid var(--primary-color);
  border-left: 0.2rem solid var(--primary-color);
  border-bottom: 0.2rem solid var(--primary-color);
  box-shadow: -10px 0 5px -2px var(--primary-color), 0 10px 5px -2px var(--primary-color);
}
.featured .row .content .right {
  padding: 3rem;
  border-top: 0.2rem solid var(--primary-color);
  border-right: 0.2rem solid var(--primary-color);
  border-bottom: 0.2rem solid var(--primary-color);
  box-shadow: 10px 0 5px -2px var(--primary-color), 0 10px 5px -2px var(--primary-color);
}
.featured .row .img {
  padding: 2rem;
  text-align: center;
}
.featured .row .img img {
  height: 350px;
}
@media screen and (max-width: 800px) {
  .featured .row .content {
    padding: 0;
  }
  .featured .row .content .left, .featured .row .content .right {
    padding: 1rem 2rem;
    border: 0;
    box-shadow: none;
  }
  .featured .row .img {
    padding: 1rem;
  }
}

.about {
  width: 90%;
  margin: 0 auto;
  padding: 0.5rem;
}
.about h4.title {
  cursor: pointer;
  font-weight: 600;
  margin: 1.3rem 0;
  font-size: 2rem;
}
.about h4.title span {
  position: relative;
  text-align: center;
  padding-bottom: 0.5rem;
  font-family: "Cormorant Garamond", sans-serif;
}
.about h4.title span::after {
  left: 0;
  width: 0%;
  bottom: 0;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-bottom: 0.2rem solid var(--secondary-color);
}
.about h4.title span:hover::after {
  width: 100%;
}
.about p {
  font-family: "lora", sans-serif;
}
@media screen and (max-width: 800px) {
  .about {
    width: 95%;
  }
  .about h4.title {
    font-size: 1.4rem;
  }
}

.product .img {
  padding: 2rem;
}
.product .img img {
  width: 100%;
}
.product .content {
  font-size: 1.02rem;
  line-height: 1.8rem;
  padding: 5rem 5rem;
  font-family: "Montserrat", sans-serif;
}
.product .content .description {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}
.product .content .description div.title ul {
  font-weight: bold;
}
.product .content .description div.title ul li {
  padding: 0.1rem 0;
}
.product .content .description div ul.score {
  display: flex;
  align-items: center;
}
.product .content .description div ul.score li {
  width: 1.5rem;
  height: 0.8rem;
  margin: 0 0.2rem;
  background: gray;
  border-radius: 0.4rem;
}
.product .content .description div ul.score li.active1 {
  background: #418493;
}
.product .content .description div ul {
  padding: 0;
  list-style: none;
}
.product .content .description div ul li {
  padding: 0.4rem 0;
}
@media screen and (max-width: 800px) {
  .product .content {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
  .product .content .para {
    padding: 0 1rem;
  }
  .product .content .description div ul li {
    text-align: center;
  }
  .product .content .description div.title ul {
    padding: 0 1rem 0 0;
  }
  .product .content .description div ul.score {
    margin: 0 auto;
  }
  .product .content .description div ul.score li {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .product img {
    padding: 1rem;
  }
}

.yt {
  text-align: center;
}
.yt h4.yttitle {
  cursor: pointer;
  margin: 1.3rem 0;
  padding: 4rem 0;
  text-align: center;
  background: whitesmoke;
}
.yt h4.yttitle span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.yt h4.yttitle span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.yt h4.yttitle span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.yt h4.yttitle:hover span::before {
  width: 100%;
}
.yt h4.yttitle:hover span::after {
  left: 0%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .yt iframe {
    text-align: center;
    width: 100% !important;
  }
}

.category h4.category--header {
  cursor: pointer;
  margin: 1.3rem 0;
  padding: 4rem 0;
  text-align: center;
  background: whitesmoke;
}
.category h4.category--header span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.category h4.category--header span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.category h4.category--header span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.category h4.category--header:hover span::before {
  width: 100%;
}
.category h4.category--header:hover span::after {
  left: 0%;
  width: 100%;
}
.category .row {
  padding: 4rem 2rem;
}
.category .row .cat {
  cursor: pointer;
  transition: 0.5s;
  padding: 0 2rem 2rem 2rem;
  text-align: center;
}
.category .row .cat h4 {
  font-size: 1rem;
}
.category .row .cat:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .category h4.category--header {
    padding: 2rem 0;
  }
  .category h4.category--header span {
    font-size: 1.1rem;
  }
  .category .row {
    padding: 2rem 0;
  }
}

.player {
  position: relative;
}
.player h4 {
  top: 6rem;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  position: absolute;
  text-align: center;
}
.player h4 span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.player h4 span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.player h4 span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.player h4:hover span::before {
  width: 100%;
}
.player h4:hover span::after {
  left: 0%;
  width: 100%;
}
.player video {
  width: 100%;
  height: 100%;
}
.player .checkout {
  left: 0;
  right: 0;
  bottom: 7rem;
  position: absolute;
  text-align: center;
}
.player .checkout span {
  color: #FFF;
  transition: 0.5s;
  cursor: pointer;
  padding: 0.8rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
}
.player .checkout span:hover {
  background: var(--primary-color);
}
@media screen and (max-width: 800px) {
  .player h4 {
    top: 1rem;
    font-size: 1rem;
  }
  .player .checkout {
    bottom: 2rem;
  }
  .player .checkout span {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.feedback--header {
  cursor: pointer;
  margin: 1.3rem 0;
  text-align: center;
}
.feedback--header span {
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.feedback--header span::before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.feedback--header span::after {
  bottom: 0;
  left: 100%;
  width: 0%;
  content: "";
  transition: 0.5s;
  position: absolute;
  border-top: 2px solid var(--secondary-color);
}
.feedback--header:hover span::before {
  width: 100%;
}
.feedback--header:hover span::after {
  left: 0%;
  width: 100%;
}

.feedback {
  font-family: "Poppins", sans-serif;
  padding: 1rem 0;
}
.feedback .card {
  border: 0;
  text-align: center;
  line-height: 1rem;
}
.feedback .card .image {
  margin: 0 auto;
}
.feedback .card .image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 0 0.3rem var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.feedback .card .card-body .card-text.review {
  color: var(--secondary-color);
  line-height: 1.6rem;
}
.feedback .card .card-body .card-text.rating {
  padding: 0.5rem 0;
}
.feedback .card .card-body .card-text.rating span svg {
  fill: #f6c82f;
}

.contact {
  padding: 2rem;
  background: url("../images/siteImage/contact.jpg");
}
.contact .map {
  padding: 2rem;
}
.contact .map iframe {
  border-radius: 0.5rem;
}
.contact .information {
  color: #FFF;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 2rem 2rem;
}
.contact .information div {
  margin: 1.4rem 0;
}
.contact .information div.title {
  margin: 1rem 0;
  font-size: 2rem;
  padding-left: 1rem;
  border-left: 0.5rem solid var(--primary-color);
}
.contact .information button {
  border: 0;
  color: #FFF;
  transition: 0.5s;
  padding: 1rem;
  background: var(--secondary-color);
}
.contact .information button:hover {
  background: var(--secondary-light-color);
}
@media screen and (max-width: 800px) {
  .contact {
    padding: 0;
  }
  .contact .information {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
  .contact .information div.title {
    font-size: 1.5rem;
  }
}

.contactWidget {
  left: 2rem;
  z-index: 666;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  position: fixed;
  transition: 0.5s;
  cursor: pointer;
  display: grid;
  color: #FFF;
  border-radius: 100%;
  place-items: center;
  background: #1baf1b;
}
.contactWidget:hover {
  background: var(--primary-color);
}

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