@import url("https//:fonts.googleapis.com/css2?family=Poppins");

:root {
  --main-color: #61808c;
  --black-color: #0f2234;
  --blue-color: #6089bf;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
  min-height: 50px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--black-color);
  /* height: 200vh; */
}

button:focus {
  outline: 0;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 2rem 3.75rem;
  border-radius: 30rem;
  font-size: 1.8rem;
  color: #f2f2f2;
  background-color: var(--main-color);
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.heading {
  color: #f2f2f2;
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 3.5rem;
  border-bottom: 0.1rem solid #f2f2f2;
}

.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

/* base html codes */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
  background-color: #f2f2f2;
}

html::-webkit-scrollbar-thumb {
  border-radius: 3rem;
  background-color: var(--main-color);
}

section {
  padding: 3.5rem 7%;
}

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

/* navbar */

.navbar-nav {
  padding-right: 250px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
}


/* header end */
/* home start */

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

/* home end */

/* about start */
.about .row {
  display: flex;
  flex-wrap: wrap;
  align-items:center;
}

.about .row .image {
  flex: 1 1 40rem;
}

.about .row img {
  width: 80%;
  height: 60vh;
  padding-left: 50px;
}

.about .row .content {
  flex: 1 1 45rem;
  background-color: var(--black-color);
}

.about .row .content h3 {
  font-size: 5rem;
  color: var(--main-color);
  padding: 7.5rem;
}

.about .row .content p {
  font-size: 1.8rem;
  color: #f2f2f2;
  padding: 0.5rem 1.5rem;
  line-height: 1.8;
}
/* about end */

/* services start */
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box {
  padding: 3rem;
  background-color: var(--main-color);
  border-radius: 3rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.services .box-container .box img {
  width: 78%;
  padding-left: 9rem;
}

.services .box-container .box .services-category {
  font-size: 1.9rem;
  color: #f2f2f2;
  line-height: 4;
  padding-left: 7rem;
}

/* services end */

/* client start */
.client .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 1.5rem;
  justify-content: start !important;
}

.client .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--main-color);
  border-radius: 3rem;
}

.client .box-container .box p {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 2rem 0;
  color: #f2f2f2;
}

.client .box-container .box img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.client .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: var(--black-color);
}

.card-yazi{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: -30px !important;
}
.card-body p{
  height: 20px !important;
  margin-bottom: 30px !important;
}
/* client end */

/* contact start */
.contact .row {
  display: flex;
  background-color: var(--black-color);
  flex-wrap: wrap;
}

.contact .row form {
  flex: 1 1 75rem;
  padding: 5rem 2rem;
  text-align: center;
  margin: 0 15rem;
}
.contact .row form h3 {
  font-size: 3.5rem;
  color: #f2f2f2;
}
.contact .row form .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem 0;
  border: var(--border);
}
.contact .row form .inputBox i {
  color: #f2f2f2;
  font-size: 2rem;
  padding-left: 2rem;
}
.contact .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #f2f2f2;
  text-transform: none;
  background: none;
}
.contact .row form .btn {
  color: var(--black-color);
  background-color: #f2f2f2;
  font-weight: bold;
}
/* contact end */

/* footer start */
.footer {
  background-color: var(--main-color);
  text-align: center;
}

.footer .logo img {
  width: 25rem;
  height: 25rem;
}

.footer .share {
  padding: 2rem 0;
}
.footer .share a {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  color: #f2f2f2;
  font-size: 2rem;
  border: var(--border);
  border-radius: 50%;
  margin: 0.3rem;
  text-decoration: none;
}

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

.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .links a {
  color: var(--black-color);
  padding: 0.7rem 2rem;
  font-size: 2rem;
  text-decoration: none;
}

.footer .links a:hover {
  color: white;
}

.footer .credit {
  font-size: 2rem;
  color: #f2f2f2;
  font-weight: 300;
  padding-top: 1.5rem;
}

.footer .credit {
  font-size: small;
  margin-top: 30px;
}

.footer .credit span {
  color: var(--black-color);
}
/* footer end */

.card img {
  padding: 3rem !important;
}

.card-text {
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* responsive start */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .home img {
    max-width: 100%;
    height: auto;
  }
  .contact .row form {
    margin: 0 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .navbar-brand {
    width: 50vw;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar .navbar-toggler {
    padding-right: 70px;
    border: 0 !important;
    outline: 0 !important;
  }

  .navbar .navbar-toggler:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
  }

  .navbar-collapse {
    height: 100vh;
  }

  .navbar-nav .nav-link {
    width: 100vw;
    height: 120px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .about .image img {
    width: 90%;
    height: 100%;
  }

  .about .content h3 {
    text-align: center;
  }

  .about .content p {
    text-align: center;
  }

  .section {
    padding: 2rem;
  }
  .home {
    max-width: 100%;
    height: auto;
  }
  .contact .row form {
    margin: 0 0;
  }

  .services .box-container .box img {
    width: 85%;
  }
  .services .box-container .box .services-category {
    font-size: 2.5rem;
  }
  .client .box-container .box p {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }

  .home {
    min-height: 40vh;
  }

  .services .box-container .box img {
    width: 85%;
  }

  .services .box-container .box .services-category {
    font-size: 2.5rem;
  }

  .client .box-container .box p {
    font-size: 2rem;
  }

  .contact .row form {
    margin: 0 0;
  }
}
/* responsive end */
