*,
*::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;

}

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

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

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

a {
  color: #444444;
}

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

.hero {
  text-align: center;
}

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;
}

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

  }

.hero-img {
  margin-top: 3em;
  width: 80%;
}
.container {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.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.svg");
  background-size: contain;
  margin-right: .5em;
}

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

.Services-section h2{
  margin-left: 2em;
  font-weight: bold;
  color: var(--fourth-color);
}
 
h2 {
  font-size: 2em;
  font-weight: bold;
  margin-left: 2em;
}

.section-text {
  margin-left: 2em;

}

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-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: 66%;
  right: 0;
  top: 0;
  background: var(--secondary-color);
  height: 100vh;
  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;
}

.contact-section{
padding: 1em;

}

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

.DM-list{
 list-style-type: disc; 
 margin-left: 3.5em;
 font-size: 1.3em;
 
}



@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;
  }
  .menu-btn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
        grid-template-columns: 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 {
   
    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(--fourth-color);
  }
    .laptop-img,  .dataeng-img, .ba-img {
  display: inline-block;
}
.dataeng-img{
  width: 28%;
}
.ba-img{
  width: 40%;

}
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  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;
  }

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

   .left-col {
      margin: 3em 3em 0 0;
    }
 
  h1 {
    font-size: 3em;
    color: var(--fourth-color);

  }
  p {
    font-size: 1.5em;
    text-align: left;

  }
.laptop-img,
.dataeng-img,
.ba-img {
  display: inline-block;
  max-width: 100%; /* prevents overflow */
  width: 280px;
}



}

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;
  padding-left: 10px;
  padding-right: 10px;
  
}
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;
}

.contact-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}
.contact-right {
  margin-top: 3em;
  margin-left: 3em;
  width: 45%;
  height: 100%;
}

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