*{
    font-family: 'Nunito Sans', sans-serif;
}




/* Navbbar Styles and Footer Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  background-color: #ffffff;
  width: 100%;
}

.container {
  display: flex;
  position: relative;
}

.logo-container {
  flex: 1;
  align-items: center;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo {
  width: 50%;
  padding: 10px 30px;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
  border: 2px solid rgb(0, 170, 255);
  border-radius: 2rem;

  line-height: 1;
  margin: 0 0.2rem;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
  background-color:rgb(0, 170, 255);
  color:#fff ;
  font-weight:600 ;
}

.btn.transparent,
.btn.solid:hover {
  background-color: #ffffff;
  color: rgb(0, 170, 255);
  font-weight:600 ;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: rgb(0, 0, 0);
  font-weight: 600;
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
.nav-link > a:hover {
  color: #3498db;
}

.nav-link > a > i {
  margin-left: 0.2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border: 1px solid #07a9fa2e;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: #fff;
  color: #0f86d6;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  cursor: pointer;
}

.dropdown-link:hover > a {
  /* background-color: #3498db; */
  color: rgba(57, 189, 255, 0.533);
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #3498db;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
  
}

.hamburger-menu {
  width: 2.8rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 5px;
  background-color: #07a9fa;
  
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  margin-right: 10px;
  border-radius: 3px;
  background-color: white;
  position: relative;
  z-index: 1001;

  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}
.nav-btn {
  text-align: center;
  align-items: center;
}
@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  header {
    position: sticky;
    top: 0px;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
  }
  .container {
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
  }
  .logo {
    width: 100%;
  }
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-image:  linear-gradient(to left, #07a9facc, #003c5a );
    
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    /* overflow-x: auto;
        overflow-y: auto; */
    transform: translateX(100%);
    transition: 0.65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.2rem 1.2rem;
    color: #fff;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: #50a9d6;
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #3183ac;
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: #69bde7;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color: #50a9d6;
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: #3a91bd;
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: #50a9d6;
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}

#footer {
 
  margin-top: 70px;
  background: rgba(8, 70, 111, 1);
}
#footer >#footer1 {
  padding:50px 100px 20px 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: auto;
}
#footer > #footer1 > div > ul > li {
  color: rgb(138, 162, 179);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  padding: 10px;
  list-style: none;

}
#footer > #footer1 > div > ul > li >a{
  text-decoration: none;
}
#footer > #footer1 > div > ul > li > a:hover {
  color: #fff;
}
#footer > #footer1 > div > h2 {
  color: #fff;
  font-family: sans-serif;
  font-weight: 700;
  padding: 10px 0px;
}
#footer > #footer1 > div > ul > li > a {
  color: rgb(138, 162, 179);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  text-decoration: none;
}
#foot {
  background: rgba(8, 70, 111, 1);
  padding-bottom: 50px;
}
#footer2 {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
#footer2 > div {
  width: 300px;
  height: 100px;
}
#footer2 > div > img {
  width: 100%;
}
#footer2 > div:nth-child(2) > img {
  width: 60%;
}
#footer2 > div:nth-child(2) {
  text-align: center;
}
#footer2 > div:nth-child(3) > img {
  width: 30%;
}
#footer2 > div:nth-child(3) {
  text-align: center;
}
#footer2 > div:nth-child(4) > img {
  width: 60%;
}
#footer2 > div:nth-child(4) {
  text-align: center;
}
#footnav {
  background: rgb(3, 46, 79);
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
}
#footnav > div:nth-child(1) {
  display: flex;
}
#footnav > div:nth-child(2) {
  display: flex;
}
#footnav > div:nth-child(1) > div {
  width: 80px;
  height: 100px;
  text-align: center;
  padding: 10px;
  padding-top: 35px;
}
#footnav > div:nth-child(2) > div {
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 35px;
}
#footnav > div:nth-child(1) > div > img {
  width: 100%;
}
@media only screen and (min-device-width: 500px) and (max-device-width: 850px){
  #footer >#footer1 {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: auto;
  }
  #footer2 {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}
@media only screen and (min-device-width: 100px) and (max-device-width: 500px){
  #footer >#footer1 {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: auto;
  }



  
  #footer2 {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  #footnav {
    background: rgb(3, 46, 79);
    width: 100%;
    height: 300px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
}

/* Navbbar Styles and Footer Styles */

#beDifferent{
    width: 80%;
    text-align: center;
    margin: auto;
}
#beDifferent h1>b{
    font-size: 50px;
    font-weight: 900;
    font-family: sans-serif;
}
#beDifferent p{
    width: 80%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
    font-size: 20px;
}

#inputDiv{
    width: 55%;
    border: 10px solid #00a9fd2c;;
    display: flex;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    font-size: 35px;
}

#emailInput{
    height: 50px;
    width: 60%;
    border: none;
}
#getStartedButton{
    width: 40%;
    background-image:  linear-gradient(to bottom, #32b6f8 , #0395df);
    border: none;
    
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
}
#getStartedButton a, #seeFullFeatureBTN a{
  color: #fff;
  font-weight: 700;
}
#getStartedButton:hover{
    width: 40%;
    background-image:  linear-gradient(to bottom, #0395df, #015b88e1);
    border: none;
    color: white;
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
}
#findOutMoreButton a{
  font-weight: 700;
 
  color: #fff;
}

#mainPoster{
    margin: auto;
    width: 100%;
    margin-top: 50px;

}


#smallIcons{
    width: 70%;
    display: flex;
    margin: auto;
    text-align: center;
    gap: 30px;
}







#emptyBox{
    position: absolute;
    position: relative;
    width: 70%;
    height: 680px;
    background-color: #c6e6f694;
    border-radius: 50px;
    z-index:-1;
    top: 670px;
    margin-top: -500px;
    margin-left: 20px;

}


#howDoesAyoaHelp{
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
}
#howDoesAyoaHelp video{
    width: 50%;
    height: fit-content;
    margin-top: 130px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: 30px;
}


#howDoesAyoaHelp  h1{
    font-size: 40px;
    font-style: bold;
    margin-left: 50px;
    margin-top: 50px;
    font-weight: 1000;
    font-family: sans-serif;
}
#howDoesAyoaHelp  h1>span{
    font-size: 40px;
    font-style: bold;
    margin-top: 50px;
    font-weight: 1000;
    font-family: sans-serif;
    color: white;
    background-color: #0395df;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}
#howDoesAyoaHelp p>span{
    color: #057ebb;
}
#thickDiv{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
#howDoesAyoaHelp p{
    width: 70%;
    margin-left: 50px;
    font-size: 18px;
    line-height: 25px;
}
#howDoesAyoaHelp #clickText{
    color: #006b92;
    font-weight: 1000;
    cursor: pointer;
}
#howDoesAyoaHelp #clickText:hover{
    color: #a4a4a4;
    font-weight: 1000;
    cursor: pointer;
}



#findOutMoreButton{
    height: 46px;
    width: 200px;
    background-color: #07a9fa;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
 }
 #findOutMoreButton:hover{
    height: 46px;
    width: 200px;
    background-color: #0576af;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;

 }
 #howDoesAyoaHelp button{
    margin-left: 50px;
    
 }

#chooseCreativityHeading{
    margin-top: 100px;
    text-align: center ;
    font-size: 50px;
    width: 70%;
    margin: auto;
    margin-top: 200px;
    font-weight: 2000;
}



 #compritionDiv{
    width: 90%;
    display: flex;
    gap: 25px;
    margin: auto;
 }
 #compritionDiv>div{
    /* border: 1px solid rgba(128, 128, 128, 0.383); */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    text-align: left;
 }



 #seeFullFeatureBTN{
    height: 46px;
    width: 300px;
    background-color: #07a9fa;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 40px;
 }
 #seeFullFeatureBTN:hover{
    height: 46px;
    width: 300px;
    background-color: #0576af;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    cursor: pointer;
    margin-top: 40px;
    font-size: 20px;

 }
 #chooseCreativityHeadingMainDiv{
    margin: auto;
    text-align: center;
 }


 #flexibility{
    text-align: center;
    margin-top: 120px;
 }
#flexibility h1{
    font-size: 55px;
    font-weight: 900;
}
#flexibility h1>span{
    font-size: 55px;
    font-weight: 900;
    color: white;
    background-color: rgb(238, 44, 102) ;
    padding-left: 10px;
    padding-right: 10px;
}
#flexibility p{
    width: 50%;
    margin: auto;
}


#designedForDiversity{
    display: flex;
    width: 95%;
    margin: auto;
    margin-top: 80px;
    gap: 25px;

}
#designedForDiversity>img{
    width: 50%;

}

#designedForDiversity>div>div{
    display: flex;
    gap: 40px;
}

#designedForDiversity>div>div img{
    width: 50%;
    margin-top: 30px;
}
#designedForDiversity>div>div{
    width: 60%;
    height: 100px;
}
#designedForDiversity h1{
    font-size: 45px;
    font-weight: 1000;

}
#designedForDiversity p{
    font-size: 18px;   
}


/* RESPONSIVE */



@media all and (min-width:700px) and (max-width:1000px) {

/* be different work visual */

#beDifferent{
    width: 95%;
    text-align: center;
    margin: auto;
    margin-top: 100px;
}
#beDifferent h1>b{
    width: 70%;
    font-size: 40px;
    font-weight: 900;
    font-family: sans-serif;
    margin-left: 30px;
}
#beDifferent p{
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
    font-size: 20px;
}

#inputDiv{
    width: 55%;
    background-color: #00a9fd2c;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    font-size: 35px;
    border: none;
    justify-content: space-between;
    align-items: center;
    height: 130px;
}

#emailInput{
    height: 50px;
    width: 90%;
    font-size: 20px;
    padding-left: 20px;

    border: none;
}
#getStartedButton{
    width: 45%;
    height: 60px;
    background-image:  linear-gradient(to bottom, #32b6f8 , #0395df);
    border: none;
    color: white;
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
    
}
#getStartedButton:hover{
    width: 45%;
    height: 60px;
    background-image:  linear-gradient(to bottom, #0395df, #015b88e1);
    border: none;
    color: white;
    font-size: 25px;
    border-radius: 10px;
    cursor: pointer;
}

#mainPoster{
    margin: auto;
    width: 100%;
    margin-top: 50px;

}

#smallIcons{
    width: 55%;
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    gap: 30px;
    margin-top: 30px;
}




/* /////////////////// */

#emptyBox{
    position: absolute;
    position: relative;
    width: 100%;
    margin: auto;
    height: 1200px;
    background-color: #c6e6f694;
    border-radius: 50px;
    z-index:-1;
    top: 670px;
    margin-top: -550px;

}


#howDoesAyoaHelp{
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    text-align: center;
    margin-right: 70px;
}
#howDoesAyoaHelp video{
    width: 90%;
    margin: auto;
    height: fit-content;
    margin-top: 130px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    display: flex;
    border-radius: none;
    justify-content: center;
    align-items: center;
    margin: 45px;

}


#howDoesAyoaHelp  h1{
    text-align: center;
    font-size: 40px;
    font-style: bold;
    margin-top: -470px;
    font-weight: 1000;
    font-family: sans-serif;
}
#howDoesAyoaHelp  h1>span{
    font-size: 40px;
    font-style: bold;
    margin-top: 50px;
    font-weight: 1000;
    font-family: sans-serif;
    color: white;
    background-color: #0395df;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}
#howDoesAyoaHelp p>span{
    color: #057ebb;
}
#thickDiv{

    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    margin-top: 60px;
}
#thickDiv span{
    color: #32b6f8;
    font-size: 25px;
  
}


#ayoahelpPara{
    text-align: center;
    width: 700px;
}

#thickDiv p{
    margin-top: -49px;
    text-align: center;
}
#howDoesAyoaHelp p{
    width: 93%;
    /* margin-left: 80px; */
    font-size: 18px;
    line-height: 25px;
    height: 70px;

}
#howDoesAyoaHelp #clickText{
    color: #006b92;
    font-weight: 1000;
    
    cursor: pointer;
}
#howDoesAyoaHelp #clickText:hover{
    color: #a4a4a4;
    font-weight: 1000;
    cursor: pointer;
}



#findOutMoreButton{
    height: 46px;
    width: 200px;
    background-color: #07a9fa;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
 }
 #findOutMoreButton:hover{
    height: 46px;
    width: 200px;
    background-color: #0576af;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;

 }
 #howDoesAyoaHelp button{
    margin-left: 50px;
    
 }



/* ////////////       ANOTHER      /////////////// */

#chooseCreativityHeading{
    margin-top: 100px;
    text-align: center ;
    font-size: 50px;
    width: 70%;
    margin: auto;
    margin-top: 150px;
    font-weight: 2000;
}

#compritionDiv{
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: auto;
 }
 #compritionDiv>div{
    margin: auto;
    /* border: 1px solid rgba(128, 128, 128, 0.383); */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    text-align: left;
    width: 60%;
    text-align: center;
 }



 #seeFullFeatureBTN{
    height: 46px;
    width: 300px;
    background-color: #07a9fa;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 40px;
 }
 #seeFullFeatureBTN:hover{
    height: 46px;
    width: 300px;
    background-color: #0576af;
    color: white;
    border: none;
    /* font-size: 25px; */
    border-radius: 6px;
    cursor: pointer;
    margin-top: 40px;
    font-size: 20px;

 }
 #chooseCreativityHeadingMainDiv{
    margin: auto;
    text-align: center;
 }






/* //////////////////////////////////// */



#designedForDiversity{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: auto;
    margin-top: 80px;
    gap: 25px;

}
#designedForDiversity>img{
    width: 100%;

}

#designedForDiversity>div>div{
    display: flex;
    gap: 70px;
}

#designedForDiversity>div>div img{
    width:60%;
    margin-top: 30px;
}
#designedForDiversity>div>div{
    width: 40%;
    height: 100px;
    margin-left: 110px;
    margin-bottom: 60px;
}
#designedForDiversity h1{
    font-size: 45px;
    font-weight: 1000;
    width: 70%;
    margin: auto;
    text-align: center;

}
#designedForDiversity p{
    font-size: 20px;
    width: 90%;
    text-align: center;   
    margin-left: 40px;
}









#flexibility p{
    width: 90%;
    margin: auto;
    font-size: 20px;
}

}








@media all and (min-width:358px) and (max-width:701px) {

    /* be different work visual */
    
    #beDifferent{
        width: 95%;
        text-align: center;
        margin: auto;
        margin-top: 100px;
    }
    #beDifferent h1>b{
        width: 70%;
        font-size: 40px;
        font-weight: 900;
        font-family: sans-serif;
        margin-left: 30px;
    }
    #beDifferent p{
        width: 100%;
        text-align: center;
        margin: auto;
        margin-bottom: 30px;
        font-size: 20px;
    }
    
    #inputDiv{
        width: 90%;
        background-color: #00a9fd2c;
        display: flex;
        flex-direction: column;
        padding: 10px;
        border-radius: 10px;
        margin: auto;
        font-size: 35px;
        border: none;
        justify-content: space-between;
        align-items: center;
        height: 130px;
    }
    
    #emailInput{
        height: 50px;
        width: 90%;
        font-size: 20px;
        padding-left: 20px;
    
        border: none;
    }
    #getStartedButton{
        width: 55%;
        height: 50px;
        background-image:  linear-gradient(to bottom, #32b6f8 , #0395df);
        border: none;
        color: white;
        font-size: 20px;
        font-weight: 800;
        border-radius: 10px;
        cursor: pointer;
        
    }
    #getStartedButton:hover{
        width: 45%;
        height: 60px;
        background-image:  linear-gradient(to bottom, #0395df, #015b88e1);
        border: none;
        color: white;
        font-size: 25px;
        border-radius: 10px;
        cursor: pointer;
    }
    
    #mainPoster{
        margin: auto;
        width: 100%;
        margin-top: 50px;
    
    }
    
    #smallIcons{
        width: 55%;
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    
    
    
    /* /////////////////// */
    
    #emptyBox{
        position: absolute;
        position: relative;
        width: 100%;
        margin: auto;
        height: 1100px;
        background-color: #c6e6f694;
        border-radius: 50px;
        z-index:-1;
        top: 560px;
        margin-top: -300px;
    
    }
    
    #howDoesAyoaHelp p{
        margin-left: 36px;
    }
    
    #howDoesAyoaHelp{
        
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        width: 95%;
        margin: auto;
        text-align: center;
        /* margin-right: 90px; */
        margin-left: -17px;
    }
    #howDoesAyoaHelp video{
        width: 90%;
        margin: auto;
        height: fit-content;
        margin-top: 130px;
        box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
        display: flex;
        border-radius: none;
        justify-content: center;
        align-items: center;
        margin: 45px;
    
    }
    
    
    #howDoesAyoaHelp  h1{
        text-align: center;
        font-size: 30px;
        font-style: bold;
        margin-top: -470px;
        font-weight: 1000;
        font-family: sans-serif;
        line-height: 60px;
    }
    #howDoesAyoaHelp  h1>span{
        font-size: 35px;
        font-style: bold;
        margin-top: 50px;
        font-weight: 1000;
        font-family: sans-serif;
        color: white;
        background-color:#0395df ;
        padding-left: 90px;
        padding-right: 90px;
        margin-top: 30px;


    }
    #howDoesAyoaHelp p>span{
        color: #057ebb;
    }
    #thickDiv{
    
        display: flex;
        flex-direction: column;
        /* justify-content: center;
        align-items: center; */
        margin-top: 130px;
    }
    #thickDiv span{
        color: #32b6f8;
        font-size: 25px;
      
    }
    
    
    #ayoahelpPara{
        text-align: center;
        width: 700px;
    }
    
    #thickDiv p{
        margin-top: -49px;
        text-align: center;
    }
    #howDoesAyoaHelp p{
        width: 93%;
        /* margin-left: 80px; */
        font-size: 18px;
        line-height: 25px;
        height: 70px;
    
    }
    #howDoesAyoaHelp #clickText{
        color: #006b92;
        font-weight: 1000;
        
        cursor: pointer;
    }
    #howDoesAyoaHelp #clickText:hover{
        color: #a4a4a4;
        font-weight: 1000;
        cursor: pointer;
    }
    
    
    
    #findOutMoreButton{
        height: 46px;
        width: 200px;
        background-color: #07a9fa;
        color: white;
        border: none;
        /* font-size: 25px; */
        border-radius: 6px;
        font-size: 20px;
        cursor: pointer;
        font-weight: 800;
     }
     #findOutMoreButton:hover{
        height: 46px;
        width: 200px;
        background-color: #0576af;
        color: white;
        border: none;
        /* font-size: 25px; */
        border-radius: 6px;
        cursor: pointer;
        font-weight: 800;
        font-size: 20px;
    
     }
     #howDoesAyoaHelp button{
        margin-left: 50px;
        
     }
    
    
    
    /* ////////////       ANOTHER      /////////////// */
    
    #chooseCreativityHeading{
        margin-top: 100px;
        text-align: center ;
        font-size: 30px;
        width: 90%;
        margin: auto;
        margin-top: 150px;
        font-weight: 900;
    }
    
    #compritionDiv{
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin: auto;
     }
     #compritionDiv>div{
        margin: auto;
        /* border: 1px solid rgba(128, 128, 128, 0.383); */
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        border-radius: 10px;
        padding: 40px;
        margin-top: 50px;
        text-align: left;
        width: 60%;
        text-align: center;
     }
    
    
    
     #seeFullFeatureBTN{
        height: 46px;
        width: 300px;
        background-color: #07a9fa;
        color: white;
        border: none;
        /* font-size: 25px; */
        border-radius: 6px;
        font-size: 20px;
        cursor: pointer;
        margin-top: 40px;
     }
     #seeFullFeatureBTN:hover{
        height: 46px;
        width: 300px;
        background-color: #0576af;
        color: white;
        border: none;
        /* font-size: 25px; */
        border-radius: 6px;
        cursor: pointer;
        margin-top: 40px;
        font-size: 20px;
    
     }
     #chooseCreativityHeadingMainDiv{
        margin: auto;
        text-align: center;
     }
    
    
    
    
    
    
    /* //////////////////////////////////// */
    
    
    
    #designedForDiversity{
        display: flex;
        flex-direction: column;
        width: 95%;
        margin: auto;
        margin-top: 80px;
        gap: 25px;
    
    }
    #designedForDiversity>img{
        width: 100%;
    
    }
    
    #designedForDiversity>div>div{
        display: flex;
        gap: 10px;
    }
    
    #designedForDiversity>div>div img{
        width: 45%;
        margin-top: 30px;
    }
    #designedForDiversity>div>div{
        width: 90%;
        margin-bottom: 60px;
    }
    #designedForDiversity h1{
        font-size: 26px;
        font-weight: 900;
        width: 90%;
        font-family: sans-serif;
        margin: auto;
        text-align: center;
    
    }
    #designedForDiversity p{
        font-size: 20px;
        width: 100%;
        text-align: center;   
        margin: auto;
        padding-top: 30px;
    }
    
    
    
    
    
    
    
    
    
    #flexibility p{
        width: 90%;
        margin: auto;
        font-size: 20px;
        margin-top: 30px;
    }
    
    
    
    
}