/* root */
:root {
  --color: red;
}
html {
  scroll-behavior: smooth;
}
/* global rules */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
}
/* media query */
.container {
  padding: 0 15px;
  margin: 0 auto 0;
}

/* small screen */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* medium screen */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* large screen */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* super large */
@media (min-width: 1400px) {
  .container {
    width: 1390px;
  }
}
/* 4k screen */
@media (min-width: 2200px) {
  .container {
    width: 2190px;
  }
}
/* end global */

/* start header  */
header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
header .container .logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}
header .container .pic-logo {
  display: none;
}
header .container .logo .sitname {
  margin: 0;
  color: #7a6960;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 400;
}
header .container nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
header .container nav ul a {
  padding: 18px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212529;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
header .container nav ul a i {
  margin-left: 5px;
  font-size: 12px;
  transition: 0.3s;
}
header .container nav ul a:hover,
header .container nav ul a.active {
  color: #eb5d1e;
}

header .container nav ul .dropdown {
  position: relative;
}
header .container nav ul .dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  background-color: white;
  left: 0;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  /* display: none; */
  transition: 0.3s;
  padding: 10px 20px;
  z-index: 100;
  border-radius: 4px;
  box-shadow: 0px 0px 30px rgb(0, 0, 0, 0.1);
}
header .container nav ul .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  /* display: block; display 'don't respect opacity and any thing visibility is the best*/
  top: 100%;
}
header .container nav ul .dropdown .dropdown-menu a:hover {
  padding-left: 10px;
}
header .container .btn-getstart {
  margin: 0 0 0 15px;
  text-decoration: none;
  display: flex;
  background-color: #eb5d1e;
  color: white;
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 50px;
  transition: 0.3s;
}
header .container .btn-getstart:hover {
  color: white;
  background: color-mix(in srgb, #eb5d1e, transparent 15%);
}
header .container nav .bars {
  display: none;
}
@media (max-width: 991.9px) {
  header .container {
    justify-content: space-between;
  }
  header .container .logo {
    margin-right: 0;
    display: none;
  }
  header .container .pic-logo {
    display: inline-block;
    flex: 1;
  }
  header .container .pic-logo img {
    width: 40px;
    height: 40px;
  }
  header .container .logo .sitname {
    font-size: 25px;
  }
  header .container nav {
    order: 3;
  }
  header .container .btn-getstart {
    order: 2;
    margin: 0 20px 0 0;
  }
  header .container nav .bars {
    display: block;
    font-size: 30px;
  }
  header .container nav .main-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transform: translateX(-100%);
    box-shadow: 0px 0px 30px rgb(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.3s;
  }
  header .container nav:hover i + .main-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  header .container nav ul .dropdown .dropdown-menu {
    transform: translateX(-130px);
    background-color: white;
  }
}
/* end header  */
/* start hero section */
.hero {
  padding: 70px 0;
  width: 100%;
  min-height: 80vh;
  border-bottom: 2px solid color-mix(in srgb, #eb5d1e, transparent 75%);
  position: relative;
  background-color: #fffaf8;
  /* background: radial-gradient(black, transparent); */
  display: flex;
  align-items: center;
}
.hero .row {
  display: flex;
  flex-wrap: wrap;
}
.hero .row .col-1 {
  flex: 1;
  margin-top: 26px;
  padding: 0 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .row .col-1 h1 {
  font-size: 49px;
  color: #7a6960;
  margin: 0;
  font-weight: 700;
  line-height: 56px;
}
.hero .row .col-1 p {
  font-size: 20px;
  color: color-mix(in srgb, black, transparent 40%);
  margin: 10px 0 30px 0;
  font-weight: 400;
  line-height: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.hero .row .col-1 .some-links {
  display: flex;
  align-items: center;
}
.hero .row .col-1 .some-links .btn-get-start {
  text-decoration: none;
  color: white;
  font-size: 15px;
  display: inline-block;
  padding: 10px 25px 12px;
  background-color: #eb5d1e;
  border-radius: 50px;
}
.hero .row .col-1 .some-links .btn-get-start:hover {
  background-color: color-mix(in srgb, #eb5d1e, transparent 15%);
}
.hero .row .col-1 .some-links .video {
  display: flex;
  align-items: center;
  margin-left: 30px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.hero .row .col-1 .some-links .video i {
  margin-right: 15px;
  font-size: 40px;
  color: #eb5d1e;
}
.hero .row .col-1 .some-links .video span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  transition: 0.3s;
}
.hero .row .col-1 .some-links .video:hover span {
  color: #eb5d1e;
}
.hero .row .col-2 {
  flex: 1;
  margin-top: 26px;
  padding: 0 12px 0;
}
.hero .row .col-2 .hero-img {
  max-width: 100%;
  height: auto;
  animation: move-up 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991.9px) {
  .hero {
    padding: 40px 0;
  }
  .hero .row {
    flex-direction: column;
    text-align: center;
  }
  .hero .row .col-1 {
    order: 2;
    margin-top: 20px;
  }
  .hero .row .col-1,
  .hero .row .col-2 {
    padding: 0;
    margin: 0;
  }
  .hero .row .col-2 {
    margin-bottom: 20px;
  }
  .hero .row .col-1 h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .hero .row .col-1 .some-links {
    justify-content: center;
  }
  .hero .row .col-1 .some-links .video {
    margin-left: 20px;
    margin-right: 5px;
  }
  .hero .row .col-1 .some-links .video i {
    font-size: 25px;
  }
  .hero .row .col-1 .some-links .video i + span {
    font-size: 15px;
  }
  .hero .row .col-1 .some-links .btn-get-start {
    font-size: 13px;
    padding: 8px 20px 10px;
  }
}
@keyframes move-up {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/* end hero section */
/* start about section */
.about {
  position: relative;
  padding: 60px 0;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.about .container .row {
  text-align: center;
}
.about .container .row .col-3 .about-img {
  width: 100%;
}
.about .container .row .col-3 {
  margin-bottom: 20px;
}
.about .container .row .col-4 h2 {
  color: #7a6960;
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
}

.about .container .row .col-4 .first-para {
  color: #212529;
  margin: 0 0 26px;
  font-style: italic;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.about .container .row .col-4 .about-content i {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: white;
  background-color: #eb5d1e;
  font-size: 32px;
  border-radius: 5px;
  line-height: 0;
  margin: 0 auto 15px;
  transition: 0.3s;
}
.about .container .row .col-4 .about-content .about-icon1:hover i,
.about .container .row .col-4 .about-content .about-icon2:hover i {
  transform: rotate(45deg);
}
.about .container .row .col-4 .about-content .about-icon1 {
  margin: 35px 0;
}

.about .container .row .col-4 .about-content .about-icon2 {
  margin: 0 0 35px;
}

.about .container .row .col-4 .about-content h4 {
  color: #7a6960;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.about .container .row .col-4 .about-content .sec-para {
  color: #212529;
  font-size: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.about .container .row .col-4 .about-content .thr-para {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #212529;
}

@media (min-width: 992px) {
  .about .container .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .container .row .about-content {
    padding-left: 16px;
  }
  .about .container .row .col-3,
  .about .container .row .col-4 {
    flex: 1;
  }
  .about .container .row .col-3 {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .about .container .row .col-4 {
    margin-left: 30px;
  }
  .about .container .row .col-4 h2 {
    line-height: 38px;
  }
  .about .container .row .col-4 .first-para {
    line-height: 24px;
  }
  .about .container .row .col-4 .about-content .about-icon1,
  .about .container .row .col-4 .about-content .about-icon2 {
    display: flex;
    align-items: center;
  }
  .about .container .row .col-4 .about-content i {
    margin: 0 15px 0 0;
    flex-shrink: 0;
  }
  .about .container .row .col-4 .about-content h4 {
    line-height: 24px;
  }
  .about .container .row .col-4 .about-content .text .sec-para {
    line-height: 24px;
  }
  .about .container .row .about-content .thr-para {
    line-height: 24px;
  }
}
/* end start about section */

/* start services section */
.services {
  padding: 60px 0;
  position: relative;
  background-color: #fffaf8;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}

.services .head-services {
  text-align: center;
  margin-bottom: 60px;
}
.services .head-services .h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.services .head-services .h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 50px;
  height: 3px;
  background-color: #eb5d1e;
}

.services .head-services .server-para {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.services .container .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.services .container .row .server-item {
  padding: 50px 30px;
  background-color: white;
  text-align: center;
  box-shadow: 0px 0px 30px rgb(0, 0, 0, 0.1);
  transition: 0.3s;
}
.services .container .row .server-item:hover {
  transform: translateY(-10px);
}
.services .container .row .server-item .icon {
  margin-bottom: 10px;
}
.services .container .row .server-item .icon {
  font-size: 36px;
  color: #eb5d1e;
}
.services .container .row .server-item h4 {
  color: #7a6960;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  transition: 0.3s;
}
.services .container .row .server-item:hover h4 {
  color: #eb5d1e;
}
.services .container .row .server-item p {
  font-size: 14px;
  line-height: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #212529;
}
/* end services section */
/* start portfolio section */
.portfolio {
  padding: 60px 0;
  position: relative;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.portfolio .head-portfolio {
  text-align: center;
  margin-bottom: 60px;
}
.portfolio .head-portfolio .h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.portfolio .head-portfolio .h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 50px;
  height: 3px;
  background-color: #eb5d1e;
}
.portfolio .head-portfolio .portfolio-para {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.portfolio .container .portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.portfolio .container .portfolio-filters p {
  margin: 0 10px 5px 0;
  color: black;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.portfolio .container .portfolio-filters p:hover {
  color: #eb5d1e;
}
@media (max-width: 991.9px) {
  .portfolio .container .portfolio-filters p {
    font-size: 14px;
  }
}
.portfolio .container .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
@media (min-width: 1200px) {
  .portfolio .container .row {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
.portfolio .container .row .box {
  box-shadow: 0px 0px 30px rgb(0, 0, 0, 0.1);
  position: relative;
}
.portfolio .container .row .portfolio-item {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  /* width: 30%; */
}

.portfolio .container .row .portfolio-item img {
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  transition: 0.3s;
}
.portfolio .container .row .portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio .container .row .portfolio-item .portfolio-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.portfolio .container .row .portfolio-item .portfolio-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.7);
}
.portfolio .container .row .portfolio-item:hover .portfolio-content {
  visibility: visible;
  opacity: 1;
}
.portfolio .container .row .portfolio-item .portfolio-content h4 {
  font-size: 14px;
  color: white;
  font-weight: 400;
  display: inline-block;
  background-color: #eb5d1e;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
  border-radius: 3px;
}
.portfolio .container .row .portfolio-item .portfolio-content a {
  text-decoration: none;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: 30px;
  transition: 0.3s;
}
.portfolio .container .row .portfolio-item .portfolio-content a:hover {
  color: #eb5d1e;
}
.portfolio .container .row .portfolio-item .portfolio-content .left {
  transform: translate(-150%, -50%);
}
.portfolio .container .row .portfolio-item .portfolio-content .right {
  transform: translate(20%, -50%);
}
.portfolio .container .row .portfolio-item .portfolio-content p {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 1;
  transform: translatex(-50%);
  text-align: center;
  display: inline-block;
  font-weight: 600;
  color: rgb(255, 255, 255, 0.8);
  margin: 0 0 20px;
}
/* end portfolio section */
/* start frequently section */
.frequently {
  padding: 60px 0;
  position: relative;
  background-color: #fffaf8;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.frequently .head-frequently {
  text-align: center;
  margin-bottom: 30px;
}
.frequently .head-frequently h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.frequently .head-frequently h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #eb5d1e;
}
.frequently .head-frequently p {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.frequently .container .row {
  display: flex;
  flex-wrap: nowrap;
}
.frequently .container .row .col-6,
.frequently .container .row .col-7 {
  padding: 0px 10px;
}
.frequently .container .row .box {
  padding: 20px;
  border: 1px solid color-mix(in srgb, black, transparent 75%);
  background-color: white;
  border-radius: 5px;
  position: relative;
  margin-top: 20px;
}

.frequently .container .row .box .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /* margin: 0 0 20px; */
}
.frequently .container .row .box .flex p {
  color: #7a6960;
  font-weight: 600;
  transition: 0.3s;
}
.frequently .container .row .box:hover .flex p {
  color: #eb5d1e;
}
.frequently .container .row .box .flex a {
  text-decoration: none;
  color: #212529;
  font-size: 20px;
  display: inline-block;
  transition: 0.3s;
}
.frequently .container .row .box .flex a i {
  transition: 0.9s;
}
.frequently .container .row .box:hover .flex a i {
  transform: rotate(90deg);
}
.frequently .container .row .box:hover .flex a i {
  color: #eb5d1e;
}
.frequently .container .row .box .text {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.frequently .container .row .box:hover .text {
  display: grid;
  grid-template-rows: 1fr; /* i make the parent rows 0fr than make the child overflow hidden*/
  visibility: visible;
  opacity: 1;
}
.frequently .container .row .box .text p {
  color: #212529;
  line-height: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow: hidden;
}
@media (max-width: 991.9px) {
  .frequently .container .row {
    flex-direction: column;
  }
  .frequently .container .row .box .flex p {
    margin-right: 10px;
    line-height: 20px;
  }
}
/* end frequently section */
/* start Team section */
.team {
  padding: 60px 0;
  position: relative;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.team .head-team {
  text-align: center;
  margin-bottom: 60px;
}
.team .head-team h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.team .head-team h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #eb5d1e;
}
.team .head-team p {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.team .container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.team .container .row .box {
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .team .container .row .box {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .team .container .row .box {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .team .container .row .box {
    width: 23%;
  }
}

.team .container .row .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  /* z-index: 1; */
  opacity: 0;
  transition: 0.3s;
}
.team .container .row .box:hover:after {
  /* width: 100%; */
  /* height: 100%; */
  opacity: 1;
}
.team .container .row .box img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.team .container .row .box .social-media {
  position: absolute;
  top: 0;
  left: -50px;
  height: 100%;
  transition: 0.3s ease-in-out;
  width: 50px;
  background-color: rgb(0, 0, 0, 0.6);
  text-align: center;
  z-index: 1;
}
.team .container .row .box:hover .social-media {
  left: 0;
}
.team .container .row .box .social-media a {
  display: block;
  color: white;
  margin-top: 15px;
  transition: 0.3s;
}
.team .container .row .box .social-media a:hover {
  color: #eb5d1e;
}
.team .container .row .box .social-media a i {
  font-size: 20px;
  margin: 2px;
}
.team .container .row .box .name {
  position: absolute;
  bottom: -100%;
  left: 50px;
  right: 0;
  color: white;
  text-align: center;
  transition: 0.4s;
  z-index: 1;
}
.team .container .row .box:hover .name {
  bottom: 30px;
}
.team .container .row .box .name h4 {
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 18px;
}
.team .container .row .box .name p {
  font-size: 13px;
  font-style: italic;
}
/* end Team section */
/* start client section */
.client {
  padding: 60px 0;
  position: relative;
  background-color: #fffaf8;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.client .head-client {
  text-align: center;
  margin-bottom: 20px;
}
.client .head-client h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.client .head-client h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eb5d1e;
  width: 50px;
  height: 3px;
}
.client .head-client p {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.client .container {
  overflow: hidden;
}
.client .container .row {
  display: flex;
  align-items: center;
  animation: move 20s infinite linear;
  margin-top: 10px;
}
.client .container .row .image {
  margin-right: 120px;
}
.client .container .row .image img {
  display: block;
  max-width: 86px;
  object-fit: cover;
}
.client .container .small-circle {
  text-align: center;
  margin-top: 30px;
}
.client .container .small-circle span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: color-mix(in srgb, black, transparent 80%);
  margin-right: 10px;
  animation: color 1s linear infinite;
}
.client .container .small-circle .circle-2 {
  animation-delay: 1s;
}
.client .container .small-circle .circle-3 {
  animation-delay: 2s;
}
.client .container .small-circle .circle-4 {
  animation-delay: 3s;
}
.client .container .small-circle .circle-5 {
  animation-delay: 4s;
}
.client .container .small-circle .circle-6 {
  animation-delay: 5s;
}
.client .container .small-circle .circle-7 {
  animation-delay: 6s;
}
@keyframes color {
  0% {
    background: color-mix(in srgb, black, transparent 80%);
  }
  50% {
    background: #eb5d1e;
  }
  100% {
    background: color-mix(in srgb, black, transparent 80%);
  }
}
@keyframes move {
  0% {
    transform: translatex(100%);
  }
  /* 50% { */
  /* transform: translatex(-500%); */
  /* } */
  100% {
    transform: translatex(-140%);
  }
}
/* end client section */
/* start contact section */
.contact {
  padding: 60px 0;
  position: relative;
  border-bottom: solid 2px color-mix(in srgb, #eb5d1e, transparent 75%);
}
.contact .head-contact {
  text-align: center;
  margin-bottom: 60px;
}
.contact .head-contact h2 {
  color: #7a6960;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.contact .head-contact h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #eb5d1e;
}
.contact .head-contact p {
  color: #212529;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@media (min-width: 992px) {
  .contact .container .row {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}
.contact .container .row .col-8 {
  padding: 30px;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.1);
}
.contact .container .row .col-8 .flex {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
.contact .container .row .col-8 .flex i {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, #eb5d1e, transparent 80%);
  color: #eb5d1e;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}
.contact .container .row .col-8 .flex:hover i {
  color: white;
  background-color: #eb5d1e;
}
.contact .container .row .col-8 .flex h4 {
  font-size: 18px;
  color: #7a6960;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact .container .row .col-8 .flex p {
  font-size: 14px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #212529;
}
.contact .container .row .col-9 {
  padding: 30px;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.1);
}
.contact .container .row .col-9 label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  padding: 0 0 8px;
  color: #212529;
}
.contact .container .row .col-9 .form form .first-input {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  gap: 20px;
  margin-bottom: 23px;
}
.contact .container .row .col-9 .form form .first-input div {
  width: 100%;
}
@media (min-width: 992px) {
  .contact .container .row .col-9 .form form .first-input {
    flex-direction: row;
  }
  .contact .container .row .col-9 .form form .first-input div {
    width: 50%;
  }
}
.contact .container .row .col-9 .form form input {
  padding: 10px 15px;
  border-color: color-mix(in srgb, black, transparent 80%);
  background-color: color-mix(in srgb, white, transparent 50%);
}
.contact .container .row .col-9 .form form input:focus {
  outline: none;
}
.contact .container .row .col-9 .form form .first-input .Name label,
.contact .container .row .col-9 .form form .first-input .Email label {
  display: block;
  margin-bottom: 8px;
}
.contact .container .row .col-9 .form form .first-input .Name input,
.contact .container .row .col-9 .form form .first-input .Email input {
  width: 100%;
  display: block;
}
.contact .container .row .col-9 .form form .second-input {
  margin-bottom: 23px;
}
.contact .container .row .col-9 .form form .second-input label {
  display: block;
  margin-bottom: 8px;
}
.contact .container .row .col-9 .form form .second-input input {
  display: block;
  width: 100%;
}
.contact .container .row .col-9 .form form .textarea {
  margin-bottom: 23px;
}
.contact .container .row .col-9 .form form .textarea label {
  display: block;
  margin-bottom: 8px;
}
.contact .container .row .col-9 .form form .textarea textarea {
  width: 100%;
  display: block;
  min-height: 250px;
  padding: 10px 15px;
  border-color: color-mix(in srgb, black, transparent 80%);
  background-color: color-mix(in srgb, white, transparent 50%);
}
.contact .container .row .col-9 .form form .button {
  text-align: center;
}
.contact .container .row .col-9 .form form .button input {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  background-color: #eb5d1e;
  color: white;
  border: none;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.4s;
}
.contact .container .row .col-9 .form form .button input:hover {
  background-color: color-mix(in srgb, #eb5d1e, transparent 15%);
}
/* end contact section */
/* start input */
.input {
  background-color: #fffaf8;
  padding: 50px 0;
}
.input .container .head-input {
  text-align: center;
  margin-bottom: 30px;
}
.input .container .head-input h2 {
  color: #7a6960;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.input .container .head-input p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #212529;
}
.input form {
  display: flex;
  justify-content: center;
}
.input form .input-box {
  flex: 0 0 auto;
  width: 50%;
  position: relative;
  display: flex;
  padding: 6px 8px;
  background-color: #ffffffff;
  box-shadow: 0 2px 25px rgb(0, 0, 0, 0.1);
  border-radius: 50px;
}
.input form .input-box .email {
  width: 100%;
  border: none;
  outline: none;
  padding: 4px 10px;
}
.input form .input-box .button {
  padding: 0 20px;
  border: none;
  margin: -7px -8px -7px 0;
  border-radius: 50px;
  background-color: #eb5d1e;
  color: white;
  cursor: pointer;
}
/* end input */
/* footer */
footer {
  padding: 60px 0 0;
}
footer .container .row {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 70px;
  border-bottom: 1px solid color-mix(in srgb, #eb5d1e, transparent 75%);
}

@media (min-width: 768px) {
  footer .container .row .col {
    flex: 1 0 auto;
    width: 50%;
  }
  footer .container .row .col-1 {
    flex: 0 0 auto;
    width: 25%;
  }
  footer .container .row .col-2 {
    flex: 0 0 auto;
    width: 100%;
  }
  footer .col-1 {
    margin: 0 !important;
  }
}
footer .container .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  footer .container .row .col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  footer .container .row .col-1 {
    flex: 0 0 auto;
    width: 16.6667%;
  }
  footer .container .row .col-2 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  footer .col-1,
  footer .col-2 {
    margin: 0 !important;
  }
}
footer .row .col h5 {
  color: #212529;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}
footer .row .col p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #212529;
  margin-bottom: 5px;
}
footer .row .col .phone {
  margin: 15px 0 5px;
}
footer .col-1 h4 {
  color: #7a6960;
  font-size: 16px;
  margin-bottom: 8px;
  padding-bottom: 12px;
}
footer .col,
footer .col-1,
footer .col-2 {
  padding: 0 12px;
}
footer .col-1 p {
  padding: 10px 0px;
  font-size: 14px;
  color: #7a6960;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: 0.3s;
}
footer .col-1 p i {
  color: #eb5d1e;
  text-decoration: none;
  transition: 0.3s;
}
footer .col-1 p:hover {
  color: #eb5d1e;
}
footer .col-1,
footer .col-2 {
  margin-top: 20px;
}
footer .col-2 h4 {
  color: #7a6960;
  font-size: 16px;
  margin-bottom: 8px;
  padding-bottom: 12px;
}
footer .col-2 p {
  font-size: 14px;
  color: #212529;
  margin-bottom: 16px;
}
footer .col-2 .links-social {
  color: #212529;
  display: flex;
}
footer .col-2 .links-social i {
  width: 40px;
  margin-left: 15px;
  height: 40px;
  border: 1px solid #212529;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copyright {
  padding: 25px 12px;
  margin: 24px 26px 0;
}
footer .copyright p {
  text-align: center;
  font-size: 15px;
  color: #212529;
}
footer .copyright p:first-child {
  margin-bottom: 10px;
}

footer .copyright p a {
  color: #eb5d1e;
  text-decoration: none;
}
/* footer */
