/*-----------------------------
    1. Default css
-------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Cairo:300,400,600,700,800|Playfair+Display:400,700,900|Gothic+A1:200,300,400,500,600,700,800,900|Montserrat:300,400,500,600,700,800|Roboto:300,400,500,700,900|Satisfy");
@import "custom.css";

:root {
  --green-style: #009c94;
  --orange-style: #f07423;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: var(--orange-style);
  min-width: 370px;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
.btn {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn {
  border-radius: 0px;
  font-size: 16px;
  padding: 5px 25px;
  line-height: 30px;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #009c94;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

button:focus {
  outline: 0px dotted;
}

a,
button,
input {
  outline: medium none;
  color: var(--orange-style);
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Cairo", sans-serif;
  color: var(--orange-style);
  margin-top: 0px;
  font-style: normal;
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--orange-style);
}

h1 {
  font-size: 46px;
  font-weight: 500;
}

h2 {
  font-size: 37px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #444;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
}

hr {
  margin: 60px 0;
  padding: 0px;
  border-bottom: 1px solid #eceff8;
  border-top: 0px;
}

hr.style-2 {
  border-bottom: 1px dashed #f10;
}

hr.mp-0 {
  margin: 0;
  border-bottom: 1px solid #eceff8;
}

hr.mtb-40 {
  margin: 40px 0;
  border-bottom: 1px solid #eceff8;
  border-top: 0px;
}

label {
  font-size: 15px;
  font-weight: 400;
  color: #242424;
}

*::-moz-selection {
  background: #009c94;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #009c94;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #009c94;
  color: #fff;
  text-shadow: none;
}

.mark,
mark {
  background: var(--green-style) none repeat scroll 0 0;
  color: #ffffff;
}

span.tooltip-content {
  color: #00a9da;
  cursor: help;
  font-weight: 600;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

/***************************
Preloader Style 
****************************/

.spinner-section {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: #ffffff;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.preloader {
}

/***************************
    transtion
****************************/

a.button::after,
a.button-small::after {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.share ul,
.share:hover ul {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

a.button-border span,
a.button-border-white span,
input,
select,
textarea {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/*************************
    Input
*************************/

input[type="text"],
input[type="date"],
input[type="password"] {
  background: #eceff8;
  border: 2px solid #eceff8;
  height: 45px;
  box-shadow: none;
  padding-left: 10px;
  font-size: 14px;
  color: #626262;
  width: 100%;
}

input:focus {
  background: transparent;
  border: 2px solid #009c94;
}

textarea {
  resize: vertical;
  background: #eceff8;
  border: 2px solid #eceff8;
  padding: 10px;
  width: 100%;
  font-size: 14px;
}

textarea:focus {
  background: transparent;
  border: 2px solid #009c94;
  outline: none;
}

.input-group.divcenter.input-group .form-control {
  padding-left: 0px;
}

.form-control-borderless {
  border: none;
}

.form-control-borderless:hover,
.form-control-borderless:active,
.form-control-borderless:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.search-card .tools-btn {
  width: 200px;
}

/*************************
  Basic margin padding
*************************/

.m-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.p-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

/*************************
    Margin top
*************************/

.mt-0 {
  margin-top: 0;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-37 {
  margin-top: 37px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-42 {
  margin-top: 42px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-43 {
  margin-top: 43px;
}

.mt-47 {
  margin-top: 47px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-52 {
  margin-top: 52px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-72 {
  margin-top: 72px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-84 {
  margin-top: 84px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-179 {
  margin-top: 179px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-290 {
  margin-top: 290px;
}

.mt-285 {
  margin-top: 285px;
}

.mt-280 {
  margin-top: 280px;
}

/*************************
    Margin right
*************************/

.mr-0 {
  margin-right: 0px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-12 {
  margin-right: 12px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-170 {
  margin-right: 170px;
}

/*************************
    Margin bottom
*************************/

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-2 {
  margin-bottom: 1px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-42 {
  margin-bottom: 42px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-57 {
  margin-bottom: 57px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-63 {
  margin-bottom: 63px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-78 {
  margin-bottom: 78px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

/*************************
    Margin left
*************************/

.ml-0 {
  margin-left: 0;
}

.ml-10 {
  margin-left: 10px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-18 {
  margin-left: 18px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-285 {
  margin-left: 285px;
}

/*************************
    Padding top
*************************/

.pt-0 {
  padding-top: 0;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-37 {
  padding-top: 37px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-58 {
  padding-top: 58px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-68 {
  padding-top: 68px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-97 {
  padding-top: 97px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-108 {
  padding-top: 108px;
}

.pt-107 {
  padding-top: 107px;
}

.pt-113 {
  padding-top: 113px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-142 {
  padding-top: 142px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-169 {
  padding-top: 169px;
}

.pt-172 {
  padding-top: 172px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-240 {
  padding-top: 240px;
}

.pt-230 {
  padding-top: 230px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-290 {
  padding-top: 290px;
}

.pt-285 {
  padding-top: 285px;
}

.pt-275 {
  padding-top: 275px;
}

.pt-280 {
  padding-top: 280px;
}

.pt-305 {
  padding-top: 305px;
}

.pt-310 {
  padding-top: 305px;
}

.pt-310 {
  padding-top: 305px;
}

.pt-330 {
  padding-top: 330px;
}

.pt-345 {
  padding-top: 345px;
}

.pt-350 {
  padding-top: 350px;
}

.pt-335 {
  padding-top: 335px;
}

.pt-365 {
  padding-top: 365px;
}

.pt-355 {
  padding-top: 355px;
}

.pt-370 {
  padding-top: 370px;
}

.pt-380 {
  padding-top: 380px;
}

/*************************
    Padding right
*************************/

.pr-0 {
  padding-right: 0;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-47 {
  padding-right: 47px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-215 {
  padding-right: 215px;
}

/*************************
    Padding bottom
*************************/

.pb-0 {
  padding-bottom: 0;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-88 {
  padding-bottom: 88px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-97 {
  padding-bottom: 97px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-107 {
  padding-bottom: 107px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-146 {
  padding-bottom: 146px;
}

.pb-142 {
  padding-bottom: 142px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-152 {
  padding-bottom: 152px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-169 {
  padding-bottom: 169px;
}

.pb-178 {
  padding-bottom: 178px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-172 {
  padding-bottom: 172px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-212 {
  padding-bottom: 212px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-258 {
  padding-bottom: 258px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-310 {
  padding-bottom: 310px;
}

.pb-320 {
  padding-bottom: 320px;
}

.pb-315 {
  padding-bottom: 315px;
}

.pb-440 {
  padding-bottom: 440px;
}

.pb-450 {
  padding-bottom: 450px;
}

/*************************
    Padding left
*************************/

.pl-0 {
  padding-left: 0;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-32 {
  padding-left: 32px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-47 {
  padding-left: 47px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-375 {
  padding-left: 375px;
}

/***************************
    Page section padding 
****************************/

.ptb-0 {
  padding: 0;
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-15 {
  padding: 15px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-25 {
  padding: 25px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-32 {
  padding: 32px 0;
}

.ptb-37 {
  padding: 37px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-68 {
  padding: 68px 0;
}

.ptb-65 {
  padding: 65px 0;
}

.ptb-70 {
  padding: 70px 0;
}

.ptb-75 {
  padding: 75px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-90 {
  padding: 90px 0;
}

.ptb-100 {
  padding: 100px 0;
}

.ptb-95 {
  padding: 95px 0;
}

.ptb-110 {
  padding: 110px 0;
}

.ptb-120 {
  padding: 120px 0;
}

.ptb-130 {
  padding: 130px 0;
}

.ptb-135 {
  padding: 135px 0;
}

.ptb-140 {
  padding: 140px 0;
}

.ptb-150 {
  padding: 150px 0;
}

.ptb-160 {
  padding: 160px 0;
}

.ptb-165 {
  padding: 165px 0;
}

.ptb-170 {
  padding: 170px 0;
}

.ptb-177 {
  padding: 177px 0;
}

.ptb-180 {
  padding: 180px 0;
}

.ptb-190 {
  padding: 190px 0;
}

.ptb-200 {
  padding: 200px 0;
}

.ptb-210 {
  padding: 210px 0;
}

.ptb-220 {
  padding: 220px 0;
}

.ptb-250 {
  padding: 250px 0;
}

.ptb-290 {
  padding: 290px 0;
}

.ptb-310 {
  padding: 310px 0;
}

.ptb-300 {
  padding: 300px 0;
}

.ptb-350 {
  padding: 350px 0;
}

.ptb-400 {
  padding: 400px 0;
}

/***************************
    Page section margin 
****************************/

.mtb-0 {
  margin: 0;
}

.mtb-10 {
  margin: 10px 0;
}

.mtb-15 {
  margin: 15px 0;
}

.mtb-20 {
  margin: 20px 0;
}

.mtb-30 {
  margin: 30px 0;
}

.mtb-40 {
  margin: 40px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-70 {
  margin: 70px 0;
}

.mtb-80 {
  margin: 80px 0;
}

.mtb-90 {
  margin: 90px 0;
}

.mtb-100 {
  margin: 100px 0;
}

.mtb-110 {
  margin: 110px 0;
}

.mtb-120 {
  margin: 120px 0;
}

.mtb-130 {
  margin: 130px 0;
}

.mtb-140 {
  margin: 140px 0;
}

.mtb-150 {
  margin: 150px 0;
}

.mtb-290 {
  margin: 290px 0;
}

/*************************************
    Background variation set 
 **************************************/

/*colored background*/

.white-bg {
  background: #fff;
}

.black-bg {
  background: #242424;
}

.black-bg-2 {
  background: #181818;
}

.black-bg-3 {
  background: #202428;
}

.black-bg-4 {
  background: #292c32;
}

.theme-bg {
  background: #0f1013;
}

.theme-bg2 {
  background: #1e2127;
}

.theme-bg2 p {
  color: #ffffff;
}

.gray-bg {
  background: #e9eaea;
}

.gray-bg-2 {
  background: #d8dee1;
}

.gray-bg-3 {
  background: #e5e9eb;
}

.gray-bg-4 {
  background: #f6f6f6;
}

.blue-bg {
  background: #009c94;
}

.default-bg {
  background: #50c1f0;
}

.pink-bg {
  background: #ffe8e8;
}

.transparent-bg {
  background: transparent;
}

/*Opacity background*/

/* black overlay */

[data-overlay] {
  position: relative;
}

[data-overlay]:before {
  background: #000000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.white-bg[data-overlay]:before {
  background: #ffffff;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  /* opacity: 0.5; */
}

[data-overlay="56"]:before {
  opacity: 0.56;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

button,
html [type="button"] {
  -webkit-appearance: inherit;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

.best-area {
  position: relative;
}

/*image background*/

.bg-1,
.bg-2,
.bg-3,
.bg-4,
.bg-5,
.bg-6,
.bg-7,
.bg-8,
.bg-9,
.bg-10 {
  background-attachment: fixed;
  background-clip: initial;
  background-color: rgba(0, 0, 0, 0);
  background-origin: initial;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.bg-img {
  background-position: center center;
  background-size: cover;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

:focus {
  outline: -mos-focus-ring-color auto 0px;
}

:focus {
  outline: none;
}

.header-search form button {
  outline: medium none;
}

.relative {
  position: relative;
}

.overflow {
  overflow: hidden;
}

.border-bottom-1 {
  border-bottom: 1px solid #2d313a;
}

.border-top-1 {
  border-top: 1px solid #2d313a;
}

.border-top-2 {
  border-top: 1px solid #141414;
}

.border-top-3 {
  border-top: 1px solid #eeeeee;
}

.border-top-4 {
  border-top: 1px solid #303338;
}

.border-top-5 {
  border-top: 1px solid #dee0e4;
}

.border-bottom-2 {
  border-bottom: 1px solid #eeeeee;
}

.border-bottom-3 {
  border-bottom: 1px solid #c0c5ca;
}

.border-bottom-4 {
  border-bottom: 1px solid #dee0e4;
}

#mobile-menu-active {
  display: none;
}

.mobile-menu-area {
  display: none;
}

.slicknav_menu {
  display: none;
}

.slicknav_btn {
  margin: -30px 10px 0 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 0;
  background-color: transparent;
  display: inline-block;
  z-index: 999999;
  padding: 0;
  line-height: 1;
}

.slicknav_btn span {
  padding: 3px 6px 2px;
  font-size: 18px;
  border: 1px solid #fff;
}

.slicknav_menu .slicknav_icon {
  display: none;
}

.slicknav_menu {
  padding: 0;
}

.slicknav_nav a {
  color: #000;
}

.slicknav_menu {
  background: transparent;
  padding: 0px;
  margin: 0 40px;
}

.slicknav_menu .slicknav_menutxt {
  text-shadow: none;
  line-height: 1;
}

.slicknav_menu .slicknav_menutxt .menu-icon-colse {
  display: none;
}

.slicknav_menu .slicknav_open .slicknav_menutxt .menu-icon-colse {
  display: block;
}

.slicknav_menu .slicknav_open .slicknav_menutxt .menu-icon-open {
  display: none;
}

.slicknav_nav a:hover {
  background: none;
  color: #009c94;
}

.slicknav_nav .slicknav_row:hover {
  background: transparent;
}

.slicknav_nav .slicknav_item a {
  display: block;
}

.slicknav_nav .slicknav_item a:hover {
  color: #009c94;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 12px 20px 11px 20px;
  margin: 0;
  position: relative;
  font-size: 13px;
}

.slicknav_nav .slicknav_parent .slicknav_row {
  text-transform: uppercase;
  font-size: 13px;
}

.slicknav_nav .slicknav_arrow {
  margin: 0 0 0 0.4em;
  position: absolute;
  right: 13px;
  top: 50%;
  color: #000;
  font-size: 11px;
  transform: translateY(-50%);
}

.slicknav_nav a:hover .slicknav_arrow {
  color: #009c94;
}

.slicknav_nav li {
  display: block;
  border-bottom: 1px solid #ddd;
}

.slicknav_nav li:last-child {
  border-bottom: 0px solid #ddd;
}

.slicknav_nav li {
  text-transform: capitalize;
}

.slicknav_nav {
  height: 215px;
  overflow-y: auto;
  background-color: #f8f8f8;
}

.stick .slicknav_btn span {
  border: 1px solid #333;
}

.stick .slicknav_menu .slicknav_menutxt i {
  color: #333;
}

.stick .slicknav_btn {
  margin: -45px 0px 0 0;
}

.slicknav_nav ul {
  margin: 0 0 0 0px;
}

.slicknav_nav li ul li {
  padding-left: 10px;
}

/* 2nd */

.header-padding-2 .slicknav_btn {
  margin: -46px 0px 0 0;
}

.header-padding-2 .slicknav_btn span,
.mobile-menu-black .slicknav_btn span {
  border: 1px solid #333;
}

.header-padding-2 .slicknav_menu .slicknav_menutxt,
.mobile-menu-black .slicknav_menu .slicknav_menutxt {
  color: #333;
}

.header-padding-2.stick .slicknav_btn {
  margin: -48px 0px 0 0;
}

.header-hm4 .slicknav_btn {
  margin: -46px 0px 0 0;
}

.header-hm4.stick .slicknav_btn {
  margin: -42px 0px 0 0;
}

.header-hm8 .slicknav_btn {
  margin: -37px 0px 0 0;
}

.header-hm8.stick .slicknav_btn {
  margin: -39px 0px 0 0;
}

.theme-color-hover .slicknav_menu {
  margin: 0 0px;
}

/* scrollUp */

#scrollUp {
    background: var(--green-style) none repeat scroll 0 0;
    bottom: 20px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    height: 48px;
    line-height: 48px;
    position: fixed;
    right: 12px;
    text-align: center;
    width: 48px;
    z-index: 9999;
}

#scrollUp:hover {
  background: var(--orange-style) none repeat scroll 0 0;
}

.request-demo {
  background: var(--green-style) none repeat scroll 0 0;
  bottom: 20px;
  cursor: pointer;
  height: 48px;
  position: fixed;
  right: 12px;
  width: 48px;
}

.request-demo img {
  width: 38px;
  height: auto;
  margin: 5px;
}

.request-demo:hover {
  background: var(--orange-style) none repeat scroll 0 0;
}

/* button */

.btn-style {
  background-color: transparent;
  border: 2px solid #eeeeee;
  color: #242424;
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px 12px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  display: block;
}

.btn-style:hover {
  background-color: #ff0042;
  border: 2px solid #ff0042;
  color: #fff;
}

.btn-style-2 {
  background-color: #ff0042;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 17px 37px;
  text-transform: uppercase;
}

.btn-style-2:hover {
  background-color: #242424;
  color: #fff;
}

.height-100vh {
  height: 100vh;
}

.height-100vh-2 {
  height: 100vh;
}

.height-70vh {
  height: 70vh;
}

.height-70vh-2 {
  height: 70vh;
}

#mobile-menu-active {
  display: none;
}

.default-overlay,
.default-overlay-2 {
  position: relative;
}

.default-overlay::before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.default-overlay-2::before {
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.btn-hover {
  position: relative;
}

.btn-hover::before {
  background: var(--orange-style) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 50% 0;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  z-index: -1;
}

.btn-hover:hover::before {
  transform: scaleX(1);
}

.default-btn {
  color: var(--orange-style);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 16px 50px 16px;
  text-transform: uppercase;
  z-index: 9;
}

.mfp-bg {
  z-index: 9999999;
}

.mfp-wrap {
  z-index: 99999999;
}

/*------------------------
    2. Index page style
--------------------------*/

/* header */

.transparent-bar {
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

.sticky-bar.stick {
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: #fff;
  border-bottom: 0 solid #4a90e2;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}

.logo {
  transition: all 0.3s ease 0s;
}

.logo img {
  width: 220px;
}

.stick .logo-normally-none {
  display: none;
}

.logo-sticky-none {
  display: none;
}

.stick .logo-sticky-none {
  display: block;
}

.stick .main-menu ul li a {
  color: var(--orange-style);
  line-height: 70px;
}

.stick .logo.mt-45 {
  margin-top: 25px;
}

.stick .logo.mt-48,
.stick .logo.mt-50 {
  margin-top: 25px;
}

.stick .logo.logo-hm8.mt-45 {
  margin-top: 23px;
}

.stick .bar-icon button span,
.stick .header-search button span {
  color: var(--orange-style);
}

.stick .header-right-wrap.mt-55,
.stick .header-right-wrap.mt-50,
.stick .header-right-wrap.mt-47 {
  margin-top: 22px;
}

.stick .bar-icon button:hover span,
.stick .header-search button:hover span {
  color: #009c94;
}

.header-flex {
  display: flex;
  justify-content: space-between;
}

.header-padding .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

.header-right-wrap {
  display: flex;
  transition: all 0.3s ease 0s;
}

.header-search button,
.bar-icon button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  padding: 0;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.header-search button span {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  margin: 3px 0 0;
}

.bar-icon button span {
  color: #fff;
  font-size: 22px;
}

.bar-icon button:hover span,
.header-search button:hover span {
  color: #ddd;
}

/* cur-lang-acc */

.summary-info {
  background: #ffffff none repeat scroll 0 0;
  color: #353535;
  height: 100vh;
  position: fixed;
  right: -400px;
  top: 0;
  transition: all 0.5s ease-in-out 0s;
  width: 400px;
  z-index: 9999;
}

.summary-info.inside {
  right: 0;
}

.wrap-sidebar {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 30px 30px 0;
  width: 100%;
}

.summary-list {
  margin: 20px 0 0;
}

.summary-list li,
.sidebar-contact-list li {
  list-style: outside none none;
  margin: 0 0 15px;
}

.summary-list li i,
.sidebar-contact-list li i {
  color: #009c94;
  font-size: 18px;
  margin: 0 15px 0 0;
}

.sidebar-contact > h5 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.sidebar-contact-list {
  margin: 30px 0 0;
}

.summary-list li:last-child,
.sidebar-contact-list li:last-child {
  margin: 0 0 0px;
}

.summary-list-wrap > p {
  font-size: 14px;
  margin: 0;
}

.summary-list-wrap {
  border-bottom: 1px solid #ebebeb;
  margin: 30px 0 36px;
  padding: 0 0 37px;
}

.sidebar-nav-icon {
  display: block;
  overflow: hidden;
  margin: 0 0 20px;
}

.sidebar-nav-icon button {
  background: var(--green-style) none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  float: right;
  font-size: 18px;
  padding: 5px 8px 2px;
  transition: all 0.3s ease 0s;
}

.sidebar-nav-icon button:hover {
  background: #242424 none repeat scroll 0 0;
}

.wrapper .body-overlay {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.5s ease-in-out 0s;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

.wrapper.overlay-active .body-overlay {
  opacity: 1;
  visibility: visible;
}

/* search */

.main-search-active {
  background: rgba(0, 0, 0, 0.92) none repeat scroll 0 0;
  color: #353535;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 46px 39px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(110%);
  transition: transform 0.5s ease-in-out 0s,
    -webkit-transform 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 9999;
}

.main-search-active.inside {
  transform: translateX(0px);
  z-index: 9999;
}

.sidebar-search-icon {
  display: block;
  overflow: hidden;
  position: absolute;
  right: 50%;
  top: 50px;
  transform: translateX(50%);
}

.sidebar-search-icon button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: 35px;
  line-height: 1;
  padding: 0;
  transition: all 0.3s ease 0s;
}

.sidebar-search-icon:hover button,
.sidebar-search-input form .form-search:hover button {
  color: #009c94;
}

.sidebar-search-input {
  padding: 300px 0 0;
}

.sidebar-search-input form {
  position: relative;
}

.sidebar-search-input form .form-search {
  position: relative;
}

.sidebar-search-input form .form-search input {
  background-color: transparent;
  border-color: #dadada;
  border-style: solid;
  border-width: 0 0 1px;
  color: #fff;
  display: block;
  font-size: 18px;
  height: 62px;
  line-height: 62px;
  padding: 0 45px 0 0;
  width: 800px;
}

.sidebar-search-input form .form-search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.sidebar-search-input form .form-search input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.sidebar-search-input form .form-search button {
  background-color: transparent;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 13px;
  transition: all 0.3s ease 0s;
}

/* menu */

.main-menu {
  width: 1170px;
  position: relative;
}

.main-menu ul li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 16px;
}

.main-menu ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 122px;
  text-transform: uppercase;
  display: inline-block;
}

.main-menu ul li:hover > a,
.theme-color-hover .main-menu ul li:hover > a,
.header-black .main-menu ul li:hover > a {
  color: #009c94;
}

.main-menu nav > ul > li > ul.submenu {
  background-color: #fff;
  padding: 30px 20px;
  width: 280px;
}

.main-menu nav > ul > li > ul.mega-menu,
.main-menu nav > ul > li > ul.submenu {
  box-shadow: 0 1px 7px -2px rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  text-align: left;
  top: 100%;
  transform: rotateX(90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  z-index: 999;
}

.main-menu nav > ul > li > ul.mega-menu {
  padding-right: 20px;
  width: 100%;
  left: 0;
}

.main-menu nav > ul > li > ul.mega-menu.mega-menu-white-bg {
  background-color: #fff;
  padding: 43px 30px 44px 0;
  width: 100%;
}

.main-menu nav > ul > li > ul.mega-menu.mega-menu-2col {
  background-color: #fff;
  left: -213px;
  padding: 43px 30px 44px 0;
  width: 540px;
}

.mega-menu.mega-menu-width-img img {
  width: 100%;
}

.main-menu nav > ul > li:hover > ul.mega-menu,
.main-menu nav > ul > li:hover > ul.submenu {
  transform: rotateX(0deg);
  visibility: visible;
}

.main-menu nav > ul > li > ul.mega-menu > li,
.main-menu nav > ul > li > ul.submenu > li {
  display: block;
  float: left;
  margin: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
}

.main-menu nav > ul > li > ul.mega-menu.mega-menu-white-bg > li {
  padding: 0 0 0 20px;
  width: 25%;
}

.main-menu nav > ul > li > ul.mega-menu.mega-menu-2col > li {
  padding-left: 40px;
  width: 50%;
}

.main-menu nav > ul > li > ul.mega-menu > li ul {
  position: relative;
}

.main-menu nav > ul > li > ul.mega-menu > li ul:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #dee0e4;
}

.main-menu nav > ul > li > ul.mega-menu > li:last-child ul:before {
  display: none;
}

.main-menu nav > ul > li > ul.mega-menu > li ul li {
  display: block;
  margin: 0;
  padding: 0 20px 0 0;
}

.main-menu ul li ul li.mega-menu-title a {
  color: var(--orange-style);
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.main-menu ul li ul li.divider {
  border-bottom: 1px solid #dee0e4;
  height: 1px;
  margin: 0 20px 20px 0 !important;
}

.main-menu ul li ul li a {
  color: #333;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding-top: 0;
  text-align: left;
  text-transform: capitalize;
}

.main-menu ul li ul li ul li a {
  padding-bottom: 27px;
}

.main-menu ul li ul li ul li:last-child a {
  padding-bottom: 0px;
}

.main-menu nav > ul > li > ul.submenu > li a {
  padding-bottom: 20px;
}

.main-menu nav > ul > li > ul.submenu > li:last-child a {
  padding-bottom: 0px;
}

.stick .main-menu ul li ul li a {
  line-height: 1;
  color: #333;
}

.stick .main-menu ul li ul li.mega-menu-title a {
  line-height: 1;
  color: #333;
}

.stick .main-menu ul li:hover > a {
  color: #009c94;
}

.header-black.header-height-1 .main-menu ul li ul li a,
.header-black.header-height-2 .main-menu ul li ul li a {
  line-height: 1;
}

.stick.header-black.header-height-1 .main-menu ul li ul li a,
.stick.header-black.header-height-2 .main-menu ul li ul li a {
  line-height: 1;
  color: #333;
}

/* slider area */

.owl-stage-outer {
  width: 100%;
}
.slider-other .owl-dots {
  text-align: center;
  padding-top: 15px;
}
.slider-other .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.slider-other .owl-dots .owl-dot.active {
  background-color: #000;
}
.slider-other .owl-dots .owl-dot:focus {
  outline: none;
}
.slider-overly {
  position: relative;
}

.slider-overly::before {
  background-color: #000000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.slider-text {
  position: relative;
  z-index: 9;
}

.slider-text h1 {
  color: #fff;
  font-size: 48px;
  line-height: 60px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}

.slider-text h5 {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 45px 0 49px;
}

.slider-btn a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 21px 49px 23px;
  text-transform: uppercase;
  margin: 0 8px;
}

.slider-btn a.sub-slider-btn-1 {
  background-color: rgba(255, 255, 255, 0.25);
}

.slider-btn a.sub-slider-btn-2 {
  background-color: #009c94;
}

.pagination-style1 .owl-dots {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.pagination-style1 .owl-dots .owl-dot {
  color: #f9fbff;
  font-size: 19px;
  line-height: 1;
  margin: 0 0 16px;
  opacity: 0.5;
  position: relative;
}

.pagination-style1 .owl-dots .owl-dot:hover {
  color: #fff;
  opacity: 1;
}

.pagination-style1 .owl-dots .owl-dot:last-child {
  margin: 0 0 0px;
}

.pagination-style1 .owl-dots .owl-dot.active {
  color: #fff;
  opacity: 1;
}

.pagination-style1 .owl-dots .owl-dot::before {
  background: #fff none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 40px;
  position: absolute;
  top: 10px;
  transition: all 0.3s ease-in-out 0s;
  width: 0px;
}

.pagination-style1 .owl-dots .owl-dot:hover::before,
.pagination-style1 .owl-dots .owl-dot.active::before {
  width: 42px;
}

.slider-icon {
  bottom: 35px;
  left: 50%;
  position: absolute;
  z-index: 9;
}

.features-carousel .owl-dots,
.modules-carousel .owl-dots {
  bottom: -10px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.features-carousel .owl-dot,
.modules-carousel .owl-dot {
  border-radius: 3px;
  display: inline-block;
  height: 8px;
  margin: 0 5px;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  width: 15px;
  background-color: #009c94;
}

.features-carousel .owl-dot.active,
.features-carousel .owl-dot:hover,
.modules-carousel .owl-dot.active {
  width: 25px;
  background-color: var(--orange-style);
}

.slider-icon i {
  color: #fff;
  font-size: 32px;
}

.move {
  animation: move-animation 5s ease infinite;
}

@keyframes move-animation {
  0% {
    transform: translate(-50%, 0);
  }
  12.5% {
    transform: translate(-50%, -20%);
  }
  25% {
    transform: translate(-50%, 0);
  }
  37.5% {
    transform: translate(-50%, -20%);
  }
  50% {
    transform: translate(-50%, 0);
  }
  62.5% {
    transform: translate(-50%, -20%);
  }
  75% {
    transform: translate(-50%, 0);
  }
  87.5% {
    transform: translate(-50%, -20%);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/* Default Slider Animations */

.owl-item .slider-content * {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-item.active .slider-content * {
}

.owl-item.active .slider-animated-1 h1 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-1 h5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-1 h4 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-1 h3 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-1 a {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-1 h2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 span {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* section-title */

.section-title h2 {
  color: var(--orange-style);
  font-size: 44px;
  font-weight: 300;
  line-height: 38px;
  margin: 0 0 30px;
}

.section-title > p {
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 0 auto;
  width: 65%;
}

.section-title {
  position: relative;
  z-index: 2;
}
.payroll-side-menu {
  z-index: 1;
  width: 20%;
  text-align: center;
}
.payroll-side-menu ul {
  display: flex;
  border: 1px solid #ccc;
  border-right: none;
  margin-right: -1px;
  flex-direction: column;
  height: 100%;
}

.payroll-side-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f7f7f7;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #cccccc;
  min-height: 65px;
  padding: 0 20px;
}

.payroll-side-menu ul li.active {
  border-right: 1px solid #ffffff;
  background: #ffffff;
}

.payroll-side-menu ul li a {
  display: block;
  color: #444444;
}

.payroll-side-menu ul li.active a {
  color: #009c94;
}
.payroll-content {
  border: 1px solid #ccc;
  padding: 20px;
  width: 80%;
}

.flex-payroll {
  display: flex;
  align-content: stretch;
  max-width: 100%;
}
/*service section */

.single-service-wrap {
  position: relative;
  transition: all 0.3s ease 0s;
}

.single-service-wrap::before {
  background: var(--green-style) none repeat scroll 0 0;
  content: "";
  height: 7px;
  left: 0px;
  position: absolute;
  bottom: 0px;
  transition: all 0.3s ease-in-out 0s;
  width: 0;
}

.single-service-wrap:hover::before {
  width: 100%;
}

.single-service {
  padding: 20px 20px;
}

.single-service img {
  width: 100px !important;
  height: auto;
  display: inline-block !important;
}

.single-service > h4 {
  color: var(--orange-style);
  font-size: 16px;
  font-weight: 500;
  margin: 27px 0 15px;
}

.single-service > p {
  color: #ffffff;
  font-size: 14px;
  line-height: 25px;
  margin: 0;
}

.pos-wrap {
  position: relative;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.pos-wrap::before {
  background: var(--green-style) none repeat scroll 0 0;
  content: "";
  height: 7px;
  left: 0px;
  position: absolute;
  bottom: 0px;
  transition: all 0.3s ease-in-out 0s;
  width: 0;
}

.pos-wrap:hover::before {
  width: 100%;
}

.pos {
  padding: 20px 20px;
  display: flex;
  align-items: center;
}
.pos > h4 {
  color: #444444;
  font-size: 16px;
  font-weight: 500;
  line-height: 44px;
  margin: 0;
}

.pos > i {
  color: #009c94;
  font-size: 44px;
  line-height: 44px;
  margin: 20px;
}

.pos > img {
  width: 44px;
  height: 44px;
  margin: 20px;
}

.reporting-wrap {
  position: relative;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.reporting-wrap::before {
  background: var(--green-style) none repeat scroll 0 0;
  content: "";
  height: 7px;
  left: 0px;
  position: absolute;
  bottom: 0px;
  transition: all 0.3s ease-in-out 0s;
  width: 0;
}

.reporting-wrap:hover::before {
  width: 100%;
}

.reporting {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reporting > h4 {
  color: #444444;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
}

.slider-products .owl-nav div,
.features-carousel .owl-nav div,
.slider-libraLogo .owl-nav div {
  color: #fff;
  font-size: 48px;
  left: -30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

.slider-products .owl-nav div:hover,
.features-carousel .owl-nav div:hover {
  color: var(--orange-style);
}

.slider-products .owl-nav div.owl-next,
.features-carousel .owl-nav div.owl-next,
.slider-libraLogo .owl-nav div.owl-next {
  left: auto;
  right: -30px;
}

.color-dark {
  color: #444;
}

/* tools area */

.tools-slider-active {
  margin-left: 0px;
  position: relative;
}

.tools-slider-active::before {
  background-image: url("../img/pattern/pattern-1.png");
  background-position: center center;
  background-size: cover;
  content: "";
  height: 341px;
  left: -173px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 341px;
  z-index: -1;
}

.tools-slider-active .owl-nav {
  bottom: -80px;
  left: 58%;
  position: absolute;
}

.tools-slider-active .owl-nav div {
  color: #989a9e;
  display: inline-block;
  font-size: 24px;
  transition: all 0.3s ease 0s;
}

.tools-slider-active .owl-nav div:hover {
  color: #009c94;
}

.tools-slider-active .owl-nav div.owl-prev {
  margin-right: 20px;
}

.tools-btn a.default-btn {
  background-color: #f1f2f6;
}

.tools-btn a.default-btn:hover {
  color: #fff;
}

.tools-content > h2 {
  color: var(--orange-style);
  font-size: 48px;
  line-height: 60px;
  font-weight: 300;
  margin: 0 0 16px;
}

.tools-content > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  margin: 0;
}

/* portfolio-area */

.hover-1,
.hover-2,
.hover-3 {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: crosshair;
}

.hover-1::before {
  opacity: 0;
  transform: scale(1);
  background: rgba(15, 16, 19, 0.9);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 2;
}

.portfolio-slider-active .slick-slide img {
  width: 100%;
}

.portfolio-wrap:hover .hover-1::before,
.more-feature-wrap:hover .hover-1::before,
.modules-wrap:hover .hover-1::before,
.blog-wrap:hover .hover-1::before {
  opacity: 1;
  z-index: 1;
  transform: scale(1.1);
}

.portfolio-zoom,
.readmore-icon {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease 0s;
  z-index: 9;
}

.portfolio-zoom a {
  color: #ffffff;
  display: inline-block;
  font-size: 36px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease 0s;
}

.portfolio-wrap:hover .portfolio-zoom a {
  transform: scale(1);
  opacity: 1;
}

.portfolio-content {
  display: flex;
  justify-content: space-between;
  padding: 26px 0 0;
}

.portfolio-title > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.portfolio-like a {
  color: #909498;
}

.portfolio-like span:hover,
.portfolio-like span:hover a,
.portfolio-like-2 span:hover,
.portfolio-like-2 span:hover a,
.portfolio-zoom a:hover {
  color: #009c94;
}

.portfolio-like span {
  font-weight: 500;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease 0s;
}

.portfolio-like a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 0 6px;
  position: relative;
  top: 2px;
  color: #666;
}

.portfolio-slider-active,
.shop-carousel-active {
  overflow: hidden;
}

.portfolio-slider-active .slick-list {
  margin: 0 -20px;
}

.portfolio-slider-active .slick-slide {
  margin: 0 20px;
}

/* call-for-action-area */

.call-for-action-img {
  position: relative;
}

.call-for-action-img > img {
  width: 100%;
}

.call-for-action-img::before {
  background-image: url("../img/pattern/pattern-2.png");
  background-position: center center;
  background-size: cover;
  content: "";
  height: 311px;
  position: absolute;
  right: -290px;
  top: 50%;
  transform: translateY(-50%);
  width: 351px;
  z-index: -1;
}

.signature-img {
  margin: 45px 0 0;
}

/* testimonials-area */

.testimonials-area.default-overlay::before {
  opacity: 0.75;
}

.section-title.section-title-white h2 {
  color: #fff;
}

.section-title.section-title-white > p {
  color: #fff;
}

.testimonial-wrap {
  margin: 0 0 0 1px;
}

.testimonial-active .slick-slide .testimonial-wrap {
  align-items: center;
  display: flex !important;
  opacity: 0.5;
  padding: 10px 10px 10px 10px;
}

.testi-content > h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px;
}

.testi-content > span {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.testi-content {
  margin: 0 0 0 25px;
}

.testimonial-active .slick-slide.slick-current .testimonial-wrap {
  border: 1px solid #626366;
  opacity: 1;
}

.sin-testitext p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 36px;
  margin: 0 auto;
  width: 66%;
}

.testimonial-text-slider {
  margin: 0 0 40px;
}

.testi-img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

/*more-feature-area */

.more-feature-margin {
  margin: 0px 35px;
}

.more-feature-wrap,
.blog-wrap {
  padding: 35px 0;
  transition: all 0.3s ease 0s;
}

.more-feature-img > img {
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.feature-hover-content {
  left: 0px;
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
  z-index: 99;
  transition: all 0.4s ease 0s;
}

.more-feature-wrap:hover .feature-hover-content {
  opacity: 1;
  visibility: visible;
}

.more-feature-content {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px 0 30px;
  position: relative;
  z-index: 99;
}

.feature-title {
  width: 100%;
  text-align: center;
}

.feature-title > h4 {
  font-size: 22px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
  transition: all 0.3s ease 0s;
  line-height: 36px;
}
.feature-title > h5 {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
  transition: all 0.3s ease 0s;
  line-height: 24px;
}
.feature-hover-content > h4 {
  color: #009c94;
}

.feature-hover-content > p {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}

.more-feature-wrap:hover .feature-title > h4 {
  opacity: 0;
  visibility: hidden;
}

.more-feature-wrap:hover .feature-icon a i.hover-none {
  opacity: 0;
  visibility: hidden;
}

.feature-icon a i.normally-none {
  color: #fff;
  display: inline-block;
  opacity: 0;
  position: relative;
  right: 19px;
  top: -14px;
  transition: all 0.3s ease 0s;
  visibility: hidden;
}

.feature-icon a i.normally-none:hover {
  color: #009c94;
}

.more-feature-wrap:hover .feature-icon a i.normally-none {
  opacity: 1;
  visibility: visible;
}

/*modules-area */

.modules-area {
  position: relative;
}

.modules-margin {
  margin: 0px 35px;
}

.modules-wrap {
  padding: 35px 0;
  transition: all 0.3s ease 0s;
}

.modules-wrap:hover {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.modules-content {
  padding: 20px 15px 0 20px;
  position: relative;
  z-index: 99;
  border: 1px solid #fff;
}

.modules-content > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.modules-content > p {
  color: #fff;
  transition: all 0.3s ease 0s;
}

.modules-icon {
  width: 100%;
}

.modules-icon i {
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease 0s;
  display: block;
  background: #009c94;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 20px auto;
}

.modules-title > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  transition: all 0.3s ease 0s;
  line-height: 21px;
}

.modules-icon a i.normally-none {
  color: #fff;
  display: inline-block;
  opacity: 0;
  position: relative;
  right: 19px;
  top: -14px;
  transition: all 0.3s ease 0s;
  visibility: hidden;
}

.modules-icon a i.normally-none:hover {
  color: #009c94;
}

.modules-wrap:hover .modules-icon a i.normally-none {
  opacity: 1;
  visibility: visible;
}

/* works-video-area */

.works-video-img {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  position: relative;
}

.works-video-img > img {
  width: 100%;
}

.works-video {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

a.video-btn {
  background-color: #009c94;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 30px;
  height: 91px;
  line-height: 95px;
  text-align: center;
  width: 91px;
}

a.video-btn:hover {
  background-color: var(--orange-style);
}

.video-btn::before {
  animation: 1500ms ease-out 0s normal none infinite running border-jump;
  background: var(--green-style) none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  display: block;
  height: 90px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90px;
  z-index: -1;
}

.video-btn::after {
  background: var(--green-style) none repeat scroll 0 0;
  border-radius: 50%;
  content: "";
  display: block;
  height: 90px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 200ms ease 0s;
  width: 90px;
  z-index: -1;
}

.video-btn:hover:before,
.video-btn:hover:after {
  background: var(--orange-style);
}

[data-background] {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center;
}

@-webkit-keyframes border-jump {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    border-radius: 100%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    border-radius: 100%;
  }
}

@keyframes border-jump {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    border-radius: 100%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    border-radius: 100%;
  }
}

/* best-area */

.best-img > img {
  width: 100%;
}

.single-best-wrap {
  align-items: center;
  display: flex;
  margin: 0 0 30px;
}

.single-best-wrap h5 {
  color: #fff;
}

.single-best-wrap:last-child {
  margin: 0 0 0px;
}

.best-content-left .single-best-wrap {
  justify-content: flex-end;
}

.best-content-left .single-best-icon {
  margin: 0 0 0 34px;
}

.best-content-right .single-best-icon {
  margin: 0 34px 0 0px;
}

.single-best-icon i {
  color: var(--orange-style);
  font-size: 35px;
}

.single-best-icon img {
  width: 100px;
  height: auto;
}

.single-best-text > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.best-text-btn-wrap {
  align-items: flex-end;
  display: flex;
  margin: 45px 0 0 0;
}

.best-btn .default-btn {
  background-color: #009c94;
  color: #fff;
}

.best-text {
  margin: 0 35px 0 0;
  position: relative;
}

.best-text::before {
  background-image: url("../img/icon-img/arrow-right.png");
  background-position: center center;
  background-size: cover;
  content: "";
  height: 18px;
  position: absolute;
  right: -50px;
  top: -15px;
  width: 39px;
  z-index: -1;
}

.best-btn {
  margin: 0 auto;
}

.best-text > p {
  color: #75787d;
  font-size: 16px;
  margin: 0;
  font-family: "Satisfy", cursive;
}

/* footer area */

.support-text > h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  margin: 0;
}

.footer-top {
  padding: 0 0 68px;
}

.footer-title > h4 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

.single-footer-cont-info {
  display: flex;
  margin: 0 0 12px;
}

.single-footer-cont-info:last-child {
  margin: 0 0 0px;
}

.cont-info-icon {
  margin: 0 12px 0 0;
}

.cont-info-icon i {
  color: #fff;
  font-size: 14px;
  position: relative;
  top: 3px;
}

.cont-info-content > p {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.footer-social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 10px 0 0;
}

.footer-social li:last-child {
  margin: 0 0px 0 0;
}

.footer-social li a {
  font-size: 14px;
  color: #fff;
}

.footer-social {
  margin: 27px 0 0;
}

.single-twitter-info {
  display: flex;
  margin: 0 0 40px;
}

.single-twitter-info:last-child {
  margin: 0 0 0px;
}

.twitter-icon i {
  color: #009c94;
  font-size: 18px;
  position: relative;
  top: 4px;
}

.twitter-content > p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

.twitter-content > p a {
  color: #fff;
}

.twitter-icon {
  margin: 0 18px 0 0;
}

.instagram-img > ul {
  display: flex;
  flex-wrap: wrap;
}

.instagram-img li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 6px 6px 0;
  position: relative;
  width: 74px;
}

.footer-widget .instagram-img li {
  width: 84px;
}

.instagram-img img {
  width: 100%;
}

.instagram-img li::before {
  background: rgba(75, 139, 246, 0.75) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(0.5);
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

.instagram-img li:hover::before {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.footer-accordion h4 {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.footer-accordion h4 a {
  color: #fff;
  display: block;
  padding: 0 0 0 40px;
  position: relative;
}

.footer-accordion h4 a:hover,
.twitter-content > p a:hover,
.footer-social li a:hover,
.copyright > p a:hover {
  color: #009c94;
}

.footer-accordion .panel-body {
  padding: 14px 0 0 40px;
}

.footer-widget {
  color: #fff;
}

.panel-body > p {
  color: #ddd;
  font-size: 13px;
  margin: 0;
}

.faq-accordion .panel-title a.collapsed::before,
.faq-accordion .panel-title a::before {
  background-color: #3a3f49;
  border-radius: 100%;
  color: #fff;
  content: "";
  font-family: "themify";
  font-size: 12px;
  height: 30px;
  left: 0;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: -5px;
  width: 30px;
}

.faq-accordion .panel-title a::before {
  color: #fff;
  content: "";
}

.footer-accordion {
  margin: 0 0 35px;
}

.copyright > p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.copyright > p a {
  color: #fff;
}

/*---------- 3. Home page 2  ------------*/

.logo-2 {
  background-color: #0f1c2c;
  padding: 51px 60px 53px;
  transition: all 0.3s ease 0s;
}

.stick .logo-2 {
  padding: 22px 60px 24px;
}

.bar-icon.bar-icon-black button span {
  color: var(--orange-style);
}

.header-padding-2 .container-fluid {
  padding-left: 0;
  padding-right: 60px;
}

.wrap-sidebar-menu {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 50px 54px 0;
  width: 100%;
  position: relative;
}

.nav-icon-2 {
  margin: 0;
  position: absolute;
  right: 65px;
  top: 55px;
}

.sidebar-nav-icon.nav-icon-2 button {
  background: transparent none repeat scroll 0 0;
  color: var(--orange-style);
  padding: 0;
}

.sidebar-nav-icon.nav-icon-2 button:hover {
  color: #009c94;
}

.sidebar-logo {
  margin: 0 0 110px;
}

.sidebarmenu-style {
  padding-right: 170px;
}

.mainsibebar-menu {
  background: #ffffff none repeat scroll 0 0;
  color: #353535;
  height: 100vh;
  position: fixed;
  right: -546px;
  top: 0;
  transition: all 0.5s ease-in-out 0s;
  width: 546px;
  z-index: 9999;
}

.mainsibebar-menu.inside {
  right: 0;
}

.sidebarmenu-style ul li {
  list-style: outside none none;
  margin: 0 0 38px;
}

.sidebarmenu-style ul li:last-child {
  margin: 0 0 0px;
}

.sidebarmenu-style ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.sidebarmenu-style ul li:hover > a,
.sidebarmenu-style ul li a:hover i {
  color: #009c94;
}

.sidebarmenu-style ul li a i {
  color: #a1a5aa;
  float: right;
  font-size: 11px;
  position: relative;
  top: 10px;
}

.sidebarmenu-style ul li ul li {
  margin: 0 0 5px;
}

.sidebarmenu-style ul li ul li a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 0px;
}

.sidebarmenu-style ul li ul li.sub-style a {
  margin: 0 0 15px;
}

.sidebarmenu-style nav.menu ul li ul {
  padding-left: 16px;
}

.menu-social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 20px 0 0;
}

.menu-social li:last-child {
  margin: 0 0px 0 0;
}

.menu-social li a {
  color: var(--orange-style);
  font-size: 16px;
}

.sidebar-copyright > p {
  color: #81878a;
  font-size: 13px;
  margin: 0;
}

.sidebar-copyright > p a {
  color: #81878a;
}

.sidebar-copyright > p a:hover,
.menu-social li a:hover {
  color: #009c94;
}

.menu-social-copyright {
  padding: 300px 0 0;
}

.sidebar-copyright {
  margin: 25px 0 0;
}

/* slider h2 */

.slider-text-2 h4 {
  font-size: 14px;
  letter-spacing: 2.5px;
  margin: 0;
  position: relative;
}

.slider-text-2 h1 {
  font-family: "Playfair Display", serif;
  font-size: 120px;
  font-weight: bold;
  line-height: 120px;
  margin: 20px 0 71px;
}

.slider-btn-2 a {
  border: 2px solid var(--orange-style);
  color: var(--orange-style);
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  padding: 23px 53px 22px;
  text-transform: uppercase;
}

.slider-btn-2 a:hover {
  color: #fff;
}

.slider-area {
  position: relative;
}

.slider-area .counter-style-1 {
  background-color: #e2e5e5;
  border-radius: 80% 9px 0;
  bottom: 0;
  font-family: "Playfair Display", serif;
  height: 240px;
  padding-top: 76px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 225px;
  z-index: 9;
}

.slider-area .counter-style-1 span {
  position: relative;
}

.slider-area .counter-style-1 span.total::before {
  background: var(--orange-style) none repeat scroll 0 0;
  bottom: 10px;
  content: "";
  height: 2px;
  left: -15px;
  position: absolute;
  transform: rotate(-58deg);
  transition: all 0.3s ease 0s;
  width: 11px;
}

.slider-area .counter-style-1 span.current {
  font-size: 60px;
  color: var(--orange-style);
}

.slider-area .counter-style-1 span.total {
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  left: 12px;
  top: 15px;
}

/* history-product */

.history-title > h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: bold;
  margin: 0 0 43px;
}

.history-title > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin: 0 auto;
  width: 44%;
}

.history-product img {
  width: 100%;
}

.fashion-history-area .row {
  margin-left: -10px;
  margin-right: -10px;
}

.fashion-history-area .row div[class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.history-product-top {
  margin: 0 0 20px;
}

.history-product.history-minus-2 {
  margin-right: -70px;
}

.custom-history .col-lg-5-history {
  flex: 0 0 48%;
  max-width: 48%;
}

.custom-history .col-lg-7-history {
  flex: 0 0 52%;
  max-width: 52%;
}

.zoom-hover {
  overflow: hidden;
}

.zoom-hover img {
  transition: all 1.5s ease 0s;
  width: 100%;
}

.zoom-hover:hover img {
  transform: scale(1.2);
}

/* product area */

.product-img img {
  width: 100%;
}

.custom-padding-mrg .row {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.custom-padding-mrg .row div[class^="col-"] {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.product-menu-1 {
  display: flex;
  justify-content: space-between;
}

.product-menu-1 button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  font-family: "Playfair Display", serif;
  position: relative;
  cursor: pointer;
}

.product-menu-1 button.active {
  position: relative;
  font-size: 36px;
}

.product-menu-1 button::before {
  background: #213248 none repeat scroll 0 0;
  bottom: -30px;
  content: "";
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transition: all 0.3s ease 0s;
  width: 65px;
}

.product-menu-1 button:hover::before,
.product-menu-1 button.active::before,
.portfolio-menu-1 button:hover::before,
.portfolio-menu-1 button.active::before {
  transform: scaleX(1);
}

/* blog area */

.blog-wrap {
  transition: all 0.3s ease 0s;
}

.blog-img img {
  width: 100%;
}

.blog-hover-content {
  bottom: 33px;
  left: 0;
  opacity: 0;
  padding: 0 35px;
  position: absolute;
  visibility: hidden;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease 0s;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
}

.blog-meta > h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.blog-meta > a i {
  color: #656a6f;
  font-size: 16px;
  position: relative;
  top: 2px;
}

.blog-content {
  padding: 30px 35px 0;
}

.blog-content > span,
.blog-hover-content > span {
  color: #999;
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 10px;
  margin: 17px 0 0;
  text-transform: uppercase;
}

.blog-wrap:hover .blog-content {
  opacity: 0;
  visibility: hidden;
}

.blog-wrap:hover .blog-hover-content {
  opacity: 1;
  visibility: visible;
}

.blog-hover-content > h4 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: bold;
  margin: 0px;
}

.blog-hover-content > h4 a {
  color: #fff;
}

.blog-more > a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.blog-more > a > span {
  float: right;
}

.blog-more {
  display: flex;
  justify-content: space-between;
  margin: 74px 0 0;
}

.blog-more > a i {
  font-size: 16px;
  position: relative;
  top: 1px;
}

.blog-hover-content > h4 a:hover,
.blog-more > a:hover {
  color: #009c94;
}

.blog-title > h2 {
  font-size: 46px;
  font-weight: bold;
  margin: 0;
}

/* info area */

.information-active h2 {
  font-size: 55px;
  font-weight: bold;
  line-height: 72px;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.pagination-style1.pagination-black .owl-dots .owl-dot {
  color: var(--orange-style);
}

.pagination-style1.pagination-black .owl-dots .owl-dot.active {
  color: var(--orange-style);
}

.pagination-style1.pagination-black .owl-dots .owl-dot::before {
  background: var(--orange-style) none repeat scroll 0 0;
}

.subscribe-style h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 35px;
}

.subscribe-form form input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e5e5e5;
  color: #333;
  font-size: 15px;
  height: 55px;
  padding: 2px 80px 2px 24px;
  font-family: "Open Sans", sans-serif;
}

.subscribe-form form input::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.subscribe-form form input::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.subscribe-form form .mc-form {
  position: relative;
}

.mc-news {
  display: none;
}

.mc-form .clear {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 9;
}

.subscribe-form .mc-form .clear::before {
  color: var(--orange-style);
  content: "";
  font-family: LineAwesome;
  font-size: 30px;
  position: absolute;
  right: 25px;
  top: 5px;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

.subscribe-form .mc-form .clear:hover::before {
  color: #009c94;
}

.subscribe-form .clear input {
  border: medium none;
  cursor: pointer;
  padding: 0;
  text-indent: -99999px;
  width: 80px;
}

.subscribe-form-3 .clear input {
  border: medium none;
  cursor: pointer;
  padding: 0;
  text-indent: -99999px;
  width: 43px;
}

/* footer area */

.footer-wrap {
  display: flex;
  justify-content: space-between;
}

.footer-menu li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 28px 0 0;
}

.footer-menu li a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-menu li:last-child {
  margin: 0 0px 0 0;
}

.footer-social-2 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 0 0 20px;
}

.footer-social-2 li:first-child {
  margin: 0 0 0 0px;
}

.footer-social-2 li a {
  font-size: 21px;
}

/*----------- 4. Home page 3 ----------------*/

.logo-menu-wrap {
  display: flex;
}

.header-black .main-menu ul li a {
  color: var(--orange-style);
  line-height: 112px;
}

.header-black .main-menu ul li ul li a,
.header-black-2 .main-menu ul li ul li a {
  line-height: 1;
}

.stick.header-black .main-menu ul li ul li a,
.stick.header-black-2 .main-menu ul li ul li a {
  line-height: 1;
}

.header-black-2 .main-menu ul li ul li.mega-menu-title a {
  font-size: 14px;
  font-family: "Gothic A1", sans-serif;
}

.header-black-2 .main-menu ul li ul li a {
  font-size: 14px;
}

.main-menu.main-menu-left nav > ul > li > ul.mega-menu.mega-menu-width-img {
  left: -307px;
  width: 1085px;
}

.stick.header-black .main-menu ul li a {
  line-height: 70px;
}

.header-black .bar-icon button span,
.header-black .header-search button span {
  color: var(--orange-style);
}

.electric-purple .main-menu ul li:hover > a,
.header-black .bar-icon button:hover span,
.header-black .header-search button:hover span {
  color: #13c1ee;
}

/* slider home 3 */

.slider-padding-1 .container-fluid {
  padding-left: 240px;
  padding-right: 200px;
}

.slider-text-3 h1 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 55px;
  margin: 0 0 38px;
  text-transform: uppercase;
}

.slider-text-3 > p {
  color: var(--orange-style);
  font-size: 24px;
  line-height: 38px;
  margin: 0;
}

.slider-img img {
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: bounce-img;
  max-width: 880px;
}

.slider-img.slider-img-position {
  position: absolute;
  right: 165px;
  top: 200px;
}

/* slider img bounce */

@-webkit-keyframes bounce-img {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes bounce-img {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* about area h3 */

.about-feature i {
  color: var(--orange-style);
  font-size: 50px;
  transition: all 0.3s ease 0s;
}

.about-feature h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 0;
}

.about-feature {
  padding: 65px 20px 63px;
  transition: all 0.3s ease 0s;
}

.about-feature:hover {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.about-feature:hover i {
  color: #13c1ee;
}

.section-title-2 > h2 {
  font-size: 50px;
  font-weight: bold;
  line-height: 39px;
  margin: 0;
  text-transform: uppercase;
}

.about-text > p {
  color: #535557;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 33px 0 41px;
  font-family: "Roboto", sans-serif;
}

/* works area 2 h3 */

.works-img-2 > img,
.testimonial-bg-img img {
  width: 100%;
}

.works-title-2 {
  border-bottom: 1px solid #cbd1d4;
  margin-bottom: 70px;
  padding-bottom: 56px;
}

.works-title-2 h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.works-title-2 > p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
}

.works-feature > span {
  background-color: #fff;
  border-radius: 50px;
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  height: 75px;
  line-height: 75px;
  text-align: center;
  width: 75px;
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  transition: all 0.3s ease 0s;
}

.works-feature > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 32px 0 15px;
}

.works-feature > p {
  color: #535557;
  font-size: 14px;
  margin: 0;
  width: 95%;
}

.works-content-2 {
  padding: 127px 177px 132px 137px;
}

.works-feature.wf-mrg-left {
  margin-left: 88px;
}

.works-area-2,
.testimonial-area-2 {
  position: relative;
}

.works-img-2,
.testimonial-bg-img {
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 2;
}

.works-img-2 img,
.testimonial-bg-img img {
  height: 100%;
  transition: all 0.3s linear 0s;
  will-change: transform, top;
  z-index: 0;
}

.works-feature:hover span {
  background-color: #009c94;
  color: #fff;
}

/* portfolio area h3 */

.section-title-2 > p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 36px 0 0;
  width: 64%;
}

.portfolio-menu-1 > button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 39px 0 0;
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: all 0.3s linear 0s;
}

.portfolio-menu-1 > button:last-child {
  margin: 0 0px 0 0;
}

.section-title-2.pro-section-width > p {
  width: 64%;
}

.portfolio-menu-1 button::before {
  background: var(--green-style) none repeat scroll 0 0;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transition: all 0.3s ease 0s;
  width: 100%;
}

.portfolio-menu-1 button:hover,
.portfolio-menu-1 button.active {
  color: #009c94;
}

/* funfact area */

.single-count {
  padding: 54px 20px 49px;
  transition: all 0.3s ease 0s;
}

.single-count:hover {
  background-color: #fff;
}

.single-count:hover .count-icon span,
.single-count:hover .count-title > span,
.single-count:hover .count-title h2 {
  color: #009c94;
}

.count-icon span {
  font-size: 44px;
  transition: all 0.3s ease 0s;
}

.count-icon {
  margin: 0 0 24px;
}

.count-title h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 7px;
}

.count-title > span {
  color: var(--orange-style);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.single-count:hover {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
}

/* video area */

.video-area.default-overlay::before {
  background-color: var(--orange-style);
  opacity: 0.89;
}

.video-wrap {
  align-items: center;
  display: flex;
  padding: 0 68px 0 74px;
}

.video-content > h5 {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-icon > a {
  background-color: #fff;
  border-radius: 100%;
  color: var(--orange-style);
  display: inline-block;
  font-size: 24px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  width: 75px;
  position: relative;
  z-index: 9;
}

.video-icon > a:hover {
  color: #009c94;
}

.video-content {
  margin: 0 72px 0 0;
}

.video-icon > a::before,
.video-icon > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  animation: doubleborder 1s ease-in-out infinite backwards;
}

.video-icon > a::after {
  animation-delay: 0.3s;
}

@-webkit-keyframes doubleborder {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes doubleborder {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* blog area h3 */

.section-title-2 > p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 36px 0 0;
  width: 94%;
  color: #535557;
}

.blog-all-btn {
  margin: 78px 0 0;
}

.blog-all-btn .default-btn {
  border: 1px solid #1d2f45;
  padding: 16px 32px;
}

.blog-all-btn .default-btn:hover {
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
}

.blog-meta-2 li {
  color: #333;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  list-style: outside none none;
  margin: 0 20px 0 0;
  position: relative;
  text-transform: uppercase;
}

.blog-meta-2 li a {
  color: #333;
}

.blog-meta-2 li a:hover {
  color: #009c94;
}

.blog-meta-2 li::before {
  background: #b4b7bb none repeat scroll 0 0;
  content: "";
  height: 2px;
  position: absolute;
  right: -12px;
  top: 7px;
  transition: all 0.3s ease-in-out 0s;
  width: 2px;
}

.blog-conent-2 > h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin: 8px 0 0;
}

.blog-conent-2 > h4 a:hover,
.footer-social-h3 li a:hover {
  color: #009c94;
}

.blog-conent-2 {
  margin: 26px 30px 0 0;
}

.blog-area-h3 .row {
  margin-left: -20px;
  margin-right: -20px;
}

.blog-area-h3 .row div[class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

.blog-img {
  overflow: hidden;
  border: 10px solid #fff;
}

/* testimonial area h3 */

.single-testimonial-2 > p {
  color: var(--orange-style);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  margin: 0 auto;
  width: 75%;
}

.quote-img {
  margin: 0 0 68px;
}

.client-info > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 13px 0 6px;
}

.client-info > span {
  color: var(--orange-style);
  font-weight: 300;
}

.client-info {
  margin: 26px 0 0;
}

.hm3-testimonial-padding {
  padding: 148px 30px 142px;
}

.testimonial-active-2.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

/* contact area h3 */

.section-title-2.contact-sec-title > p {
  width: 80%;
}

.contact-form-h3 {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  padding: 60px 50px;
}

.contact-form-h3 form input,
.contact-form-h3 form textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e5e5e5;
  color: #333;
  font-size: 15px;
  height: 55px;
  padding: 2px 15px 2px 24px;
  font-family: "Open Sans", sans-serif;
}

.copyright.copyright-hm3 {
  margin: 2px 0 0;
}

.made-in {
  margin: 3px 0 0;
}

.contact-form-h3 form textarea {
  height: 118px;
  padding: 16px 23px;
}

.contact-form-style .submit {
  background-color: var(--orange-style);
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 15px 0 0;
  padding: 17px 20px 20px;
  text-transform: uppercase;
  width: 100%;
  z-index: 9;
}

.contact-form-style .submit::before {
  background: #13c1ee;
}

.contact-form-h3 form input::-moz-placeholder,
.contact-form-h3 form textarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.contact-form-h3 form input::-webkit-input-placeholder,
.contact-form-h3 form textarea::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.form-messege {
  margin: 0;
}

.single-cont-infoh3 {
  display: flex;
  margin: 0 0 36px;
}

.single-cont-infoh3:last-child {
  display: flex;
  margin: 0 0 0px;
}

.cont-infoh3-content > p {
  color: var(--orange-style);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.cont-infoh3-icon i {
  color: #c3c9cc;
  font-size: 36px;
  position: relative;
  top: -3px;
}

.cont-infoh3-icon {
  margin: 0 27px 0 0;
}

.cont-infoh3-icon:last-child {
  margin: 0 0px 0 0;
}

.cont-infoh3-wrap {
  margin: 64px 0 0;
}

/* footer area hm3 */

.copyright.copyright-hm3 > p {
  color: var(--orange-style);
  font-size: 14px;
  margin: 0;
}

.copyright.copyright-hm3 > p a {
  color: var(--orange-style);
}

.copyright.copyright-hm3 > p a:hover {
  color: #009c94;
}

.footer-social-h3 li {
  display: inline-block;
  margin: 0 12px;
}

.footer-social-h3 li a {
  color: var(--orange-style);
  font-size: 20px;
}

.made-in > p {
  color: var(--orange-style);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
}

/*--------------- 5. Home page 4 -----------------*/

.stick .hm4-logo-show {
  display: none;
}

.stick .logo-3 > a {
  background-color: #ab7062;
  height: 53px;
  line-height: 49px;
  width: 55px;
}

.hm4-logo-hidden {
  display: none;
}

.stick .hm4-logo-hidden {
  display: inline-block;
}

.stick .bar-icon button.navbar-bg-round {
  background: #ab7062 none repeat scroll 0 0;
  height: 53px;
  line-height: 58px;
  width: 55px;
}

.stick .bar-icon.bar-icon-black button.navbar-bg-round span {
  color: #fff;
}

.stick .bar-icon button.navbar-bg-round:hover {
  background: rgba(171, 112, 98, 0.8) none repeat scroll 0 0;
}

.logo-3.mt-45,
.header-right-wrap.mt-45 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.bar-icon button.navbar-bg-round {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  border-radius: 100%;
  height: 64px;
  line-height: 70px;
  width: 66px;
}

.bar-icon button.navbar-bg-round:hover {
  background: rgba(171, 112, 98, 0.5) none repeat scroll 0 0;
}

.bar-icon button.navbar-bg-round:hover span {
  color: #fff;
}

.logo-3 > a {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 64px;
  line-height: 60px;
  text-align: center;
  width: 66px;
}

.header-padding-3 .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

/* slider h4 */

.slider-text-4 {
  z-index: 9;
  position: relative;
}

.slider-text-4 h1 {
  color: #fff;
  font-size: 80px;
  font-weight: bold;
  line-height: 90px;
  margin: 0 0 45px;
}

.slider-btn-3 a {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.slider-btn-3 a:hover {
  color: #ddd;
}

.slider-btn-3 a i {
  font-size: 18px;
  margin: 0 0 0 12px;
  position: relative;
  top: 2px;
}

.counter-style-2 {
  bottom: 50px;
  position: absolute;
  right: 375px;
  z-index: 9;
}

.counter-style-2 span {
  position: relative;
}

.counter-style-2 span.current {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}

.counter-style-2 span.total::before {
  background: #fff none repeat scroll 0 0;
  bottom: 10px;
  content: "";
  height: 2px;
  left: -15px;
  position: absolute;
  transform: rotate(-58deg);
  transition: all 0.3s ease 0s;
  width: 11px;
}

.counter-style-2 span.total {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  top: 20px;
}

/* successful area h4 */

.successful-content {
  margin: 102px 0 0;
}

.successful-content > h2 {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}

.successful-content > p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 30px 0 45px;
  color: #444;
}

.successful-btn .default-btn {
  border: 1px solid #1c1e22;
  color: #1c1e22;
  padding: 22px 48px;
}

.successful-btn .default-btn:hover {
  background-color: transparent;
  border: 1px solid #ab7062;
  color: #fff;
}

.successful-btn .btn-hover::before {
  background: #ab7062 none repeat scroll 0 0;
}

.successful-img > img {
  width: 100%;
}

.successful-img {
  margin: 0 -67px -120px 18px;
}

/* service area hm4 */

.service-2-digit > span {
  color: #ab7062;
  font-size: 70px;
  font-weight: bold;
  line-height: 38px;
}

.single-service-2 {
  display: flex;
}

.service-2-content > h4 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 19px;
}

.service-2-content > p {
  color: #fff;
  line-height: 27px;
  margin: 0;
}

.service-2-digit {
  margin: 0 22px 0 0;
}

/* feature area hm4 */

.feature-title > h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 0px;
}

.feature-slider-content > h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.feature-slider-content > p {
  color: #444;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 25px 0 32px;
  width: 55%;
}

.feature-slider-btn > a {
  color: #1c1e22;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-slider-btn > a:hover {
  color: #ab7062;
}

.feature-slider-btn > a i {
  font-size: 18px;
  margin: 0 0 0 13px;
  position: relative;
  top: 2px;
}

.nav-style1 {
  position: relative;
}

.nav-style1 .owl-nav div {
  display: inline-block;
  margin: 0 18px 0 0;
  font-size: 24px;
}

.nav-style1 .owl-nav div:last-child {
  margin: 0 0px 0 0;
}

.nav-style1 .owl-nav {
  color: #989a9e;
  font-size: 24px;
  left: 55%;
  position: absolute;
  top: -5px;
}

.nav-style1 .owl-nav div:hover {
  color: #ab7062;
}

/* brand logo hm4 */

.brand-logo-active.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.single-brand-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 92px;
}

/* information area hm4 */

.information-img2 > img {
  width: 100%;
}

.information-content2 > h2 {
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  margin: 0;
}

.information-list2 li {
  color: #fff;
  font-size: 16px;
  list-style: outside none none;
  margin: 0 0 18px;
}

.information-list2 li i {
  font-size: 16px;
  margin: 0 20px 0 0;
}

.information-list2 li:last-child {
  color: #fff;
  font-size: 16px;
  list-style: outside none none;
  margin: 0 0 18px;
}

.information2-btn .default-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 22px 48px;
}

.information2-btn .default-btn:hover {
  color: var(--orange-style);
}

.information2-btn .btn-hover::before {
  background: #fff none repeat scroll 0 0;
}

.information-list2 {
  margin: 40px 0 53px;
}

/* footer area */

.footer-title.footer-title-black > h4 {
  color: #1c1e22;
}

.footer-social2 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 16px 0 0;
}

.footer-social2 li:last-child,
.useful-links li:last-child {
  margin: 0 0px 0 0;
}

.footer-social2 li a {
  font-size: 18px;
  color: #1c1e22;
}

.useful-links li {
  list-style: outside none none;
  margin: 0 0 15px;
}

.useful-links li a {
  color: #333;
  display: block;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.useful-links li a i {
  font-size: 14px;
  margin: 0 20px 0 0;
}

.footer-contact2 > p {
  color: #333;
  font-size: 14px;
  margin: 0 0 11px;
  font-family: "Open Sans", sans-serif;
}

.footer-contact2 > p a {
  color: #333;
}

.copyright.copyright-hm4 > p,
.copyright.copyright-hm4 > p a {
  color: #333;
}

.copyright.copyright-hm4 > p a:hover,
.useful-links li a:hover,
.footer-social2 li a:hover,
.footer-contact2 > p a:hover {
  color: #ab7062;
}

.footer-social2 {
  margin: -4px 0 0;
}

.copyright.copyright-hm4 {
  margin: -5px 0 0;
}

/*---------- 6. Home page 5  -----------*/

/* header area */

.home4-wrapper {
  padding: 0 75px;
  position: relative;
}

.home4-wrapper::before {
  background-color: #ebebeb;
  content: "";
  height: 100%;
  left: 268px;
  position: absolute;
  top: 0;
  width: 1px;
  display: none;
}

.home4-wrapper .sticky-bar.stick {
  padding: 0 75px;
}

.header-black-2 .main-menu ul li a {
  color: #1e2127;
  font-family: "Gothic A1", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130px;
  text-transform: capitalize;
}

.stick.header-black-2 .main-menu ul li a {
  line-height: 70px;
}

.stick .logo-hm5.mt-52 {
  margin-top: 22px;
}

.stick .header-social-language.mt-55 {
  margin-top: 21px;
}

.logo-hm5 {
  transition: all 0.3s ease 0s;
}

.header-social-language {
  display: flex;
}

.header-social li {
  display: inline-block;
  margin: 0 17px 0 0;
}

.header-social li a {
  font-size: 18px;
  color: #1c1e22;
}

.language ul li a {
  color: #1e2127;
  font-size: 12px;
  font-family: "Gothic A1", sans-serif;
}

.language ul li:hover > a,
.header-social li a:hover {
  color: #009c94;
}

.header-social li:last-child {
  margin: 0 0px 0 0;
}

.language ul li {
  list-style: outside none none;
  position: relative;
}

.language ul li ul.lang-dropdown {
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(85, 85, 85, 0.2);
  display: none;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  text-align: right;
  top: 100%;
  width: 90px;
  z-index: 99;
  border-radius: 3px;
}

.language {
  margin: 2px 0 0;
}

.language ul li ul li a {
  display: block;
  padding: 0 0 4px;
}

.language ul li ul li:last-child a {
  padding: 0 0 0px;
}

/* slider area hm5 */

.slider-height-1 {
  min-height: 750px;
}

.slider-text-5 h5 {
  color: #1e2127;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
  font-family: "Gothic A1", sans-serif;
}

.slider-text-5 h1 {
  color: #1e2127;
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  margin: 38px 0 0;
}

.slider-text-5 h1 a {
  font-size: 50px;
  left: 12px;
  line-height: 1;
  position: relative;
  top: 3px;
}

.slider-text-5 h1 a i {
  line-height: 1;
}

.project-img > img {
  width: 100%;
}

.counter-style-3 {
  bottom: 70px;
  left: 285px;
  position: absolute;
  z-index: 99;
}

.counter-style-3 span {
  font-size: 16px;
  margin: 0 15px;
  position: relative;
  font-family: "Gothic A1", sans-serif;
}

.counter-style-3 span::before {
  background: #1e2127 none repeat scroll 0 0;
  bottom: 9px;
  content: "";
  height: 1px;
  position: absolute;
  right: -22px;
  transition: all 0.3s ease 0s;
  width: 17px;
}

.counter-style-3 span:last-child::before {
  display: none;
}

.slider-text-5 {
  margin-top: -37px;
}

/* project area hm5 */

.project-content > h5 {
  color: #1e2127;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  font-family: "Gothic A1", sans-serif;
}

.project-content > h2 {
  color: #1e2127;
  font-family: "Gothic A1", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
  margin: 32px 0 97px;
}

.project-content > h2 a {
  color: #1e2127;
}

.project-content > h2 a i {
  font-size: 40px;
  position: relative;
  top: 2px;
}

.project-content > h2 a:hover {
  color: #009c94;
}

.project-img {
  overflow: hidden;
}

.project-content > span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  font-family: "Gothic A1", sans-serif;
}

.project-content {
  padding: 0 120px 0 0;
}

.project-area .row {
  margin-left: -30px;
  margin-right: -30px;
}

.project-area .row div[class^="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}

/* funfact area hm5 */

.counter-title h3 {
  color: #fff;
  font-family: "Gothic A1", sans-serif;
  font-size: 36px;
  font-weight: 200;
  line-height: 52px;
  margin: 0;
}

.counter-title {
  margin: 0 0 74px;
}

.counter-wrap {
  display: flex;
}

.single-count2 h2 {
  color: #fff;
  font-size: 41px;
  font-weight: 800;
  margin: 0 0 9px;
  font-family: "Gothic A1", sans-serif;
}

.single-count2 span,
.single-count3-content > span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Gothic A1", sans-serif;
}

.count2-mrg1 {
  margin: 0 108px 0 0;
}

.count2-mrg2 {
  margin: 0 81px 0 0;
}

.count2-mrg3 {
  margin: 0 73px 0 0;
}

.single-count3-style {
  border: 4px solid #d5d7da;
  display: inline-block;
  height: 280px;
  min-width: 280px;
  padding-left: 41px;
  text-align: left;
  margin: 10px 0 0;
}

.single-count3-style h2 {
  color: #fff;
  font-family: "Gothic A1", sans-serif;
  font-size: 140px;
  font-weight: 800;
  line-height: 90px;
  margin: 3px 0 20px;
}

.sc-counter-wrap2 .single-count3-style {
  min-width: 100%;
}

.count3-icon {
  display: block;
  margin: 21px 47px 62px 0;
  overflow: hidden;
}

.count3-icon > a {
  color: #63686d;
  float: right;
  font-size: 16px;
}

.count3-icon > a:hover {
  color: #fff;
}

.single-count3-style > span {
  padding-left: 6px;
}

/* testimonial area hm5 */

.testimonial-active-3.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.section-title-3 > span {
  color: #1e2127;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Gothic A1", sans-serif;
}

.section-title-3 > h2 {
  color: #1e2127;
  font-family: "Gothic A1", sans-serif;
  font-size: 50px;
  font-weight: 500;
  margin: 26px 0 0;
}

.client3-content > p {
  color: #444;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
  font-family: "Gothic A1", sans-serif;
}

.client3-content {
  border: 1px solid #e7e9ec;
  padding: 40px 40px 65px;
}

.client3-info {
  align-items: center;
  background-color: #fff;
  display: flex;
  float: left;
  margin-left: 32px;
  margin-top: -44px;
  padding-right: 18px;
  position: relative;
  z-index: 99;
}

.client3-info > h5 {
  color: var(--orange-style);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0 22px 0 10px;
  position: relative;
}

.client3-info > h5::before {
  background-color: #95999e;
  content: "";
  height: 1px;
  position: absolute;
  right: -15px;
  top: 8px;
  width: 7px;
}

.client3-info > span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* footer area hm5 */

.footer-work-title {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  font-family: "Gothic A1", sans-serif;
}

.footer-title2 h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase;
  font-family: "Gothic A1", sans-serif;
  font-weight: 500;
}

.footer-addres-hm5 > p {
  color: #ffffff;
  font-family: "Gothic A1", sans-serif;
  font-size: 15px;
  line-height: 32px;
  margin: 0;
}

.footer-addres-hm5 > p a {
  color: #ffffff;
}

.copyright.copyright-hm5 > p {
  color: var(--orange-style);
  font-family: "Gothic A1", sans-serif;
}

.copyright.copyright-hm5 > p a {
  color: var(--orange-style);
}

.copyright.copyright-hm5 > p a:hover,
.footer-addres-hm5 > p a:hover {
  color: #009c94;
}

/*---------- 7. Home page 6  -----------*/

/* slider area*/

.slider-height-2 {
  min-height: 830px;
}

.header-black.header-height-1 .main-menu ul li a {
  color: var(--orange-style);
  line-height: 126px;
}

.stick.header-black.header-height-1 .main-menu ul li a {
  line-height: 70px;
}

.header-height-1 .main-menu ul li:hover > a,
.header-black.header-height-1 .bar-icon button:hover span,
.header-black.header-height-1 .header-search button:hover span {
  color: #009c94;
}

.slider-text-6 h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
  margin: 0px;
}

.slider-text-6 h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 32px 0 52px;
}

.slider-btn-4 .default-btn {
  border: 1px solid #1d2e44;
  padding: 23px 45px;
}

.slider-btn-4 .default-btn:hover {
  color: #fff;
}

.pagination-style3 .owl-dots {
  bottom: 40px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.pagination-style3 .owl-dot {
  background: #a1b1c5 none repeat scroll 0 0;
  border-radius: 50px;
  display: inline-block;
  height: 12px;
  margin: 0 5px;
  width: 12px;
}

.pagination-style3 .owl-dot.active {
  background: var(--orange-style) none repeat scroll 0 0;
  height: 12px;
  position: relative;
  width: 12px;
}

/* banner area  hm6 */

.single-banner img {
  width: 100%;
}

.section-padding-1 .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.banner-padding-1 .row {
  margin-left: -20px;
  margin-right: -20px;
}

.banner-padding-1 .row div[class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

.single-banner {
  position: relative;
}

.banner-content {
  left: 0;
  padding: 20px 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.banner-content > h4 {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  text-transform: uppercase;
}

.banner-content.content-left {
  left: 82px;
  padding: 20px 10px;
}

.banner-content > h4::before {
  background: var(--orange-style) none repeat scroll 0 0;
  bottom: 5px;
  content: "";
  height: 1px;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 35px;
}

.banner-content.content-left > h4::before {
  left: -64px;
}

.banner-content.content-right > h4::before {
  right: -64px;
}

/* bestselling area  hm6 */

.section-title-4 > h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 22px;
}

.section-title-4 > p {
  color: #444;
  margin: 0 auto;
  width: 19%;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.custom-col-5 {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.single-bestselling,
.bestselling-img {
  position: relative;
}

.bestselling-img > span {
  background-color: var(--orange-style);
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 58px;
  letter-spacing: 1px;
  line-height: 59px;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 20px;
  width: 58px;
}

.bestselling-content {
  display: flex;
  justify-content: space-between;
  padding: 26px 0 0;
}

.bestselling-content > h4,
.bestselling-content > span {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.bestselling-content > span {
  color: #666;
}

.show-more-btn > a {
  color: var(--orange-style);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.show-more-btn > a:hover {
  color: #009c94;
}

.show-more-btn > a::before,
.show-more-btn > a::after {
  background: #a1a5aa none repeat scroll 0 0;
  bottom: 11px;
  content: "";
  height: 1px;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 35px;
}

.show-more-btn > a::before {
  left: -63px;
}

.show-more-btn > a::after {
  right: -62px;
}

.toggle-item-active {
  display: none;
}

/* summer addition area  hm6 */

.summer-addition-content > h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.summer-addition-content > p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  margin: 26px 0 48px;
}

.summer-btn .default-btn {
  background-color: #f1f2f6;
  padding: 23px 50px;
}

.summer-btn .default-btn:hover {
  color: #fff;
}

.summer-addition-content {
  background-color: #fff;
  margin-left: -100px;
  padding: 50px 15px 60px 50px;
}

.summer-addition-img {
  overflow: hidden;
}

/* instragram area  hm6 */

.instragram-title > h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.subscribe-style-2 > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 38px;
}

/* footer area  hm6 */

.footer-menu-2 ul li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 13px;
}

.footer-menu-2 ul li a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-menu-2 {
  margin: 35px 0 40px;
}

.footer-social-hm6 li {
  display: inline-flex;
  list-style: outside none none;
  margin: 0 10px;
}

.footer-social-hm6 li a {
  color: var(--orange-style);
  font-size: 16px;
}

.footer-social-hm6 li a:hover {
  color: #009c94;
}

/*------------- 8. Home page 7 ----------------*/

.header-padding-4 .container-fluid,
.footer-padding-1 .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.header-hm7 {
  padding: 0 0 20px;
}

.summary-info-hm7 .sidebar-nav-icon button {
  background: #11d4b2 none repeat scroll 0 0;
}

.summary-info-hm7 .summary-list li i,
.summary-info-hm7 .sidebar-contact-list li i,
.main-search-hm7 .sidebar-search-icon:hover button,
.main-search-hm7 .sidebar-search-input form .form-search:hover button {
  color: #11d4b2;
}

.stick.header-hm7 .bar-icon button:hover span,
.stick.header-hm7 .header-search button:hover span {
  color: #11d4b2;
}

/* slider area */

.slider-height-3 {
  min-height: 1505px;
}

.slider-gradient::before {
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(32, 36, 40, 0) 0%, rgba(32, 36, 40, 1) 100%)
    repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.slider-text-7 h1 {
  color: #fff;
  font-size: 140px;
  line-height: 110px;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.slider-text-7 > p {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 40px;
  margin: 50px 0 55px;
  width: 50%;
}

.slider-btn-5 a {
  background-color: #fff;
  border-radius: 50px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  padding: 22px 36px;
  text-transform: uppercase;
  z-index: 9;
}

.slider-btn-5 a:hover {
  color: #fff;
}

.slider-btn-5 .btn-hover::before {
  border-radius: 50px;
}

/* work area hm7 */

.section-title-5 > h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 46px;
  margin: 0;
  text-transform: uppercase;
}

/* works area hm7 */

.single-works {
  box-shadow: 0 1px 35px rgba(13, 15, 17, 0.25);
}

.single-count4 {
  border: 4px solid #282c31;
  border-radius: 5px;
  padding: 23px 36px 27px 45px;
}

.single-count4-content {
  margin: 64px 0 0;
}

.single-count4-content h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: bold;
  line-height: 90px;
  margin: 0 0 24px;
}

.count4-icon > a {
  color: #ccc;
  display: block;
  float: right;
  font-size: 16px;
}

.count4-icon > a:hover {
  color: #fff;
}

.count4-icon {
  display: block;
  overflow: hidden;
}

.single-count4-content > span {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  font-family: "Gothic A1", sans-serif;
}

/* contact area hm7 */

.contact-hm7 .cont-infoh3-icon i,
.contact-hm7 .cont-infoh3-content > p a:hover,
.footer-hm7 .footer-social-h3 li a:hover {
  color: #11d4b2;
}

.contact-hm7 .cont-infoh3-content > p,
.contact-hm7 .cont-infoh3-content > p a {
  color: #fff;
}

.contact-hm7 .contact-form-h3 {
  box-shadow: 0 1px 35px rgba(13, 15, 17, 0.25);
  border-radius: 10px;
  background-color: #282c31;
}

.contact-hm7 .contact-form-h3 form input,
.contact-hm7 .contact-form-h3 form textarea {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: transparent none repeat scroll 0 0;
  border-color: #444a50;
  border-image: none;
  border-style: none none solid;
  border-width: medium medium 1px;
  font-family: "Roboto", sans-serif;
  padding: 2px 15px 2px 0;
  color: #fff;
}

.contact-hm7 .contact-form-h3 form textarea {
  height: 118px;
  padding: 16px 23px 16px 0;
}

.contact-hm7 .contact-form-h3 form input::-moz-placeholder,
.contact-hm7 .contact-form-h3 form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.contact-hm7 .contact-form-h3 form input::-webkit-input-placeholder,
.contact-hm7 .contact-form-h3 form textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.contact-hm7 .contact-form-style .submit {
  background-color: #fff;
  border-radius: 50px;
  color: #202428;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: bold;
  margin: 42px 0 0;
  padding: 18px 20px 17px;
}

.contact-hm7 .contact-form-style .submit::before {
  background: #11d4b2 none repeat scroll 0 0;
  border-radius: 50px;
}

/* footer area hm7 */

.footer-hm7 .copyright > p,
.footer-hm7 .copyright > p a,
.footer-hm7 .made-in > p {
  color: #fff;
  margin: 0;
}

.footer-hm7 .copyright > p a:hover {
  color: #11d4b2;
}

.footer-hm7 .footer-social-h3 li a {
  color: #fff;
}

/*----------- 9. Home page 8 ----------------*/

/* header area */

.header-black.header-height-2 .main-menu ul li a {
  line-height: 136px;
}

.header-area.header-height-2 {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  position: relative;
}

.header-area.header-height-2.stick {
  position: fixed;
}

.header-black.header-height-2.stick .main-menu ul li a {
  line-height: 70px;
}

.stick .hm8.mt-45 {
  margin-top: 8px;
}

.header-black .bar-icon button.navbar-theme-color:hover span,
.header-black .header-search button.search-theme-color:hover span {
  color: #009c94;
}

/* portfolio area hm8 */

.section-padding-2 .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.custom-row-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.flex-content-center {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.width-40-parcent {
  flex: 0 0 40%;
  max-width: 40%;
}

.width-70-parcent {
  flex: 0 0 70%;
  max-width: 70%;
}

.width-80-parcent {
  flex: 0 0 80%;
  max-width: 80%;
}

.width-20-parcent {
  flex: 0 0 20%;
  max-width: 20%;
}

.portfolio-wrap-2 img,
.portfolio-wrap-3 img {
  width: 100%;
}

.width-40-parcent,
.width-20-parcent {
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.portfolio-wrap-2,
.portfolio-wrap-3 {
  position: relative;
}

.portfolio-content2 {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 0 37px 41px;
  position: absolute;
  width: 100%;
}

.portfolio-wrap-2::before {
  background-color: #1e2127;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.portfolio-content2 > h4 {
  color: #f6f6f6;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.portfolio-content2 > h4 a {
  color: #f6f6f6;
}

.portfolio-content2 > a i {
  color: #ffffff;
  font-size: 18px;
  position: relative;
  top: 10px;
  margin-left: 5px;
}

.portfolio-content3-title > h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  margin: 0 0 9px;
}

.portfolio-content3-date {
  display: flex;
  justify-content: space-between;
}

.portfolio-content3 {
  background-color: #fff;
  padding: 28px 34px 25px;
}

.portfolio-content3-date > span {
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.portfolio-content3-date > a i {
  color: #656a6f;
  font-size: 12px;
  position: relative;
  top: 0px;
  transition: all 0.3s ease 0s;
}

.default-overlay-2.portfolio-wrap-3::before {
  background-color: #1e2127;
  opacity: 0.8;
}

.portfolio-suscribe {
  left: 25px;
  padding: 10px;
  position: absolute;
  top: 25px;
}

.portfolio-suscribe i {
  color: #fff;
  font-size: 35px;
}

.portfolio-suscribe h3 {
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 33px;
  margin: 107px 0 102px;
}

.pro-suscribe-btn > a {
  background-color: #fff;
  color: var(--orange-style);
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  padding: 20px 20px 19px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  z-index: 9;
}

.pro-suscribe-btn > a:hover {
  background-color: #009c94;
  color: #fff;
}

.portfolio-white-border {
  border: 2px solid #fff;
}

.portfolio-content2 > h4 a:hover,
.portfolio-content2 > a i:hover,
.portfolio-content3-date > a i:hover {
  color: #009c94;
}

.zoom-hover2 {
  overflow: hidden;
}

.zoom-hover2 img {
  transition: all 1.5s ease 0s;
  width: 100%;
}

.portfolio-wrap-3:hover .zoom-hover2 img {
  transform: scale(1.2);
}

.toggle-item-active2 {
  display: none;
}

.width-20-parcent.mb-30.toggle-btn2 {
  display: none;
}

.load-more-wrap {
  min-height: 430px;
  position: relative;
  width: 100%;
}

.load-more-btn2 {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.loadMore2 {
  display: block;
  overflow: hidden;
  width: 100%;
}

.loadMore2:hover span,
.loadMore2:hover i,
.footer-social-h3.social-hm8 li a:hover {
  color: #009c94;
}

.loadMore2 span {
  color: #333;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.loadMore2 i {
  color: #3c3f45;
  transition: all 0.3s ease 0s;
  font-size: 36px;
}

/*-------------- 10. Home page 9 ---------------*/

/* slider area */

.slider-text-8 h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 56px;
  margin: 0 0 40px;
  position: relative;
  text-transform: uppercase;
}

.slider-text-8 h1::before {
  background: var(--orange-style) none repeat scroll 0 0;
  bottom: -40px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 48px;
}

.slider-text-8 > p {
  font-size: 19px;
  line-height: 32px;
  margin: 81px 0 36px;
  width: 45%;
}

.slider-btn-6 .default-btn {
  background-color: var(--orange-style);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 23px 46px;
}

.slider-btn-6 .btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

.common-title-style {
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 0 0 35px;
  position: relative;
  text-transform: uppercase;
}

/* tools area */

.common-title-style::before {
  background: var(--orange-style) none repeat scroll 0 0;
  bottom: -34px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 48px;
}

.tools-img-2 > img {
  width: 100%;
}

.tools-content-2 > p {
  font-size: 17px;
  line-height: 36px;
  margin: 72px 0 33px;
}

.tools-btn2 .default-btn {
  background-color: #f1f2f6;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  padding: 23px 47px;
}

.tools-btn2 .default-btn:hover {
  color: #fff;
}

/* service area */

.single-service.service-style-2 {
  padding: 56px 90px 75px;
}

.single-service.service-style-2 i {
  font-size: 54px;
}

.single-service.service-style-2 > h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 46px 0 19px;
}

.single-service-wrap.service-wrap-2:hover {
  background-color: #fff;
}

/* pricing area */

.section-title-6 h2 {
  display: inline-block;
  line-height: 34px;
}

.section-title-6 h2.common-title-style::before {
  left: 0;
  margin: 0 auto;
  right: 0;
  bottom: -40px;
}

.single-pricing {
  border: 1px solid #e8e9eb;
}

.pricing-top > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.pricing-top > h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 50px;
  margin: 28px 0 14px;
}

.pricing-top > h2.active {
  color: #009c94;
}

.pricing-top > span {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.pricing-middle li {
  color: #333;
  font-size: 15px;
  list-style: outside none none;
  margin: 0 0 25px;
  font-family: "Open Sans", sans-serif;
}

.pricing-middle li:last-child {
  margin: 0 0 0px;
}

.pricing-bottom .default-btn {
  background-color: transparent;
  color: var(--orange-style);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 20px 60px;
}

.pricing-bottom .default-btn:hover,
.pricing-bottom .default-btn.active {
  color: #fff;
}

.pricing-bottom .default-btn::before {
  background: var(--green-style) none repeat scroll 0 0;
}

.single-pricing {
  border: 1px solid #e8e9eb;
  padding: 40px 40px 30px;
}

.pricing-middle {
  border-bottom: 1px solid #e8e9eb;
  border-top: 1px solid #e8e9eb;
  margin: 38px 0 23px;
  padding: 43px 0 47px;
}

.pricing-bottom .default-btn.active {
  background: var(--green-style) none repeat scroll 0 0;
}

.pricing-bottom .default-btn.active.btn-hover::before {
  background: var(--orange-style) none repeat scroll 0 0;
}

/* recent project */

.common-title-style.white-color {
  color: #fff;
}

.common-title-style.white-color::before {
  background: #fff none repeat scroll 0 0;
}

.pagination-style4 .owl-dots {
  margin: 75px 0 0;
  text-align: center;
}

.pagination-style4 .owl-dot {
  background: #4c5e76 none repeat scroll 0 0;
  border-radius: 50px;
  display: inline-block;
  height: 14px;
  margin: 0 9px;
  width: 14px;
}

.pagination-style4 .owl-dot.active {
  background: #fff none repeat scroll 0 0;
  height: 14px;
  position: relative;
  width: 14px;
}

/* testimonial area */

.client4-info {
  bottom: 42px;
  left: 50%;
  position: relative;
  text-align: center;
  transform: translateX(-50%);
  z-index: 9;
}

.client4-info > h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 4px;
}

.client4-info > span {
  font-size: 14px;
  color: #333;
  font-family: "Open Sans", sans-serif;
}

/*-------------- 11. portfolio grid 3 column ---------------*/

.breadcrumb-content {
  position: relative;
  z-index: 9;
}

.breadcrumb-content > h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 10px;
}

.breadcrumb-content li {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  margin-right: 15px;
  position: relative;
}

.breadcrumb-content li a {
  color: #fff;
  font-weight: 400;
}

.breadcrumb-content li::before {
  background-color: #fff;
  content: "";
  height: 2px;
  position: absolute;
  right: -11px;
  top: 12px;
  transition: all 0.4s ease 0s;
  width: 2px;
}

.breadcrumb-content li:last-child::before {
  display: none;
}

.default-overlay-2.breadcrumb-area::before {
  background-color: #1e2127;
  opacity: 0.67;
}

.portfolio-menu-1.pro-menu-btn > button {
  font-weight: 500;
}

.portfolio-menu-1.pro-menu-btn button::before {
  background: #5f98f7 none repeat scroll 0 0;
}

.portfolio-menu-1.pro-menu-btn button:hover,
.portfolio-menu-1.pro-menu-btn button.active {
  color: #5f98f7;
}

.hover-2::before {
  background: rgba(30, 33, 39, 0.67) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

.portfolio-wrap:hover .hover-2::before,
.blog-wrap-2:hover .hover-3::before,
.single-blog-list:hover .hover-3::before,
.single-blog-list2:hover .hover-3::before,
.blog-wrap-3:hover .hover-3::before,
.shop-list-wrap:hover .hover-2::before,
.shop-wrap:hover .hover-3::before {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hidden.item-hidden {
  display: none;
}

.pro-load-more .default-btn {
  background-color: #f1f2f6;
  font-size: 14px;
  padding: 22px 46px;
}

.pro-load-more .default-btn:hover {
  color: #fff;
}

.portfolio-img img {
  width: 100%;
}

/*---- 12. portfolio grid with pagination -----*/

.pro-sidebar-search form input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  color: #333;
  font-size: 13px;
  height: 43px;
  padding: 2px 50px 2px 18px;
}

.pro-sidebar-search form {
  position: relative;
}

.pro-sidebar-search form button {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: transparent none repeat scroll 0 0;
  border-color: #a1a5aa;
  border-image: none;
  border-style: none none none solid;
  border-width: medium medium medium 1px;
  padding: 0 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #a1a5aa;
  transition: all 0.3s ease 0s;
}

.pro-sidebar-search form button:hover {
  color: #5491f6;
}

.pro-sidebar-search form input::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.pro-sidebar-search form input::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

h4.pro-sidebar-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.single-sidebar-feature {
  border-bottom: 1px solid #dee0e4;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
  padding: 0 0 20px;
}

.single-sidebar-feature:last-child {
  border-bottom: none;
  margin: 0 0 0px;
  padding: 0 0 0px;
}

.sidebar-feature-img {
  flex: 0 0 100px;
  margin: 0 10px 0 0;
}

.sidebar-feature-img img {
  width: 100%;
}

.sidebar-feature-content {
  flex: 0 0 140px;
}

.sidebar-feature-content > span {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-categori li {
  list-style: outside none none;
  margin: 0 0 14px;
}

.sidebar-categori li a {
  font-weight: 400;
  font-size: 15px;
  color: #333;
}

.sidebar-categori li a span {
  color: #333;
  font-weight: 300;
  margin: 0 0 0 8px;
}

.sidebar-categori li:last-child {
  margin: 0 0 0px;
}

.sidebar-categori li a:hover,
.sidebar-categori li a:hover span {
  color: #009c94;
}

.pro-pagination-style li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 2px;
}

.pro-pagination-style li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  background-color: #f1f2f6;
  color: var(--orange-style);
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
}

.pro-pagination-style li a.active,
.pro-pagination-style li a:hover {
  color: #fff;
  background-color: #009c94;
}

/*------ 13. portfolio grid with alternative -----------*/

.pro-col-40 .row {
  margin-left: -20px;
  margin-right: -20px;
}

.pro-col-40 .row div[class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

.breadcrumb-content.breadcrumb-black > h2 {
  color: var(--orange-style);
}

.breadcrumb-content.breadcrumb-black li,
.breadcrumb-content.breadcrumb-black li a {
  color: #333;
}

.breadcrumb-content li::before {
  background-color: #a1a5aa;
}

.portfolio-wrap {
  position: relative;
}

.portfolio-content-2 {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 30px 25px;
  position: absolute;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out 0s;
  transform: scale(0.8);
}

.portfolio-wrap:hover .portfolio-content-2,
.shop-wrap:hover .shop-content3 {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.portfolio-like-2 {
  align-items: flex-end;
  display: flex;
}

.portfolio-title-2 > span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-title-2 > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0 0;
}

.portfolio-title-2 > h4 a {
  color: #fff;
}

.portfolio-title-2 > h4 a:hover {
  color: #009c94;
}

.portfolio-like-2 > span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}

.portfolio-like-2 > span a {
  color: #fff;
  font-size: 16px;
  margin: 0 0 0 6px;
  position: relative;
  top: 2px;
}

.pro-load-more2 a {
  display: inline-block;
}

.pro-load-more2 a span {
  display: block;
  transition: all 0.3s ease 0s;
}

.pro-load-more2 a span.reload-text {
  color: var(--orange-style);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 23px 0 0;
  text-transform: uppercase;
}

.pro-load-more2 a span.reload-text:hover {
  color: #009c94;
}

.pro-load-more2 a span i {
  font-size: 20px;
  color: var(--orange-style);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 100%;
  display: inline-block;
  background-color: #f6f6f6;
  transition: all 0.3s ease 0s;
}

.pro-load-more2 a span i:hover {
  color: #fff;
  background-color: #009c94;
}

.section-padding-3 .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.section-padding-4 .container-fluid {
  padding-left: 5px;
  padding-right: 5px;
}

.pro-col-5 .row {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.pro-col-5 .row div[class^="col-"] {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.pro-col-20 .row {
  margin-left: -10px;
  margin-right: -10px;
}

.pro-col-20 .row div[class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.col-lg-5-custom {
  flex: 0 0 20%;
  max-width: 20%;
  width: 100%;
}

.portfolio-content.por-white-bg {
  background-color: #fff;
  padding: 25px 25px 27px;
}

.pro-load-more.load-more-border .default-btn {
  background-color: transparent;
  border: 1px solid #dee0e4;
}

/*------ 14. Portfolio fullwide slider ------*/

.section-padding-5 .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}

.portfolio-slider-text {
  padding: 0 65px 82px;
  position: relative;
  z-index: 9;
}

.portfolio-slider-text span {
  color: #a1a5aa;
  display: block;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-slider-text h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin: 15px 0 0;
}

/*---- 15. Portfolio carousel ------*/

.section-padding-6 .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.portfolio-content-3 {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%) scale(1);
  z-index: 99;
  opacity: 1;
  transition: all 0.5s ease-in-out 0s;
}

.portfolio-content-3 > span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-content-3 > h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0 0;
}

.portfolio-content-3 > h4 a {
  color: #fff;
}

.portfolio-wrap:hover .portfolio-content-3 {
  opacity: 0;
  transform: scale(0);
}

.overlay-visible::before {
  background: rgba(30, 33, 39, 0.45) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

.portfolio-wrap:hover > .overlay-visible::before {
  opacity: 0;
  z-index: 1;
}

.portfolio-carousel-active .owl-nav div {
  color: #ffffff;
  font-size: 24px;
  left: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

.portfolio-carousel-active .owl-nav div:hover {
  color: #ccc;
}

.portfolio-carousel-active .owl-nav div.owl-next {
  left: auto;
  right: 40px;
}

/*----------- 16. Pro grid mixed fullwide  ---------------*/

.col-percent-36 {
  flex: 0 0 36%;
  max-width: 36%;
}

.col-percent-39 {
  flex: 0 0 39%;
  max-width: 39%;
}

.col-percent-26 {
  flex: 0 0 26%;
  max-width: 26%;
}

.col-percent-19-9 {
  flex: 0 0 19.9%;
  max-width: 19.9%;
}

.col-percent-30-8 {
  flex: 0 0 30.7%;
  max-width: 30.7%;
}

.col-percent-23-3 {
  flex: 0 0 23.3%;
  max-width: 23.3%;
}

.col-percent-35-8 {
  flex: 0 0 35.8%;
  max-width: 35.8%;
}

.portfolio-style {
  overflow: hidden;
}

/*------- 17. Single portfolio 1 ------*/

.single-port-content {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 27px;
}

.single-port-title > span {
  color: #333;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-port-title > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin: 12px 0 0;
}

.single-port-like {
  align-items: flex-end;
  display: flex;
}

.single-port-like > span {
  color: #a1a5aa;
  font-size: 18px;
  font-weight: 500;
}

.single-port-like > span a {
  color: #a1a5aa;
  font-size: 20px;
  margin: 0 0 0 5px;
  position: relative;
  top: 2px;
}

.single-port-like > span a:hover,
.client-info-dec p a:hover {
  color: #009c94;
}

.single-port-peragraph p {
  font-size: 13px;
  margin: 0;
  width: 96%;
}

.single-client-info {
  margin: 0 0 17px;
}

.single-client-info:last-child {
  margin: 0 0 0px;
}

.client-info-dec p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  color: #333;
}

.client-info-dec p a {
  color: #333;
}

.client-info-title span {
  color: var(--orange-style);
  font-weight: 400;
}

.client-info-title {
  display: inline-block;
  float: left;
  width: 97px;
}

.portfolio-decription-wrap {
  margin: 0 0 51px;
}

.port-next-prev-wrap {
  display: flex;
  justify-content: space-between;
  padding: 55px 0 52px;
}

.port-next-btn > a,
.port-prev-btn > a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.port-next-btn > a i {
  font-size: 14px;
  margin: 0 0px 0 8px;
  position: relative;
  top: 1px;
}

.port-prev-btn > a i {
  font-size: 14px;
  margin: 0 8px 0px;
  position: relative;
  top: 1px;
}

.single-port-bar > a {
  font-size: 20px;
}

.port-prev-btn,
.port-next-btn {
  margin: 3px 0 0;
}

.client-info-border {
  position: relative;
}

.client-info-border::before {
  background: #dee0e4 none repeat scroll 0 0;
  content: "";
  height: 107px;
  left: -32px;
  position: absolute;
  top: -3px;
  transition: all 0.3s ease 0s;
  width: 1px;
}

/*------- 18. Single portfolio 2 --------*/

.single-port-style2 .single-port-peragraph {
  margin: 31px 0 38px;
}

.single-port-style2 .portfolio-client-info {
  border-bottom: 1px solid #dee0e4;
  border-top: 1px solid #dee0e4;
  padding: 26px 0 28px;
}

.single-port-style2 .portfolio-decription-wrap {
  margin: 0 0 40px;
}

/*----- 19. Single portfolio 3 -------*/

.single-port-style3 .client-info-dec {
  display: inline-block;
  float: left;
}

.single-port-style3 .client-info-title {
  display: inline-block;
  float: left;
  margin-right: 14px;
  text-align: left;
  width: auto;
}

.single-port-style3 .portfolio-client-info {
  display: inline-block;
  margin: 32px 0 44px;
  text-align: center;
}

.single-port-style3 .single-client-info {
  display: inline-block;
  float: left;
  margin: 0 29px;
}
.blog-gallery-slider {
  margin-bottom: 30px;
}

.single-portfolio-carousel {
  height: 100%;
}
.single-portfolio-carousel .owl-nav div,
.blog-gallery-slider .owl-nav div {
  color: var(--orange-style);
  font-size: 24px;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

.single-portfolio-carousel .owl-nav div:hover,
.blog-gallery-slider .owl-nav div:hover {
  color: #6e8198;
}

.single-portfolio-carousel .owl-nav div.owl-next,
.blog-gallery-slider .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}

.single-port-style3 .single-port-like {
  justify-content: center;
}

.single-port-style3 .single-port-peragraph > p {
  margin: 0 auto;
  width: 73%;
}

.single-port-style3 .single-port-peragraph {
  margin: 47px 0 50px;
}

/*------ 20. Single portfolio 4 --------*/

.single-port-style4 .single-port-peragraph p {
  width: 100%;
}

.single-port-style4 .single-port-style3 .portfolio-client-info {
  display: inline-block;
  margin: 0 0 42px;
  text-align: center;
}

/* 21. Single portfolio 5 */

.section-padding-7 .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}

.single-port-style5 .portfolio-client-info {
  display: block;
  margin: 34px 0 25px;
  overflow: hidden;
}

.single-port-style5 .single-port-peragraph {
  border-bottom: 1px solid #dee0e4;
  border-top: 1px solid #dee0e4;
  padding: 27px 0 32px;
}

.single-port-style5 .single-port-peragraph p {
  width: 100%;
}

.single-port-style5 .single-port-peragraph p.peragraph-mrg {
  margin: 0 0 25px;
}

.single-port-style5 .portfolio-decription-wrap {
  margin: 0 0 37px;
}

.port-common-width {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 100%;
}

.single-port-width1 {
  flex: 0 0 37.6%;
  max-width: 37.6%;
}

.single-port-width2 {
  flex: 0 0 28.5%;
  max-width: 28.5%;
}

.single-port-width3 {
  flex: 0 0 33.9%;
  max-width: 33.9%;
}

.single-port-width4 {
  flex: 0 0 52.1%;
  max-width: 52.1%;
}

.single-port-width5 {
  flex: 0 0 47.9%;
  max-width: 47.9%;
}

.port-custom-row-col .row {
  margin-left: -10px;
  margin-right: -10px;
}

/*------- 22. Blog grid 3 column -------------*/

.blog-meta-3 li {
  color: #333;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  list-style: outside none none;
  margin: 0 17px 0 0;
  position: relative;
  text-transform: uppercase;
}

.blog-meta-3 li:last-child {
  margin: 0 0px 0 0;
}

.blog-meta-3 li a {
  color: #333;
}

.blog-meta-3 li a:hover {
  color: #009c94;
}

.blog-meta-3 li a i {
  font-size: 14px;
  margin: 0 0 0 4px;
  position: relative;
  top: 2px;
}

.blog-meta-3 li::before {
  background-color: #b4b7bb;
  content: "";
  height: 2px;
  position: absolute;
  right: -11px;
  top: 8px;
  transition: all 0.4s ease 0s;
  width: 2px;
}

.blog-meta-3 li:last-child::before {
  display: none;
}

.blog-content-2 > h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin: 7px 0 13px;
}

.blog-content-2 > p {
  font-size: 13px;
  margin: 0;
}

.blog-content-2 {
  background-color: #fff;
  padding: 34px 35px 35px;
}

.readmore-icon a {
  color: #ffffff;
  display: inline-block;
  font-size: 28px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease 0s;
}

.readmore-icon a:hover,
.blog-btn2 > a i:hover {
  color: #009c94;
}

.blog-wrap-2:hover .readmore-icon a,
.single-blog-list:hover .readmore-icon a {
  transform: scale(1);
  opacity: 1;
}

.blog-shadow {
  transition: all 0.3s ease 0s;
}

.blog-shadow:hover {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
}

.blog-peragraph-add > p {
  color: #fff;
  margin: 24px 0 0;
  font-size: 13px;
}

.blog-peragraph-add .blog-more {
  margin: 64px 0 0;
}

.blog-sidebar-page .blog-content-2 > h4 {
  font-size: 16px;
}

.facebook-banner-wrap {
  position: relative;
}

.facebook-banner-content {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.facebook-banner-content i {
  color: #ffffff;
  font-size: 60px;
}

.default-overlay-2.facebook-banner-wrap::before {
  background-color: #1e2127;
  opacity: 0.75;
}

.facebook-banner-content > h4 {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 22px 0 0;
  text-transform: uppercase;
}

/*---------- 23. Blog list ----------*/

.single-blog-list {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #dddddd;
}

.blog-list-content > h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #009c94;
}

.blog-list-content > h4 a {
  color: #009c94;
}

.single-blog-list .blog-img {
  display: inline-block;
  float: left;
  min-width: 300px;
}

.blog-list-content {
  overflow: hidden;
}

.blog-list-content > p {
  font-size: 13px;
  margin: 18px 0 20px;
}

.blog-btn > a {
  background-color: #f1f2f6;
  color: var(--orange-style);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 17px 40px 16px;
  text-transform: uppercase;
  z-index: 9;
}

.blog-btn > a:hover {
  color: #fff;
}

.blog-list-content .btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

/*------ 24. Blog list alternative -------*/

.single-blog-list2 {
  display: flex;
}

.single-blog-list2 .blog-img {
  flex: 0 0 400px;
}

.blog-list-content2-wrap {
  align-items: center;
  display: flex;
}

.blog-list-content2 > h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}

.blog-list-content2 > p {
  font-size: 13px;
  margin: 20px 0 36px;
}

.blog-btn2 > a i {
  color: #656a6f;
  font-size: 16px;
}

.blog-list-content2 {
  background-color: #fff;
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  padding: 40px 60px 40px;
  z-index: 9;
}

.blog-list-mrg-left {
  margin-left: 40px;
}

.blog-list-mrg-right {
  margin-right: 40px;
}

.hover-3::before {
  background: rgba(30, 33, 39, 0.75) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

.tablet-wrapper {
  padding: 0;
  position: relative;
}

.tablet {
  padding: 40px 1px 40px 3px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    145deg,
    rgba(210, 210, 210, 1) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(220, 220, 220, 1) 50%,
    rgba(255, 255, 255, 1) 75%,
    rgba(220, 220, 220, 1) 100%
  );
  border-radius: 8px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  min-width: 230px;
  display: flex;
  align-items: center;
}

.tablet:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  box-shadow: 3px 3px 0px 3px #cccccc;
}

.tablet-camera {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #555555;
  margin: 23px auto;
}

.tablet-slider {
  width: 86%;
  height: 300px;
  max-width: 86%;
  border-radius: 2px;
  background: black;
  overflow: hidden;
  border: 1px solid #ddd;
}

.tablet-button {
  height: 25px;
  width: 25px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  margin: 8px auto;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    135deg,
    rgba(247, 247, 247, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(247, 247, 247, 1) 100%
  );
}

.tabs-left,
.tabs-right {
  border-bottom: none;
  padding-top: 2px;
}
.tabs-left {
  border-right: 1px solid #ddd;
}
.tabs-right {
  border-left: 1px solid #ddd;
}
.tabs-left > li,
.tabs-right > li {
  float: none;
  margin-bottom: 2px;
}
.tabs-left > li {
  margin-right: -1px;
}
.tabs-right > li {
  margin-left: -1px;
}
.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
  border-bottom-color: #ddd;
  border-right-color: transparent;
}

.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
  border-bottom: 1px solid #ddd;
  border-left-color: transparent;
}
.tabs-left > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display: block;
}
.tabs-right > li > a {
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}

/*------- 25. Blog masonry --------*/

.blog-content-masonry > h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin: 9px 0 12px;
}

.blog-content-masonry > p {
  font-size: 13px;
  margin: 0;
}

.blog-content-masonry {
  padding: 25px 0 0;
}

/*---------- 26. Blog classic ----------*/

.blog-content-3 > h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin: 0 0 8px;
}

.blog-meta-3 li a span {
  color: var(--orange-style);
  transition: all 0.3s ease 0s;
}

.blog-meta-3 li a span:hover {
  color: #009c94;
}

.blog-content-3 > p {
  font-size: 13px;
  margin: 0;
}

.blog-border {
  border-bottom: 1px solid #dee0e4;
}

.blog-video img {
  width: 100%;
}

.blog-gallery-slider .owl-nav div {
  font-size: 28px;
}

.blog-video {
  position: relative;
  min-height: 300px;
}

.blog-video-btn {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.blog-sidebar-social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 3px 0 0;
}

.blog-sidebar-social li a {
  background-color: #f1f2f6;
  border-radius: 100%;
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  height: 34px;
  line-height: 35px;
  text-align: center;
  width: 34px;
}

.blog-sidebar-social li a:hover {
  background-color: #009c94;
  color: #fff;
}

.blog-sidebar-social li:last-child {
  margin: 0 0px 0 0;
}

.subscribe-style-3 > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 17px;
}

.subscribe-gray-bg {
  background-color: #f6f6f6;
  padding: 26px 20px 30px;
}

.subscribe-style-3 form input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  box-shadow: none;
  color: #a1a5aa;
  font-size: 13px;
  height: 45px;
  padding: 2px 48px 2px 20px;
  width: 100%;
}

.subscribe-style-3.subscribe-gray-bg form > .mc-form > input {
  background: #fff none repeat scroll 0 0;
}

.subscribe-style-3 form {
  position: relative;
}

.subscribe-style-3 form input::-moz-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.subscribe-style-3 form input::-webkit-input-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.subscribe-form-3 .mc-form .clear::before {
  background-color: #009c94;
  color: #fff;
  content: "";
  cursor: pointer;
  font-family: "themify";
  font-size: 16px;
  height: 41px;
  line-height: 41px;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 2px;
  transition: all 0.3s ease 0s;
  width: 41px;
  z-index: -1;
}

.subscribe-form-3 .mc-form .clear:hover::before {
  background-color: var(--orange-style);
}

.blog-btn .btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

.blog-bg-white {
  background-color: #fff;
}

.white-bg-content {
  padding: 0 50px 55px;
}

.blog-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 43px 0 0;
}

.blog-author {
  align-items: center;
  display: flex;
}

.white-bg-content.blog-content-3 > h4 {
  margin: 0 0 13px;
}

.blog-author-img {
  flex: 0 0 30px;
  margin: 0 12px 0 0;
}

.blog-author-content > span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a1a5aa;
}

.subscribe-white-bg {
  background-color: #fff;
  padding: 26px 20px 30px;
}

.subscribe-style-3.subscribe-white-bg form input {
  border: 1px solid #e6e6e6;
}

.pro-sidebar-search.search-bg-white form input {
  background: #fff none repeat scroll 0 0;
}

.blog-masonry-wrap {
  position: relative;
}

.blog-masonry-content2 {
  bottom: 25px;
  left: 0;
  padding: 0 35px;
  position: absolute;
  width: 100%;
}

.blog-masonry-content2 .blog-meta {
  margin: 0 0 10px;
}

.blog-masonry-content2 .blog-meta > h4 a {
  color: #ffffff;
}

.blog-masonry-content2 .blog-meta > a i {
  color: #ffffff;
  font-size: 16px;
}

.blog-masonry-content2 > span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-masonry-wrap .default-overlay-2::before {
  background-color: #1e2127;
  opacity: 0.75;
}

.blog-meta-masonry {
  display: flex;
  justify-content: space-between;
  margin: 0 0 6px;
}

.blog-meta-masonry > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.blog-meta-masonry > a {
  color: #656a6f;
  font-size: 16px;
  margin-left: 5px;
}

.blog-masonry-content {
  padding: 27px 35px 0;
}

.blog-masonry-content > span {
  color: #333;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-meta-masonry > a:hover,
.blog-masonry-content2 .blog-meta-masonry > a:hover,
.blog-masonry-content2 .blog-meta-masonry > h4 a:hover {
  color: #009c94;
}

.blog-masonry-content2 .blog-meta-masonry > h4 a,
.blog-masonry-content2 .blog-meta-masonry > a {
  color: #fff;
}

/*--------- 27. Blog details ---------*/

.b-details-content-wrap > p {
  font-size: 14px;
  margin: 0 0 28px;
  line-height: 26px;
}

.b-details-content-middle > h4 {
  font-size: 20px;
  margin: 0 0 23px;
}

.b-details-content-middle > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 23px;
}

.b-middle-img-wrap {
  display: flex;
  margin: 45px 0 0;
}

.b-middle-img {
  flex: 0 0 343px;
  margin: 0 45px 25px 0;
}

.b-middle-img > img {
  width: 100%;
}

.b-middle-content > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 26px;
}

.b-middle-content > p:last-child,
.b-details-content-middle > p:last-child,
.details-category li:last-child,
.details-social li:first-child {
  margin: 0px;
}

.blog-details-list {
  margin: 35px 0 32px 60px;
}

.blog-details-list li {
  font-size: 15px;
  list-style: outside none none;
  margin: 0 0 12px;
  position: relative;
}

.blog-details-list li:last-child {
  margin: 0 0 0px;
}

.blog-details-list li::before {
  background-color: var(--orange-style);
  border-radius: 100%;
  content: "";
  height: 5px;
  left: -15px;
  position: absolute;
  top: 9px;
  width: 5px;
}

.details-category-social {
  display: flex;
  justify-content: space-between;
  margin: 21px 0 0;
}

.details-category li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.details-category li a {
  color: #009c94;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.details-category li a:hover {
  color: var(--orange-style);
}

.details-social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 0 0 12px;
}

.details-social li a {
  font-size: 14px;
  color: var(--orange-style);
}

.details-social li a:hover {
  color: #009c94;
}

.b-details-author {
  display: flex;
  justify-content: flex-end;
}

.b-details-author-img {
  flex: 0 0 85px;
  margin: 0 30px 0 0;
}

.b-details-author-img img {
  width: 100%;
}

.b-details-content > h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}

.b-details-content > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

.blog-details-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.related-blog-content > h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.related-blog-wrap img {
  width: 100%;
}

.related-blog-content {
  margin: 20px 0 0;
}

.single-blog-comment {
  display: flex;
}

.comment-name-reply {
  display: flex;
  justify-content: space-between;
  margin: 0 0 11px;
}

.blog-comment-img {
  flex: 0 0 70px;
  margin: 0 22px 0 0;
}

.blog-comment-img img {
  width: 100%;
}

.comment-name-reply > span {
  font-size: 16px;
  line-height: 1;
}

.comment-name-reply > a {
  color: #009c94;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.comment-name-reply > a:hover {
  color: var(--orange-style);
}

.blog-comment-content > p {
  font-size: 13px;
  margin: 0;
}

.custom-col-15 .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.custom-col-15 .row div[class^="col-"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.leave-form input,
.text-leave textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  color: #444;
  font-size: 13px;
  height: 45px;
  padding: 2px 10px 2px 19px;
  margin: 0 0 15px;
  font-family: "Open Sans", sans-serif;
}

.text-leave textarea {
  height: 133px;
  padding: 15px 10px 2px 19px;
}

.text-leave input {
  background: var(--green-style) none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #fff;
  font-weight: 500;
  height: 60px;
  letter-spacing: 1px;
  padding: 10px 46px;
  text-transform: uppercase;
  width: auto;
  cursor: pointer;
}

.text-leave input:hover {
  background: var(--orange-style) none repeat scroll 0 0;
}

.leave-form input::-moz-placeholder {
  color: #444;
  opacity: 1;
}

.leave-form input::-webkit-input-placeholder {
  color: #444;
  opacity: 1;
}

.text-leave textarea::-moz-placeholder {
  color: #444;
  opacity: 1;
}

.text-leave textarea::-webkit-input-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

/*----------- 28. Blog details 2 ---------*/

.breadcrumb-height {
  min-height: 730px;
}

.b-details-img-wrap {
  position: relative;
}

.b-details-img img {
  width: 100%;
}

.b-details-img-wrap > img {
  margin-left: 223px;
  max-width: 100%;
}

.b-details-small {
  bottom: -42px;
  left: 0;
  position: absolute;
}

blockquote.blockquote-style1 {
  background-color: #f6f6f6;
  border-left: 3px solid #009c94;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin: 33px 0 37px;
  padding: 20px 28px 18px;
}

/*-------- 29. Blog details 3 ----------*/

blockquote.blockquote-style2 {
  border: 1px solid #e5e5e5;
  margin: 42px 0 43px;
  padding: 12px 50px 39px;
}

.blockquote-style2 > img {
  background-color: #fff;
  margin-top: -50px;
  padding: 0 35px;
  position: relative;
  z-index: 99;
}

.blockquote-style2 > h4 {
  font-size: 20px;
  line-height: 34px;
  margin: 0 0 12px;
}

.blockquote-style2 > span {
  color: #333;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*------- 30. Shop grid ----------*/

.shop-wrap,
.shop-img {
  position: relative;
}

.shop-img {
  overflow: hidden;
}

.shop-hover {
  bottom: -30px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
}

.shop-wrap:hover .shop-hover {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
}

.shop-content {
  display: flex;
  justify-content: space-between;
  padding: 27px 0 0;
}

.shop-name > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.shop-price > span {
  color: #a1a5aa;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.shop-card {
  background-color: var(--orange-style);
  float: left;
  padding: 15px 0 18px;
  text-align: center;
  width: 79%;
  min-height: 55px;
}

.shop-wishlist {
  background-color: #009c94;
  float: left;
  min-height: 55px;
  padding: 19px 0 14px;
  text-align: center;
  width: 21%;
}

.shop-card > a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-card > a:hover {
  color: #009c94;
}

.shop-card > a i {
  font-size: 16px;
  margin: 0 0 0 15px;
  position: relative;
  top: 2px;
}

.shop-wishlist > a {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.shop-wishlist > a:hover {
  color: var(--orange-style);
}

.shop-img > span {
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 58px;
  letter-spacing: 1px;
  line-height: 58px;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 20px;
  width: 58px;
  z-index: 9;
}

.shop-img span.sale {
  background-color: #b2363b;
}

.shop-img span.new {
  background-color: #009c94;
}

.shop-price > span.new {
  color: var(--orange-style);
  margin: 0 0 0 8px;
}

.shop-price > span.old {
  text-decoration: line-through;
}

.shop-img img {
  width: 100%;
}

.shop-price {
  display: flex;
}

/*------- 31. Shop grid with sidebar --------*/

.breadcrumb-content.breadcrumb-black2 > h2 {
  color: var(--orange-style);
}

.breadcrumb-content.breadcrumb-black2 li,
.breadcrumb-content.breadcrumb-black2 li a {
  color: var(--orange-style);
}

.price_filter
  .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
  background: #f7f7f7 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0px;
  height: 4px;
  margin-left: auto;
}

.price_filter .ui-slider-range {
  background: #cbcdd1 none repeat scroll 0 0;
}

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
  background: var(--orange-style) none repeat scroll 0 0;
  border: medium none;
  border-radius: 50%;
  height: 10px;
  margin-left: 0;
  width: 10px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px;
}

.price_filter.mt-40 > span {
  color: #242424;
  display: block;
  margin-bottom: 30px;
}

.price_slider_amount .label-input input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  height: auto;
  margin: 7px 0 0;
  padding-left: 0;
  width: 100%;
}

.price_slider_amount .label-input input::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.price_slider_amount .label-input input::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.price_slider_amount > button {
  background-color: #009c94;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 9px 19px 10px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.price_slider_amount > button:hover {
  background-color: var(--orange-style);
}

.price_filter > span {
  color: #242424;
  display: block;
  margin: 0 0 21px;
}

.price_slider_amount {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 25px 0 0;
}

.shop-sidebar-style .sidebar-feature-content > h4 {
  margin: 0 0 5px;
}

.shop-sidebar-style .sidebar-feature-content > span {
  font-size: 14px;
}

.shop-offer {
  display: flex;
  justify-content: center;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.shop-offer > h4 {
  color: #fff;
  font-size: 96px;
  font-weight: bold;
  margin: 0;
}

.offer-percent {
}

.offer-percent-wrap > span {
  color: #fff;
  display: block;
}

.offer-percent-wrap > span.offer-percent {
  font-size: 60px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 0 8px;
}

.offer-percent-wrap > span.offer-off {
  font-size: 16px;
  font-weight: 500;
}

.offer-percent-wrap {
  margin: 20px 0 0 11px;
}

.facebook-banner-wrap img {
  width: 100%;
}

.shop-content-2 {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 27px 25px 30px;
}

.shop-content-2 .shop-price > span {
  margin: 9px 0 0;
}

.shop-content-2 .shop-price > span.new {
  margin: 9px 0 0 8px;
}

.shop-rating {
  display: flex;
  justify-content: flex-end;
  margin: 28px 0 0;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}

.shop-rating i {
  color: #a7abb0;
  font-size: 16px;
  margin: 0 0 0 1px;
}

.shop-rating i.theme-color {
  color: #009c94;
}

.shop-action a {
  background-color: #009c94;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  height: 55px;
  line-height: 55px;
  margin: 0 0 0 7px;
  text-align: center;
  width: 55px;
}

.shop-action a:hover {
  background-color: var(--orange-style);
}

.shop-wrap:hover .shop-rating {
  transform: scale(0);
}

.shop-action {
  display: flex;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -3px;
  transform: scale(0);
  transition: all 0.5s ease 0s;
  visibility: hidden;
}

.shop-wrap:hover .shop-action {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.shop-action-wrap {
  position: relative;
}

.shop-name-width {
  flex: 0 0 60%;
  max-width: 60%;
}

.shop-action-width {
  flex: 0 0 40%;
  max-width: 40%;
}

.shop-shadow {
  transition: all 0.3s ease 0s;
}

.shop-shadow:hover {
  box-shadow: 0 25px 45px rgba(1, 2, 3, 0.12);
}

/*------------ 32. Shop list ---------*/

.shop-list-wrap {
  display: block;
  overflow: hidden;
}

.shop-list-content > h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.shop-list-rating i {
  color: #a7abb0;
  font-size: 16px;
  margin: 0 0 0 1px;
}

.shop-list-rating i.theme-color {
  color: #009c94;
}

.shop-list-rating {
  display: flex;
  margin: 0 0 27px;
}

.shop-list-content > p {
  font-size: 13px;
  margin: 0;
}

.shop-list-btn a.shop-list-cart {
  background-color: #f1f2f6;
  color: var(--orange-style);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 8px 0 0;
  padding: 18px 30px 17px;
  text-transform: uppercase;
  z-index: 9;
}

.shop-list-btn a.shop-list-wishlist {
  background-color: #f1f2f6;
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  padding: 15px 17px 12px;
  z-index: 9;
}

.shop-list-btn a.shop-list-wishlist:hover,
.shop-list-btn a.shop-list-cart:hover {
  color: #ddd;
}

.shop-list-btn {
  display: flex;
}

.shop-list-img {
  display: inline-block;
  float: left;
  min-width: 300px;
}

.shop-list-content {
  overflow: hidden;
}

.shop-list-img img {
  width: 100%;
}

.shop-list-btn .btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

/*------------ 33. Shop no gutter --------------*/

.shop-content3 {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 30px 30px 21px;
  position: absolute;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out 0s;
  visibility: hidden;
  width: 100%;
  z-index: 9;
}

.s-content3-name > h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.s-content3-name > h4 a {
  color: #fff;
}

.s-content3-name > h4 a:hover,
.s-content3-price > a:hover {
  color: #009c94;
}

.s-content3-price {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 4px 0 0;
}

.s-content3-price > span {
  color: #eee;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.s-content3-price > a {
  color: #fff;
  font-size: 22px;
}

/*------ 34. Shop no gutter fullwide -------*/

.section-padding-8 .container-fluid {
  padding-left: 1px;
  padding-right: 1px;
}

.custom-col-5-two {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 0.5px;
  padding-right: 0.5px;
  width: 100%;
}

.custom-row-3 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5px;
  margin-right: -0.5px;
}

.gap-1-pixel .shop-wrap {
  margin: 0 0 1px;
}

/*-------- 35. Shop categories -------*/

.shop-categories {
  left: 0;
  position: absolute;
  top: 0;
}

.shop-categories > a {
  background-color: transparent;
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 33px 30px;
  text-transform: uppercase;
}

.shop-wrap:hover .shop-categories > a {
  background-color: var(--orange-style);
  color: #fff;
}

/*---------- 36. Shop carousel ---------*/

.shop-carousel-active .slick-list {
  margin: 0 -20px;
}

.shop-carousel-active .slick-slide {
  margin: 0 20px;
}

.shop-carousel-active .cr-navigation {
  color: var(--orange-style);
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  left: 63px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out 0s;
  z-index: 1;
  opacity: 1;
}

.shop-carousel-active .cr-navigation:hover {
  opacity: 0.3;
}

.shop-carousel-active .cr-navigation.cr-navigation-next {
  left: auto;
  right: 63px;
}

.shop-carousel-active .shop-name > h4 {
  font-size: 20px;
}

.shop-carousel-active .shop-price > span {
  margin: 5px 0 0;
}

.shop-menu-filter {
  display: flex;
  justify-content: space-between;
}

.filter-active > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*--------- 37. Shop filter ---------*/

.filter-active {
  position: relative;
}

.filter-active > a i {
  color: var(--orange-style);
  font-size: 12px;
  margin: 0 0 0 8px;
  position: relative;
  top: 1px;
}

.shop-filter-menu {
  background-color: #24272d;
  position: absolute;
  right: 0;
  top: 100%;
  width: 602px;
  z-index: 99;
  display: none;
}

.shop-filter-menu > ul > li {
  color: #fff;
  display: inline-block;
  float: left;
  list-style: outside none none;
  padding-left: 30px;
  width: 33.333%;
  position: relative;
}

.shop-filter-menu > ul > li::before {
  background-color: #383a40;
  content: "";
  height: 100%;
  position: absolute;
  right: 3px;
  top: 0;
  width: 1px;
}

.shop-filter-menu > ul > li:last-child::before {
  display: none;
}

.shop-filter-menu > ul > li.filter-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.shop-filter-menu li ul li {
  display: block;
  float: inherit;
  margin: 0 0 16px;
  width: 100%;
}

.shop-filter-menu li ul li:last-child {
  margin: 0 0 0px;
}

.shop-filter-menu ul > li > ul > li > a {
  color: #ddd;
  font-size: 13px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  display: block;
}

.shop-filter-menu ul > li > ul > li > a:hover {
  color: #009c94;
}

.shop-filter-menu > ul > li > ul {
  margin: 20px 0 0;
}

.shop-filter-menu > ul {
  overflow: hidden;
  padding: 23px 0 28px;
}

/*------ 38. Product details ----------*/

.product-details-img img {
  width: 100%;
}

.product-details-content > h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.pro-details-rating-wrap {
  display: flex;
  margin: 26px 0 18px;
}

.pro-details-rating {
  display: flex;
  margin: 1px 10px 0 0;
}

.pro-details-rating i {
  color: #a7abb0;
  font-size: 18px;
  margin: 0 0 0 1px;
}

.pro-details-rating i.theme-color {
  color: #009c94;
}

.pro-details-rating-wrap > span {
  color: #656a6f;
  font-size: 14px;
  font-weight: 300;
}

.product-details-content > h3 {
  color: #f64b7b;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

.product-details-content > p {
  font-size: 13px;
  margin: 0;
}

.cart-plus-minus {
  border: 1px solid #dee0e4;
  display: inline-block;
  height: 47px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 102px;
}

.cart-plus-minus .qtybutton {
  color: var(--orange-style);
  cursor: pointer;
  float: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-align: center;
  transition: all 0.3s ease 0s;
  width: 24px;
}

.cart-plus-minus .dec.qtybutton {
  border-right: 1px solid #dee0e4;
  height: 47px;
  left: 0;
  padding-top: 12px;
  top: 0;
}

.cart-plus-minus .inc.qtybutton {
  border-left: 1px solid #dee0e4;
  height: 47px;
  padding-top: 12px;
  right: 0;
  top: 0;
}

.cart-plus-minus input.cart-plus-minus-box {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #454545;
  float: left;
  font-size: 14px;
  height: 47px;
  margin: 0;
  padding: 0 9px 0 0;
  text-align: center;
  width: 110px;
}

.pro-details-quality {
  display: flex;
}

.pro-details-cart > a {
  background-color: #009c94;
  color: #fff;
  padding: 17px 32px;
}

.pro-details-wishlist > a {
  border: 1px solid #dfe1e5;
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 15px 16px;
}

.pro-details-wishlist > a:hover {
  color: #fff;
}

.pro-details-cart {
  margin: 0 15px;
}

.pro-details-info-list li.pro-details-info-title {
  font-weight: 500;
  color: var(--orange-style);
  min-width: 94px;
}

.pro-details-info-list li {
  color: #333;
  display: inline-block;
  font-weight: 300;
  list-style: outside none none;
}

.pro-details-info-list li a {
  color: #333;
  font-weight: 300;
}

.pro-details-info-list li a:hover,
.pro-details-social li a:hover {
  color: #009c94;
}

.pro-details-info-list {
  margin: 0 0 10px;
}

.pro-details-info-list:last-child {
  margin: 0 0 0px;
}

.pro-details-social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 12px 0 0;
}

.pro-details-social li:last-child {
  margin: 0 0px 0 0;
}

.pro-details-social li a {
  font-size: 14px;
  color: var(--orange-style);
}

.pro-details-info-wrap {
  margin: 0 0 48px;
}

.description-review-topbar > a {
  background-color: #f6f6f6;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: 0 5px 0 0;
  padding: 18px 35px;
}

.description-review-topbar > a.active {
  border-bottom: 3px solid #009c94;
  background-color: transparent;
}

.description-review-bottom {
  padding: 33px 0 0;
}

.product-description-wrapper > p {
  color: #656a6f;
  font-size: 13px;
  margin: 0 0 25px;
}

.product-description-wrapper > p:last-child,
.product-anotherinfo-wrapper li:last-child {
  margin: 0 0 0px;
}

.product-anotherinfo-wrapper li {
  color: #656a6f;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  list-style: outside none none;
  margin: 0 0 13px;
}

.product-anotherinfo-wrapper li span {
  color: var(--orange-style);
  display: inline-block;
  font-weight: 600;
  margin: 0 26px 0 0;
  min-width: 85px;
}

.single-review {
  display: flex;
}

.review-img {
  flex: 0 0 70px;
  margin: 0 20px 0 0;
}

.review-top-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px;
}

.review-left {
  align-items: center;
  display: flex;
}

.review-name > h4 {
  font-size: 16px;
  margin: 0;
}

.review-rating {
  display: flex;
}

.review-rating i {
  color: #a7abb0;
  font-size: 14px;
  margin: 0 0 0 1px;
}

.review-rating i.theme-color {
  color: #009c94;
}

.review-name {
  margin: 0 30px 0 0;
}

.review-left > a {
  color: #009c94;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-bottom > p {
  font-size: 13px;
  margin: 0;
}

.single-review.child-review {
  margin: 42px 0 0 70px;
}

.ratting-form-wrapper > h3 {
  color: #656a6f;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.star-box {
  align-items: center;
  display: flex;
  margin: 14px 0 20px;
}

.star-box > span {
  color: #656a6f;
  font-weight: 300;
  margin: 0 30px 0 0;
}

.ratting-star {
  display: flex;
}

.ratting-star i {
  color: #a1a5aa;
}

.rating-form-style input,
.rating-form-style textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  color: #a1a5aa;
  font-size: 13px;
  padding: 2px 10px 2px 20px;
  font-family: "Open Sans", sans-serif;
}

.rating-form-style textarea {
  height: 115px;
  padding: 17px 10px 2px 20px;
}

.rating-form-style input::-moz-placeholder,
.rating-form-style textarea::-moz-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.rating-form-style input::-webkit-input-placeholder,
.rating-form-style textarea::-webkit-input-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.rating-form-style.form-submit input {
  background: var(--green-style) none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 60px;
  letter-spacing: 1px;
  margin: 10px 0 0;
  padding: 0px 78px;
  text-transform: uppercase;
  width: auto;
}

.rating-form-style.form-submit input:hover {
  background: var(--orange-style) none repeat scroll 0 0;
}

.ratting-form-wrapper {
  margin: -70px 0 0;
}

.related-product-title > h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/*------ 39. Product details 2 ----------*/

.product-dec-slider .slick-list {
  margin: 0 -7.5px;
}

.product-dec-slider .slick-slide {
  margin: 0 7.5px;
}

.product-dec-slider .product-dec-icon {
  color: #009c94;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.product-dec-slider .product-dec-icon:hover {
  color: #659dfa;
}

.product-dec-slider .product-dec-icon:hover,
.product-dec-slider-2 .product-dec-icon:hover {
  opacity: 1;
}

.product-dec-slider .product-dec-icon.product-dec-next {
  left: auto;
  right: 15px;
}

.product-dec-slider {
  overflow: hidden;
}

.dec-slider-overlay a.slick-active {
  position: relative;
  cursor: pointer;
}

.dec-slider-overlay a.slick-active:before {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1e2127;
  opacity: 0.75;
  pointer-events: none;
}

.dec-slider-overlay a.slick-active.active:before {
  opacity: 0;
}

.pro-details-size-color {
  display: flex;
}

.pro-details-size {
  margin-right: 20px;
}

.select-common-style select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0) url("../img/icon-img/select.png") no-repeat
    scroll right 20px center;
  border: 1px solid #e6e6e6;
  color: #a1a5aa;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  height: 45px;
  padding: 2px 40px 2px 15px;
  position: relative;
  min-width: 260px;
  cursor: pointer;
}

.select-common-style label {
  color: var(--orange-style);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

.select-common-style select::before {
  content: "";
  font-family: "themify";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
}

/*------ 40. Product details 3 ----------*/

.product-dec-slider-2 {
  display: inline-block;
  float: left;
  padding: 0;
  width: 20.5%;
}

.zoompro-2 {
  display: inline-block;
  float: left;
  position: relative;
  width: 79.5%;
  padding-left: 15px;
}

.product-dec-slider-2 a {
  margin: 0 0 13px;
}

.product-dec-slider-2 .product-dec-icon {
  color: #009c94;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  left: 50%;
  line-height: 1;
  padding: 0 10px;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
  z-index: 99;
}

.product-dec-slider-2 .product-dec-icon:hover {
  color: #659dfa;
}

.product-dec-slider-2 .product-dec-icon.product-dec-next {
  bottom: 23px;
  top: auto;
}

.pro-details-left-mrg {
  margin-left: -50px;
}

.single-pro-bundel {
  align-items: center;
  display: flex;
  margin: 0 0 15px;
}

.single-pro-bundel:last-child {
  margin: 0 0 0px;
}

.bundel-name > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.bundel-price > span {
  color: #a1a5aa;
  font-size: 16px;
}

.bundel-name {
  margin: 0 74px 0 48px;
}

.pro-details-cart.cart-mrg-none {
  margin: 0 15px 0 0;
}

/*------ 41. Product details 4 ----------*/

.amazon-btn > a {
  background-color: #f6922f;
  color: #262626;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 16px 57px 19px;
  z-index: 9;
}

.amazon-btn > a:hover {
  color: #fff;
}

/*------ 42. Product details 5 ----------*/

.pro-details-5 .pro-details-rating-wrap,
.pro-details-5 .pro-details-quality {
  justify-content: center;
}

.pro-details-5.product-details-content > p {
  margin: 0 auto;
  width: 93%;
}

.pro-details-slider-active.owl-carousel .owl-nav div {
  color: var(--orange-style);
  display: inline-block;
  font-size: 24px;
  left: -285px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

.pro-details-slider-active.owl-carousel .owl-nav div:hover {
  opacity: 0.15;
}

.pro-details-slider-active.owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: -284px;
}

.pro-details-5 .pro-details-social li {
  margin: 0 6px;
}

/*------ 43. Product details 6 ----------*/

.pro-details-color2-content ul li {
  border-radius: 50px;
  cursor: pointer;
  display: block;
  float: left;
  height: 14px;
  margin-right: 15px;
  position: relative;
  transition: all 0.4s ease 0s;
  width: 14px;
}

.pro-details-color2-content ul li.active::before {
  border: 2px solid #009c94;
  border-radius: 50px;
  content: "";
  height: 24px;
  left: -6px;
  position: absolute;
  top: -6px;
  width: 24px;
}

.pro-details-color2-content ul li.blue {
  background-color: #4798f3;
  border: 1px solid #4798f3;
}

.pro-details-color2-content ul li.maroon {
  background-color: #736751;
  border: 1px solid #736751;
}

.pro-details-color2-content ul li.gray {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

.pro-details-color2-content ul li.green {
  background-color: #139c57;
  border: 1px solid #139c57;
}

.pro-details-color2-content ul li.yellow {
  background-color: #e28b37;
  border: 1px solid #e28b37;
}

.pro-details-color2-content ul li.white {
  background-color: #fff;
  border: 1px solid #e7e7e7;
}

.pro-details-size-color2 {
  display: flex;
}

.pro-details-size2-content ul li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 2px 0 0;
}

.pro-details-size2-content ul li a {
  background-color: #f1f2f6;
  color: var(--orange-style);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 6px 9px 7px;
  text-transform: uppercase;
}

.pro-details-size2-content ul li a:hover {
  background-color: #009c94;
  color: #fff;
}

.pro-details-color2-wrap > span {
  display: block;
  font-weight: 500;
  margin: 0 0 15px;
}

.pro-details-size2 > span {
  display: block;
  font-weight: 500;
  margin: 0 0 10px;
}

.is-affixed .inner-wrapper-sticky {
  padding-left: 25px;
}

.is-affixed .product-details-content.pl-10 {
  padding-left: 0px;
}

.product-sidebar-active.col-lg-6.is-affixed {
  padding-left: 0;
  padding-right: 0;
}

/*---------- 44. Cart page -------*/

.cart-table tr th {
  font-size: 16px;
  font-weight: 400;
}

.cart-table table td.cart-img-name {
  width: 408px;
}

.cart-table table td.cart-img-name a.cart-img img {
  width: 81px;
}

.cart-table table td.cart-img-name a.cart-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 27px;
}

.cart-table table td.cart-price {
  width: 115px;
}

.cart-table table td.cart-price span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.cart-table table td.cart-quantity {
  width: 140px;
}

.cart-table table td.cart-subtotal {
  width: 100px;
}

.cart-table table td.cart-subtotal span {
  color: #656a6f;
  font-weight: 500;
}

.pro-dec-cart input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #dfe1e5;
  box-shadow: none;
  color: var(--orange-style);
  font-size: 14px;
  font-weight: 500;
  height: 47px;
  padding: 0;
  text-align: center;
  width: 52px;
}

.pro-dec-cart input::-moz-placeholder {
  color: var(--orange-style);
  opacity: 1;
}

.pro-dec-cart input::-webkit-input-placeholder {
  color: var(--orange-style);
  opacity: 1;
}

.cart-table table td.cart-remove a {
  color: #a1a5aa;
}

.cart-table table td.cart-remove a:hover {
  color: #009c94;
}

.cart-table table thead tr {
  border-bottom: 1px solid #dee0e4;
}

.cart-table table thead tr th {
  padding: 0 0 15px;
}

.cart-table table tbody tr td {
  padding: 20px 0 20px;
}

.cart-table table tbody tr {
  border-bottom: 1px solid #dee0e4;
}

.cart-shiping-update-wrapper {
  display: flex;
  justify-content: space-between;
}

.cart-clear > button,
.cart-shiping-update a {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #dfe1e5;
  color: #444;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 13px 50px 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}

.cart-clear > button:hover {
  border: 1px solid #009c94;
  color: #fff;
}

.cart-clear > button.btn-hover::before,
.cart-shiping-update a.btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

.cart-shiping-update a {
  display: inline-block;
  padding: 13px 50px 12px;
}

.cart-shiping-update a:hover {
  color: #fff;
  border: 1px solid #009c94;
}

.proceed-area li span {
  color: #333;
}

.proceed-area li span.proceed-title {
  color: #212121;
  font-size: 16px;
}

.proceed-area li span.proceed-title.proceed-bold {
  font-weight: 500;
  font-size: 18px;
}

.proceed-area li {
  align-items: center;
  border-bottom: 1px solid #dee0e4;
  display: flex;
  justify-content: space-between;
  margin: 0 0 18px;
  overflow: hidden;
  padding: 0 0 19px;
}

.proceed-area li:last-child {
  border-bottom: none;
  margin: 0 0 23px;
  padding: 0 0 0px;
}

.proceed-btn > a {
  background-color: #009c94;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 17px 20px 18px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 9;
}

.proceed-area.gray-bg-4 {
  padding: 39px 45px 45px;
}

/*---------- 45. Checkout page -------*/

.billing-info-wrap h3,
.your-order-area h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px;
}

.billing-info > label,
.billing-select > label,
.additional-info > label {
  color: #333;
  font-size: 13px;
  margin: 0 0 10px;
  font-family: "Open Sans", sans-serif;
}

.billing-info input,
.additional-info textarea,
.checkout-account-toggle input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  padding-left: 20px;
  padding-right: 10px;
}

.billing-info input::-moz-placeholder,
.additional-info textarea::-moz-placeholder,
.checkout-account-toggle input::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.billing-info input::-webkit-input-placeholder,
.additional-info textarea::-webkit-input-placeholder,
.checkout-account-toggle input::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.billing-info input.billing-address {
  margin-bottom: 10px;
}

.billing-select select {
  -moz-appearance: none;
  border: 1px solid #e6e6e6;
  color: #333;
  font-size: 13px;
  height: 45px;
  padding: 2px 20px;
  font-family: "Open Sans", sans-serif;
  background: rgba(0, 0, 0, 0) url("../img/icon-img/select-2.png") no-repeat
    scroll right 18px center;
}

.checkout-account {
  align-items: center;
  display: flex;
}

.checkout-account input {
  border: 1px solid #9fa0a2;
  display: inline-block;
  float: left;
  height: 10px;
  width: 10px;
}

.checkout-account > span {
  color: #333;
  font-weight: 300;
  margin: 0 0 0 12px;
}

.additional-info-wrap > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
}

.additional-info textarea {
  height: 138px;
  padding: 17px 20px;
}

.open-toggle {
  display: none;
}

.checkout-account-toggle input {
  margin: 0 0 20px;
}

.checkout-account-toggle button.checkout-btn {
  background-color: #009c94;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 30px;
  text-transform: uppercase;
  z-index: 9;
}

.your-order-wrap {
  padding: 38px 45px 44px;
}

.your-order-top > ul {
  display: flex;
  justify-content: space-between;
}

.your-order-top > ul li {
  color: #333;
  font-size: 16px;
  font-weight: 300;
  list-style: outside none none;
}

.your-order-middle ul li {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px;
}

.your-order-middle ul li:last-child {
  margin: 0 0 0px;
}

.your-order-middle ul li span.order-middle-left {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 16px;
  font-weight: 300;
}

.your-order-middle ul li span.order-price {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.your-order-middle ul li span.order-middle-left span.order-name {
  color: var(--orange-style);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin: 0 42px 0 0;
}

.your-order-bottom > ul,
.your-order-total > ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.your-order-bottom > ul li.your-order-shipping {
  font-size: 16px;
  color: #212121;
  font-weight: 400;
}

.your-order-bottom > ul li {
  font-size: 14px;
  color: #333;
  font-weight: 300;
  list-style: none;
}

.your-order-total ul li.order-total {
  font-weight: 500;
  color: #212121;
  font-size: 18px;
}

.your-order-total ul li {
  font-weight: 500;
  color: #f64b7b;
  font-size: 16px;
  list-style: outside none none;
}

.your-order-middle {
  border-bottom: 1px solid #dee0e4;
  border-top: 1px solid #dee0e4;
  margin: 29px 0;
  padding: 19px 0 18px;
}

.your-order-total {
  border-bottom: 1px solid #dee0e4;
  border-top: 1px solid #dee0e4;
  margin: 18px 0 33px;
  padding: 17px 0 19px;
}

.panel.payment-accordion h4 {
  color: #212121;
  font-size: 16px;
  margin: 0;
}

.panel.payment-accordion h4 a {
  color: #212121;
  padding: 0 0 0 27px;
  position: relative;
  display: block;
}

.panel.payment-accordion h4 a:hover {
  color: #009c94;
}

.payment-accordion .panel-body p {
  color: #333;
  font-size: 13px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
}

.payment-accordion .panel-body {
  padding: 11px 0 0 27px;
}

.payment-accordion .panel-title a.collapsed::before,
.payment-accordion .panel-title a::before {
  color: #656a6f;
  content: "";
  font-family: "themify";
  font-size: 16px;
  left: 0;
  position: absolute;
  top: 0;
}

.payment-accordion .panel-title a::before {
  color: #000;
  content: "";
}

.panel.payment-accordion {
  margin: 0 0 16px;
}

.panel.payment-accordion:last-child {
  margin: 0 0 0px;
}

.Place-order > a {
  background-color: #009c94;
  color: #fff;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 18px 20px;
  text-align: center;
  text-transform: uppercase;
  z-index: 9;
}

/*-------- 46. Contact us -------------*/

#map {
  height: 536px;
}

.contact-info-area > h2 {
  font-size: 44px;
  font-weight: 300;
  margin: 0 0 26px;
}

.contact-info-area > p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
}

.single-contact-info {
  display: flex;
  align-items: center;
}

.contact-info-content > p {
  margin: 0;
  color: var(--orange-style);
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.contact-info-icon i {
  color: #c3c9cc;
  font-size: 36px;
}

.contact-info-icon {
  flex: 0 0 62px;
}

.single-contact-info {
  align-items: center;
  display: flex;
  margin: 0 0 37px;
}

.single-contact-info:last-child {
  margin: 0 0 0px;
}

.contact-info-wrap {
  margin: 60px 0 0;
}

.contact-from form input::placeholder,
.contact-from form textarea::placeholder {
  color: #999999 !important;
  opacity: 1 !important;
  /* Firefox */
}

.contact-from form input:-ms-input-placeholder,
.contact-from form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
}

.contact-from form input::-ms-input-placeholder,
.contact-from form textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999999;
}

.contact-from form input,
.contact-from form textarea {
  background: rgba(255, 255, 255, 1);
  border: 1px solid #dddddd;
  font-size: 13px;
  height: 40px;
  padding: 2px 12px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.contact-from form textarea {
  height: 100px;
  padding: 10px 12px 2px;
}

.contact-from form input::-moz-placeholder,
.contact-from form textarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}

.contact-from form input::-webkit-input-placeholder,
.contact-from form textarea::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.contact-from form input.submit {
  background-color: var(--orange-style);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  height: 55px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.contact-from form input.submit:hover {
  background-color: #009c94;
}

.contact-shadow {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  padding: 50px;
}

.contact-info-area {
  margin: -10px 0 0;
}

/*---------- 47. Contact us 2 ----------*/

#map2 {
  height: 510px;
}

#map3 {
  height: 810px;
}

.contact-info-minus {
  margin-left: -10px;
}

.office-info-title h3 {
  text-align: center;
  font-weight: 300;
  font-size: 44px;
  margin: 0px;
  line-height: 1;
}

.office-branch > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px;
}

.single-contact-info2 li {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 13px;
  list-style: outside none none;
  margin: 0 0 7px;
}

.single-contact-info2 li a {
  color: #333;
}

.single-contact-info2 li a:hover {
  color: #009c94;
}

.single-contact-info2 li span {
  color: #c3c9cc;
  font-size: 20px;
  min-width: 40px;
  display: inline-block;
}

.single-contact-info2 li:last-child {
  margin: 0 0 0px;
}

.office-branch {
  margin-right: 60px;
}

.office-branch:last-child {
  margin-right: 0px;
}

.contact-map.pl-70 {
  margin-right: -15px;
}

/*-------- 48. Faq page --------*/

.panel.faq-accordion2 {
  z-index: 2;
}

.panel.faq-accordion2 h4 {
  margin-bottom: 0;
}

.panel.faq-accordion2 h4 a {
  background-color: #e9eaea;
  color: #212121;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 20px 19px 45px;
  position: relative;
}

.faq-accordion2:hover h4 a {
  color: #009c94;
}

.faq-accordion2 .panel-body p {
  color: #656a6f;
  font-size: 15px;
  line-height: 28px;
  margin: 0;
}

.faq-accordion2 .panel-body {
  padding: 10px 21px 18px 45px;
  background: #fff;
  z-index: 2;
}

.faq-accordion2 .panel-title a.collapsed::before,
.faq-accordion2 .panel-title a::before {
  color: var(--orange-style);
  content: "";
  font-family: "themify";
  font-size: 13px;
  left: 20px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.faq-accordion2 .panel-title a::before {
  color: #009c94;
  content: "";
}

.faq-digit > span {
  border-radius: 75px;
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  color: #009c94;
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  height: 75px;
  line-height: 75px;
  text-align: center;
  width: 75px;
  transition: all 0.3s ease 0s;
}

.single-faq-sidebar:hover .faq-digit > span {
  background-color: #009c94;
  color: #fff;
}

.single-faq-sidebar > h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 33px 0 14px;
}

.single-faq-sidebar > p {
  font-size: 13px;
  margin: 0;
}

.faq-sidebar-area {
  margin-left: -25px;
  padding-right: 30px;
}

.shotcode-faq-title > h2 {
  font-size: 40px;
  font-weight: 300;
  margin: 0;
}

/*-------- 49. Shortcode button page --------*/

.shortcode-button-title > h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 19px;
}

.shortcode-button-title > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin: 0 auto;
  width: 40%;
}

.single-shortcode-btn > a {
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  z-index: 9;
}

.small-button > a {
  padding: 15px 35px 16px;
}

.single-shortcode-btn.button-round > a {
  border-radius: 50px;
}

.button-round .btn-hover::before {
  border-radius: 50px;
}

.small-button.button-stroke > a {
  padding: 15px 36px 14px;
}

.blue-button > a {
  background-color: #009c94;
}

.blue-button > a i {
  font-size: 13px;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.button-style1 {
  align-items: center;
  display: flex;
  justify-content: center;
}

.black-button > a {
  background-color: var(--orange-style);
  font-size: 13px;
}

.medium-button > a {
  padding: 20px 41px 21px;
}

.brown-button > a {
  background-color: #ab7062;
  font-size: 14px;
}

.large-button > a {
  padding: 22px 49px 23px;
}

.sky-button > a {
  background-color: #13c1ee;
  font-size: 15px;
}

.huge-button > a {
  padding: 27px 65px 28px;
}

.medium-button-area .btn-hover::before {
  background: var(--green-style) none repeat scroll 0 0;
}

.blue-button.button-stroke > a {
  background-color: transparent;
  border: 1px solid #009c94;
  color: #009c94;
}

.black-button.button-stroke > a {
  background-color: transparent;
  border: 1px solid var(--orange-style);
  color: var(--orange-style);
}

.large-button.button-stroke > a {
  background-color: transparent;
  border: 1px solid #ab7062;
  color: #ab7062;
}

.sky-button.button-stroke > a {
  background-color: transparent;
  border: 1px solid #13c1ee;
  color: #13c1ee;
}

.blue-button.button-stroke > a:hover,
.large-button.button-stroke > a:hover,
.sky-button.button-stroke > a:hover {
  border: 1px solid var(--orange-style);
  color: #fff;
}

.black-button.button-stroke > a:hover {
  border: 1px solid #009c94;
  color: #fff;
}

/*------- 50. Shortcode blockcode --------*/

.blockquote-title > h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.blockquote-style-wrap > p {
  color: #333;
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 26px;
}

.blockquote-style-wrap > p:last-child {
  margin: 0 0 0px;
}

/*------- 51. shortcode dropcap --------*/

.dropcap-left1 {
  display: inline-block;
  float: left;
}

.dropcap-left1 > span {
  color: var(--orange-style);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  margin: 15px 40px 21px 16px;
  transition: all 0.3s ease 0s;
}

.dropcap-right > p {
  font-size: 13px;
  margin: 0;
}

.dropcap-title > h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 18px;
}

.dropcap-title > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin: 0 auto;
  width: 50%;
}

.dropcap-flex {
  display: flex;
}

.dropcap-left2 > span {
  background-color: var(--orange-style);
  color: #fff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  margin: 4px 0 0;
  padding: 12px 20px 16px;
  transition: all 0.3s ease 0s;
}

.dropcap-left2 {
  margin: 0 18px 0 0;
}

.dropcap-left3 > span {
  border: 1px solid #009c94;
  border-radius: 50px;
  color: #009c94;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  height: 65px;
  line-height: 62px;
  margin: 2px 0 0;
  text-align: center;
  width: 65px;
  transition: all 0.3s ease 0s;
}

.dropcap-left3 {
  margin: 0 18px 0 0;
}

.dropcap-content-wrap:hover .dropcap-left1 > span {
  color: #009c94;
}

.dropcap-content-wrap:hover .dropcap-left2 > span {
  color: #fff;
  background-color: #009c94;
}

.dropcap-content-wrap:hover .dropcap-left3 > span {
  color: #fff;
  background-color: #009c94;
}

/*------- 52. Shortcode list --------*/

.single-shortcode-list li {
  font-size: 15px;
  list-style: outside none none;
  margin: 0 0 10px;
  position: relative;
  color: #444444;
}

.single-shortcode-list li:last-child {
  margin: 0 0 0px;
}

.single-shortcode-list li i {
  color: #009c94;
  font-size: 10px;
  margin: 0 12px 0 0;
  position: relative;
  top: -1px;
}

.single-shortcode-list li:before {
  color: #009c94;
  font-size: 10px;
  margin: 0 12px 0 0;
  position: relative;
  content: "■";
  top: -1px;
}

.single-shortcode-list.arrow li:before {
  font-family: "themify";
  content: "\e628";
}
.single-shortcode-list.arrow-circle li:before {
  font-family: "themify";
  content: "\e65d";
}

.shortcode-social-content li {
  display: inline-block;
}

.shortcode-social-content a {
  color: var(--orange-style);
  font-size: 14px;
  margin: 0 7px;
}

.shortcode-social-content a.real-color-facebook:hover {
  color: #4565c7;
}

.shortcode-social-content a.real-color-instagram:hover {
  color: #bb20a5;
}

.shortcode-social-content a.real-color-twitter:hover {
  color: #3da4fe;
}

.shortcode-social-content a.real-color-pinterest:hover {
  color: #e52e39;
}

.shortcode-social-content a.real-color-vimeo:hover {
  color: #1bafe7;
}

.shortcode-social-content a.real-color-google:hover {
  color: #e73d30;
}

.shortcode-social-content a.real-color-dribbble:hover {
  color: #fd5995;
}

.shortcode-social-area .dropcap-title > p {
  width: 42%;
}

.single-social-content1 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 2px;
}

.single-social-content1 li a {
  color: var(--orange-style);
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}

.single-social-content1.social-round li a {
  border-radius: 50px;
}

.single-social-content1.social-stroke li a {
  border: 1px solid var(--orange-style);
}

.single-social-content1.social-bg-color li a {
  background-color: #f1f2f6;
}

.single-social-content1.social-main-color li a {
  color: #fff;
}

.single-social-content1 li a.facebook {
  background-color: #4565c7;
  border: 1px solid transparent;
}

.single-social-content1 li a.instagram {
  background-color: #bb20a5;
  border: 1px solid transparent;
}

.single-social-content1 li a.twitter {
  background-color: #3da4fe;
  border: 1px solid transparent;
}

.single-social-content1 li a.pinterest {
  background-color: #e52e39;
  border: 1px solid transparent;
}

.single-social-content1 li a.vimeo {
  background-color: #1bafe7;
  border: 1px solid transparent;
}

.single-social-content1 li a.google {
  background-color: #e73d30;
  border: 1px solid transparent;
}

.single-social-content1 li a.dribbble {
  background-color: #fd5995;
  border: 1px solid transparent;
}

.single-social-content1 li a.facebook:hover {
  background-color: transparent;
  border: 1px solid #4565c7;
  color: #4565c7;
}

.single-social-content1 li a.instagram:hover {
  background-color: transparent;
  border: 1px solid #bb20a5;
  color: #bb20a5;
}

.single-social-content1 li a.twitter:hover {
  background-color: transparent;
  border: 1px solid #3da4fe;
  color: #3da4fe;
}

.single-social-content1 li a.pinterest:hover {
  background-color: transparent;
  border: 1px solid #e52e39;
  color: #e52e39;
}

.single-social-content1 li a.vimeo:hover {
  background-color: transparent;
  border: 1px solid #1bafe7;
  color: #1bafe7;
}

.single-social-content1 li a.google:hover {
  background-color: transparent;
  border: 1px solid #e73d30;
  color: #e73d30;
}

.single-social-content1 li a.dribbble:hover {
  background-color: transparent;
  border: 1px solid #fd5995;
  color: #fd5995;
}

.single-social-content1 li a.stroke-facebook:hover {
  background-color: #4565c7;
  border: 1px solid #4565c7;
  color: #fff;
}

.single-social-content1 li a.stroke-instagram:hover {
  background-color: #bb20a5;
  border: 1px solid #bb20a5;
  color: #fff;
}

.single-social-content1 li a.stroke-twitter:hover {
  background-color: #3da4fe;
  border: 1px solid #3da4fe;
  color: #fff;
}

.single-social-content1 li a.stroke-pinterest:hover {
  background-color: #e52e39;
  border: 1px solid #e52e39;
  color: #fff;
}

.single-social-content1 li a.stroke-vimeo:hover {
  background-color: #1bafe7;
  border: 1px solid #1bafe7;
  color: #fff;
}

.single-social-content1 li a.stroke-google:hover {
  background-color: #e73d30;
  border: 1px solid #e73d30;
  color: #fff;
}

.single-social-content1 li a.stroke-dribbble:hover {
  background-color: #fd5995;
  border: 1px solid #fd5995;
  color: #fff;
}

.single-social-content1 li a.bg-facebook:hover {
  background-color: #4565c7;
  color: #fff;
}

.single-social-content1 li a.bg-instagram:hover {
  background-color: #bb20a5;
  color: #fff;
}

.single-social-content1 li a.bg-twitter:hover {
  background-color: #3da4fe;
  color: #fff;
}

.single-social-content1 li a.bg-pinterest:hover {
  background-color: #e52e39;
  color: #fff;
}

.single-social-content1 li a.bg-vimeo:hover {
  background-color: #1bafe7;
  color: #fff;
}

.single-social-content1 li a.bg-google:hover {
  background-color: #e73d30;
  color: #fff;
}

.single-social-content1 li a.bg-dribbble:hover {
  background-color: #fd5995;
  color: #fff;
}

/*------- 53. Shortcode accordion --------*/

.shortcode-accordion-area .dropcap-title > p {
  width: 58%;
}

.shortcode-accordion {
  border: 1px solid #e5e5e5;
}

.shortcode-accordion h4,
.shortcode-accordion2 h4,
.shortcode-accordion3 h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--orange-style);
  margin: 0;
}

.shortcode-accordion h4 a {
  border-bottom: 1px solid #e5e5e5;
  color: var(--orange-style);
  display: block;
  padding: 17px 40px 17px 18px;
  position: relative;
}

.shortcode-accordion h4 a i {
  color: #009c94;
  font-size: 14px;
  margin: 0 15px 0 0;
}

.sc-accordion-peragraph p {
  color: #656a6f;
  font-size: 15px;
  line-height: 28px;
  margin: 0;
  padding: 17px 40px 20px 46px;
}

.shortcode-accordion .panel-title a.collapsed::before,
.shortcode-accordion .panel-title a::before {
  color: var(--orange-style);
  content: "";
  font-family: "themify";
  font-size: 13px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.shortcode-accordion .panel-title a::before {
  color: #009c94;
  content: "";
}

.shortcode-accordion:hover h4 a,
.shortcode-accordion2:hover h4 a {
  color: #009c94;
}

.shortcode-accordion2 h4 a {
  background-color: #f6f6f6;
  color: var(--orange-style);
  display: block;
  padding: 17px 46px;
  position: relative;
}

.shortcode-accordion2 .panel-title a.collapsed::before,
.shortcode-accordion2 .panel-title a::before {
  color: var(--orange-style);
  content: "";
  font-family: "themify";
  font-size: 13px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.shortcode-accordion2 .panel-title a::before {
  color: #009c94;
  content: "";
}

.shortcode-accordion3 h4 a {
  color: #fff;
  display: block;
  padding: 17px 18px;
  position: relative;
  background-color: #009c94;
}

.shortcode-accordion3 h4 a.collapsed {
  background-color: #dfe3e5;
  color: var(--orange-style);
}

.shortcode-accordion3 h4 a.collapsed i {
  color: #009c94;
  font-size: 14px;
  margin: 0 15px 0 0;
}

.shortcode-accordion3 h4 a i {
  color: #fff;
  margin: 0 15px 0 0;
}

.shortcode-accordion3 .panel-title a.collapsed::before,
.shortcode-accordion3 .panel-title a::before {
  color: var(--orange-style);
  content: "";
  font-family: "themify";
  font-size: 13px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.shortcode-accordion3 .panel-title a::before {
  color: #fff;
  content: "";
}

/*------- 54. Shortcode alerts --------*/

.dropcap-title > p {
  width: 41%;
}

.common-alert {
  border-radius: 0;
  color: var(--orange-style);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  padding: 16px 24px 19px;
}

.common-alert:last-child {
  margin-bottom: 0px;
}

.common-alert button {
  cursor: pointer;
  opacity: 1;
}

.common-alert button i {
  font-size: 12px;
}

.common-alert.alert1 button i {
  color: #a1a5aa;
}

.common-alert.alert2 button i {
  color: #ea340c;
}

.common-alert.alert3 button i {
  color: #00a41c;
}

.common-alert.alert4 button i {
  color: #009c94;
}

.alert1 {
  border: 1px solid #e5e5e5;
}

.alert2 {
  border: 1px solid #ea340c;
}

.alert3 {
  border: 1px solid #00a41c;
}

.alert4 {
  border: 1px solid #009c94;
}

.alert-danger {
  background-color: #fdeae6;
}

.alert-success {
  background-color: #e5f6e8;
}

.alert-primary {
  background-color: #edf3fe;
}

/*------- 55. Shortcode grid system --------*/

.shortcode-title h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.single-grid-system > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 15px;
}

.single-grid-system > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

/*------- 56. Shortcode tooltip hightlight --------*/

.tooltip .tooltip-inner {
  padding: 4px 17px 6px;
  background-color: var(--orange-style);
  font-weight: 300;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  border-radius: 0;
}

.tooltip-peragraph > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

.tooltip-content > p a {
  color: #7baaf8;
  border-bottom: 1px solid #7baaf8;
}

.tooltip-content-wrap {
  align-items: center;
  display: flex;
}

.tooltip-icon i {
  color: #009c94;
  font-size: 36px;
}

.tooltip-button a {
  background-color: #009c94;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 23px 50px;
  text-transform: uppercase;
  z-index: 9;
}

.tooltip-icon {
  margin-right: 180px;
}

.hightlights-content > p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

.hightlights-content > p span.blue {
  background-color: #009c94;
  color: #fff;
  padding: 0 4px 3px;
}

.hightlights-content > p span.gray {
  background-color: #e5e9eb;
  color: var(--orange-style);
  padding: 0 3px 3px;
}

.hightlights-title > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 15px;
}

/*------- 57. Shortcode pricing --------*/

.sin-shortcode-pricing.single-pricing {
  padding: 40px 0 30px;
}

.sin-shortcode-pricing.pricing-active,
.sin-shortcode-pricing2.pricing-active {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  border: 0px solid #e8e9eb;
}

.pricing-active .pricing-middle {
  border-bottom: 1px solid #e9eaeb;
  border-top: 5px solid #009c94;
}

.sin-shortcode-pricing .pricing-bottom .default-btn {
  background-color: #f1f2f6;
}

.sin-shortcode-pricing2 .pricing-middle {
  border-bottom: 0 solid #e9eaeb;
  padding: 43px 0 33px 0px;
}

.sin-shortcode-pricing2.pricing-active .pricing-middle {
  padding: 43px 0 33px 40px;
}

.sin-shortcode-pricing2 .pricing-middle li i {
  color: #009c94;
  font-size: 16px;
  margin: 0 19px 0 0;
}

.pricing-btn2 {
  background-color: #f1f2f6;
  border-radius: 50%;
  color: #1e2127;
  display: inline-block;
  font-size: 24px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  width: 54px;
}

.pricing-btn2:hover {
  background-color: #009c94;
  color: #fff;
}

.pricing-btn2.active {
  background-color: #009c94;
  color: #fff;
}

.pricing-btn2.active:hover {
  background-color: #1e2127;
  color: #fff;
}

.single-pricing.sin-shortcode-pricing2.pricing-active {
  padding: 40px 0px 55px;
}

.single-pricing.sin-shortcode-pricing2 {
  padding: 40px 40px 55px;
}

.sin-shortcode-pricing .pricing-top > h2,
.sin-shortcode-pricing2 .pricing-top > h2 {
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  margin: 31px 0 11px;
}

.sin-shortcode-pricing .pricing-top > h5,
.sin-shortcode-pricing2 .pricing-top > h5 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.sin-shortcode-pricing .pricing-top > span,
.sin-shortcode-pricing2 .pricing-top > span {
  color: #656a6f;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.sin-shortcode-pricing .pricing-bottom .default-btn.active {
  background-color: #009c94;
}

/*------- 58. Shortcode testimonial --------*/

.sc-testi-content .single-testimonial-2 > p {
  width: 61%;
}

.sc-testi-content .quote-img {
  margin: 0 0 50px;
}

.sc-testi-content .client-info {
  margin: 36px 0 0;
}

.sc-testi-content .client-info > h4 {
  margin: 24px 0 6px;
}

.dropcap-title {
  position: relative;
  z-index: 9;
}

.dropcap-title.white-text h2,
.dropcap-title.white-text p {
  color: #fff;
}

.sc-testimonial-wrap2 .testimonial-text-slider {
  margin: 0 0 40px;
}

.testimonial-active-4.owl-carousel .owl-item img {
  width: auto;
}

.client5-info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}

.client5-info > h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.client-ratting {
  display: flex;
}

.client-ratting i {
  color: #009c94;
  font-size: 14px;
  margin-left: 1px;
}

.client-ratting i.star-gray {
  color: #a7abb0;
  font-size: 14px;
}

.client4-content {
  border: 1px solid #e7e8ea;
  padding: 35px;
  position: relative;
  transition: all 0.3s ease 0s;
}

.client4-content > p {
  font-size: 13px;
  margin: 0;
}

.client5-img {
  margin: 38px 0 0 36px;
}

.sin-testimonial4 {
  margin: 30px 0 0;
}

.sin-testimonial4:hover .client4-content {
  box-shadow: 0 25px 45px rgba(1, 2, 2, 0.12);
  border: 1px solid transparent;
}

.client4-content::before {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: #fff none repeat scroll 0 0;
  border-color: #e7e8ea;
  border-image: none;
  border-style: none none solid solid;
  border-width: medium medium 1px 1px;
  bottom: -7px;
  content: "";
  height: 13px;
  left: 60px;
  position: absolute;
  transform: rotate(-45deg);
  width: 13px;
}

/*------- 59. Shortcode brand logo --------*/

.single-brand-logo {
  position: relative;
}

.brand-logo-border .single-brand-logo::before {
  background-color: #e5e6ea;
  content: "";
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

/*------- 60. Shortcode counter --------*/

.sc-counter-wrap2 .single-count3-style {
  border: 4px solid transparent;
  transition: all 0.3s ease 0s;
}

.sc-counter-wrap2 .single-count3:hover .single-count3-style {
  border: 4px solid #fff;
}

.single-count2.sc-count h2 {
  color: var(--orange-style);
}

.single-count2.sc-count span {
  color: #989ca0;
}

/*------- 61. Shortcode progressbar --------*/

.skill-bar-item {
  padding-bottom: 19px;
  position: relative;
}

.skill-bar-item:last-child {
  padding-bottom: 0px;
}

.skill-bar-item > span {
  color: #009c94;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}

.skill-bar-item .progress-box {
  background: #f1f2f6 none repeat scroll 0 0;
  border-radius: 0;
  box-shadow: none;
  height: 30px;
  margin-top: 3px;
}

.progress {
  background: #f1f2f6 none repeat scroll 0 0;
  box-shadow: none;
  position: relative;
  width: 100%;
  height: 30px;
}

.progress-value {
  width: 0;
  background: #009c94;
  color: #fff;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 10px;
  line-height: 30px;
}

.skill-bar {
  overflow: hidden;
}

/*.skill-bar-item:nth-child(1) .progress-bar, .skill-bar-item-2:nth-child(1) .progress-bar {
	width: 66%;
}
.skill-bar-item:nth-child(2) .progress-bar, .skill-bar-item-2:nth-child(2) .progress-bar {
	width: 91%;
}
.skill-bar-item:nth-child(3) .progress-bar, .skill-bar-item-2:nth-child(3) .progress-bar {
	width: 80%;
}*/

.progress-content > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
}

.progress-content > p {
  font-size: 13px;
  margin: 0;
}

.skill-bar-item-2 {
  margin: 0 0 30px;
  position: relative;
}

.skill-bar-item-2:last-child {
  margin: 0 0 0px;
}

.skill-bar-item-2 .progress {
  background: #f1f2f6 none repeat scroll 0 0;
  border-radius: 0;
  box-shadow: none;
  height: 40px;
  margin-top: 3px;
  overflow: visible;
}

.skill-content {
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

span.progress-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px 0 0;
}

span.progress-digit {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

/*------- 62. Shortcode login register --------*/

.login-register-tab-list a {
  margin: 0 5px 0 0;
}

.login-register-tab-list a:last-child,
.login-social-btn > a:last-child {
  margin: 0 0px 0 0;
}

.login-register-tab-list a h4 {
  background-color: #f6f6f6;
  border-bottom: 3px solid transparent;
  color: var(--orange-style);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 20px 65px;
  text-transform: capitalize;
}

.login-register-tab-list a.active h4 {
  background-color: transparent;
  border-bottom: 3px solid #009c94;
}

.login-regi-content {
  background-color: #f6f6f6;
  padding: 40px 35px;
}

.login-register-form form input {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  color: #a1a5aa;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  margin: 0 0 15px;
  padding: 2px 20px;
}

.login-register-form form input::-moz-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.login-register-form form input::-webkit-input-placeholder {
  color: #a1a5aa;
  opacity: 1;
}

.tools-btn {
  margin-bottom: 14px;
  width: 100%;
  display: block;
  position: relative;
}

.tools-btn .submit-btn {
  position: absolute;
  bottom: 2px;
}

.submit-btn button,
.submit-btn {
  background-color: #009c94;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 16px 20px 16px;
  text-transform: uppercase;
  width: 100%;
  transition: all 0.3s ease 0s;
  z-index: 9;
  display: block;
}

.login-social-wrap > p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.login-register-tab-list {
  margin: 0 34px 27px;
}

.login-social-wrap {
  margin: 32px 0 0;
}

.login-social-btn > a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: 0 10px 0 0;
  padding: 10px 47px;
  border: 1px solid transparent;
}

.login-social-btn > a.facebook {
  background-color: #293e70;
}

.login-social-btn > a.twitter {
  background-color: #00bcf1;
}

.login-social-btn > a.facebook:hover {
  border: 1px solid #293e70;
  color: #293e70;
  background-color: transparent;
}

.login-social-btn > a.twitter:hover {
  border: 1px solid #00bcf1;
  color: #00bcf1;
  background-color: transparent;
}

.login-social-btn > a i {
  font-size: 14px;
  margin: 0 6px 0 0;
}

.login-social-btn {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

.login-regi-wrapper {
  background-color: #fff;
  padding: 30px 0 0;
}

/*-------- 63. About us --------*/

.about-us-wrap {
  position: relative;
  padding-bottom: 10px;
}

.about-area .tools-content > p.peragraph-blog {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 21px;
}

.about-us-wrap > img {
  width: 100%;
}

.team-wrapper {
  background-color: #f1f1f1;
}

.team-img {
  overflow: hidden;
  position: relative;
}

.team-action {
  background: #fff none repeat scroll 0 0;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 70%;
  transform: translateY(-50%);
  transition: all 0.6s ease 0s;
  width: 100%;
  z-index: 5;
}

.team-wrapper:hover .team-action {
  opacity: 1;
  top: 50%;
}

.team-action a {
  color: #009c94;
  font-size: 20px;
  transition: all 0.3s ease 0s;
  margin: 0 10px;
}

.team-action a:hover {
  color: var(--orange-style);
}

.team-img img {
  width: 100%;
}

.team-content {
  padding: 20px 10px 23px;
}

.team-content > h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.team-content > span {
  font-size: 15px;
  font-style: italic;
}

.call-for-action-area,
.best-area {
  display: block;
  position: relative;
}

/* about us section */
#about-us-setion {
  padding: 80px 0px 100px 0px;
}
#about-us-setion h2 {
  color: var(--green-style);
}
@media (min-width: 991.5px) {
  #about-us-setion {
    padding: 80px 0px 250px 0px;
  }

  #feature_area {
    position: absolute;
    background: #1e2127;
    width: 100%;
    margin-bottom: 50px;
    z-index: 1;
    margin-top: -500px;
    box-shadow: 0px -4px 20px #000000b0;
  }
  #libra_people {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 300px;
  }
}

/* responsive */
@media (max-width: 1200px) {
  .stick .slicknav_btn {
    margin: -30px 10px 0 0;
  }
}

@media (max-width: 767.5px) {
  .header-search.mr-30 {
    margin-right: 50px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .header-search.mr-30 {
    margin-right: 80px;
    margin-top: 25px;
  }
}

.img-s {
  height: 200px;
  display: flex;
  align-items: center;
}

.dark .single-service > p {
  color: black;
}

/* ============================
Payment card
========================= */

.card.card-payment {
  border: 0px;
  border-radius: 50px !important;
}
.card-payment h4 {
  font-size: 4em;
  font-weight: bolder;
  color: white;
}
.card-payment span {
  color: white;
}

.card-payment-price {
  padding: 30px;
  text-align: center;
  font-weight: bold;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: 1px solid #eee;
  background-color: var(--green-style);
}

.card-payment-list {
  padding: 50px 30px;
  justify-content: center;
  display: flex;
  color: gray;
  height: auto;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;

  height: 220px;
}
.card-payment-list ul {
  list-style: none;
}
.card-payment-list ul li {
  font-size: 1.3em;
  margin-bottom: 10px;
}
.card-payment-list ul li i {
  color: var(--orange-style);
  margin-right: 5px;
  font-size: 1em !important;
}
.card-payment-purchase {
  padding: 10px 30px 30px 30px;
  justify-content: center;
  display: flex;
  border-top: 0px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  cursor: pointer;
}
.card-payment-purchase a {
  padding: 10px 25px;
  color: white;
  background-color: var(--orange-style);
  border-radius: 5px;
  font-size: 1.2em;
}

.card.card-steps {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0px;
  border-radius: 30px;
}

.step-number {
  font-size: 3em;
  position: relative;
  background-color: var(--dark);
  padding: 5px 25px;
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.card.card-steps h4 {
  font-weight: bold !important;
  font-size: 1.3em;
  text-align: center;
  height: 50px;
}

.card.card-steps p {
  text-align: center;
}

/* .card.card-steps::before {
  content: ">";
  position: absolute;
  right: -27px;
  font-size: 2.5em;
  top: 60%;
} */

.card.card-steps.latset-step::before {
  content: "";
}

#libra_people {
  background-size: 134% !important;
  background-repeat: no-repeat !important;
  background-position: top left;
}

.btn-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f7f7f7;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #cccccc;

  min-height: 65px;
  padding: 0 20px;
}
.btn-dashboard a {
  color: #444444;
  font-size: 14px;
  font-weight: 700;
}
.btn-dashboard.active {
  border-right: 1px solid #ffffff;
  background: #ffffff;
}
.btn-dashboard.active a {
  color: var(--green-style);
}
.card-dashboard {
  border: 1px solid #cccccc;
}

.btn-primary {
  color: #fff;
  background-color: var(--green-style);
  border-color: var(--green-style);
}
.btn-primary:hover {
  color: #fff;
  background-color: #009c94;
  border-color: #009c94;
}

.table td,
.table th {
  color: var(--dark);
}

select {
  background: #eceff8;
  border: 2px solid #eceff8;
  height: 45px;
  box-shadow: none;
  padding-left: 10px;
  font-size: 14px;
  color: #626262;
  width: 100%;
}

.multiselect-wrapper {
  background: #eceff8;
  border: 2px solid #eceff8;
  height: 45px;
  box-shadow: none;
  padding-left: 10px;
  font-size: 14px;
  color: #626262;
  width: 100% !important;
}
.multiselect-checkbox {
  background: transparent !important;
  border: 1px solid #eee;
  height: unset !important;
  box-shadow: none;
  padding-left: 10px;
  font-size: 14px;
  color: #626262;
  width: unset;
}
.multiselect-input-div input {
  padding: none !important;
  margin: 0 !important;
  background: #eceff8 !important;
  border: 2px solid #eceff8 !important;
  height: 45px !important;
  box-shadow: none !important;
  padding-left: 10px !important;
  font-size: 14px !important;
  color: #626262 !important;
  width: 100% !important;
}
#testSelect1_itemList hr {
  display: none !important;
}
.multiselect-wrapper .multiselect-list {
  width: 100%;
  margin-top: 12px !important;
}
.multiselect-wrapper .multiselect-input {
  padding: 0px !important;
}
.multiselect-wrapper {
  padding: 0px !important;
}
.multiselect-wrapper ul li:hover,
.multiselect-wrapper ul li.active {
  background-color: unset !important;
  color: var(--dark);
}

.btn-delete-row {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}

.responsive-table {
  overflow: auto;
}

.forget-password {
  text-decoration-line: underline;
}

.container-1 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .container-1 {
    max-width: 480px;
  }
}

@media (min-width: 1200px) {
  .container-1 {
    max-width: 600px;
  }
}

.text-warnning {
  color: var(--warning);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    a.by-ids {
        bottom: 0;
    }
}

@media only screen and (min-width: 767px) and (max-width: 992px) {
    a.by-ids {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    a.by-ids, .stick a.by-ids {
        bottom: 5px;
    }
}
a.by-ids {
    position: absolute;
    white-space: nowrap;
    bottom: 53px;
    right: -70px;
    color: white;
    background-color: var(--green-style);
    padding: 2px 9px;
}

.stick a.by-ids {
    bottom: 20px;
}
@media (max-width: 767px) {
    .stick .logo.mt-45 {
        margin-top: 4px;
    }
}
fieldset.scheduler-border {
    border: solid 1px #DDD !important;
    padding: 20px;
    border-bottom: none;
    margin-bottom: 11px
}

legend.scheduler-border {
    width: auto;
    border-bottom: none;
    font-size: 14px;
    font-weight: bold !important;
    color: #009C94 !important;
}

.required {
    color: #f07423;
    font-weight: bold !important;
}