@import url("https://fonts.googleapis.com/css2?family=Besley:wght@400;500;600;700;800;900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  color: var(--dark-color);
}

:root {
  --blue-color: #3ebeff;
  --white-color: #fffbf8;
  --yellow-color: #fed501;
  --pink-color: #fe7563;
  --green-bg: #85cebc;
  --dark-green: #428677;
  --dark-color: #4d4a4e;
}

::selection {
  background-color: var(--blue-color);
  color: var(--white-color);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Besley", serif;
  background-color: var(--white-color);
}

/* utilities */

.container {
  width: 1100px;
  margin: 0 auto;
}

.section__title {
  font-size: 3em;
  color: var(--white-color);
  text-align: center;
}

/* header css start */

header {
  background-image: url("../images/hero-image.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

nav {
  display: flex;
  padding: 20px 50px;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100%;
}

.nav__items {
  display: flex;
}

.nav__items li {
  margin-right: 30px;
}

.nav__items li:nth-child(4) {
  margin-right: 0;
}

.nav__items li a {
  color: var(--white-color);
  font-weight: 600;
  font-size: 1.2em;
  transition: color 0.5s ease-in-out;
}

.nav__items li a:hover {
  color: var(--pink-color);
}

.contact__button {
  padding: 10px 30px;
  border-radius: 30px;
  background-color: var(--white-color);
  color: var(--dark-color) !important;
}

#hero {
  text-align: center;
}

#hero h1 {
  margin: 70px 0 100px 0;
  letter-spacing: 7px;
  text-transform: uppercase;
}

/* header css end */

/* Transform your brand css start */

#brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.transform__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.transform__content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.transform__content p {
  margin: 20px 0;
}

.transform__content a {
  font-weight: 600;
  font-size: 20px;
}

.transform__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category {
  position: relative;
}

.category__description {
  position: absolute;
  bottom: 50px;
  text-align: center;
}

.category__description h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.category__description p {
  width: 78%;
  margin: 0 auto;
}

/* Transform your brand css end */

/* clients css start */

#review h2 {
  margin: 100px 0 0 0;
  color: var(--dark-color);
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.clients {
  margin: 100px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.client {
  text-align: center;
  color: var(--dark-color);
}

.client img {
  border-radius: 50%;
  width: 100px;
  margin: 0 auto;
  object-fit: cover;
}

.client p {
  margin: 20px 0;
}

/* clients css end */

/* gallery css start */

#gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#gallery img {
  width: 100%;
}
/* gallery css end */

/* footer css start */

footer {
  background-color: var(--green-bg);
  text-align: center;
}

footer .container {
  padding: 50px 0;
}

.footer__link {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.footer__link li {
  margin-right: 30px;
}

.footer__link li:nth-child(3) {
  margin-right: 0px;
}

.footer__link li a {
  color: var(--dark-green);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.social__icon img {
  margin-right: 20px;
}

.social__icon img:nth-child(4) {
  margin-right: 0px;
}
/* footer css end */
