/*
* Mate - Bootstrap 4 Template
* Build Date: December 2017
* Last updated: December 2017
* Version: 1.0
* Author: UIdeck
* Copyright (C) 2018 UIdeck
*/
/* ------------------------------------- */
/* TABLE OF CONTENTS
/* -------------------------------------
  1. IMPORT GOOGLE FONTS
  2. GENERAL
    -2.1 SECTION TITLE
    -2.2 BUTTONS
    -2.3 SOCIAL ICON
    -2.4 PRE LOADER
    -2.5 SCROLL TO UP
  3. HERO AREA 
  4. NAVBAR
  5. SERVICES SECTION
  6. FEATURES SECTION
  7. VIDEO PROMO SECTION
  8. PORTFOLIO SECTION
  9. PRICING TABLE 
  10. TESTIMONIAL AREA
  11. CONTACT SECTION
  12. FOOTER SECTION
  ------------------------------------- */
/* ==========================================================================
   1. IMPORT GOOGLE FONTS & DEFINE VARIABLES
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=GFS+Didot&family=Poppins:wght@400;500;600;700&display=swap");

	/* Fonts */
	:root {
	  --font-default: "Poppins", system-ui, -apple-system;
	  --font-primary: "Poppins", sans-serif;
	  --font-secondary: "Poppins", sans-serif, font-weight: 500;
	  --font-brand: "Didot";
	}

	/* Colors */
	:root {
	  --color-1: #f0e4b2;
	  --color-2: #d79b2b;
	  --color-3: #ff5d35;
	  --color-3-4: rgba(255, 92, 53, 0.4);
	  --color-3-6: rgba(255, 92, 53, 0.6);
	  --color-3-8: rgba(255, 92, 53, 0.8);
	  --color-3-a: #e62e00;
	  --color-3-b: #ff9980;
	  --color-4: #035b67;
	  --color-5: #414924;
	  --color-6: #483729;
	  --color-7: #222222;
	  --color-7-8: rgba(34, 34, 34, 0.8);
	  --color-7-6: rgba(34, 34, 34, 0.6);
	  --color-7-4: rgba(34, 34, 34, 0.4);
	  --color-7-1: rgba(34, 34, 34, 0.1);
	  --color-8: #474a4d;
	  --color-9: #474a4d;
	  --color-white: #fff;
	  --color-white-8: rgba(255, 255, 255, 0.8);
	  --color-white-6: rgba(255, 255, 255, 0.6);
	  --color-white-5: rgba(255, 255, 255, 0.5);
	  --color-white-3: rgba(255, 255, 255, 0.3);
	  --color-white-2: rgba(255, 255, 255, 0.2);
	  --color-white-1: rgba(255, 255, 255, 0.15);
	}

/* ==========================================================================
   2. GENERAL
   ========================================================================== */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-7);
  font-size: 14px;
  font-weight: 400;
  background: var(--color-white);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 14px;
  line-height: 26px;
}

a:hover, a:focus {
  color: var(--color-3);
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: var(--color-white);
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: var(--color-3);
}

/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  color: var(--color-white);
  margin-bottom: 40px;
  text-align: center;
}

.section-header .section-title {
  font-size: 42px;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-7-8);
  position: relative;
}

.section-header .section-title span {
  color: var(--color-3);
}

.section-header .section-subtitle {
  margin-top: 15px;
  color: var(--color-7);
  font-size: 16px;
  font-weight: 500;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid var(--color-3);
  margin-top: 15px;
}

/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
.btn {
  font-size: 14px;
  padding: 11px 40px;
  border-radius: 0px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: var(--color-white);
}

.btn-common {
  border: 1px solid var(--color-3);
  background: var(--color-3);
  position: relative;
  color: var(--color-white);
  z-index: 1;
  border-radius: 30px;
}

.btn-common:hover {
  color: var(--color-3-a);
  background: var(--color-white);
  border-color: var(--color-3-a);
  transition: all .50s ease-in-out;
  -moz-transition: all .50s ease-in-out;
  -webkit-transition: all .50s ease-in-out;
}

.btn-border {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-white);
  border-radius: 4px;
}

.btn-border:hover {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background-color: var(--color-3);
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 0px;
  color: var(--color-7-6);
  text-transform: capitalize;
}

.btn-rm i {
  vertical-align: middle;
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}

/* ==========================================================================
   2.3 Social Iocns
   ========================================================================== */
.social-icons {
  margin-top: 40px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline;
}

.social-icons ul li a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  border-radius: 50%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ddd;
  font-size: 16px;
}

.social-icons ul li a:hover {
  color: var(--color-white);
}

.whatsapp a {
  color: #075e54;
}

.whatsapp a:hover {
  background: #075e54;
}

.facebook a {
  color: #4867AA;
}

.facebook a:hover {
  background: #4867AA;
}

.instagram a {
  color: #fa7e1e;
}

.instagram a:hover {
  background: #8a3ab9;
}

.youtube a {
  color: #DF2926;
}

.youtube a:hover {
  background: #DF2926;
}

.pinterest a {
  color: #BD081C;
}

.pinterest a:hover {
  background: #BD081C;
}

/* ==========================================================================
	 2.4  Pre Loader
	 ========================================================================== 
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-7);
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-3);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}*/

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: var(--color-3);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* ==========================================================================
   3. Hero Area
   ========================================================================== */
#hero-area {
  background: url(../img/hero-area.webp) fixed no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

#hero-area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: var(--color-3);
  opacity: 0.9;
}

#hero-area .contents {
  padding: 200px 0 130px;
}

#hero-area .contents h1 {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

#hero-area .contents h2 {
  font-weight: 600;
  font-size: 24px;
}

#hero-area .contents p {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
}

#hero-area .contents .btn {
  margin: 25px 25px 0px 0px;
  text-transform: uppercase;
}

#hero-area .banner_bottom_btn {
  margin-top: 40px;
}

#hero-area .banner_bottom_btn i {
  color: var(--color-white);
  font-size: 48px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#hero-area .banner_bottom_btn i:hover {
  color: var(--color-3);
}

/* ==========================================================================
   4. Navbar Style
   ========================================================================== */
.navbar-brand {
  position: relative;
  padding: 0px;
}
.navbar-brand img {	
    width: 100%;
}

.top-nav-collapse {
  background: var(--color-white);
  z-index: 999999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px var(--color-7-1);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: var(--color-white) !important;
}

.top-nav-collapse .navbar-brand img {
    filter: invert(10%) sepia(53%) saturate(0%) hue-rotate(213deg) brightness(1%) contrast(99%);
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: var(--color-7) !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: var(--color-3) !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: var(--color-white) !important;
}

.top-nav-collapse .slicknav_btn {
  margin: 16px 15px;
}

.indigo {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--color-white);
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-expand-lg .navbar-nav li a:hover {
	color: var(--color-3-b);
}

.navbar-expand-lg .navbar-nav li .active > a,
.navbar-expand-lg .navbar-nav li a:focus {
  color: var(--color-3);
}

.navbar .nav-link.active {
  color: var(--color-white) !important;
  background: var(--color-3);
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_btn {
  border-color: var(--color-3);
}

.slicknav_menu .slicknav_icon-bar {
  background: var(--color-3);
}

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 10px 0px;
    top: 0;
  }
  .navbar-brand img {
    width: 70%;
  }
  .top-nav-collapse .navbar-brand {
    padding: 2px 0px;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }
  .slicknav_nav .active a {
    background: var(--color-3);
    color: var(--color-white);
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: var(--color-3);
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: var(--color-3);
  }
}

/* ==========================================================================
  5. Services section
   ========================================================================== */
.item-boxes {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-boxes .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid var(--color-7-1);
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-boxes .icon i {
  font-size: 26px;
  line-height: 60px;
  color: var(--color-3);
}

.item-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-5);
}

.item-boxes:hover .icon {
  background: var(--color-3);
}

.item-boxes:hover .icon i {
  color: var(--color-white);
}

/* ==========================================================================
  6. Features Section Style
   ========================================================================== */
#features {
  background: url(../img/bg1.webp) fixed no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

#features .section-title {
  color: var(--color-white);
}

#features .section-subtitle {
  color: var(--color-white);
}

#features .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#features .box-item {
  padding: 10px 5px;
}

#features .box-item .icon {
  border: 1px solid var(--color-white);
  text-align: center;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .icon i {
  color: var(--color-white);
  font-size: 24px;
  line-height: 60px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .text {
  padding-left: 80px;
}

#features .box-item .text h4 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 22px;
}

#features .box-item .text p {
  font-size: 14px;
  line-height: 26px;
}

#features .box-item:hover .icon i {
  color: var(--color-white);
}

#features .show-box img {
  position: absolute;
  bottom: -120px;
}

/* ==========================================================================
  7. Video promo Style
   ========================================================================== */
.video-promo {
  background: var(--color-7);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.video-promo .video-promo-content {
  color: var(--color-white);
}

.video-promo .video-promo-content h2 {
  color: var(--color-white);
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.video-promo .video-promo-content p {
  margin-bottom: 30px;
}

.video-promo .video-promo-content h2 span {
  padding: 0 5px;
  display: inline-block;
  font-family: var(--font-brand);
}

.video-promo .video-promo-content .video-popup {
  width: 80px;
  height: 80px;
  text-align: center;
  border: 3px solid var(--color-white);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-block;
  font-size: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.video-promo .video-promo-content .video-popup i {
  line-height: 72px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: var(--color-3);
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* ==========================================================================
  8. Portfolio Section
   ========================================================================== */
#portfolios .mix {
  padding: 10px;
}

#portfolios .portfolio-item .shot-item {
  margin: 0px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  border-color: var(--color-3-b);
  background: var(--color-3-b);
}

.controls .btn {
  text-transform: uppercase;
  margin: 2px;
}

.controls:hover {
  cursor: pointer;
}

.portfolio-img {
  overflow: hidden;
  display: block;
  position: relative;
}

.portfolio-img img {
  width: 100%;
}

.shot-item {
  margin-right: 15px;
  border-radius: 4px;
  background: var(--color-white);
  position: relative;
}

.shot-item img {
  width: 100%;
}

.shot-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  background: var(--color-7-4);
  top: 0;
  left: 0;
}

.shot-item:hover .overlay {
  opacity: 1;
}

.overlay .item-icon {
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: var(--color-3);
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  top: 50%;
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--color-3);
  border-radius: 50%;
}

.overlay .item-icon:hover {
  background: var(--color-3);
  color: var(--color-white);
}

.shot-item:hover .item-icon {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
	9. Pricing Table
	========================================================================== */
.pricing-table {
  padding: 0px 0px 40px 0px;
  margin: 0 auto;
  margin-bottom: 5px;
  border: transparent;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-7-1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.pricing-table:hover {
  box-shadow: 0 0 20px 0 var(--color-7-1);
}

.pricing-table .pricing-details h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  background: var(--color-4);
  padding: 30px 0;
}

.pricing-table .pricing-details span {
  display: inline-block;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-3);
  margin-bottom: 20px;
}

.pricing-table .pricing-details ul {
  margin-bottom: 35px;
}

.pricing-table .pricing-details ul li {
  padding: 10px;
  font-size: 15px;
  border-bottom: 1px dotted var(--color-7-1);
}

.table-left {
  margin-top: 20px;
}

/* ==========================================================================
10. Testimonial Section Style
 ========================================================================== */
#testimonial {
  background: url(../img/testimonial-bg.jpg) fixed no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

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

.testimonial-item img {
  width: 80px;
  border: 3px solid var(--color-white);
  height: 80px;
  border-radius: 50%;
}

.testimonial-item .testimonial-text h3 {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-item .testimonial-text span {
  font-size: 14px;
  color: #999;
}

.testimonial-item .testimonial-text p {
  font-size: 14px;
  font-weight: 400;
  padding: 36px 10px 30px 10px;
  margin: 0;
  line-height: 30px;
}

.owl-theme .owl-controls .owl-page span {
  background: var(--color-3);
}

.owl-theme .owl-controls {
  margin-top: 20px;
}

/* ==========================================================================
  11. Contact Us
  ========================================================================== */
.contact-us h3 {
  font-size: 36px;
  margin-bottom: 45px;
}

.contact-us p span a {
  color: var(--color-3);
  padding-left: 10px;
}

#contact {
  background: var(--color-7);
  color: var(--color-white);
  position: relative;
}

.form-control {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-color: var(--color-white);
  border-radius: 0px;
  color: var(--color-white);
  background: transparent;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  box-shadow: none;
  color: var(--color-white);
  border-color: var(--color-3);
  background: transparent;
  outline: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: var(--color-1);
}

/* ==========================================================================
12. Footer Style
 ========================================================================== */
footer {
  border-top: 1px solid var(--color-white-1);
  background: var(--color-7);
  padding: 20px 0;
}

.footer-links {
  line-height: 48px;
}

.footer-links li {
  float: left;
}

.footer-links li a {
  color: var(--color-white);
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: var(--color-3);
}

.copyright {
  margin-top: 10px;
  float: right;
}

.copyright p {
  color: var(--color-white);
}

.copyright p a {
  color: var(--color-1) !important;
}

.copyright p a:hover {
  color: var(--color-3) !important;
}
