@font-face {
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

:root {
  --blue: #DA6C6C;
  --lightblue: #e2edff;
  --white: #ffffff;
  --black: #000000;
  --lightgray: #e4e4e4;
  --gray: #535353;
  --green: #086d08;
  --red: #0854aa;
  --skyblue: #b7e9ff;
}

.blue {
  color: var(--blue);
}
                                             
.red {
  color: var(--red);
}

::-webkit-scrollbar {
  width: 10px;
  height: 9px;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

body {
  margin: 0;
  background-color: var(--lightblue);
}

a {
  text-decoration: none;
  color: var(--blue);
}

h4 {
  color: var(--blue);
}

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
  height: 100%;
}

:before,
:after {
  font-family: fontAwesome;
}

.main-button {
  padding: 9px 27px;
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  border-radius: 8px;
}

.main-button:hover {
  background-color: var(--white);
  color: var(--blue);
}

.main-button.green {
  background-color: var(--green);
  border: 2px solid var(--green);
}

.main-button.green:hover {
  background-color: var(--white);
  color: var(--green);
}

.main-button.red {
  background-color: var(--red);
  border: 2px solid var(--red);
}

.main-button.red:hover {
  background-color: var(--white);
  color: var(--red);
}

.top-space {
  padding-top: 76px !important;
}

.banner {
  background: var(--blue);
}

.dots-none .owl-dots {
  display: none;
}

/* ***************header*************************** */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: var(--white);
  z-index: 10;
}

 
 

header a.calling-number {
  background-color: var(--blue);
  padding: 5px 20px;
  border-radius: 3px;
  font-weight: 700;
  color: var(--white);
}

/******************Gallery****************************/
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

 

/* ***************header*************************** */
/* ***************banner*************************** */
.main-form {
  background-color: var(--white);
  color: var(--black);
  border-radius: 3px;
  box-shadow: 0px 0px 4px 1px var(--blue);
}

.main-form h5 {
  color: var(--blue);
}
 
/* ***************banner*************************** */
/* ***************services*************************** */
.service-card {
  padding: .5rem;
  border: 1px solid var(--lightgray);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card img {
  width: 100px;
}

/* ***************services*************************** */
/* ***************testimoniol*************************** */
.testimoniol-card {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--lightblue);
  border-radius: 5px;
}

/* ***************testimoniol*************************** */
/* ***************easy-steps*************************** */
.easy-steps-card {
  position: relative;
  display: flex;
  padding-left: 60px !important;
  align-items: center;
  padding: .25rem;
}

.easy-steps-card span {
  width: 32px;
  height: 100%;
  position: absolute;
  background-color: var(--blue);
  color: var(--white);
  left: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  z-index: 1;
}

.easy-steps-card span::after {
  content: "\f068";
  position: absolute;
  right: -17px;
  color: var(--blue);
  font-size: 30px;
  z-index: -1;
  padding-top: 4px;
}

.easy-steps-card p {
  margin: 0;
}

/* ***************easy-steps*************************** */
/* ***************faq*************************** */
.faq {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin: 5px 0;
}

.faq strong {
  padding: 8px 40px 8px 10px;
  background-color: var(--lightblue);
  display: flex;
  cursor: pointer;
  position: relative;
}

.faq strong:after {
  content: "\2b";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-bottom: 5px;
}

.faq span {
  padding: 7px 10px;
  display: none;
}

.faq input:checked~strong {
  background-color: var(--blue);
  color: var(--white);
}

.faq input:checked~span {
  display: flex;
  background-color: var(--lightblue);
}

.faq input:checked~strong:after {
  content: "\f068";
}

/* ***************faq*************************** */
/* ***************gallery*************************** */
.gallery img {
  margin-top: 10px;
  border-radius: 3px;
}

/* ***************gallery*************************** */
/* ***************footer*************************** */
footer {
  background-color: var(--black);
  color: var(--white);
}

footer a {
  color: var(--white);
}

.social-icons {
  display: flex;
  justify-content: space-evenly;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 22px;
  border-radius: 4px;
}

.social-icons a.envelope {
  background-color: #D75346;
}

.social-icons a.facebook {
  background-color: #4c6ea7;
}

.social-icons a.whatsapp {
  background-color: #30D04E;
}

.social-icons a.twitter {
  background-color: #4297c4;
}

.social-icons a.instagram {
  background: linear-gradient(45deg, #ffb73d 0%, #c47067 40%, #9d23e4 100%);
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

footer .footer-links a {
  padding: 6px 21px;
  border-bottom: 1px solid;
  border-radius: 3px;
  margin-top: 1rem;
}

footer .footer-links a:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ***************footer*************************** */

