:root {
  --color-first: #e8bf37;
  --color-first-light: #e8bf3740;
  --color-second: #c28844;
  --color-grey: #f1f1f1;
  --color-dark-grey: #f2f2f2;
  --color-white: #ffffff;
  --color-black: #181818;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--color-black);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

p {
  margin-top: 0;
}

p.large {
  font-size: 1.2em;
  margin-bottom: 40px;
}

p.big {
  font-size: 1.1em;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h6 {
  text-transform: uppercase;
  margin: 0;
}

h1 {
  font-size: 2.6em;
  line-height: 1.3;
  font-weight: 600;
}

h2 {
  font-size: 2em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}

h3 {
  font-weight: 400;
  font-size: 1.1em;
}

h2,
h4 {
  text-transform: none;
}

h4 {
  font-size: 1.1em;
}

h6 {
  font-weight: 400;
  text-transform: none;
  line-height: 1;
}

strong {
  font-weight: 600;
}

.tag {
  color: var(--color-first);
}

img {
  max-width: 100%;
}

button {
  outline: 0;
  border: none;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  background: transparent;
}

a {
  text-decoration: none;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.custom li {
  position: relative;
  padding-left: 20px;
}

ul.custom li:before {
  content: "";
  position: absolute;
  left: 0;
  border: solid 3px var(--color-first);
  min-width: 10px;
  min-height: 10px;
  display: inline-block;
  top: 5px;
  border-radius: 50%;
}

.btn {
  padding: 10px 20px;
  color: var(--color-first);
  transition: 0.3s;
}

.btn-primary-outline {
  border: solid 3px var(--color-first-light);
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary-outline:hover {
  background-color: var(--color-first);
  color: var(--color-white);
}

.wrapper {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

section {
  padding-top: 6em;
  position: relative;
}

.pd-equal {
  padding-bottom: 6em;
}

.pattern-container {
  position: absolute;
  z-index: -1;
}

.pattern-container.top {
  top: 0;
  left: 0;
}

.pattern-container.bottom {
  bottom: 0;
  right: 0;
}

.row {
  display: flex;
}

.heading {
  margin-bottom: 1em;
}

.background-light {
  background: var(--color-grey);
}

@media only screen and (min-width: 961px) {
  section {
    padding-top: 6em;
  }

  .pd-equal {
    padding-bottom: 6em;
  }

  .left-column,
  .right-column {
    flex-basis: 0;
    flex-grow: 1;
  }

  .row > * {
    padding: 1em;
  }

  .text-center {
    text-align: center;
  }
}

@media only screen and (max-width: 960px) {
  .row {
    flex-direction: column;
  }

  .row-reverse {
    flex-direction: column-reverse;
  }

  .tag {
    margin: 8px 0;
  }
}

@media only screen and (max-width: 680px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.7em;
  }

  section {
    padding-top: 3em;
  }

  .pd-equal {
    padding-bottom: 3em;
  }
}

/* Fancy Image */
.img {
  position: relative;
}

.img img {
  width: 90%;
  margin-bottom: 10%;
  border-radius: 15px;
}

.img:before {
  content: "";
  position: absolute;
  top: 10%;
  width: 90%;
  height: 85%;
  background: linear-gradient(45deg, var(--color-first), var(--color-second));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 15px;
  padding: 3px;
  z-index: -1;
}

.img-fancy-left img {
  margin-left: 10%;
}

.img-fancy-left:before {
  left: 0%;
}

/* Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 99;
  transition: 0.3s;
  background-color: #f8fafc;
}

header.scrolled {
  background: var(--color-white);
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  flex-basis: 20%;
  min-width: 150px;
}

header .logo img {
  width: 180px;
}

.menu-toggle {
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 3px var(--color-first-light);
  position: relative;
  transition: 0.3s;
}

.menu-toggle span {
  width: 20px;
  height: 0;
  border-bottom: solid 3px var(--color-first);
  position: relative;
  transition: 0.3s;
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 0;
  border-bottom: solid 3px var(--color-first);
  transition: 0.3s;
}

.menu-toggle:before {
  top: 35%;
}

.menu-toggle:after {
  bottom: 33%;
}

header nav {
  flex-basis: 80%;
}

header nav ul {
  flex-basis: 80%;
}

header nav .menu-item {
  color: var(--color-black);
  transition: 0.3s;
}

header nav li.active .menu-item {
  color: var(--color-first);
}

@media only screen and (min-width: 961px) {
  .menu-toggle:hover {
    border-color: var(--color-first);
    background: var(--color-first);
  }

  .menu-toggle:hover span,
  .menu-toggle:hover:before,
  .menu-toggle:hover:after {
    border-color: var(--color-white);
  }

  header .menu-toggle {
    display: none;
  }

  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header nav ul {
    display: flex;
    text-align: center;
  }

  header nav li {
    flex-basis: 0;
    flex-grow: 1;
  }
}

@media only screen and (max-width: 960px) {
  .menu-toggle.toggled span {
    display: none;
  }

  .menu-toggle.toggled:before {
    transform: rotate(45deg);
    top: calc(50% - 2px);
  }

  .menu-toggle.toggled:after {
    transform: rotate(-45deg);
    top: calc(50% - 2px);
  }

  header nav {
    height: 0;
    pointer-events: none;
    position: absolute;
    top: 70px;
    background-color: var(--color-white);
    width: 100vw;
    left: 0;
    padding: 0 calc(5% + 10px);
    transition: 0.3s;
    transform-origin: top left;
    overflow: hidden;
  }

  header nav.expand {
    height: calc(100vh - 70px);
    pointer-events: all;
  }

  header nav li {
    margin: 5px 0;
  }

  header nav a {
    padding: 5px 0;
  }

  header .side {
    margin-top: 20px;
  }

  header .side a {
    display: inline-block;
  }
}

/* Banner */
.banner {
  position: relative;
}

.fancy-link {
  display: flex;
  color: var(--color-first);
  align-items: center;
  margin-top: 1em;
}

.fancy-link span {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.fancy-link span:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1.5px;
  left: 0;
  background-color: var(--color-first);
  transition: 0.3s;
}

.fancy-link img {
  width: 40px;
  margin-left: 16px;
  transition: 0.3s;
}

.fancy-link:hover span:before {
  width: 60px;
}

.fancy-link:hover img {
  margin-left: 36px;
}

@media only screen and (min-width: 961px) {
  .banner {
    background: url(./images/banner.jpg) center center no-repeat;
    background-size: cover;
    min-height: 660px;
    display: flex;
    align-items: center;
  }

  .banner .left-column {
    max-width: 450px;
  }
}

@media only screen and (max-width: 960px) {
  .banner {
    background: url(./images/banner-mobile.jpg) top center no-repeat;
    background-size: cover;
    min-height: 650px;
    display: flex;
    align-items: flex-start;
  }

  .banner .left-column {
    max-width: 450px;
    margin-top: 50px;
  }
}

/* Our Values */
#our-values .background-light {
  border-radius: 15px;
  padding: 3em 20px;
  height: 100%;
}

#our-values img {
  width: 50px;
}

@media only screen and (max-width: 960px) {
  #our-values .row .left-column {
    margin-bottom: 20px;
  }
}

/* Loan Type */
#loan-type {
  padding-top: 3em;
}

#loan-type .large {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 961px) {
  #loan-type {
    padding-top: 6em;
  }

  #loan-type ul {
    display: flex;
  }

  #loan-type li {
    flex-basis: 0;
    flex-grow: 1;
    padding-right: 50px;
  }
}

/* Why Us */
#why-us .row {
  align-items: center;
}

#why-us h2 {
  max-width: 400px;
}

@media only screen and (max-width: 960px) {
  #why-us .left-column {
    margin-top: 5px;
  }
}

/* Our Services */
#our-services .tab-link,
#our-services .tab-header {
  display: flex;
  align-items: center;
  padding: 0.8em 1em;
  width: 100%;
}

#our-services .tab-link {
  opacity: 0.5;
}

#our-services .tab-link img,
#our-services .tab-header img {
  width: 40px;
  margin-right: 10px;
}

#our-services .tab-link.active,
#our-services .tab-header.active {
  opacity: 1;
}

#our-services .tab-header .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent var(--color-black) transparent;
  position: relative;
  transition: 0.3s;
}

#our-services .tab-header .arrow:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 1px;
  left: -6px;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent var(--color-dark-grey) transparent;
  z-index: 1;
}

#our-services .tab-content.active .arrow {
  transform: rotate(180deg);
}

#our-services .tab-content.active .arrow:before {
  border-color: transparent transparent var(--color-white) transparent;
}

#our-services .tab-content li {
  margin-bottom: 5px;
}

@media only screen and (min-width: 961px) {
  #our-services .tab-header {
    display: none;
  }

  #our-services .tab {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
  }

  #our-services .tab-navigation {
    flex-basis: 20%;
    min-width: 230px;
  }

  #our-services .tab-content {
    flex-basis: 80%;
    display: none;
    min-height: 280px;
    border-radius: 0 15px;
    padding: 25px 1.5em;
  }

  #our-services .tab-content.active {
    display: block;
    background-color: var(--color-white);
  }

  #our-services .tab-link {
    background-color: var(--color-dark-grey);
  }

  #our-services .tab-link:hover,
  #our-services .tab-link.active {
    background-color: var(--color-white);
  }
}

@media only screen and (max-width: 960px) {
  #our-services .tab {
    margin-top: 35px;
  }

  #our-services .tab-navigation .tab-link {
    display: none;
  }

  #our-services .tab-header {
    width: 100%;
    justify-content: space-between;
  }

  #our-services .tab-header div {
    display: flex;
    align-items: center;
  }

  #our-services .tab-content {
    opacity: 0.5;
    height: 67px;
    background-color: var(--color-dark-grey);
    transition: 0.3s;
    border-radius: 15px;
    overflow: hidden;
    transform-origin: top center;
    border: solid 1px var(--color-dark-grey);
  }

  #our-services .tab-content:not(:last-child) {
    margin-bottom: 15px;
  }

  #our-services .tab-content.active {
    opacity: 1;
    height: fit-content;
    background-color: var(--color-white);
    border-color: var(--color-first);
  }

  #our-services .tab-content .tab-header {
    padding: 1em;
  }

  #our-services .tab-content .tab-inner {
    padding: 20px 1em 1em;
  }
}

/* How We Do */
#how-we-do .steps-container {
  counter-reset: steps;
}

#how-we-do .step-img {
  width: 90px;
  margin-bottom: 10px;
  position: relative;
}

#how-we-do .step-img:after {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  background: var(--color-black);
  width: 25px;
  height: 25px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  border-radius: 50%;
  right: 0px;
}

@media only screen and (min-width: 961px) {
  #how-we-do .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #how-we-do .step-img {
    margin: 0 auto;
  }

  #how-we-do .step {
    flex-basis: 33%;
    margin: 20px 0;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 960px) {
  #how-we-do .step {
    margin-top: 35px;
  }
}

/* Contac Us */
#contact-us .contact-info li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

#contact-us .contact-info img {
  width: 30px;
  margin-right: 10px;
}

#contact-us .contact-info p {
  margin-bottom: 0;
}

#contact-us .contact-info p a {
    color: var(--color-first);
}

#contact-us form .row > * {
  width: 100%;
}

#contact-us form input,
#contact-us form select {
  border: none;
  outline: none;
  padding: 15px 20px;
  background-color: var(--color-white);
  font-size: 16px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  border-radius: 50px;
}

#contact-us form .select-p {
  position: relative;
}

#contact-us form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; 
  color:gray
}

.dropdown-icon {
  position: absolute;
  top: 15px;
  right: 20px;  
  height: 20px;
  width: 20px;
  pointer-events: none; 
}

#contact-us .error span {
  font-size: 0.8em;
  color: red;
  line-height: 1;
}

@media only screen and (min-width: 961px) {
  #contact-us .contact {
    display: flex;
    margin-top: 50px;
  }

  #contact-us .contact ul,
  #contact-us .contact form {
    flex-basis: 0;
    flex-grow: 1;
  }

  #contact-us form .row > * {
    padding: 0 5px;
  }
}

@media only screen and (max-width: 960px) {
  #contact-us .contact-info {
    margin-bottom: 50px;
    margin-top: 35px;
  }

  #contact-us form .row > * {
    padding: 0;
  }
}

/* Footer */
footer {
  margin: 2em 0;
}

footer .copyright {
  opacity: 0.6;
}

footer .info a {
    color: var(--color-first);
}

footer .social-icons {
  display: flex;
}

footer .social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px var(--color-first-light);
  border-radius: 50px;
  transition: 0.3s;
}

footer .social-link:not(:first-child) {
  margin-left: 8px;
}

footer .social-link:hover {
  border-color: var(--color-first);
  background-color: var(--color-first);
}

footer .social-link img {
  width: 30px;
}

footer .social-link:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(23%) saturate(1058%)
    hue-rotate(145deg) brightness(111%) contrast(110%);
}

@media only screen and (min-width: 961px) {
  footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  footer .info {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

@media only screen and (max-width: 960px) {
  footer {
    margin: 3em 0;
  }

  footer .wrapper {
    text-align: center;
  }
  
  
  footer .info {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
 
  footer .social-icons {
    justify-content: center;
  }
}

.awards-wrapper {
    padding-bottom: 6em;
}

.awards .swiper-button-next:after, .awards .swiper-button-prev:after {
    color: var(--color-first);
}

.awards .swiper-pagination-bullet {
    background-color: white;
}

.awards .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-first);
}

@media only screen and (min-width: 769px) {
    .awards > div {
        width: 45%;
        margin: 0;
    }
    
    .awards {
        display: flex;
        justify-content : center;
        gap: 20px;
    }
    
    .award-item {
        max-height: 450px;
        overflow: hidden;
    }
    
    .award-item img {
        aspect-ratio: 3/2;
        object-fit: cover;
        width: 500px;
    }
    
    .awards .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset,25px)
    }
    
    .awards .swiper-button-next {
        right: var(--swiper-navigation-sides-offset,25px)
    }
}

@media only screen and (max-width: 768px) {
    .awards p {
        text-align: center;
    }

}

.whatsapp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1000;
}

.whatsapp-container .whatsapp-icon,
.whatsapp-container p {
    background-color: #2db742;
    height: 60px;
    border-radius: 50px;
    position: fixed;
    bottom: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    font-weight: 600;
    z-index: 99;
}
 
.whatsapp-container .whatsapp-icon {
    width: 60px;
    padding: 10px;
    transition: 0.3s;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
  }
  
.whatsapp-container .whatsapp-icon img {
    width: 50px;
}
  
.whatsapp-container p {
    padding: 10px 50px 10px 20px;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
  
.whatsapp-container:hover .whatsapp-icon {
    box-shadow: none;
}

.whatsapp-container:hover p {
    opacity: 1;
    transition: 0.3s;
    margin-right: 10px;
    pointer-events: visible;
}

