@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
}

a, button {
  text-decoration: none;
  color: rgb(39, 39, 39);
}

body {
  overflow-x: hidden;
  background-color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  color: rgb(39, 39, 39);
}
body header, body footer {
  background-image: url("../assets/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body header .content, body footer .content {
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  body header .content, body footer .content {
    padding: 60px 0;
  }
}
body header, body section, body footer {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0px 45px;
}
@media screen and (max-width: 800px) {
  body header, body section, body footer {
    padding: 0 24px;
  }
}
body header .content, body section .content, body footer .content {
  max-width: 1200px;
  z-index: 2;
}
body section {
  padding: 100px 0px;
  z-index: 2;
}
body header .content {
  display: flex;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  body header .content {
    grid-template-columns: 1fr minmax(200px, 470px);
  }
}
@media screen and (max-width: 800px) {
  body header .content {
    grid-template-columns: 1fr;
  }
}
body header .content .header-title {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  body header .content .header-title {
    text-align: center;
  }
}
body header .content .header-title h1 {
  font-size: 46px;
  font-family: "Manrope";
  color: white;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  body header .content .header-title h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 800px) {
  body header .content .header-title h1 {
    font-size: 39px;
  }
}
body header .content .header-title h1 span {
  color: rgb(255, 200, 87);
  font-family: "Manrope";
}
@media screen and (max-width: 1200px) {
  body header .content .header-title h1 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 800px) {
  body header .content .header-title h1 span {
    font-size: 39px;
  }
}
body header .content .header-title p {
  margin-top: 25px;
  font-size: 19px;
  font-weight: 600;
  color: white;
  line-height: 150%;
}
body header .content .header-form {
  width: 100%;
}

.content {
  padding: 0px 24px;
}

#about-me .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  #about-me .content {
    flex-direction: column;
  }
}
#about-me .content .about-info .h3 {
  font-weight: 500;
  font-size: 26px;
  font-family: "Ubuntu";
}
#about-me .content .about-info p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 25px;
}
#about-me .content .about-info img {
  width: 400px;
}
@media screen and (max-width: 800px) {
  #about-me .content .about-info img {
    max-width: 100%;
  }
}
#about-me .content .about-photo {
  max-width: 370px;
}
@media screen and (max-width: 800px) {
  #about-me .content .about-photo {
    width: 100%;
    max-width: 100%;
  }
}

.tophead {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    padding-bottom: 30px;
}

.logo {
  height: 50px;
  width: auto;
  position: left;
}


#about-me .content .about-photo img {
  width: 100%;
}

#cases {
  background-color: #1C1C1E;
}
#cases .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
}
#cases .content h2 {
  color: white;
  font-size: 46px !important;
  font-family: "Manrope";
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #cases .content h2 {
    font-size: 40px !important;
  }
}
@media screen and (max-width: 800px) {
  #cases .content h2 {
    font-size: 33px !important;
  }
}
#cases .content .cases-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  #cases .content .cases-items {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
#cases .content .cases-items .case {
  border-radius: 8px;
  padding: 40px 30px;
  background-color: white;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 800px) {
  #cases .content .cases-items .case {
    padding: 31px 27px;
  }
}
#cases .content .cases-items .case .svg {
  height: 100%;
}
#cases .content .cases-items .case .svg svg {
  color: rgb(255, 200, 87);
  width: 100px;
  min-width: 100px;
  max-height: 100px;
}
@media screen and (max-width: 800px) {
  #cases .content .cases-items .case .svg svg {
    width: 70px;
    min-width: 70px;
    max-height: 70px;
  }
}
#cases .content .cases-items .case .case-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#cases .content .cases-items .case .case-info p:nth-of-type(1) {
  font-size: 24px;
  font-family: "Ubuntu";
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  #cases .content .cases-items .case .case-info p:nth-of-type(1) {
    font-size: 22px;
  }
}
#cases .content .cases-items .case .case-info p:nth-of-type(2) {
  font-size: 17px;
  line-height: 150%;
}
#cases .content .free-advice {
  padding: 21px 36px;
  text-align: center;
  background-color: rgb(255, 200, 87);
  padding: 21px 36px;
  font-size: 16.5px;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(39, 39, 39);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease, border 0.5s ease;
  border: 1px solid rgb(255, 200, 87);
}
#cases .content .free-advice:hover {
  color: white;
  background-color: #272727;
  border: 1px solid white;
}

#why-me .content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 25px;
}
#why-me .content h4 {
  font-family: "Manrope";
  font-size: 46px !important;
  text-align: center;
}
@media (max-width: 1200px) {
  #why-me .content h4 {
    font-size: 40px !important;
  }
}
@media screen and (max-width: 800px) {
  #why-me .content h4 {
    font-size: 33px !important;
  }
}
#why-me .content .exp {
  font-size: 17px;
  line-height: 150%;
}
#why-me .content .reasons {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 270px);
}
@media screen and (max-width: 1200px) {
  #why-me .content .reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  #why-me .content .reasons {
    grid-template-columns: 1fr;
  }
}
#why-me .content .reasons .reason {
  border-radius: 8px;
  border: 1px solid rgb(255, 200, 87);
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 40px 30px;
}
@media screen and (max-width: 800px) {
  #why-me .content .reasons .reason {
    padding: 31px 27px;
  }
}
#why-me .content .reasons .reason .rs-top {
  color: rgb(255, 200, 87);
  font-family: "Oswald";
  font-size: 65px;
  font-weight: bold;
}
#why-me .content .reasons .reason .rs-bott {
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
}

footer .content {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  footer .content {
    grid-template-columns: 1fr;
  }
}
footer .content .footer-left {
  flex-direction: column;
  display: flex;
  color: white;
  gap: 25px;
}
footer .content .footer-left h3 {
  font-size: 46px !important;
  font-weight: bold;
  font-family: "Manrope";
}
@media (max-width: 1200px) {
  footer .content .footer-left h3 {
    font-size: 40px !important;
  }
}
@media screen and (max-width: 800px) {
  footer .content .footer-left h3 {
    font-size: 31px !important;
    width: 100%;
  }
}
footer .content .footer-left h3 span {
  display: block;
  color: rgb(255, 200, 87);
}
@media screen and (max-width: 1200px) {
  footer .content .footer-left h3 span {
    width: 100%;
    font-size: 40px !important;
  }
}
@media screen and (max-width: 800px) {
  footer .content .footer-left h3 span {
    font-size: 31px !important;
    font-weight: 600;
  }
}
footer .content .footer-left p {
  font-size: 19px;
  line-height: 150%;
  font-weight: 600;
}

form {
  padding: 40px 30px;
  width: 100%;
  background-color: white;
  border-radius: 16px;
}
@media screen and (max-width: 800px) {
  form {
    padding: 31px 24px;
  }
}
form p {
  font-family: "Ubuntu";
  line-height: 32px;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
form input, form textarea {
  letter-spacing: 2px;
  height: 60px;
  margin-top: 12px;
  width: 100%;
  font-size: 16px;
  letter-spacing: normal;
  background-color: #E5E5E5;
  border-radius: 5px;
  border: none;
  padding: 20px 30px;
  font-family: "Montserrat";
  resize: none;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(39, 39, 39, 0.5);
}
form input::placeholder, form textarea::placeholder {
  color: rgba(39, 39, 39, 0.5);
}
form input:focus, form textarea:focus {
  outline-color: #3b99fc;
}
form textarea {
  height: 150px;
}
form button {
  background-color: rgb(255, 200, 87);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-top: 30px;
  font-weight: 700;
}

header::before,
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

header .content, footer .content {
  position: relative;
  z-index: 2;
}

#thanks {
  width: 100vw;
  height: 100vh;
  display: flex;
  font-family: "Arial" !important;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
#thanks .block-thx {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
#thanks .block-thx h1 {
  color: rgb(76, 175, 80);
  text-align: center;
  font-family: "Arial";
  font-size: 32px;
}
#thanks .block-thx p {
  font-size: 19px;
  margin-bottom: 10px;
  font-family: "Arial";
  text-align: center;
}
#thanks .block-thx a {
  text-decoration: none;
  text-align: center;
  color: white;
  font-family: "Arial";
  padding: 15px 30px;
  background-color: rgb(76, 175, 80);
  max-width: 250px;
  border-radius: 5px;
  font-size: 16px;
}

button {
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease;
}
button:hover {
  color: white;
  background-color: #272727;
}/*# sourceMappingURL=style.css.map */