/**
* template:  Toproof

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + About Us
        + Our Process
        + Services
        + FAQ
        + Projects
        + Testimonials
        + Booking
        + Contacts
      
*/

@import "reset.css";
@import "all.min.css";
@import "magnific-popup.css";
@import "owl.carousel.min.css";
@import "owl.theme.default.min.css";

/**************************************
*
*         GLOBAL   
*
***************************************/

:root {
  --color-white: #ffffff;
  --color-dark: #1c1b1f;
  --color-content: #6e6e6e;
  --color-gray: #e5e5e5;
  --color-yellow: #f8b326;
  --color-light-yellow: #e9ba5b;
}

::-moz-selection {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  outline: none;
  height: auto;
}

a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-content);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;

  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

h1 {
  color: var(--color-white);
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 10px !important;
  margin-top: 20px !important;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ptb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.suptitle {
  display: inline-block;
  color: var(--color-yellow);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.btn {
  color: var(--color-white);
  background-color: var(--color-yellow);
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 5px;
}

.btn:hover {
  background-color: var(--color-light-yellow);
  color: var(--color-dark);
}

.align-center {
  text-align: center;
}

.stroke {
  -webkit-text-stroke: 3px var(--color-yellow);
  color: transparent;
}

.social-link li {
  margin-right: 20px;
}

.social-link li a {
  color: var(--color-white);
  font-size: 18px;
}

.social-link li a:hover {
  color: var(--color-yellow);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-yellow);
}

.owl-theme .owl-dots .owl-dot span {
  width: 25px;
  height: 5px;
  margin: 5px 7px;
  background: var(--color-gray);
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 0px;
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes load {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#preload {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark);
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#preload img {
  width: 40px;
  height: auto;
  -webkit-animation-name: load;
  animation-name: load;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  padding: 15px 20px;
}

#scroll-top i {
  margin-left: 0px;
}

#openmenu,
#closemenu {
  font-size: 30px;
  color: var(--color-white);
  display: none;
}

#openmenu:hover,
#closemenu:hover {
  color: var(--color-yellow);
}

.res-booking {
  display: none;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.res-booking .error {
  color: #ff0000;
}

.res-booking .send {
  color: var(--color-dark);
}

/**************************************
*
*         HEADER   
*
***************************************/

header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
}

.bg-header {
  background-color: var(--color-dark);
}

.wrapper-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menu {
  overflow: hidden;
}

.menu li {
  float: left;
  margin: 0 15px;
}

.menu li a {
  color: var(--color-white);
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

.menu li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  margin-top: 5px;
  background-color: var(--color-white);
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.menu li a:hover:after {
  width: 100%;
}

/**************************************
*
*         HEADER CONTENT
*
***************************************/

.wrapper-header-content {
  background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(28, 27, 31, 1)),
      to(rgba(28, 27, 31, 0))
    ),
    url("../images/bg-header.png");
  background-image: -o-linear-gradient(
      left,
      rgba(28, 27, 31, 1),
      rgba(28, 27, 31, 0)
    ),
    url("../images/bg-header.png");
  background-image: linear-gradient(
      90deg,
      rgba(28, 27, 31, 1),
      rgba(28, 27, 31, 0)
    ),
    url("../images/bg-header.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 800px;
}

/**************************************
*
*         ABOUT US
*
***************************************/

.wrapper-aboutus {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.aboutus-img {
  width: 40%;
}

.aboutus-img img {
  width: 100%;
  -webkit-box-shadow: 25px 25px 0px -10px var(--color-yellow);
  box-shadow: 25px 25px 0px -10px var(--color-yellow);
}

.aboutus-content {
  width: 60%;
  padding-left: 100px;
}

.aboutus-content p {
  margin-bottom: 20px;
}

.wrapper-list {
  margin: 40px 0px;
}

.wrapper-list li {
  margin-bottom: 30px;
  background-image: url("../images/checkmark.png");
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 50px;
}

.wrapper-list li p {
  margin-bottom: 0px;
}

.wrapper-list h3 {
  font-size: 25px;
  margin-bottom: 5px;
}

/**************************************
*
*         OUR PROCESS
*
***************************************/

#step {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(229, 229, 229, 0.2)),
      to(rgba(229, 229, 229, 0.2))
    ),
    url("../images/bg-gray.png");
  background-image: -o-linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-image: linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.single-step {
  width: 25%;
  padding: 40px 20px;
}

.single-step span {
  line-height: 1;
  color: rgba(248, 179, 38, 0.5);
  font-size: 120px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.single-step > div {
  margin-top: -50px;
  padding-left: 20px;
}

.single-step > div h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

/**************************************
*
*         SERVICES
*
***************************************/

#services {
  background-color: var(--color-dark);
}

#services h2 {
  color: var(--color-white);
}

.wrapper-services {
  margin-top: 50px;
  max-width: 1200px;
}

.wrapper-services-menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wrapper-services-menu ul {
  overflow: hidden;
}

.wrapper-services-menu ul li {
  float: left;
  margin: 20px;
}

.wrapper-services-menu ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: var(--color-white);
  font-size: 24px;
  text-transform: capitalize;
}

.wrapper-services-menu ul li a:hover,
.wrapper-services-menu ul li .active {
  color: var(--color-yellow);
}

.wrapper-services .item-services:not(:first-child) {
  display: none;
}

.item-services {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.services-img {
  width: 40%;
}

.services-img img {
  width: 100%;
  -webkit-box-shadow: 25px 25px 0px -10px var(--color-yellow);
  box-shadow: 25px 25px 0px -10px var(--color-yellow);
}

.services-content {
  width: 60%;
  padding-left: 100px;
}

.services-content .btn {
  margin-top: 20px;
}

.services-content h3 {
  color: var(--color-white);
  font-size: 50px;
}

.services-content p {
  margin-bottom: 20px;
}

/**************************************
*
*        FAQ
*
***************************************/

#faq {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(229, 229, 229, 0.2)),
      to(rgba(229, 229, 229, 0.2))
    ),
    url("../images/bg-gray.png");
  background-image: -o-linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-image: linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.faq-block-content {
  width: 60%;
  padding: 50px 20px 50px 0;
}

.faq-img {
  width: 40%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.wrapper-accordion {
  background-color: var(--color-white);
  padding: 40px 20px;
  -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
  box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.faq-img img {
  width: 100%;
  -webkit-box-shadow: 25px 25px 0px -10px var(--color-yellow);
  box-shadow: 25px 25px 0px -10px var(--color-yellow);
}

.faq-img > a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--color-yellow);
  font-size: 60px;
}

.faq-img > a:hover {
  color: var(--color-light-yellow);
}

.wrapper-accordion h3 {
  padding: 10px 10px 10px 10px;
  cursor: pointer;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  margin-bottom: 10px;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--color-gray);
}

.wrapper-accordion h3:hover {
  color: var(--color-yellow);
}

.wrapper-accordion h3 i {
  margin-right: 10px;
  padding: 10px;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  border-radius: 100%;
}

.wrapper-accordion h3:hover i {
  color: var(--color-dark);
}

.content-accordion {
  display: none;
  padding: 10px 10px 10px 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.content-accordion p {
  margin-bottom: 5px;
}

.wrapper-accordion h3 i {
  font-size: 14px;
}

/**************************************
*
*        PROJECTS
*
***************************************/

#projects {
  background-color: var(--color-dark);
}

#projects h2 {
  color: var(--color-white);
}

.single-project {
  overflow: hidden;
}

.single-project a {
  display: block;
  position: relative;
}

.single-project .project-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 27, 31, 0.3);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 30px 20px;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.single-project .project-content h3 {
  color: var(--color-white);
  font-size: 24px;
}

.single-project a img {
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.single-project a:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.single-project a:hover .project-content {
  background-color: rgba(28, 27, 31, 0.1);
}

/**************************************
*
*        TESTIMONIALS
*
***************************************/

#testimonials {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(229, 229, 229, 0.2)),
      to(rgba(229, 229, 229, 0.2))
    ),
    url("../images/bg-gray.png");
  background-image: -o-linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-image: linear-gradient(
      rgba(229, 229, 229, 0.2),
      rgba(229, 229, 229, 0.2)
    ),
    url("../images/bg-gray.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.wrapper-title-testimonials {
  text-align: center;
}

.wrapper-testimonials {
  max-width: 1000px;
  text-align: center;
}

.single-testimonials img {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 30px;
}

.single-testimonials p {
  font-size: 20px;
  margin-bottom: 20px;
}

.wrapper-author h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.wrapper-author p {
  color: var(--color-dark-blue);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/**************************************
*
*        BOOKING
*
***************************************/

.wrapper-booking {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.booking-content {
  width: 50%;
  padding-right: 50px;
}

.booking-content p {
  margin-bottom: 20px;
}

.booking-form {
  width: 50%;
  background-color: var(--color-white);
  padding: 40px 20px;
  -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
  box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.wrapper-phone {
  font-size: 30px;
  color: var(--color-dark);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-top: 40px;
}

.wrapper-phone i {
  margin-right: 10px;
}

.wrapper-phone a {
  color: var(--color-dark);
}

.wrapper-phone a:hover {
  color: var(--color-yellow);
}

.booking-form h3 {
  font-size: 40px;
}




/**************************************
*
*         CONTACTS
*
***************************************/

#contacts {
  background-color: var(--color-dark);
}

#contacts h2 {
  color: var(--color-white);
}

.wrapper-contact {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.wrapper-contact > div {
  width: 25%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--color-white);
}

.wrapper-contact > div p {
  margin-bottom: 10px;
}

.wrapper-contact > div a {
  color: var(--color-white);
}

.wrapper-contact > div a:hover {
  color: var(--color-yellow);
}

.wrapper-contact > div h3 {
  color: var(--color-white);
  font-size: 20px;
}

.wrapper-map iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.copyright {
  background-color: var(--color-dark);
  padding: 30px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  color: var(--color-white);
}
