:root {
  --color-dark: #1b1c20;
  --paragraph-gray: #1b1c20;
  --primary: #b7974d;
  --secondary: #e8505b;
  --gray: #d3dfef;
  --primary-light: #a7cfe0;
  --color-white: white;
  --transparent: rgba(0, 0, 0, 0);
  --dark-gray: #afafaf;
  --white: #fff;
  --black: #000;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  background-color: #fff;
  overflow-x: hidden !important;
  font-family: "Nunito Sans", serif;
  box-sizing: border-box !important;
}

div, section, footer {
  box-sizing: border-box;
}


body,
html {
  /* prevent horizontal scrolling */
}

html {
  /* scroll-behavior: smooth;*/
}

li,
ul,
ol {
  list-style: none;
  font-weight: 300
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  color: var(--color-dark);
  font-family: "Parkinsans", sans-serif;
}

p {
  font-size: 16px;
  color: var(--color-dark);
  font-style: normal;
  font-weight: 300;
}
button,
button:hover,
a,
a:hover {
  transition: 0.4s;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary);
}
a,
a:hover,
a:focus,
a:active,
button,
button:focus,
input,
textarea {
  outline: 0;
  text-decoration: none;
}

/* 02. COMMON STYLES */

.relative {
  position: relative !important;
}

/* line height */
.line-height-10 {
  line-height: 10px !important;
}
.line-height-13 {
  line-height: 13px !important;
}
.line-height-18 {
  line-height: 18px !important;
}
.line-height-20 {
  line-height: 20px !important;
}
.line-height-24 {
  line-height: 24px !important;
}
.line-height-22 {
  line-height: 22px !important;
}
.line-height-26 {
  line-height: 26px !important;
}
.line-height-28 {
  line-height: 28px !important;
}
.line-height-30 {
  line-height: 30px !important;
}
.line-height-35 {
  line-height: 35px !important;
}
.line-height-40 {
  line-height: 40px !important;
}
.line-height-45 {
  line-height: 45px !important;
}
.line-height-50 {
  line-height: 50px !important;
}
.line-height-55 {
  line-height: 55px;
}
.line-height-60 {
  line-height: 60px;
}
.line-height-65 {
  line-height: 65px;
}
.line-height-70 {
  line-height: 70px;
}
.line-height-75 {
  line-height: 75px;
}
.line-height-80 {
  line-height: 80px;
}
.line-height-85 {
  line-height: 85px;
}
.line-height-90 {
  line-height: 90px;
}
.line-height-95 {
  line-height: 95px;
}
.line-height-100 {
  line-height: 100px;
}
.line-height-110 {
  line-height: 110px;
}
.line-height-120 {
  line-height: 120px;
}

.font-size-11px {
  font-size: 11px !important;
}
.font-size-12px {
  font-size: 12px !important;
}
.font-size-13px {
  font-size: 13px !important;
}
.font-size-14px {
  font-size: 14px !important;
}
.font-size-15px {
  font-size: 15px !important;
}
.font-size-16px {
  font-size: 16px !important;
}
.font-size-17px {
  font-size: 17px !important;
}
.font-size-18px {
  font-size: 18px !important;
}
.font-size-19px {
  font-size: 19px !important;
}
.font-size-20px {
  font-size: 20px !important;
}
.font-size-21px {
  font-size: 21px !important;
}
.font-size-22px {
  font-size: 22px !important;
}
.font-size-23px {
  font-size: 23px !important;
}
.font-size-24px {
  font-size: 24px !important;
}
.font-size-25px {
  font-size: 25px !important;
}
.font-size-26px {
  font-size: 26px !important;
}
.font-size-27px {
  font-size: 27px !important;
}
.font-size-28px {
  font-size: 28px !important;
}
.font-size-29px {
  font-size: 29px !important;
}
.font-size-30px {
  font-size: 30px !important;
}





.font-weight-200 {
  font-weight: 200 !important;
}
.font-weight-300 {
  font-weight: 300 !important;
}
.font-weight-400 {
  font-weight: 400 !important;
}
.font-weight-500 {
  font-weight: 500 !important;
}
.font-weight-600 {
  font-weight: 600 !important;
}
.font-weight-700 {
  font-weight: 700 !important;
}
.font-weight-800 {
  font-weight: 800 !important;
}

.bordernone {
  border: 0 !important;
}


.h-auto {
  min-height: auto !important;
  resize: none;
}
.h-100vh {
  min-height: 100vh;
}

.mainBtn {
  background-color: var(--primary);
  border: 0;
  font-weight: 800;
  border-radius: 0;
  padding: 12px 25px;
  line-height: normal;
  color: var(--white);
  font-size: 17px;
  letter-spacing: 2px;
}
.mainBtn i{
  margin-left: 10px;
}

.mainBtn:hover {
  color: #fff;
  background-color:black;
}

.mainBtn:focus {
  color: #fff !important;
  background-color:black !important;
}


.btnPrimary {
  background-color: var(--primary);
  border: 0;
  font-weight: 800;
  border-radius: 0;
  padding: 12px 25px;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: normal;
  text-transform: uppercase;
}
.btnPrimary i{
  margin-left: 10px;
}

.btnPrimary:hover {
  color: #fff;
  background-color:var(--primary);
}

.btnPrimary:focus {
  color: #000;
}




@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}



/* Hover Effect */

a.hover{position:relative;}
a.hover::before{position:absolute;width:100%;height:2px;background-color: var(--color-orange);top:100%;left:0;pointer-events:none; right: 0px}
a.hover::before{content:"";transform-origin:100% 50%;transform:scale3d(0,1,1);transition:transform .3s cubic-bezier(.7,0,.2,1)}
a.hover:hover:before{transform-origin:0 50%;transform:scale3d(1,1,1);transition-timing-function:cubic-bezier(.4,1,.8,1)}

a.hover2{position:relative;padding-bottom: 5px;}
a.hover2::before{position:absolute;width:100%;height:1px;background-color: var(--color-orange);top:100%;left:0;pointer-events:none; right: 7px}
a.hover2::before{content:"";transform-origin:100% 50%;transform:scale3d(0,1,1);transition:transform .3s cubic-bezier(.7,0,.2,1)}
a.hover2:hover:before{transform-origin:0 50%;transform:scale3d(1,1,1);transition-timing-function:cubic-bezier(.4,1,.8,1)}


.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.hide {
  display: none;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}
.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black) !important;
}


.bg-white{
  background-color: white
}
.bg-black{
  background-color: black
}
.bg-gold{
  background-color: #b7974d;
}
.bg-goldenyellow{
  background-color: #ffaf00;
}

.bg-light{
  background-color: #f4f4f4 !important;
}

.border-primary{
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-primary) !important
}


/* Main Component Styles */
label.checkbox {
  position: relative;
  font-size: 14px !important;
}

label.checkbox .check-icon {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  border: solid 1px var(--border-primary);
  background-color: #fff;
  border-radius: 4px;
  transition: 0.2s all ease-in-out;
}

label.checkbox .check-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  transition: 0.2s all ease-in-out;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16' style=''%3e%3cpath fill='%23fff' d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z' class=''%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: center center;
  transform: scale(1.3);
  opacity: 0;
}

label.checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

label.checkbox input[type=checkbox]:checked + .check-icon {
  border-color: var(--primary);
  background: var(--primary);
}

label.checkbox input[type=checkbox]:checked + .check-icon:before {
  transform: scale(1);
  opacity: 1;
}

label.checkbox input[type=checkbox]:focus ~ .check-icon {
  box-shadow: 0 0 0 4px rgba(47, 86, 212, 0.1);
}

label.checkbox > div:first-child {
  display: inline-flex;
}

label.checkbox.checkbox-square .check-icon {
  border-radius: 0;
}

label.checkbox.checkbox-circular .check-icon {
  border-radius: 50%;
}

label.checkbox.has-label {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
}
label.checkbox.has-label-multiple {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: flex-start;
}
label.checkbox.has-label-multiple .check-icon {
  top: 5px;
}

label.radio {
  position: relative;
}
label.radio .radio-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 1px var(--border-primary);
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
label.radio .radio-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.2s ease-in-out;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='circle' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-circle fa-w-16'%3e%3cpath fill='%23fff' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z' class=''%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 0;
}
label.radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
label.radio input[type=radio]:checked + .radio-icon {
  background: var(--primary);
  border-color: var(--primary);
}
label.radio input[type=radio]:checked + .radio-icon:before {
  transform: scale(0.5);
  opacity: 1;
}
label.radio input[type=radio]:focus ~ .radio-icon {
  box-shadow: 0 0 0 4px rgba(47, 86, 212, 0.1);
}
label.radio > div:first-child {
  display: inline-flex;
}
label.radio.has-label {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
}
label.radio.has-label-multiple {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: flex-start;
}
label.radio.has-label-multiple .radio-icon {
  top: 5px;
}

.container-fluid {
  padding-left: 85px;
  padding-right: 85px;
}

.container {
  padding-left: 25px;
  padding-right: 25px;
}

.header{
  background-color: var(--white);
  padding: 5px 0;
  position: relative;
  font-size: 18px;
}
.header .nav-item{
  padding-left: 5px;
  padding-right: 5px;
}
.header .nav-link {
  color: var(--black);
  border-bottom: solid 4px transparent;
  padding: 5px 0
}
.header .nav-link:hover{
  border-bottom: solid 4px var(--primary);
  color: var(--primary);
}

ul.social-1{
  position: relative;
  margin:0;
  padding: 8px 0;
  text-align: right;
  font-size: 16px;
}
ul.social-1 li{
  display: inline-block;
  padding: 0 5px;
}
ul.social-1 li a{
  color: var(--color-dark)
}
ul.social-1 li a:hover{
  color: var(--primary)
}

.hero{
  background-color: var(--black);
  padding: 50px 0;
  position: relative;
  color: var(--white)
}

.hero h1{
  color:var(--white);
  font-size: 50px;
  margin-bottom: 25px;
  font-weight: 700
}

.hero p{
  color: var(--white);
  font-size: 20px;
  font-weight: 300
}

.hero h2{
  font-size: 28px;
  font-weight: 700
}

h1.section-title{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 50px;
  display: inline-block;
}

h1.section-title:before{
  content: "";
  height: 4px;
  width: 80px;
  background-color: #b4bccf;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -40px;
}


.service-section{
  position: relative;
}
.service-section .img-holder{
  background-color: #ccc;
  min-height:680px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-section .content{
  padding: 35px 60px;
}

.service-section h3{
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700
}
.service-section h4{
  font-size: 20px;
  font-family: "Nunito Sans", serif;
  font-weight: 800;
  letter-spacing: -0.3px;
}


ul.list-01{
  position: relative;
  margin: 0;
  padding: 0
}
ul.list-01 li{
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
}
ul.list-01 li:before{
  content: "";
  background-size: cover;
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  background-image: url(../img/arrow.png);
  margin-left: -30px;
}


ul.list-02{
  position: relative;
  margin: 0;
  padding: 0
}
ul.list-02 li{
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}
ul.list-02 li:before{
  content: "";
  background-size: cover;
  height: 7px;
  width: 7px;
  position: absolute;
  margin-left: -15px;
  background-color: #000;
  border-radius: 50%;
  margin-top: 8px;
}



.cta-01{
  position: relative;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0;
  background-attachment: fixed;
}
.cta-01:before{
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
}
.cta-01 h1{
  text-transform: uppercase;
  font-weight: 700
}

.steps{
  position: relative;
}
.steps .item{
  background-color: #f0ede4;
}
.steps .head{
  background-color: var(--primary);
  min-width: 165px;
  text-align: center;
  color: var(--white);
  padding: 10px;
}
.steps .head h4{
  font-family: "Nunito Sans", serif;
  font-size: 45px;
  color: #fff;
  font-weight: 700;
}
.steps .head p{
  font-weight: 700;
  color: #fff;
  line-height: normal;
}
.steps p{
  line-height: normal;
}


.testimonials-item{
  position: relative;
  text-align: center;
}

.testimonials-item .avtar{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border:solid 1px #ccc;
  position: relative;
  margin: auto;
  background-size:cover
}
.testimonials-item .avtar:before{
  height: 48px;
  width: 48px;
  background-size: cover;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -24px;
  left: -90px;
  background-image:url(../img/qoute-left.png);
}

.testimonials-item .avtar:after{
  height: 48px;
  width: 48px;
  background-size: cover;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -24px;
  right: -90px;
  background-image:url(../img/qoute-right.png);
}

.owl-prev{
  position: absolute;
  top: 50%;
  left: -100px;
  border:solid 1px #ccc !important;
  height: 44px !important;
  width: 44px !important;
  margin-top: -22px;
  border-radius: 50%;
  color: #8a8a8a !important
}

.owl-next{
  position: absolute;
  top: 50%;
  right: -100px;
  border:solid 1px #ccc !important;
  height: 44px !important;
  width: 44px !important;
  margin-top: -22px;
  border-radius: 50%;
  color: #8a8a8a !important
}



.page-acordian{
  position: relative;
}

.page-acordian .accordion-item {
  margin-bottom: 15px;
  border-radius: 7px;
  background-color: #ffffff;
}

.page-acordian .accordion-button {
  font-size: 18px;
  color: var(--color-dark);
  box-shadow: none !important;
  border-radius: 7px !important;
  background-color: #ffffff !important;  
  padding: 12px 20px;
  font-family: "Nunito Sans", serif;
  font-weight: 700
}


.page-acordian .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-right-radius: 7px; 
  border-top-left-radius: 7px;
}

.page-acordian .accordion-button:not(.collapsed) {
  color: var(--color-dark);
  background-color: var(--white);
  box-shadow: none !important;
}

.page-acordian .accordion-body{
  padding-top: 0 !important;
  min-height: 90px;
}

.page-acordian .accordion-button.collapsed::after {
  background: url("../img/plus.png");
  rotate:-180deg;
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  background-size: cover;
}

.page-acordian .accordion-button:not(.collapsed)::after {
  background: url("../img/minus.png");
  rotate:-180deg;
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  background-size: cover;
}



.footer{
  background-color: var(--black);
}

.footer .ftrlogo{
  width: 100%;
  max-width: 270px;
}

ul.address2{
  margin: 0;
  padding: 0;
  font-size: 17px;
}
ul.address2 a{
  color: var(--white);
}
ul.address2 a:hover{
  color: var(--primary);
}
ul.address2 img{
  width: 20px;
  position: relative;
}

ul.address2 .badge{
  border:solid 1px var(--secondary2);
  color:var(--primary);
  background-color: var(--white);
  font-weight: normal;
  border-radius: 25px;
  padding: 7px 15px;
}

hr.seprator{
  border-color: #fff
}


.contactForm{
  position: relative;
}
.contactForm .form-control{
  border:0;
  padding: 12px;
}