html {
  box-sizing: border-box;
  position: relative;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #a0a0ff;
  height: 100%;
  width: 100%;
}

body::-webkit-scrollbar {
  display: none;
}


h1, h2, h3 {
  margin: 0;
}

nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: #4974f3;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  box-shadow: none;
  padding: 1.5rem 3rem;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

nav li {
  margin: 0;
  justify-content: center;
  align-items: center;
}

nav li:hover {
  border-bottom: 1px solid #fff;
}

nav h1 {
  font-size: 2rem;
}


nav .name {
  display: flex;
}

nav img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

nav .name>h1 {
  font-size: 35px;
  font-family: 'Satisfy', cursive;
  font-weight: 600;
  padding-left: 14px;
  padding-top: 10px;
}

.content a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

/*Navigation Stylying Ends */

.container {
  background-color: white;
  display: flex;
  flex-flow: row nowrap;
  border-bottom-left-radius: 50% 30%;
  border-bottom-right-radius: 50% 30%;
  margin-bottom: 5rem;
  padding: 1.5rem 2rem 5rem 2rem;
}

/* Shop now button */
.Shop-Now {
  background-color: #4169E1;
  color: white;
  border: none;
  height: 40px;
  width: 150px;
  border-radius: 18px;
  cursor: pointer;
  margin-left: 8px;
  transition: 0.15s;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  -webkit-transition: 0.15s;
  -moz-transition: 0.15s;
  -ms-transition: 0.15s;
  -o-transition: 0.15s;
}

.Shop-Now:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0.15);
}

.Shop-Now:active {
  opacity: 0.6;
}

/* Get Discount Button */
.Get-Discount {
  background-color: white;
  border-color: rgb(85, 86, 92);
  border-style: solid;
  border-width: 2px;
  color: rgb(85, 86, 92);
  height: 40px;
  width: 150px;
  border-radius: 18px;
  cursor: pointer;
  transition: color 1s;
  margin-left: 20px;
  -webkit-transition: color 1s;
  -moz-transition: color 1s;
  -ms-transition: color 1s;
  -o-transition: color 1s;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

.Get-Discount:hover {
  background-color: rgb(85, 86, 92);
  color: white;
}

.Get-Discount:active {
  opacity: 0.7;
}


h5 {
  color: #4169E1;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.0;
}

.text-container h2 {
  font-size: 36px;
  flex-shrink: 2;
  margin-bottom: 20px;
  font-weight: 600;
  color: #105be5db;
  line-height: 1.3;
  letter-spacing: 6px;
  font-family: "Robbins", sans-serif;
}

/* 
h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.0;
  font-weight: 700;
  color: rgb(74, 3, 92);
} */

.image {
  width: 50%;
  display: block;
  margin-right: 2rem;
  margin-left: auto;
  max-height: 100%;
  border-radius: 40px 40px;
  -webkit-border-radius: 40px 40px;
  -moz-border-radius: 40px 40px;
  -ms-border-radius: 40px 40px;
  -o-border-radius: 40px 40px;
}

.heading {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  text-align: center;
  padding-bottom: 1.7rem;
}

.white {
  background-color: white;
}

.colored {
  color: #4169E1;
}

.sec-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 100px;
  font-family: 'Poppins', sans-serif;
}

.sec-container img {
  max-width: 500px;
  object-fit: cover;
  height: 400px;
  border-radius: 6px;
  border: 2px solid white;
  margin-right: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.text h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.text h4 {
  font-size: 20px;
  margin-bottom: 5px;

}

.text p {
  font-size: 15px;
  padding: 5px;
  font-weight: 500;
  line-height: 2.0;
}

/* Footer styling */
footer {
  margin-top: 2rem;
  background-color: #4169E1;
  font-size: 16px;
  color: white;
  padding: .7rem;
  width: 100%;
  margin: 0;
}

.footerText p {
  margin-top: 11px;
  color: whitesmoke;
  text-align: justify;
  font-weight: 300;
}

.footerflex {
  /* margin: auto; */
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 4rem;
}

footer h2 {
  padding-bottom: .5rem;
  font-size: 18px;
  font-weight: 600;
}

.footerText a {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 300;
}

.footerText a:hover {
  text-decoration: underline;
}


#last {
  border-top: 1px solid #f8f8f8;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
}

@media (max-width: 800px) {
  body {
    width: 100vw;
  }

  nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    padding-bottom: 0.5rem;
  }

  .dropbtn {
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #4974f3;
    font-size: 30px;
  }

  .drop {
    position: relative;
    display: inline-block;
  }

  .content {
    display: none;
    position: absolute;
    right: 0;
    z-index: 5;
    min-width: 150px;
    background-color: #f2f5f7;
    color: #2E6FE7;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  .content li {
    display: block;
    padding: 10px 12px;
  }

  .content li:hover {
    border-bottom: none;
  }

  .content a:hover {
    border-bottom: #2E6FE7 solid 2px;
  }

  .content a {
    color: #2E6FE7;
  }

  .drop:hover .content {
    display: block;
  }

  nav a[class*="fa-"] {
    font-size: 150%;
  }

  nav .name h1 {
    font-size: 28px;
    padding-top: 12px;
  }

  .container {
    display: inline-block;
    padding: 1.5rem;
    padding-bottom: 2.5rem;
    margin: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .text-container {
    flex-basis: 100%;
    padding: 20px;
    margin-top: 0;
  }

  .container img {
    flex-basis: 100%;
    width: 80%;
  }

  .text-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 5px;
  }

  .text-container p {
    width: auto;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: black;
    line-height: 2.0;
    margin-bottom: 15px;
    padding: 15px;
  }

  .sec-container {
    display: block;
    padding: 50px 20px;

  }

  .heading {
    padding: 2rem 0;
  }

  .sec-container img {
    max-width: 400px;
    object-fit: cover;
    height: 400px;
    border-radius: 6px;
    border: none;
    display: block;
    margin: 30px auto;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .text h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .text h4 {
    font-size: 25px;
    margin-bottom: 5px;
    padding: 5px;
  }

  .text p {
    font-size: 20px;
    line-height: 1.3;
    padding: 5px;
    font-weight: 400;
  }

  .footerflex {
    /* margin: auto; */
    display: block;
    padding: 0 2rem;
  }

  .footerText {
    margin-bottom: 2rem;
  }

}

@media (min-width: 810px) {
  .dropbtn {
    display: none;
  }

  .container {
    background-color: white;
    display: flex;
    flex-flow: row nowrap;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    margin-bottom: 5rem;
    padding: 1.5rem 3rem 4.5rem 3rem;
  }

  .container img {
    flex-basis: 30%;
    width: 37%;
    flex-shrink: 0;
    border-radius: 6em/4em;
    height: 15%;
    padding-right: 20px;
    margin-top: 2rem;
    justify-content: center;
    -webkit-border-radius: 6em/4em;
    -moz-border-radius: 6em/4em;
    -ms-border-radius: 6em/4em;
    -o-border-radius: 6em/4em;
  }

  span {
    color: #4169E1;
    font-size: 40px;
    font-family: 'Satisfy', cursive;
    font-weight: 600;
    /* padding-left: 20px;   */
  }

  #insidetext {
    font-size: 20px;
  }

  .text-container {
    flex-basis: 70%;
    flex-shrink: 2;
    padding: 60px;
    margin-top: 70px;
  }

  .text-container p {
    width: 620px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: black;
    line-height: 1.7;
    margin-bottom: 15px;
  }

}