@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --text-dark: #000;
  --primary-color: #F3911A;
  --white:#FFFFFF;
  --font-oswald: "Oswald", sans-serif;
}

/*================================================
1. Mixins Css
=================================================*/
/*================================================
2. Global Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: var(--font-oswald);
  color: var(--white);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-oswald);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

button {
  outline: none;
  border: none;
}

i.bx {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-70 {
  padding-top: 70px;
}

.mb-140 {
  margin-bottom: 140px;
}
@media (max-width: 991px) {
  .mb-140 {
    margin-bottom: 30px;
  }
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 40px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-65 {
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .mb-65 {
    margin-bottom: 40px;
  }
}

.mt-120 {
  margin-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-120 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-120 {
    margin-top: 90px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 40px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-44 {
  margin-bottom: 44px;
}
@media (max-width: 991px) {
  .mb-44 {
    margin-bottom: 0px;
  }
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .mt-60 {
    margin-top: 40px;
  }
}

.mt-65 {
  margin-top: 65px;
}
@media (max-width: 767px) {
  .mt-65 {
    margin-top: 45px;
  }
}

.mt-70 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .mt-70 {
    margin-top: 40px;
  }
}

.padding-left-right {
  padding: 0 8%;
}
@media (max-width: 767px) {
  .padding-left-right {
    padding: 0;
  }
}

.container-one {
  width: 100%;
  max-width: 1066px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .container-one {
    max-width: 1066px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-one {
    max-width: 1066px;
  }
}

p {
  font-family: var(--font-oswald);
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.6;
}

/*=======================================
 06. Section-title
=======================================*/
/*=======================================
 09. Buttons 
=======================================*/
.primary-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid var(--text-primary);
  overflow: hidden;
  transition: all 0.5s ease 0s;
}
.primary-btn::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 1;
  background: var(--primary-color);
  transition: all 0.5s ease 0s;
}
.primary-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
}
.primary-btn:hover::before {
  width: 100%;
}

.primary-btn2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.5s ease 0s;
}
.primary-btn2::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 1;
  background: var(--primary-color);
  transition: all 0.5s ease 0s;
}
.primary-btn2:hover {
  color: var(--white);
  border-color: var(--primary-color);
}
.primary-btn2:hover::before {
  width: 100%;
}

/*=======================================
 11 .Header Start
=======================================*/
header {
  padding-top: 50px;
  margin-bottom: 130px;
  z-index: 99;
}
header.style-2 {
  position: absolute;
  top: 30px;
  width: 100%;
  background-color: transparent;
  padding-top: 25px;
  margin-bottom: 0;
  padding-bottom: 130px;
}
@media (max-width: 576px) {
  header.style-2 {
    top: 0px;
  }
}

.header-wrap {
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
}
.header-wrap .current-page {
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 1px solid var(--white);
}
@media (max-width: 991px) {
  .header-wrap .current-page {
    display: none;
    visibility: hidden;
  }
}
.header-wrap .current-page a {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 7px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.header-wrap .company-logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wrap .company-logo a {
  max-width: 180px;
  width: 100%;
  line-height: 1;
  padding: 20px;
}
.header-wrap .company-logo a img {
  max-width: 180px;
  width: 100%;
}
.header-wrap .search-people {
  display: flex;
  align-items: center;
}
.header-wrap .search-people a {
  padding: 20px;
  font-size: 11px;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 7px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.header-wrap .search-people a:hover {
  color: var(--white);
}
.header-wrap .header-menu {
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 1px solid var(--white);
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  .header-wrap .header-menu {
    max-width: 80px;
  }
}
.header-wrap .header-menu.active {
  background-color: rgba(85, 85, 85, 0.6);
}
.header-wrap .header-menu .menu-list {
  position: absolute;
  right: 0;
  top: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  background-color: rgba(85, 85, 85, 0.6);
  width: 220px;
  padding: 25px;
  display: none;
}
.header-wrap .header-menu .menu-list.active {
  display: block;
  animation: fade-down 0.3s linear;
}
@keyframes fade-down {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.header-wrap .header-menu .menu-list li {
  text-align: center;
  margin-bottom: 5px;
}
.header-wrap .header-menu .menu-list li a {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 7px;
  text-align: center;
  transition: 0.35s;
}
.header-wrap .header-menu .menu-list li a:hover {
  color: var(--primary-color);
}

/*=======================================
 12 .Banner Start
=======================================*/
.copyright-area {
  display: flex;
  justify-content: center;
}
.copyright-area p {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 7px;
  text-align: center;
}

.banner-area {
  position: relative;
}
.banner-area .banner-video video {
  width: 100%;
  height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .banner-area .banner-video video {
    min-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner-area .copyright-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 20vh;
}
@media (max-width: 767px) {
  .banner-area .copyright-wrap {
    bottom: 40px;
  }
}
.banner-area .copyright-area {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--white);
  padding-bottom: 20px;
}
.banner-area .copyright-area p {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 7px;
  text-align: center;
}

/*=======================================
 13 .Services Start
=======================================*/
.services-area {
  margin-bottom: 100px;
}
.services-area .services-wrap {
  border: 1px solid var(--white);
}
.services-area .services-wrap .section-title {
  padding: 40px 50px 60px;
  border-bottom: 1px solid var(--white);
}
@media (max-width: 767px) {
  .services-area .services-wrap .section-title {
    padding: 40px 15px 60px;
  }
}
.services-area .services-wrap .section-title h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 10px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .services-area .services-wrap .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .services-area .services-wrap .section-title h2 {
    font-size: 28px;
    letter-spacing: 5px;
  }
}
.services-area .services-wrap > p {
  font-size: 27px;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 55px 50px 80px;
  text-align: justify;
}
@media (max-width: 767px) {
  .services-area .services-wrap > p {
    padding: 55px 15px 80px;
    font-size: 22px;
  }
}
.services-area .services-wrap .single-services {
  border-bottom: 1px solid #fff;
  padding: 35px 50px 60px;
}
.services-area .services-wrap .single-services.last {
  border-bottom: none;
}
@media (max-width: 767px) {
  .services-area .services-wrap .single-services {
    padding: 35px 15px 60px;
  }
}
.services-area .services-wrap .single-services h5 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 8px;
  margin-bottom: 15px;
}
.services-area .services-wrap .single-services p {
  font-size: 22px;
  text-align: justify;
}
.services-area .services-wrap .button-group {
  gap: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services-area .services-wrap .button-group a {
  width: 50%;
  padding: 32px 22px;
}
@media (max-width: 576px) {
  .services-area .services-wrap .button-group a {
    letter-spacing: 3px;
    padding: 22px;
  }
}
.services-area .services-wrap .button-group a:first-child {
  border-left: none;
}
.services-area .services-wrap .button-group a:last-child {
  border-left: none;
  border-right: none;
}
.services-area .btn-area {
  margin-top: -27px;
}

.primary-btn {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 7px;
  border: 1px solid var(--white);
  padding: 18px 22px;
  background-color: var(--text-dark);
}
.primary-btn.primary-border {
  border-color: var(--primary-color);
}

/*=======================================
 14 .People Start
=======================================*/
.people-banner .banner-img img {
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 767px) {
  .people-banner .banner-img img {
    -o-object-position: 80%;
       object-position: 80%;
  }
}

.people-section {
  position: relative;
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .people-section {
    margin-bottom: 90px;
  }
}
.people-section .people-img img {
  min-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 750px;
  width: 100%;
}
@media (max-width: 991px) {
  .people-section .people-img img {
    height: unset;
  }
}
.people-section .people-wrap {
  position: absolute;
  width: 100%;
  bottom: 80px;
}
@media (max-width: 991px) {
  .people-section .people-wrap {
    bottom: 30px;
  }
}

/*=======================================
 15 .Gold KC Start
=======================================*/
.gold-kc-content {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 60px 60px;
}
@media (max-width: 1199px) {
  .gold-kc-content {
    padding: 40px 15px;
  }
}
.gold-kc-content h2 {
  margin-bottom: 0;
  font-size: 65px;
  font-weight: 400;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .gold-kc-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 576px) {
  .gold-kc-content h2 {
    font-size: 30px;
  }
}

/*=======================================
 16 .LAW OF POSSIBILITY. Start
=======================================*/
.low-possible-section {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(../images/bg/contact-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 530px;
  display: flex;
  align-items: end;
  padding: 60px 0;
}
.low-possible-section .low-possible-content h2 {
  font-size: 55px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 12px;
  padding-top: 20px;
}
.low-possible-section .low-possible-content h2 span {
  position: relative;
}
.low-possible-section .low-possible-content h2 span::after {
  content: "";
  width: 90%;
  height: 90px;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--primary-color);
  position: absolute;
}
@media (max-width: 991px) {
  .low-possible-section .low-possible-content h2 span::after {
    height: 54px;
    left: 33px;
  }
}
@media (max-width: 767px) {
  .low-possible-section .low-possible-content h2 span::after {
    height: 39px;
    left: 26px;
  }
}
@media (max-width: 991px) {
  .low-possible-section .low-possible-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .low-possible-section .low-possible-content h2 {
    font-size: 28px;
    letter-spacing: 5px;
  }
}
.low-possible-section .low-possible-content > p {
  font-size: 30px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .low-possible-section .low-possible-content > p {
    font-size: 22PX;
  }
}
.low-possible-section .low-possible-content .primary-btn {
  background-color: transparent;
}
.low-possible-section .low-possible-content .copyright-area {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

/*=======================================
 17.Contact Start
=======================================*/
.footer-wrap .company-location {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 576px) {
  .footer-wrap .company-location {
    font-size: 15px;
  }
}
.footer-wrap .current-page {
  max-width: 180px;
}
@media (max-width: 991px) {
  .footer-wrap .current-page {
    display: block;
    visibility: visible;
  }
}
.footer-wrap .current-page.two {
  border-right: none;
  border-left: 1px solid #fff;
}
.footer-wrap .about-company {
  border: 1px solid #fff;
  border-top: none;
  padding: 15px 25px;
  font-size: 13px;
}
@media (max-width: 991px) {
  .footer-wrap .header-wrap {
    height: unset;
    flex-wrap: wrap;
  }
  .footer-wrap .header-wrap .current-page {
    border-bottom: 1px solid #fff;
    max-width: unset;
  }
  .footer-wrap .header-wrap .current-page a {
    padding: 20px;
  }
  .footer-wrap .header-wrap .current-page.two {
    border-top: 1px solid #fff;
    border-bottom: unset;
  }
}

.people-details-section {
  overflow: hidden;
}
.people-details-section .header-wrap .current-page {
  max-width: 180px;
}
.people-details-section .header-wrap .current-page a {
  color: var(--primary-color);
}
.people-details-section .header-wrap .current-page a:hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .people-details-section .header-wrap .current-page {
    display: block;
    visibility: visible;
  }
}
.people-details-section .header-wrap .current-page.two {
  border-right: none;
  border-left: 1px solid #fff;
}
.people-details-section .header-wrap .neme-and-deg {
  font-size: 13px;
  letter-spacing: 7px;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .people-details-section .header-wrap {
    height: unset;
    flex-wrap: wrap;
  }
  .people-details-section .header-wrap .current-page {
    border-bottom: 1px solid #fff;
    max-width: unset;
  }
  .people-details-section .header-wrap .current-page a {
    padding: 20px;
  }
  .people-details-section .header-wrap .current-page.two {
    border-top: 1px solid #fff;
    border-bottom: unset;
  }
}
.people-details-section .people-details-wrap {
  border: 1px solid white;
  border-bottom: none;
}
.people-details-section .people-details-wrap .content {
  font-size: 25px;
  line-height: 1.3;
  text-align: justify;
  padding: 55px 50px 50px;
}
@media (max-width: 767px) {
  .people-details-section .people-details-wrap .content {
    padding: 55px 15px 50px;
  }
}
.people-details-section .people-details-wrap .content p {
  font-size: 25px;
  line-height: 1.3;
  text-align: justify;
}
.people-details-section .people-details-wrap .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .people-details-section .people-details-wrap .content p {
    font-size: 22px;
  }
}
.people-details-section .people-details-wrap .button-group {
  gap: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.people-details-section .people-details-wrap .button-group a {
  width: 50%;
  padding: 32px 22px;
}
@media (max-width: 576px) {
  .people-details-section .people-details-wrap .button-group a {
    letter-spacing: 3px;
    padding: 22px;
  }
}
.people-details-section .people-details-wrap .button-group a:first-child {
  border-left: none;
}
.people-details-section .people-details-wrap .button-group a:last-child {
  border-left: none;
  border-right: none;
}

.single-people-img {
  display: inline-block;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 991px) {
  .single-people-img {
    width: 100%;
  }
}
.single-people-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0%;
  height: 1px;
  background: var(--primary-color);
  transition: 0.3s;
  transition-delay: 0s;
}
.single-people-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  background: var(--primary-color);
  transition: 0.3s;
  transition-delay: 0.5s;
}
.single-people-img .for-border {
  width: 0;
}
.single-people-img .for-border::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  height: 0%;
  width: 1px;
  background: var(--primary-color);
  transition: 0.3s;
  transition-delay: 0.7s;
}
.single-people-img .for-border::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 0;
  height: 0%;
  width: 1px;
  background: var(--primary-color);
  transition: 0.3s;
  transition-delay: 0.3s;
}
.single-people-img img {
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 991px) {
  .single-people-img img {
    width: 100%;
    height: unset;
  }
}
.single-people-img .name {
  background-color: rgba(85, 85, 85, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: 0.35s;
  opacity: 0;
}
.single-people-img .name h5 {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 500;
}
.single-people-img:hover::before {
  width: 100%;
  transition-delay: 0.8s;
}
.single-people-img:hover::after {
  width: 100%;
  transition-delay: 0.4s;
}
.single-people-img:hover .for-border::before {
  height: 102%;
  transition-delay: 0s;
}
.single-people-img:hover .for-border::after {
  height: 102%;
  transition-delay: 0.6s;
}
.single-people-img:hover .name {
  opacity: 1;
}

.contact-page-area .contact-wrap {
  border: 1px solid white;
  padding: 55px 50px 50px;
}
@media (max-width: 767px) {
  .contact-page-area .contact-wrap {
    padding: 55px 15px 50px;
  }
}
.contact-page-area .contact-wrap .single-content h5 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
}
.contact-page-area .contact-wrap .single-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0;
}
.contact-page-area .contact-wrap .single-content p a {
  color: var(--primary-color);
}
.contact-page-area .contact-wrap .single-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-page-area .contact-wrap .single-content ul li {
  font-size: 20px;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */