/*@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  /* font-family: "Geist", sans-serif; */
  font-family: "ABCArizonaFlare";
}

@font-face {
  font-family: "ABCArizonaFlare";
  src: url(../fonts/Avenir-LT-Std-65-Medium-Oblique-1.otf);
}

body {
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

button:focus,
textarea:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #567156 !important;
}

figure {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  word-spacing: 0px;
  font-family: "ABCArizonaFlare";
}

p {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  text-transform: unset;
  font-weight: 400;
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  word-spacing: 0px;
}

p::first-letter {
  text-transform: capitalize;
}

/* btn-box */
.btn-box {
  display: flex;
}
.btn-box .btn-contact {
  background-color: #000000;
  color: #75B39C;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 28px;
  border: 0;
  overflow: hidden;
  color: #fff;
}
.btn-box .btn-contact.change {
  background-color: #75B39C;
  color: #E5F1EC;
}
/* btn-box */

/* Bounce To Right */
.hvr-bounce-to-right {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: #75B39C !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #75b39c;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
  color: #ffffff !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/

/**************************** Header Start ***************************/
.navbar-toggler {
  background: #000;
  padding: 7px 10px;
  border-radius: 8px;
}

.navbar-toggler i {
  color: #fff;
  font-weight: 600;
}
.header {
  background-color: #dee1de;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 30px;
}
.header .navbar {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar .navbar-brand {width: 20%;margin: 0;padding: 0;}
.header .navbar .navbar-brand img {
  width: 100%;
}
.header .navbar .nav-ul {
  display: flex;
  gap: 30px;
  margin: 0px 45px 0px 0px;
}
.header .navbar .nav-ul .nav-item {
}
.header .navbar .nav-ul .nav-item .nav-link {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
}
.header .navbar .nav-ul .nav-item .nav-link:hover {
  color: #567156;
}
/***************************** Header Close ***************************/

/*banner_wrap*/
.banner_wrap {
  position: relative;
  background: url("../images/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  padding: 0px 280px 50px;
  display: flex;
  align-items: end;
  justify-content: end;
}

.banner_wrap .main-img img {
    width: 400px;
    height: 100px;
    margin: 0px 0px 20px;
    object-fit: contain;
}

.banner_wrap .content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 35px 30px 45px;
    width: 880px;
    background-color: #0000005e;
}
.banner_wrap .content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
  margin: 0px 0px 30px;
  text-transform: capitalize;
}
.banner_wrap .content .link {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.banner_wrap .content .link a {
    font-size: 28px;
    color: #567156;
    height: 60px;
    width: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.banner_wrap .content .link a:hover {
    background: #75b39c;
    color: #fff;
}
/*banner_wrap*/

/* contact_sec_wrap */
.contact_sec_wrap {
  position: relative;
  overflow: hidden;
  padding: 14rem 0px 70px;
}
.contact_sec_wrap .form_wrap {
  background: #dee1de;
  border-radius: 20px;
  padding: 50px 50px;
}
.contact_sec_wrap .form_wrap .head {
  margin: 0px 0px 40px;
}
.contact_sec_wrap .form_wrap .head h2 {
  font-size: 45px;
  color: #000;
  line-height: 55px;
  font-weight: 600;
}
.contact_sec_wrap .form_wrap .group {
  margin: 0px 0px 20px;
}
.contact_sec_wrap .form_wrap .group label {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
}
.contact_sec_wrap .form_wrap .group input,
.contact_sec_wrap .form_wrap .group textarea {
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.contact_sec_wrap .form_wrap .group textarea {
  height: 200px;
}
/* contact_sec_wrap */
/*thankyou_wrap*/
section.thankyou_wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.thankyou_wrap .content {
    text-align: center;
}
section.thankyou_wrap .content img{
    width: 170px;
    margin: 0px 0px 15px;
}
section.thankyou_wrap .content h1 {
    font-size: 65px;
    line-height: 75px;
    color: #000;
    font-weight: 600;
    margin: 0px 0px 10px;
}

section.thankyou_wrap .content .btn-box {
    justify-content: center;
    margin: 19px 0px 0px;
}
/*thankyou_wrap*/
