@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --themeClrOne: #f71600;
  --themeClrTwo: #366b26;
  --themeClrThree: #f1fcfa;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.wrap {
  flex-wrap: wrap;
}
.container {
  max-width: 1180px;
  margin: auto;
  width: 100%;
}
ul li {
  list-style: none;
}
.heading {
  margin-bottom: 35px;
}
.heading h2 {
  font-size: 35px;
  text-transform: uppercase;
  color: var(--themeClrTwo);
  margin-bottom: 10px;
}
.heading p {
  color: #fff;
}
header {
  padding: 25px 0px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
}
header nav .logo {
  width: 25%;
}

header nav .logo img {
  width: 100%;
}
header #menu {
  width: 65%;
  text-align: right;
}

header #menu li {
  display: inline-block;
  margin-left: 30px;
}

header #menu li a {
  text-decoration: none;
  font-size: 17px;
  text-transform: capitalize;
  color: #181717;
  font-weight: 400;
}
section {
  padding: 60px 0px;
}

/* banner  */
.banner {
  padding: 60px 0px;
  position: relative;
}
.banner::after {
  position: absolute;
  content: "";
  background-image: url(../img/banner-background.png);
}
.banner .left {
  width: 50%;
}
.banner .left h1 {
  font-size: 60px;
  text-transform: capitalize;
  line-height: 70px;
}

.banner .left h1 span {
  color: var(--themeClrTwo);
  border-bottom: 1px solid #366b26;
}
.banner .left p {
  font-size: 18px;
  width: 75%;
  line-height: 27px;
  color: #616161;
}
.banner .right {
  width: 48%;
}
.banner .right .first {
  height: 450px;

  width: 50%;
}
.banner .right .first img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.banner .right .second {
  width: 48%;
}

.banner .right .second img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  margin-bottom: 7px;
  border-radius: 5px;
}

/* need */
.need {
  background-color: #366b26f7;
  position: relative;
}
.need .heading h2 {
  color: #fff;
}
.need::after {
  background-image: url(../img/background-banner.jpg);
  inset: 0;
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  background-size: 700px;
  background-repeat: repeat;
  opacity: 0.9;
}
.need .box {
  width: 21%;
  border-right: 1px solid #ffffff66;
}
.need .box:last-child {
  border-right: unset;
}

.need .box img {
  width: 40px;
}
.need .box h5 {
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  margin: 5px 0;
}

.need .box p {
  color: #fff;
  line-height: 24px;
  font-size: 15px;
}

/* services  */
.services .heading {
  text-align: center;
}
.services .heading p {
  color: #5d5d5d;
  width: 55%;
  margin: auto;
  line-height: 25px;
}
.services .heading h2 {
  color: var(--themeClrTwo);
}
.services .container {
  display: flex;
  flex-wrap: wrap;

  padding: 20px;
}

.service-box {
  width: 33%;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}
.service-box img {
  width: 55px;
}
.service-box:nth-child(1) {
  border-top: unset;
  border-right: unset;
  border-left: unset;
}
.service-box:nth-child(2) {
  border-top: unset;
  border-right: unset;
}
.service-box:nth-child(3) {
  border-top: unset;
  border-right: unset;
}
.service-box:nth-child(4) {
  border-left: unset;
  border-top: unset;
  border-bottom: unset;
}

.service-box:nth-child(5) {
  border-bottom: unset;
  border-top: unset;
  border-left: unset;
  border-right: unset;
}

.service-box:nth-child(6) {
  border-bottom: unset;
  border-right: unset;
  border-top: unset;
}
.service-box i {
  font-size: 40px;
  color: #b18b46; /* golden-brown */
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 19px;

  color: #252525;
  font-weight: 500;
  margin: 10px 0;
  text-transform: capitalize;
}
.service-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* freelance_team */
.freelance_team {
  background-color: var(--themeClrTwo);
}

.freelance_team .heading h2 {
  color: #fff;
}
.freelance_team .heading {
  text-align: center;
}
.freelance_team .box {
  width: 24%;
  background: #fff;
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 15px;
}
.freelance_team .box span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.freelance_team .experience {
  margin: 10px 0px;
  text-transform: capitalize;
}
.freelance_team .experience span {
  font-weight: 400;
}
.freelance_team .box h4 {
  font-weight: 600;
  font-size: 18px;
  margin: 10px 0px;
}
.freelance_team .box img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  object-fit: cover;
}
.freelance_team .box ul li {
  margin: 10px auto;
  color: #2e2f2e;
  font-weight: 600;
  background: #e1f1ed;
  padding: 5px 10px;
  font-size: 15px;
  text-transform: capitalize;
}

/* testimonial  */
#testimonial-box {
  height: 170px;
}
.testimonial {
  background-color: var(--themeClrTwo);
}

.testimonial .container {
  max-width: 900px;
  margin: auto;

  text-align: center;
}

.testimonial h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.testimonial p.sub-text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial .testimonial-box {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial .testimonial-box.active {
  opacity: 1;
}

.testimonial .testimonial-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 20px;
  color: var(--themeClrThree);
}

.testimonial .author {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial .designation {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}

.testimonial .avatars {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial .avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.testimonial .avatars img.active {
  border-color: #fff;
}

.testimonial .avatars img:hover {
  transform: scale(1.1);
}

/* clients  */
.client .heading {
  text-align: center;
}
.client .heading p {
  color: #606060;
}
.client .heading h2 {
  color: var(--themeClrTwo);
}
.client .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client .box {
  width: 16%;
}
.client .box:first-child {
  background-color: #000;
  padding: 10px;
  border-radius: 4px;
}
.client .box img {
  width: 100%;
  object-fit: cover;
}

/* contact */

/* contact  */
.contact {
  background-color: #fff;
}
.contact .heading p {
  color: #5d5d5d;
  font-size: 18px;
}
.main-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 10px;
  border-radius: 15px;
  height: 650px;
}
.main-contact .left {
  width: 50%;
  text-align: center;
  height: 100%;
  position: relative;
}
.main-contact .left .contact-box {
  position: absolute;
  bottom: 24%;
  width: 90%;
  left: 5%;
  text-align: left;
}
.main-contact .left .contact-box .box {
  display: flex;
  align-items: center;
  background: #366b26e0;
  padding: 23px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  width: 73%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.main-contact .left .contact-box .box:nth-child(2) {
  margin: 10px 0px;
}
.main-contact .left .contact-box .box h5 {
  font-weight: 500;
}
.main-contact .left .contact-box .box img {
  width: 25px;

  margin-right: 10px;
}
.main-contact .left .main-img {
  width: 100%;
  border-radius: 10px;
  margin: auto;
  height: 100%;
  object-fit: cover;
}
.main-contact .right {
  width: 45%;
  border-radius: 15px;
}
.main-contact .right .heading {
  padding: 14px 0;
  font-size: 45px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-contact .right .heading p {
  margin-bottom: 0;
}
.main-contact .right form {
  width: 85%;
}

.main-contact .right form .form_group {
  margin: 10px 0;
}
.main-contact .right form input[type="submit"] {
  background: var(--themeClrTwo);
  color: #fff;
  font-size: 20px;
  width: 100%;
  margin: 20px auto;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 0px;
}

.form_group label {
  display: block;
}
input,
select {
  width: 100%;
  border: unset;
  border: 1px solid #91919178;
  border-radius: 7px;
  outline: none;
  padding: 11px 14px;
  margin: 4px 0px;
  color: #313030;
  font-size: 15px;
  font-weight: 500;
}

textarea {
  width: 100%;
  border: unset;
  width: 9;
  border-radius: 5px;
  margin-top: 5px;
  height: 80px;
  outline: unset;
  padding: 15px;
  border: 1px solid #cdcdcd;
}
input[type="submit"] {
  width: 94%;
  border: unset;
  background-color: var(--primary-clrTwo);
  color: #fff;
  font-size: 17px;
}

/* footer  */
footer {
  padding: 50px 0 0;
  background-color: var(--themeClrTwo);
  position: relative;
}

footer .footer-body {
  text-align: center;
}
footer ul li {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
footer .footer-body ul li img {
  width: 24px;
}
footer ul li a {
  color: #fff;
}
footer h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
footer .social-links li {
  height: 40px;
  width: 40px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100%;
  margin: 0px 5px;
}
footer .social-links li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social-links li img {
  width: 55%;
}
.copyright {
  text-align: center;
  padding: 10px 0px;
  border-top: 1px solid #fff;
  margin-top: 20px;
}
.copyright p {
  color: #fff;
}
