/** 
    1. variaveis
    2. reset
    3. bootstrap 
    4. header
    5. hero
    6. about
    7. services
    8. contact
    9. footer
**/

/** 1. variaveis **/
:root {
  --colorMain: #4863f3;
  --colorGreen: #48f36d;
  --colorWhite: #ffffff;
  --colorSupport: #3f3d56;
  --colorDark: #29292e;
  --colorLight: #f2f2f2;

  --fontFamily: "Roboto", sans-serif;
}

/** 2. reset **/
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  font-family: var(--fontFamily);
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
}

/** 3. bootstrap **/
.jdw-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.jdw-container__center {
  width: 80%;
  margin: 0 auto;
}

.jdw-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 355px;
  height: 65px;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 900;
}

.jdw-button__primary {
  background: var(--colorMain);
  color: var(--colorWhite);
}

.jdw-button__support {
  background: var(--colorGreen);
  color: var(--colorWhite);
}

.jdw-heading {
  margin-bottom: 50px;
}

.jdw-heading__title {
  font-size: 34px;
  font-weight: 900;
}

.jdw-heading__title-light {
  color: var(--colorWhite);
}

.jdw-heading__title-dark {
  color: var(--colorSupport);
}

/** 4. header **/
.jdw-header__contents {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.jdw-header__navigation .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jdw-header__navigation .menu li {
  margin-right: 30px;
}

.jdw-header__navigation .menu li:last-of-type {
  margin-right: 0;
}

.jdw-header__navigation .menu li a {
  font-size: 18px;
  color: var(--colorSupport);
  text-transform: lowercase;
}

.jdw-header__mobile {
  display: none;
}
/** 5. hero **/
.jdw-hero {
}
.jdw-hero__platforms{
  display: flex;
  align-items: left;
  margin-bottom: 25px;
}
.jdw-hero__platforms ul {
  display: flex;
  width: 500px;
}
.jdw-hero__platforms ul li+li{
  margin-left: 1rem;
}
.jdw-hero__platforms ul li img{
  width: 70px;height: 70px;

}
.jdw-hero__contents {
  width: 100%;
  background: var(--colorDark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 130px 50px;
  border-radius: 15px;
}

.jdw-hero__text {
  width: 60%;
}

.jdw-hero__contents h2 {
  font-size: 55px;
  margin-bottom: 25px;
  color: var(--colorWhite);
  line-height: 1.1;
}

.jdw-hero__contents p {
  font-size: 20px;
  color: var(--colorWhite);
  line-height: 1.5;
  margin-bottom: 25px;
}

/** 6. about **/
.jdw-about {
  margin: 50px 0;
}

.jdw-about__contents {
  background: var(--colorLight);
  padding: 50px 0;
  border-radius: 15px;
  text-align: center;
}

.jdw-about__image {
  display: flex;
  justify-content: center;
}

.jdw-about__image img {
  width: 200px;
  border-radius: 100%;
  margin-bottom: 25px;
}

.jdw-about__name h3 {
  font-size: 34px;
  font-weight: 900;
  color: var(--colorSupport);
  margin-bottom: 5px;
}

.jdw-about__jobtitle h4 {
  color: var(--colorSupport);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-bottom: 20px;
}

.jdw-about__text {
  margin: 0 auto 25px;
  width: 50%;
}

.jdw-about__text p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--colorSupport);
}

.jdw-about__social {
  display: flex;
  justify-content: center;
}

.jdw-about__social ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jdw-about__social ul li {
  margin-right: 25px;
}

.jdw-about__social ul li:last-of-type {
  margin-right: 0;
}

/** 7. services **/
.jdw-services {
  margin-bottom: 50px;
}

.jdw-services__contents {
  background: var(--colorDark);
  padding: 50px;
}

.jdw-services__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.jdw-services__item {
  background: #1e1e1e;
  padding: 50px 25px;
  width: 31%;
  position: relative;

  min-height: 320px;
}

.jdw-services__item-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--colorMain);
  color: var(--colorWhite);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 25px;
}

.jdw-services__item-title {
  display: block;
  margin-bottom: 25px;
}

.jdw-services__item-title h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--colorWhite);
}

.jdw-services__item-text p {
  color: #cccccc;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}

.jdw-services__cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

/** 8. contact **/
.jdw-contact {
  margin-bottom: 50px;
}

.jdw-contact__contents {
  background: var(--colorLight);
  padding: 50px;
  border-radius: 15px;
}

.jdw-contact__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jdw-contact__form {
  width: 48%;
}

.jdw-contact__form .wpcf7 form label {
  width: 100%;
  display: block;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 300;
}

.jdw-contact__form .wpcf7 form label .wpcf7-form-control-wrap {
  margin-top: 5px;
  display: block;
}

.jdw-contact__form .wpcf7 form label .wpcf7-form-control-wrap input,
.jdw-contact__form .wpcf7 form label .wpcf7-form-control-wrap textarea {
  border: 1px solid var(--colorMain);
  padding: 15px 30px;
  display: block;
  width: 100%;
  font-size: 18px;
  font-family: var(--fontFamily);
  color: var(--colorSupport);
}

.jdw-contact__form .wpcf7 form .wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 355px;
  height: 65px;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 900;
  background: var(--colorMain);
  color: var(--colorWhite);
  appearance: none;
  border: 0;
  cursor: pointer;
}

.jdw-contact__map {
  width: 48%;
  text-align: center;
}

.jdw-contact__map-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.jdw-contact__map-address {
  margin-bottom: 25px;
  font-size: 22px;
  color: var(--colorSupport);
}

.jdw-contact__map-iframe iframe {
  height: 250px;
}

/** 9. footer **/
.jdw-footer {
  margin-bottom: 50px;
}

.jdw-footer__contents {
  background: var(--colorDark);
  text-align: center;
  border-radius: 15px;
  padding: 35px 0;
}

.jdw-footer__contents p {
  font-size: 22px;
  color: var(--colorWhite);
}

/** mobile **/
@media (max-width: 768px) {
  .jdw-container__center {
    width: 95%;
  }
  .jdw-header {
    position: relative;
  }
  .jdw-header__navigation {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 2;
    background: var(--colorMain);
    width: 100%;
    left: 0;
    padding: 25px 25px 0 25px;
  }
  .jdw-header__navigation .menu li a {
    color: var(--colorWhite);
    display: block;
    padding: 10px;
  }
  .jdw-header__navigation .menu {
    display: block;
  }
  .jdw-header__navigation .menu li {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .jdw-header__logo {
    width: 50%;
  }
  .jdw-header__mobile {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    background: var(--colorMain);
    color: var(--colorWhite);
    border: 0;
  }
  .jdw-header__mobile span {
    display: block;
    margin-bottom: 5px;
    width: 20px;
    height: 3px;
    background: var(--colorWhite);
  }
  .jdw-header__mobile span:last-of-type {
    margin-bottom: 0;
  }
  .jdw-hero__text {
    width: 100%;
  }
  .jdw-hero__contents h2 {
    font-size: 35px;
  }
  .jdw-hero__contents p {
    font-size: 16px;
  }
  .jdw-hero__image {
    display: none;
  }
  .jdw-button {
    font-size: 18px;
  }
  .jdw-about__text {
    width: 90%;
  }
  .jdw-services__contents,
  .jdw-contact__contents {
    padding: 50px 25px;
  }
  .jdw-services__items {
    flex-wrap: wrap;
  }
  .jdw-services__item {
    width: 100%;
    margin-bottom: 50px;
  }
  .jdw-contact__items {
    flex-wrap: wrap;
  }
  .jdw-contact__form {
    margin-bottom: 50px;
    width: 100%;
  }
  .jdw-contact__map {
    width: 100%;
  }
  .jdw-contact__form .wpcf7 form .wpcf7-submit {
    font-size: 18px;
  }
}
