* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --main-color: #f84646;
  --sec-color: #ffffff;
}
body {
  font-family: "Manrope", sans-serif;
}

.container {
  width: 85%;
  margin: auto;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
.blue {
  background-color: blue !important;
}
.yellow {
  background-color: yellow !important;
}
.order-1 {
  order: 1 !important;
}

.main-btn {
  cursor: pointer;
  padding: 15px 70px;
  background-color: var(--main-color);
  border: none;
  border-radius: 8px;
  color: var(--sec-color);
  border: 2px solid var(--main-color);
  transition: 0.3s;
}

.main-btn:hover {
  background-color: transparent;
  color: var(--main-color);
}


.navbar {
  padding: 34px;
}

.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}
.navbar ul li a {
  color: #000;
  transition: 0.3s;
}
.navbar ul li a:hover {
  color: #888;
}
.navbar .main-btn {
  padding-top: 10px;
  padding-bottom: 10px;

  padding: 10px 25px;
  color: #fff;
}

.navbar .moblie {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
}
.navbar .moblie img {
  width: 40px;
  cursor: pointer;
}

.hero {
  background: url("../img/hero-img.png");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero .inner-hero h1 {
  font-size: 65px;
}
.hero .inner-hero p {
  font-size: 20px;
  letter-spacing: 0.2px;
  line-height: 36px;
  max-width: 50%;
  margin: 20px 0 50px;
}

.hero .inner-hero .form input {
  background: var(--sec-color);
  border: none;
  padding: 30px 20px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}
.hero .inner-hero .form {
  position: relative;
  /* background-color: yellow; */
  width: 50%;
}
.hero .inner-hero .form input:focus {
  outline: var(--main-color) 1px solid;
}

.hero .inner-hero .form .btn {
  padding: 20px 60px;
  background-color: var(--main-color);
  display: inline-block;
  border-radius: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sec-color);
  transition: 0.3s;
  border: 2px solid var(--main-color);
}
.hero .inner-hero .form .btn:hover {
  background-color: transparent;
  color: var(--main-color);
}

.about {
  padding: 120px 0;
}
.about .header {
  text-align: center;
  margin-bottom: 80px;
}
.about .header h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.about .header p {
  font-size: 20px;
}

.about .items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.about .items .item {
  text-align: center;
  width: calc(100% / 3 - 25px);
  margin-bottom: 25px;
}
.about .items .item .item-img {
  position: relative;
}

.about .items .item .cicle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-100%);
  opacity: 0.5;
}
.about .items .item img {
  width: 60px;
}

.about .items .item h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.about .items .item p {
  font-size: 14px;
}


.details {
  padding: 100px 0;
  background-color: var(--main-color);
}

.details .header {
  text-align: center;
  color: var(--sec-color);
  margin-bottom: 80px;
}
.details .header h2 {
  font-size: 48px;
  text-align: center;
}
.details .header p {
  margin-top: 15px;
  text-align: center;
  font-size: 20px;
}
.details .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.details .items .item {
  width: calc(25% - 25px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: var(--sec-color);
}
.details .items .item img {
  width: 30px;
}

.cards {
  padding: 100px 0 0;
}

.cards .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.cards .items .item {
  width: calc(50% - 25px);
}

.cards .items .item h2 {
  font-size: 64px;
}
.cards .items .item p {
  line-height: 32px;
  opacity: 0.6;
  margin: 20px 0;
}


.barnds {
  padding: 100px 0;
  background-color: #dddddd35;
}

.barnds .header {
  text-align: center;
}

.barnds .header h2 {
  font-size: 46px;
}
.barnds .header p {
  font-size: 18px;
}
.barnds .items {
  margin-top: 50px;
  display: flex;
  
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.barnds .items .item {
  width: calc(100% / 5 -25px);
  height: 100%;
}
.barnds .items .item img {
  width: 150px;
}

.barnds .items .img-brand {
  padding: 25px 35px;
  background-color: var(--sec-color);
  border-radius: 8px;
  margin-bottom: 25px;
}

.bize {
  padding: 100px 0;
}

.bize img {
  width: 100px;
}
.bize {
  text-align: center;
}
.bize h2 {
  font-size: 48px;
}

.bize p {
  font-size: 18px;
  margin-top: 10px;
}
.bize a {
  margin-top: 50px;
  display: inline-block;
}

.footer {
  padding: 100px 0 50px;
  background-color: var(--main-color);
}

.footer .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px
}
.footer .items .item {
  width: calc(100% / 4 - 25px) ;
}
.footer .items .item h3 {
  color: var(--sec-color);
  margin-bottom: 15px;
}
.footer .items .item ul {
  list-style: none;
}
.footer .items .item li {
  color: #ddd;
  margin-bottom: 24px;
}

.footer .content{
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--sec-color);
  flex-wrap: wrap;
  gap: 25px;
}
.footer .content img{
  width: 30px;
  cursor: pointer;
}
.footer .content .social{
  display: flex;
  gap: 10px;
  align-items: center;
}




@media (max-width: 1199.98px) {
  .hero .form {
    width: 60% ;
  }

  .barnds .items .item {
    width: 100%;
    text-align: center;
  }
}



@media (max-width: 991.98px) {
  

  .navbar ul {
    display: none;
  }

  .navbar .moblie {
    display: flex;
  }


  .hero h1 {
  }
  .hero .form input {
    padding-left: 10px !important;
  }
  .about .items .item {
    width: calc(100% / 2 - 25px);
  }
 
  .cards .items .item {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .cards .items .cards-content {
    order: 1;
  }
  .cards .main-btn {
    width: 100%;
  }
  .d-none {
    display: none;
  }
  
}


@media (max-width: 767.98px) {
 
  .hero .inner-hero {
    text-align: center;
  }
  .hero .inner-hero h1 {
    font-size: 40px;
  }
  .hero .inner-hero p {
    font-size: 16px;
    max-width: 80%;
    margin: 40px auto;
  }
  .hero .form {
    width: 100%;
    margin: auto;
  }
 

  .details .items .item {
    width: calc(50% - 25px);
    margin-bottom: 30px;
  }

  .details .header h2 {
    font-size: 30px;
  }


  .cards .items .item h2 {
    font-size: 30px;
  }
  .cards .items .item p {
    font-size: 13px;
  }


  .footer .items .item {
    width: calc(100% / 2 - 25px);
  }
}


@media (max-width: 575.98px) {


  .hero .inner-hero h1 {
    font-size: 35px;
  }
  .hero .inner-hero p {
    font-size: 12px;
    margin: 40px auto;
  }
  .hero .inner-hero .form {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .hero .inner-hero .form input {
    padding: 25px 20px;
    /* margin-bottom: 120px; */
  }
  .hero .form .btn {
    position: static !important;
  }


  .about .items .item {
    width: 100%;
  }
 

  .details .items {
    flex-direction: column;
    gap: 30px;
  }

  .details .items .item {
    flex-direction: column;
  }
  .details .items .item img {
    transform: rotate(90deg);
    width: 40px;
  }
  .details .items .item {
    text-align: center;
  }

  .footer .items .item {
    width: 100%;
  }
}