@font-face {
  font-family: "Sukhumvit Set";
  src: url('../font/SukhumvitSet-Thin.ttf');
  font-weight: 100;
}

@font-face {
  font-family: "Sukhumvit Set";
  src: url('../font/SukhumvitSet-Light.ttf');
  font-weight: 200;
}

@font-face {
  font-family: "Sukhumvit Set";
  src: url('../font/SukhumvitSet-Text.ttf');
  font-weight: 300;
}

@font-face {
  font-family: "Sukhumvit Set";
  src: url('../font/SukhumvitSet-SemiBold.ttf');
  font-weight: 400;
}

@font-face {
  font-family: "Sukhumvit Set";
  src: url('../font/SukhumvitSet-Bold.ttf');
  font-weight: 500;
}

:root {
  --color-white: #fff;
  --color-main: #F9A738;
  --color-main-dark: #E69200;
  --color-second: #65C194;
  --color-second-dark: #48a176;
  --color-brown: #563C37;
  --color-gray: #dee2e6;
  --color-black: #000;
  --bg-black: #333333;
}

.h1 {
  font-size: 60px !important;
}

.h2 {
  font-size: 48px !important;
}

.h3 {
  font-size: 36px !important;
}

.h4 {
  font-size: 32px !important;
}

.fs-1 {
  font-size: 24px !important;
}

.fs-2 {
  font-size: 20px !important;
}

.fs-3 {
  font-size: 18px !important;
}

.fs-4 {
  font-size: 16px !important;
}

.fs-5 {
  font-size: 14px !important;
}

.fs-5 {
  font-size: 12px !important;
}

.fw-500 {
  font-weight: 200 !important;
}

.fw-700 {
  font-weight: 500 !important;
}

@media (max-width: 991px) {
  body {
    font-size: 22px !important;
  }

  .h1 {
    font-size: 56px !important;
  }
  
  .h2 {
    font-size: 42px !important;
  }
  
  .h3 {
    font-size: 32px !important;
  }
  
  .h4 {
    font-size: 28px !important;
  }
  
  .fs-1 {
    font-size: 20px !important;
  }
  
  .fs-2 {
    font-size: 18px !important;
  }

  .fs-3,
  .fs-4 {
    font-size: 16px !important;
  }

  .fs-5,
  .fs-6 {
    font-size: 14px !important;
  }
}


@media (max-width: 576px) {
  body {
    font-size: 20px !important;
  }

  .h1 {
    font-size: 46px !important;
  }

  .h2 {
    font-size: 40px !important;
  }

  .h3 {
    font-size: 30px !important;
  }

  .h4 {
    font-size: 24px !important;
  }

  .fs-1 {
    font-size: 20px !important;
  }

  .fs-2,
  .fs-3,
  .fs-4 {
    font-size: 16px !important;
  }

  .fs-5,
  .fs-6 {
    font-size: 14px !important;
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Sukhumvit Set";
  font-size: 24px;
  font-weight: 200;
  color: #444444;
}

a {
  color: var(--color-second);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

a:hover {
  color: var(--color-second-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

.img-cover {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: cover;
}

.place-content-center {
  place-content: center !important;
}

.bg-size-contain {
  background-size: contain !important;
}

.bg-size-cover {
  background-size: cover !important;
}

/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
.color-main {
  color: var(--color-main) !important;
}

.color-second {
  color: var(--color-second) !important;
}

.color-white {
  color: var(--color-white) !important;
}

.color-brown {
  color: var(--color-brown) !important;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn {
  font-size: 16px;
  border-radius: 20px;
  width: auto;
  padding: 0.375rem 1rem;
}

.btn.readonly {
  cursor: default !important;
  pointer-events: none !important;
  filter: opacity(0.45) !important;
}

.btn.btn-md {
  font-size: 24px;
  border-radius: 25px;
  width: auto;
  padding: 0.25rem 1rem;
}

.btn.btn-main {
  background-color: var(--color-main) !important;
  color: var(--color-white) !important;
}

.btn.btn-main:hover {
  background-color: var(--color-main-dark) !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-second);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7ed899;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-second);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--color-second);
}

#header .logo img {
  max-height: 40px;
}

/**
* Get Startet Button 
*/
.get-started-btn {
  margin-left: 22px;
  background: var(--color-second);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 100px;
  font-size: 16px;
  font-weight: 400;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-second);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul p,
.navbar .dropdown ul a {
  padding: 8px 20px;
  font-size: 12px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-second);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

  .navbar a,
  .navbar a:focus {
    padding: 10px 0 10px 80px;
  }
}

@media (max-width: 1199px) {

  .navbar a,
  .navbar a:focus {
    padding: 10px 0 10px 60px;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-second);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-second);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  margin-top: 80px;
  position: relative;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
  background-color: var(--bg-black);
}

.hero.hero-home {
  height: 60vh;
  background: url(../img/homepage/hero-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.hero-lifestyle {
  height: 80vh;
  background: url(../img/staravenue-lifestylepage/hero-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.hero-staravenue5 {
  height: 80vh;
  background: url(../img/staravenue5page/hero-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.hero-staravenue7 {
  height: 80vh;
  background: url(../img/staravenue7page/hero-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.hero-investor {
  height: auto;
  background: url(../img/investorpage/hero-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  align-items: start !important;
  padding-bottom: 40rem;
}

.hero.hero-investor .container {
  padding-left: 5rem;
}

.hero.hero-investor .text-absolute {
  position: absolute;
  bottom: -5rem;
  left: 20rem;
}

.hero.hero-investor .hero-icon {
  margin-top: 10rem;
}

.hero.hero-investor .hero-icon .hero-item {
  text-align: -webkit-center;
  width: 15%;
}

.hero.hero-investor .hero-icon .hero-item .hero-item-icon {
  width: 100px;
  height: 100px;
  padding: 0.75rem;
  background-color: var(--color-white);
  border-radius: 18px;
  margin-bottom: 1.5rem;
}

@media (max-width: 1366px) {
  .hero.hero-investor .text-absolute {
    position: absolute;
    bottom: -5rem;
    left: 16rem;
  }
}

@media (max-width: 1199px) {
  .hero.hero-investor .container {
    padding-left: 0;
  }

  .hero.hero-investor .text-absolute {
    width: 60%;
    bottom: -8rem;
  }
}

@media (max-width: 991px) {
  .hero.hero-investor {
    padding-bottom: 30rem;
  }

  .hero .container {
    padding-top: 0px;
  }

  .hero.hero-investor .text-absolute {
    bottom: -10rem;
  }

  .hero.hero-investor .hero-icon {
    margin-top: 13rem;
  }

  .hero.hero-lifestyle .container,
  .hero.hero-staravenue5 .container,
  .hero.hero-staravenue7 .container {
    padding: 0 4rem;
  }

  .hero.hero-lifestyle {
    height: 60vh;
    background: url(../img/staravenue-lifestylepage/hero-bg-only.png) top center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero.hero-staravenue5 {
    height: 60vh;
    background: url(../img/staravenue5page/hero-bg-only.png) top center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero.hero-staravenue7 {
    height: 60vh;
    background: url(../img/staravenue7page/hero-bg-only.png) top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .hero.hero-lifestyle,
  .hero.hero-staravenue5,
  .hero.hero-staravenue7 {
    height: 50vh;
  }

  .hero {
    height: 100vh;
  }

  .hero.hero-home img {
    padding: 1rem;
  }


  .hero.hero-investor {
    padding-bottom: 100px;
  }

  .hero.hero-investor .content-text p {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 18px;
    padding: 1rem;
  }

  .hero.hero-investor .container {
    padding-left: 1rem;
  }

  .hero.hero-investor .text-absolute {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .hero.hero-investor .hero-icon {
    margin-top: 2rem;
  }

  .hero.hero-investor .hero-icon .hero-item {
    width: 33.33%;
  }
}

@media (max-width: 576px) {
  .hero.hero-lifestyle .container,
  .hero.hero-staravenue5 .container,
  .hero.hero-staravenue7 .container {
    padding: 0 2rem;
  }

  .hero.hero-investor .hero-icon .hero-item {
    width: 50%;
  }

}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 60px 0;
}

.section-bg {
  background-color: var(--bg-black) !important;
  color: var(--color-white);
}

.section-title {
  padding-bottom: 40px;
}

.section-title p:first-child {
  margin-bottom: 1.5rem;
}

.section-title p {
  padding: 0;
  text-align: center;
}

@media (max-width: 576px) {
  .section-title p:first-child {
    margin-bottom: 1rem;
  }

  .section-title {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# preview
--------------------------------------------------------------*/
.preview {
  text-align: center;
}

.preview .container {
  text-align: -webkit-center;
}

.preview .executive {
  padding-top: 15px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.preview .executive .executive-profile {
  align-items: center;
  display: flex;
}

.preview .executive .executive-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.preview .executive .executive-content p {
  padding-left: 1rem;
  margin-bottom: 0px !important;
}

@media (max-width: 576px) {
  .preview .executive {
    padding-top: 10px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  width: 100%;
  position: relative;
}

.about.about-home-1 {
  background: url(../img/homepage/about-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lifestyle .about {
  height: 42vh;
  background: url(../img/staravenue-lifestylepage/about-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.staravenue5 .about {
  height: 42vh;
  background: url(../img/staravenue5page/about-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.staravenue7 .about {
  height: 45vh;
  background: url(../img/staravenue7page/about-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.investor .about {
  height: 60vh;
  background: url(../img/investorpage/about-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about .content {
  align-self: center !important;
  margin: auto;
  padding-left: 5rem;
  padding-right: 1rem;
}

@media (max-width: 1399px) {
  .lifestyle .about,
  .staravenue5 .about,
  .staravenue7 .about {
    height: auto;
  }

  .about .content {
    padding-left: 2rem;
  }

  .about .content .fs-2 br {
    display: none;
  }
  .lifestyle .about .row,
  .staravenue5 .about .row,
  .staravenue7 .about .row {
    padding-right: 2rem;
  }

  .lifestyle .about .content,
  .staravenue7 .about .content {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 18px;
    padding: 1rem;
  }

  .staravenue5 .about .content {
    background-color: rgba(255, 255, 255, .75);
    border-radius: 18px;
    padding: 1rem;
  }
}

@media (max-width: 991px) {
  .about .content {
    padding-left: 0;
    padding-right: 0;
  }

  .investor .about {
    height: 100%;
  }

  .investor .about .row {
    height: auto;
  }

  .investor .about .row {
    margin: 0 2rem;
    background-color: rgba(86, 60, 55, .75);
    border-radius: 18px;
    padding: 2rem;
  }

  .lifestyle .about .row,
  .staravenue5 .about .row,
  .staravenue7 .about .row {
    padding: 0 2rem;
  }
}

@media (max-width: 576px) {
  .about .content {
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .investor .about {
    height: auto;
  }

  .investor .about .row {
    margin: 0 1rem;
    padding: 1rem;
  }
}


/*--------------------------------------------------------------
# Start-business
--------------------------------------------------------------*/
.start-business {
  width: 100%;
  height: 80vh;
  background: url(../img/homepage/startbusiness-bg.png) top center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  color: var(--color-black);
}

.start-business .h1 {
  text-shadow: 1px 2px 5px var(--color-white);
}

@media (max-width: 1399px) {
  .start-business .content br {
    display: none;
  }
  .start-business .content {
    background-color: rgba(255, 255, 255, .75);
    border-radius: 18px;
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.project {
  width: 100%;
  height: 100%;
  background: url(../img/homepage/project-bg.png) top center;
  background-size: contain;
  position: relative;
  background-repeat: no-repeat;
  padding-bottom: 0;
}

.project .project-item {
  padding: 0 1.5rem;
  margin-bottom: 5rem;
  width: 100%;
}

.project .project-item .project-img {
  position: relative;
  padding: 0;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-white);
}

.project .project-item .project-img a:hover img {
  transform: scale(1.1);
}

.project .project-item .project-img img {
  transition: transform 1s ease;
  height: 100%;
  width: 100%;
  padding: 0;
}

.project .project-item .project-img .sold {
  background: rgba(51, 51, 51, .75);
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid var(--color-white);
  text-align: center;
}

.project .project-item .project-img .sold p {
  margin-top: 7.75rem;
  font-weight: 400;
  font-size: 16px;
}

.project .project-item .project-img .sold p::before,
.project .project-item .project-img .sold p::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--color-white);
  margin: 4px 10px;
}

.project .project-content {
  padding: 1rem 1.5rem;
}

.project .project-content p {
  font-size: 14px;
  font-weight: 200;
  align-self: center;
}

.project .project-content a.h6 {
  color: var(--color-main);
  transition: 0.3s;
}

.project .project-content a.h6:hover {
  color: var(--color-main-dark);
}

.project .d-inline-flex {
  margin-bottom: 1rem;
  padding: 0;
}

.project .d-inline-flex p {
  margin-bottom: 0;
  padding-left: 0.5rem;
}

.project .d-inline-flex svg {
  color: var(--color-main);
  min-width: 40px;
  width: 40px;
  height: 30px;
}

@media (max-width: 1399px) {
  .project .project-item .project-img .sold p::before,
  .project .project-item .project-img .sold p::after {
    width: 90px;
  }
}

@media (max-width: 1199px) {
  .project .project-item .project-img .sold p::before,
  .project .project-item .project-img .sold p::after {
    width: 120px;
  }

  .project .project-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  .project .project-item .project-img .sold p::before,
  .project .project-item .project-img .sold p::after {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .project .project-item .project-img .sold p::before,
  .project .project-item .project-img .sold p::after {
    width: 150px;
  }
}

@media (max-width: 576px) {
  .project .project-content {
    padding: 1rem;
  }

  .project .project-item {
    margin-bottom: 1rem;
  }

  .project .project-item .project-img {
    height: 250px;
  }

  .project .project-item .project-img .sold p {
    margin-top: 7rem;
  }

  .project .project-item .project-img .sold p::before,
  .project .project-item .project-img .sold p::after {
    width: 60px;
  }

  .project .d-inline-flex:last-child {
    margin-bottom: .5rem !important
  }
}


/*--------------------------------------------------------------
# Project Detail
--------------------------------------------------------------*/
.project-detail {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: -webkit-center;
}

.project-detail.project-detail-lifestyle {
  background: url(../img/staravenue-lifestylepage/project-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-detail.project-detail-staravenue5 {
  background: url(../img/staravenue5page/project-bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-detail .project-item {
  margin-bottom: 3rem;
  text-align: center;
}

a.btn-seemore:hover {
  color: var(--color-second) !important;
}

.project-detail .project-icon-content {
  padding-bottom: 1.5rem;
  text-align: -webkit-center;
}

.project-detail .project-item .project-icon {
  padding: .5rem;
  width: 65px;
  height: 65px;
  margin: 0;
  background-color: var(--color-white);
  border-radius: 18px;
}

.project-detail .project-item .project-icon svg {
  width: 40px;
  height: 45px;
}

.project-detail .project-item .project-icon.border {
  border: 1px solid var(--color-brown) !important;
}

.project-detail .project-box-text {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--color-brown) !important;
  margin: auto;
  padding: 1.5rem;
  text-align: center;
  width: fit-content;
  margin: 0 3rem;
}

.project-detail.section-bg .project-box-text {
  border: 1px solid var(--color-white) !important;
}

.project-detail .project-box-text .project-icon {
  position: absolute;
  bottom: -40px;
  text-align: end;
  right: -50px;
}

.project-detail:has(.project-box-text) {
  padding-bottom: 7rem !important;
}


@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
  .project-detail br {
    display: none;
  }

  .project-detail .project-box-text .project-icon {
    position: absolute;
    bottom: -40px;
    text-align: end;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .project-detail .project-box-text {
    margin: 0 1.5rem;
    padding: .5rem 0;
  }
}

@media (max-width: 576px) {
  .project-detail .project-item {
    margin-bottom: 1.5rem;
  }

  .project-detail:has(.project-box-text) {
    padding-bottom: 5rem !important;
  }
}

/*--------------------------------------------------------------
# Bonus
--------------------------------------------------------------*/
@media (max-width: 1399px) {
  .bonus .content br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  width: 100%;
  height: 100%;
  background: url(../img/homepage/contact-bg.png) center center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  /* padding-top: 5px;
  padding-bottom: 0; */
}

.contact .info,
.contact .php-email-form {
  height: 100%;
  padding: 3rem;
  border: 2px solid var(--color-gray) !important;
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

.contact .info {
  width: 500px;
}

.contact .php-email-form {
  width: 800px;
}

.contact .info .content {
  padding-left: 2rem;
}

.contact .info .content p {
  margin-bottom: 0;
}

.contact .info .content p,
.contact .info .content a {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  align-self: center;
  transition: 0.3s;
}

.contact .info .content a:hover {
  color: var(--color-second);
}

.contact .info .info-icon {
  width: 35px;
}

.contact .info svg {
  color: var(--color-main);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form select option {
  font-family: "Sukhumvit Set";
  font-size: 18px !important;
  font-weight: 200 !important
}

.contact .php-email-form input,
.contact .php-email-form select {
  height: 44px;
  font-family: "Sukhumvit Set";
  font-size: 18px;
  font-weight: 200;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding-bottom: 0;
  border-bottom: 1px solid;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus {
  border-color: var(--color-second);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1399px) {
  .contact .php-email-form {
    width: 600px;
}
}

@media (max-width: 1199px) {
  .contact .info .content {
    padding-left: 0;
}

  .contact .info {
    width: 400px;
    padding: 2rem;
}
  .contact .php-email-form {
    width: 500px;
    padding: 2rem;
}
}

@media (max-width: 991px) {
  .contact .info,
  .contact .php-email-form {
    width: 100%;
    padding: 3rem 2rem;
  }

  .contact .info .content {
    padding-left: 2rem;
}
}

@media (max-width: 576px) {
  .contact .info .content {
    padding-left: 0;
}

  .contact .info,
  .contact .php-email-form {
    padding: 2rem 1.5rem;
  }

  .contact .php-email-form input,
  .contact .php-email-form select {
    height: 40px;
    font-size: 16px;
  }

}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding-bottom: 0;
}

.map .map-content {
  height: 450px
}

.map .map-content iframe {
  border: 0;
  width: 100%;
  height: 450px
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--color-white);
  font-size: 14px;
  background: var(--bg-black);
}

#footer .footer-top {
  padding: 60px 0 40px 0;
  background: var(--bg-black);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  align-self: center;
}

#footer .footer-top .footer-contact img {
  padding: 2rem;
}

#footer .footer-top p,
#footer .footer-top a {
  color: var(--color-white);
  font-size: 12px;
  margin-bottom: 20px;
}

#footer .footer-top a {
  display: block;
  transition: 0.3s;
}

#footer .footer-top a:hover {
  color: var(--color-second);
}

#footer .social-links a {
  font-size: 20px;
  display: inline-block;
  line-height: 1;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
}

#footer .social-links a svg {
  width: 35px;
  height: 35px;
}

#footer .social-links a svg path {
  transition: 0.3s;
}

#footer .social-links a:hover svg path {
  fill: var(--color-second) !important;
}

@media (max-width: 991px) {
  #footer .footer-top p,
  #footer .footer-top a {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  #footer .footer-top .footer-links {
    margin-bottom: 15px;
  }
}


@media (max-width: 576px) {
  #footer .footer-top .footer-contact img {
    padding: 0 2rem;
  }

  #footer .footer-top p.h6 {
    margin-bottom: 10px;
  }

  #footer .footer-top p,
  #footer .footer-top a {
    margin-bottom: 5px;
  }

  #footer .footer-top {
    padding: 40px 0;
  }
}