*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
 --primary-color:#66fcf1;
  --secondary-color: #1f2833;
  --third-color: #45a29e;
  --fourth-color: #E500A4;

}

body {
  margin: 0;
  background: white;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}

.navbar {
  background: #182628;
  padding: .5em;
}

.navbar .logo-mobile {
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 1.2em;
}
.navbar .logo-mobile span {
  color: var(--fourth-color);
}

  .navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 1.2em;
}
.navbar .logo span {
  color: var(--fourth-color);
}

.primary-nav a:hover{
  color: white;
  background-color: var(--fourth-color);
  font-weight: bold;
  text-decoration: none;

}

.secondary-nav a:hover{
  color: white;
  background-color: var(--fourth-color);
  font-weight: bold;
  text-decoration: none;

}

.navbar nav, .laptop-img {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
}

a {
  color: white;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.hero {
  text-align: center;
}

.hero-img {
  width: 50%;
  margin-top: 3em;
}



.testimonials-section {
  background: var(--secondary-color);
  color: var(--fourth-color);
}

.testimonials-section li {
  background: white;
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
  border: 5px solid var(--fourth-color);
}

.testimonials-section li img {
  width: 5em;
  height: 5em;
  border: 5px solid var(--fourth-color);
  border-radius: 50%;
  margin-top: -4.5em;
}





section.footer-section {
  background: #20272E;
  color: white;
  padding-top: 3em;
  
}

.footer-section .container{
display:flex;
/*flex-wrap: wrap;*/
flex-direction: column;
text-align: center;
margin-left: 30px;
}

.footer-list ul {
    margin-top: 10px;
  }

.img-footer{
height: 1.5em;
width:  1.5em;
text-align:justify;
margin-top: 10px;
}


.footer-contact{
text-align: left;
font-weight: bolder;
font-size: 2.5em;
}

.footer-list{
  text-align: left;
  font-size: 1em;
  color: var(--fourth-color);
  /*padding-left: 6em;*/
  font-weight: bold;

}

.footer-rights{
  padding-top: 1.7em;
  font-size: small;
  text-align: right;
}

.footer_a{
padding: 0.1;
display:inline-block;

}

span {
font-weight: bold;
color: white;
}

.hero .container .left-col {
    border-width: 0 3em 0 3em ;
    font-weight: bold;
  }

.left-col .subhead {
  text-transform: uppercase;
  font-weight:bolder;
  color: var(--fourth-color);
  letter-spacing: .3em;
  font-size: 2em;
}

.left-col .h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: .2em;
  
}

.left-col .request-cta {
  background: var(--secondary-color);
  text-decoration: none;
  color: var(--fourth-color);
  padding: .6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  display: inline-block;
  font-weight: bold;
}

.hero div a:hover {
    background: var(--fourth-color);
    color: var(--secondary-color);

}

.container {
  margin: 0 auto;
}


.features-section.ul.features-list {
  margin: 0;
  padding-left: .1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

ul.features-list li {
  font-size: 1.4em;
  margin-bottom: 1em;
  margin-left: 2em;
  position: relative;
}

ul.features-list li:before {
  content: '';
  left: -2em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/bullet.jpg");
  background-size: contain;
  margin-right: .5em;
}

ul.features-list {
    display: block;
    margin-left: 5em;
  }

.section2.container {
  text-align: left;
  background: white;
  color: var(--secondary-color);
  padding-bottom: 5em;
}

.create-account-section .account-cta {
  text-decoration: none;
  background: var(--secondary-color);
  color: var(--fourth-color);
  border-radius: 5em;
  font-size: 1.4em;
  padding: .6em 1.3em;
  display: inline-block;
  font-weight: bold;
}

.create-account-section h2{
  margin-left: 2em;
  margin-right: 1em;
}

h2 {
  font-size: 2em;
  font-weight: bold;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border: 1px solid gray;
  border-radius: .3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--secondary-color);
  color: var(--fourth-color);
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 5em;
  margin-bottom: 5em;
  border: none;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
}

nav.menu-btn {
  display: block;
  padding: 0;
  margin: 0;
}

nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  right: 0;
  top: 0;
  background: var(--secondary-color);
  height: 60vh;
  padding: 1em;
}
.navbar nav a {
    color: white;
    font-size: 1em;
    padding: .1em 1em;
  }

ul.primary-nav, ul.secondary-nav {
  margin-top: 5em;
}

li a {
  color: black;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit, .logo-mobile {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .navbar nav a {
    color: white;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current {
    font-weight: bold;
  }
  .navbar nav li.signup-cta {
    color: var(--fourth-color);
    border: 3px solid var(--fourth-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -.2em;
  }
  .navbar nav li.signup-cta:hover {
    background: var(--fourth-color);
    color: var(--secondary-color);
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }

  .laptop-img{
  display:block;
}

  section {
    padding: 5em 4em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
    margin-bottom: 3em;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
   
  }
  .hero .container .left-col h1 {
    font-size: 3m;
    width: 90%;
  }
  .navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 1.2em;
}
.navbar .logo span {
  color: var(--fourth-color);
}
  
.testimonials-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   
  }
}

label {
  font-weight: bolder;
}
.section2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
ul.features-list {
  display: block;
  margin-left: 5em;
}
ul.features-list li {
  font-size: 1.4em;
}
ul.features-list li:before {
  width: 30px;
  height: 30px;
}
.features-section {
  position: relative;
}



.testimonials-section ul li {
    margin: 0 1em;
  }

/*# sourceMappingURL=main.css.map */