*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  /* COLOR */
  --interno-primary-color: #292f36;
  --interno-secondary-color: #CDA274;
  --interno-text-color: #4D5053;
  --interno-white: #ffffff;
  --interno-background: #F4F0EC;
  /* Fonts */
  --interno-primary-font: 'DM Serif Display', serif;
  --interno-secondary-font: 'Jost', sans-serif;
  /* scroll-behavior */
  scroll-behavior: smooth;
}

body {
  color: var(--interno-text-color);
  font-family: var(--interno-secondary-font);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--interno-primary-font);
  color: var(--interno-primary-color);
}

h1 {
  font-size: 5.313rem;
}

h2 {
  font-size: 3.125rem;
}

h5 {
  font-size: 1.563rem;
}

p {
  font-size: 1.2rem;
}

button {
  font-family: var(--interno-secondary-font);
  cursor: pointer;
  font-weight: 600;
  color: var(--interno-white);
  border: 0;
  letter-spacing: 2%;
  font-size: 1.1rem;
  transition: all 0.3s;
}

button:hover {
  box-shadow: 0 0 5px var(--interno-primary-color);
}

button:active {
  transform: scale(0.98);
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.btn {
  height: 75px;
  padding: 26px 48px;
  border-radius: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background-color: var(--interno-primary-color);
}

.btn-primary .icon {
  color: var(--interno-secondary-color);
}

.btn-secondary {
  background-color: var(--interno-secondary-color);
  padding: 26px 37px;
}

.btn-secondary .icon {
  color: var(--interno-primary-color);
}

.btn-icon {
  color: var(--interno-primary-color);
  background-color: var(--interno-background);
  height: 52px;
  width: 52px;
  border-radius: 50%;
}

.btn-link {
  color: var(--interno-primary-color);
  background-color: transparent;
}

.btn-link .text {
  font-size: 1.125rem;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-link .icon {
  color: var(--interno-secondary-color);
  margin-left: 12px;
}

.btn-social {
  color: var(--interno-primary-color);
  background: transparent;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-align: center;
}

.btn-social:hover {
  background-color: var(--interno-background);
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  /* background: #4D5053; */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--interno-primary-color);
}

a:hover {
  text-decoration: underline;
}

/*======================= header ==========================*/

/* navbar */
nav {
  position: sticky;
  top: 0;
  background: var(--interno-white);
}

.header-nav {
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo img {
  width: 177px;
  height: 50px;
}

.list-item {
  font-family: var(--interno-secondary-font);
  display: flex;
  align-items: center;
  gap: 1.938rem;
}

.list-item svg {
  height: 21px;
  width: 21px;
}

.list-item li a {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 25px;
}

/* ===========humbarger========= */

.mobile-menu {
  display: none;
  /* outline: 2px solid; */
}

.humbarger {
  width: 40px;
  height: 32px;
}

.bar {
  background-color: black;
  width: 40px;
  height: 2px;
}

.bar1 {
  transform: translateY(12px);
}

.bar3 {
  transform: translateY(17px);
}

.humbarger.change .bar1 {
  transform: rotate(45deg) translateX(12px) translateY(9px);
}

.humbarger.change .bar2 {
  opacity: 0;
}

.humbarger.change .bar3 {
  transform: rotate(-45deg) translateY(9px) translateX(-6px);
}

/* mobile menu items */
.mobile-items {
  position: absolute;
  top: 86px;
  right: 0;
  background-color: white;
  height: 80vh;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: .1s;
}

.mobile-items a {
  display: block;
  font-size: 2.5rem;
  background-color: var(--interno-secondary-color);
  color: white;
  padding: 3px 20px;
  border-radius: 10px;
}

.mobile-items {
  transform: scale(0);
}

.mobile-items.change {
  transform: scale(1);
}

/* ==========banner-area============ */
#banner-section {
  min-height: 90vh;
}

.banner-section {
  background: url(img/banner.jpg) no-repeat center center;
  height: 90vh;
  /* background-size: 100%;  */
  border-radius: 0 0 0 291px;
}

.banner-area {
  /* background-color: rgba(102, 51, 153, 0.324); */
  height: 100%;
  display: flex;
  align-items: center;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.intro h1 {
  color: var(--interno-primary-color);
}

.intro button {
  width: 220px;
  transition: all 0.3s ease;
}

.intro button:active {
  transform: scale(0.95);
  box-shadow: 0px 0px 50px 10px rgba(192, 192, 192, 0.666);
}

/* =============Work Section============ */

#work-section {
  padding: 220px 0;
}

#work-section .work-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  gap: 42px;

  /* background-color: #292f3651; */
}

#work-section .work-item {
  display: flex;
  flex-direction: column;
}

#work-section .work-item h5 {
  margin-bottom: 20px;
  font-size: 1.563rem;
}

#work-section .work-item p {
  margin-bottom: 52px;
  font-size: 1.375rem;
}

/* =============AboutUs Section============ */
#aboutUs-section {
  padding-bottom: 220px;
}

.aboutUs-area {
  display: flex;
  gap: 42px;
  align-items: center;
  /* background: #4d50535e; */
}

.aboutUs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 40%;
}

.aboutUs-subContent,
.aboutUs-subContent h2,
.aboutUs-call {
  margin-bottom: 33px;
}

.aboutUs-call {
  display: flex;
  gap: 15px;
}

.aboutUs-contact p:nth-child(1) {
  font-weight: 700;
}


.aboutUs-image {
  flex-basis: 60%;
}

.aboutUs-image img {
  border-radius: 0px 326.5px 0px 123px;
  width: 100%;
  height: 100%;
}

#aboutUs-section .aboutUs-call .btn-icon i {
  color: var(--interno-secondary-color);
}

/* =============Testimonial Section============ */

.testimonial-area {
  background-color: var(--interno-background);
  padding: 60px;
  border-radius: 70px;
}

.testimonial-area h2 {
  color: var(--interno-primary-color);
  text-align: center;
  padding: 60px 0 40px 0;
}

.testimonial-items {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.testimonial-item {
  background-color: var(--interno-white);
  border-radius: 70px;
  height: 339px;
  width: 370px;
  padding: 54px 20px;
}

.testimonial-person-item {
  display: flex;
  gap: 23px;
  padding-bottom: 20px;
}

.testimonial-person-item img {
  display: block;
  height: 77px;
  width: 77px;
  border-radius: 50%;
}

.testimonial-person-item p {
  font-weight: bold;
}

/* ============= client Section============ */
.client-area {
  padding: 225px 0;
}

.client-area {
  min-height: 100px;
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo-item img {
  display: block;
}

/* =============Project Section============ */
#project-section {
  padding-top: 100px;
}

.project-heading-item {
  text-align: center;
  margin: 0 auto;
  max-width: 737px;
}

.project-heading-item h2,
p {
  margin-bottom: 20px;
}

.project-projects-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.projects-item-img1 img {
  border-top-right-radius: 80px;
}

.projects-item-img3 img {
  border-top-left-radius: 80px;
}

.projects-item-img2 img {
  border-bottom-right-radius: 80px;
}

.projects-item-img4 img {
  border-bottom-left-radius: 80px;
}

.projects-item-text {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* =============counter Section============ */
#counter-section {
  background-color: var(--interno-background);
  margin: 200px 0;
}

.counter-area {
  padding: 100px;
  display: flex;
  justify-content: center;
}

.counter-items {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.counter-item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.counter-text p:nth-child(1) {
  font-family: var(--interno-primary-font);
  margin-bottom: 0;
  font-size: 5.313rem;
  color: var(--interno-secondary-color);
  text-align: center;
  font-weight: 400;
}

.counter-line {
  border-left: 2px solid var(--interno-secondary-color);
  height: 100px;
}

/* =============blog Section============ */
.blog-heading {
  text-align: center;
  padding-bottom: 25px;
}

.blog-items {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.blog-item {
  padding: 20px;
  outline: 1px solid var(--interno-background);
  border-radius: 62px;
  transition: all 0.3s;
}

.blog-item:hover {
  background-color: #F4F0EC;
}

.blog-img {
  height: 386px;
}

.blog-img img {
  border-radius: 62px 62px 0 0;
}

.blog-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-data button:hover {
  background-color: white;
}

/* =============blog Section============ */
.content-area {
  height: 374px;
  margin-top: 220px;
  background-color: var(--interno-primary-color);
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
#content-section .content-sub-title h2,#content-section .content-sub-title p{
  text-align: center;
  padding: 10px 0;
  color: var(--interno-white);
}
.content-sub-title button {
  box-shadow: 0 0 5px var(--interno-primary-color);
}
  /* =============Footer Section============ */
  .footer-area{
    padding-top: 220px;
    padding-bottom: 50px;
  }
  .footer-interno-items{
    display: flex;
    justify-content: space-between;
    gap: 101px;
    flex-wrap: wrap;
  }
  .footer-logo{
    width: 177px;
    height: 50px;
    margin-bottom: 20px;
  }
  .footer-interno-item h5,.footer-interno-item a{
    display: block;
    margin-bottom: 10px;
  }
  .footer-copyright{
    text-align: center;
    padding: 50px 0 20px 0;
  }