:root {
  --mainColor: #CC9A67;
  --lightMain: #374D5F;
  --black: #374D5F;
  --white: #f5f5fa;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Readex Pro", sans-serif;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--lightMain);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 4px;
}

.logo {
  height: 130px;
}

.logoMobile {
  height: 75px;
}

.nav-item {
  margin: 50px;
}

.nav-link {
  font-size: 1.2rem !important;
}

.blk {
  color: var(--black);
}

.white {
  color: var(--white);
}

.mainColor {
  color: var(--mainColor);
}

.secMrg {
  margin-top: 200px;
}

.h25 {
  height: 25rem;
}
.fs {
  font-size: 4rem !important;
}

.wf {
  width: fit-content;
}

.navbar {
  background-color: var(--white) !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.dropdown-item {
  color: var(--lightMain) !important;
  text-align: right;
  transform: 0.3s;
}

.dropdown-item:hover {
  background-color: transparent;
}

.nav-item a:not(.dropdown-item) {
  color: var(--lightMain) !important;
  transition: 0.3s;
}

.nav-item a:hover {
  transform: scale(1.1);
  opacity: 0.5;
}

.hero {
  background: rgba(0, 0, 0, 0.8) url("../media/bg.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: darken;
  padding: 340px 0 340px 0;
}

.hero h1 {
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.2rem;
}

.btns {
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  width: 250px;
  padding: 14px;
  background-color: var(--mainColor);
  color: var(--white);
  font-size: 1.1rem;
  border: none;
  margin: 14px;
  transition: 0.3s;
}

.btn-secondary {
  width: 250px;
  padding: 14px;
  background-color: transparent;
  color: var(--white);
  font-size: 1.1rem;
  border: solid 2px var(--mainColor);
  margin: 14px;
}

.btn-primary:hover {
  transform: scale(1.1);
  background-color: transparent;
  border: solid 2px var(--mainColor);
}

.whatsapp {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  margin: 0 12px 12px 0;
  transition: 0.4s;
  animation-name: wp;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.about .card {
  width: fit-content;
  height: 20rem;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s;
}

.about .card:hover,
.services .card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.card-text:not(.geo) {
  font-size: 1rem !important;
  color: var(--black) !important;
  text-align: right !important;
  line-height: 32px !important;
  margin-top: 1rem !important;
}

.services .card {
  transition: 0.5s;
  margin: 14px;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.services .col {
  margin: 14px;
}

.service-ico {
  height: 65px;
  width: 65px;
  float: right;
}

.services .card-title {
  font-size: 1.5rem !important;
  color: var(--lightMain) !important;
  text-align: right !important;
}

.services .btn {
  width: 150px;
  margin: 0;
  margin-top: 14px !important;
  font-size: 1rem;
  padding: 12px;
  transition: 0.3s;
  float: right;
}

.services .btn:hover {
  background-color: var(--mainColor);
  filter: brightness(80%);
  transform: unset;
}

.services .card i {
  color: var(--mainColor);
  font-size: 3rem;
  text-align: right;
}

.contact .btn:hover {
  background-color: var(--mainColor);
  color: var(--white);
  filter: brightness(75%);
}

.contact .container {
  background-color: var(--sectionBG);
}

.contact form .col-md-4,
.contact form .col-md-3 {
  width: 100%;
}

.contact i:not(.geo) {
  font-size: 32px;
  color: var(--mainColor);
  transition: 0.2s;
}

.contact i:hover {
  transform: scale(1.2);
}

.contact .card {
  padding: 40px;
  height: 100%;
  margin: auto;
  border-top: solid 8px var(--mainColor);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: none;
  border-top: solid 5px var(--mainColor);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact label,
select,
.contact input,
.contact textarea {
  float: right;
  text-align: right;
}

.map {
  height: 400px;
  width: 400px;
  margin: auto;
  border-radius: 16px;
}

.contactInfo .card {
  border: none;
  box-shadow: none;
  padding: 6px;
}

footer {
  border-top: solid 1px var(--lightMain);
  background-color: var(--sectionBG);
}

footer img {
  height: 100px;
}

footer p,
.copyright {
  color: var(--black);
}

footer i,
footer a {
  cursor: pointer;
}

footer a:hover {
  text-decoration: underline;
}

footer a {
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--black);
  margin-left: 14px;
}

footer h3 {
  margin-top: 24px;
}
