@import url("https://fonts.googleapis.com/css2?family=Happy+Monkey&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  overflow-x: hidden; }

.artworkSlider {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto; }
  .artworkSlider .slides {
    margin: 40px 0;
    width: 100%;
    display: flex;
    overflow-x: hidden; }
    .artworkSlider .slides .slide {
      width: 100%;
      display: flex;
      justify-content: space-evenly;
      padding: 0 20px;
      flex-shrink: 0;
      opacity: 1;
      transition: opacity 0.5s, transform 0.5s; }
      .artworkSlider .slides .slide.slide-in {
        opacity: 1;
        transform: translateX(0); }
      .artworkSlider .slides .slide.slide-in.slide-from-left {
        transform: translateX(-100%); }
      .artworkSlider .slides .slide.slide-in.slide-from-right {
        transform: translateX(100%); }
      .artworkSlider .slides .slide .images {
        margin-right: 30px;
        max-width: 500px; }
        .artworkSlider .slides .slide .images img.img {
          width: 100%;
          object-fit: cover;
          max-height: 600px; }
      .artworkSlider .slides .slide .content {
        max-width: 700px; }
        .artworkSlider .slides .slide .content h3.title {
          font-family: "Happy Monkey", cursive;
          font-size: 32px;
          color: #0b2443;
          font-weight: 300; }
        .artworkSlider .slides .slide .content .slideline {
          margin: 5px 0 10px 0;
          background-color: #0b2443;
          border-color: #0b2443; }
        .artworkSlider .slides .slide .content div.details {
          font-size: 20px;
          font-family: "Lato", sans-serif;
          color: #0b2443; }
          .artworkSlider .slides .slide .content div.details p {
            margin: 10px 0; }
        .artworkSlider .slides .slide .content button.addToCart {
          margin: 20px 0;
          font-size: 20px; }
        .artworkSlider .slides .slide .content p.description {
          font-size: 18px;
          font-family: "Lato", sans-serif;
          line-height: 32px; }
        .artworkSlider .slides .slide .content a.readMore {
          margin: 20px 0; }
          .artworkSlider .slides .slide .content a.readMore:link, .artworkSlider .slides .slide .content a.readMore:visited {
            font-size: 20px; }
  .artworkSlider .controls {
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
    justify-content: space-between; }
    .artworkSlider .controls .arrow {
      cursor: pointer; }
      .artworkSlider .controls .arrow svg {
        width: 25px;
        height: 25px;
        fill: #0b2443; }
    .artworkSlider .controls .dots {
      max-width: calc(350px - 10%);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-evenly; }
      .artworkSlider .controls .dots .dot {
        cursor: pointer;
        width: 15px;
        height: 15px;
        border-radius: 50px;
        background-color: #0b2443;
        border: 3px solid #0b2443; }
        .artworkSlider .controls .dots .dot.active {
          background-color: #7ec0da; }
  @media screen and (max-width: 1000px) {
    .artworkSlider .slides .slide {
      flex-direction: column;
      align-items: center; }
      .artworkSlider .slides .slide .images {
        margin-right: 0px;
        margin-bottom: 30px; }
      .artworkSlider .slides .slide .content button.addToCart {
        margin: 20px auto; }
      .artworkSlider .slides .slide .content a.readMore {
        margin: 20px auto; } }
  @media screen and (max-width: 600px) {
    .artworkSlider .slides .slide .images {
      min-width: 95%;
      max-width: 95%;
      width: 95%; }
    .artworkSlider .slides .slide .content h3.title {
      font-size: 26px; }
    .artworkSlider .slides .slide .content div.details {
      font-size: 18px; }
    .artworkSlider .slides .slide .content button.addToCart {
      font-size: 18px; }
    .artworkSlider .slides .slide .content a.readMore:link, .artworkSlider .slides .slide .content a.readMore:visited {
      font-size: 18px; } }

.button {
  width: 280px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  border-radius: 50px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.175s linear;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); }
  .button.light {
    background-color: #01689c;
    color: #fff;
    font-family: "Happy Monkey", cursive;
    text-decoration: none; }
  .button:hover {
    border-radius: 10px;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); }

.cards {
  display: flex;
  background: #086d9f;
  background: linear-gradient(180deg, #086d9f 50%, #7ec0da 90%);
  justify-content: space-evenly;
  padding: 40px 0;
  flex-wrap: wrap; }
  .cards .card {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    width: 360px;
    min-width: 360px;
    margin: 10px;
    height: 426px;
    border-radius: 15px;
    background-color: #fff; }
    .cards .card .title {
      font-family: "Happy Monkey", cursive;
      color: #0b2443;
      font-size: 32px;
      text-align: center;
      font-weight: 300; }
    .cards .card img.img {
      height: 295px;
      width: 240px;
      object-fit: cover;
      margin: 10px 0; }
    .cards .card .link:visited, .cards .card .link:link {
      font-family: "Happy Monkey", cursive;
      color: #0b2443;
      font-size: 32px;
      text-align: center;
      text-decoration: none; }
  @media screen and (max-width: 400px) {
    .cards .card {
      width: 90%;
      min-width: 90%; } }

.alt-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px; }
  .alt-cards .title {
    font-size: 36px;
    color: #0b2443;
    font-family: "Happy Monkey", cursive;
    font-weight: 300; }
  .alt-cards .cards {
    width: 100%;
    background: #fff; }
    .alt-cards .cards .card {
      background-color: #01689c;
      border-radius: 0px; }
      .alt-cards .cards .card .title {
        color: #fff; }
      .alt-cards .cards .card .link:visited, .alt-cards .cards .card .link:link {
        color: #fff; }
  @media screen and (max-width: 600px) {
    .alt-cards {
      padding: 10px; } }

.signUp {
  display: flex;
  background: #086d9f;
  background: linear-gradient(180deg, #086d9f 50%, #7ec0da 90%);
  justify-content: space-evenly;
  padding: 50px;
  flex-wrap: wrap; }
  .signUp .form {
    display: flex;
    flex-direction: column;
    min-width: 500px; }
    .signUp .form h2.title {
      font-size: 36px;
      color: #fff;
      font-family: "Happy Monkey", cursive;
      font-weight: 400;
      margin: 10px 0; }
    .signUp .form input.formInput {
      font-size: 16px;
      color: #0b2443;
      padding: 10px;
      border-radius: 10px;
      margin: 15px 0;
      outline: none;
      border: none;
      max-width: 100%; }
      .signUp .form input.formInput::placeholder {
        color: #0b2443; }
      .signUp .form input.formInput.website {
        display: none; }
    .signUp .form p {
      color: #fff;
      font-family: "Lato", sans-serif;
      font-weight: 600;
      font-size: 20px; }
    .signUp .form .formGroup input.checkbox {
      padding: 10px; }
    .signUp .form .checkboxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin: 15px 0; }
      .signUp .form .checkboxes .checkbox-container {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        margin: 10px 0px; }
      .signUp .form .checkboxes .checkbox-input {
        position: relative;
        z-index: 1;
        opacity: 0;
        cursor: pointer;
        height: 25px;
        width: 25px;
        display: none;
        margin-right: 10px; }
      .signUp .form .checkboxes .checkbox-custom {
        position: relative;
        z-index: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 25px;
        width: 25px;
        background-color: #7ec0da;
        border: 2px solid #0b2443;
        border-radius: 4px;
        transition: background-color 0.2s;
        margin-right: 10px; }
      .signUp .form .checkboxes .checkbox-input:checked ~ .checkbox-custom {
        background-color: #0b2443;
        border: 2px solid #7ec0da; }
      .signUp .form .checkboxes .checkbox-custom:after {
        content: '';
        display: none;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg); }
      .signUp .form .checkboxes .checkbox-input:checked ~ .checkbox-custom:after {
        display: block; }
      .signUp .form .checkboxes .checkbox-text {
        font-size: 16px;
        color: #fff;
        font-family: "Lato", sans-serif;
        font-weight: 600; }
    .signUp .form button.signUpBtn {
      background-color: #0b2443;
      color: #fff;
      border-radius: 10px;
      width: 100%;
      max-width: 578px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      outline: none;
      font-size: 20px;
      font-family: "Lato", sans-serif;
      cursor: pointer;
      margin: 10px 0; }
      .signUp .form button.signUpBtn:hover {
        border-radius: 10px;
        transform: translateY(-5px);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); }
  .signUp .rightImg {
    width: 530px;
    height: 435px;
    border: 1px solid red; }
  @media screen and (max-width: 600px) {
    .signUp {
      padding: 25px; }
      .signUp .form {
        min-width: 100%; }
        .signUp .form input.formInput {
          margin: 7.5px 0; }
        .signUp .form .checkboxes {
          margin: 7.5px 0; } }

.line {
  max-width: 1440px;
  width: 75%;
  margin: 0 auto;
  background-color: #01689c;
  border-color: #01689c; }

.stayConnected {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0; }
  .stayConnected .title {
    font-size: 36px;
    color: #0b2443;
    font-family: "Happy Monkey", cursive; }
  .stayConnected .newsletter {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 50px; }
    .stayConnected .newsletter h3 {
      font-size: 20px;
      color: #0b2443;
      font-family: "Happy Monkey", cursive;
      margin: 10px 0; }
    .stayConnected .newsletter div.form {
      display: flex;
      width: 100%; }
      .stayConnected .newsletter div.form input.email {
        background-color: #01689c;
        color: #fff;
        flex-grow: 1;
        padding: 15px;
        font-family: "Lato", sans-serif;
        font-size: 20px;
        border: none;
        outline: none;
        border-radius: 10px; }
        .stayConnected .newsletter div.form input.email::placeholder {
          color: #fff; }
      .stayConnected .newsletter div.form button.submit {
        width: 100%;
        background-color: #0b2443;
        color: #fff;
        font-family: "Lato", sans-serif;
        border-radius: 10px;
        border: none;
        outline: none;
        cursor: pointer;
        max-width: 350px;
        margin-left: 20px;
        font-size: 20px;
        height: 50px; }
  .stayConnected div.social {
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly; }
    .stayConnected div.social img.img {
      max-width: 300px; }
  @media screen and (max-width: 900px) {
    .stayConnected .newsletter div.form button.submit {
      max-width: 200px; } }
  @media screen and (max-width: 600px) {
    .stayConnected .newsletter div.form {
      flex-direction: column; }
      .stayConnected .newsletter div.form button.submit {
        max-width: 100%;
        margin-left: 0px;
        margin-top: 10px; } }

.testimonials {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px; }
  .testimonials .title {
    font-size: 36px;
    color: #0b2443;
    font-family: "Happy Monkey", cursive;
    font-weight: 300;
    margin-bottom: 20px; }
  .testimonials .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .testimonials .list div.testimonial {
      width: 48%;
      margin: 15px 0;
      display: flex;
      flex-direction: column; }
      .testimonials .list div.testimonial p.author {
        margin: 20px 0;
        font-size: 20px;
        color: #0b2443;
        align-self: flex-end; }
  @media screen and (max-width: 800px) {
    .testimonials .list div.testimonial {
      width: 98%; } }

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #086d9f;
  background: linear-gradient(0deg, #086d9f 50%, #7ec0da 90%);
  padding: 30px 0; }
  footer img.footerLogo {
    max-width: 360px; }
  footer .footerNav {
    max-width: 1280px;
    width: 100%;
    padding: 0 30px;
    margin: 20px 0; }
    footer .footerNav ul {
      display: flex;
      width: 100%;
      justify-content: space-evenly;
      flex-wrap: wrap; }
      footer .footerNav ul li {
        list-style: none;
        margin: 10px; }
        footer .footerNav ul li a {
          text-transform: uppercase;
          text-decoration: none; }
          footer .footerNav ul li a:link, footer .footerNav ul li a:visited {
            color: #fff;
            font-family: "Lato", sans-serif; }
  footer .copyright {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin: 0 20px; }
    footer .copyright a:link, footer .copyright a:visited {
      color: #fff; }
  @media screen and (max-width: 600px) {
    footer .footerNav ul {
      flex-direction: column; } }
  @media screen and (max-width: 400px) {
    footer img.footerLogo {
      max-width: 90%; } }

.header {
  display: flex;
  width: 100%;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto; }
  .header .logo .link img {
    max-width: 300px;
    max-height: 150px; }
  .header nav.topnav {
    display: flex;
    width: 100%;
    align-items: center; }
    .header nav.topnav .list {
      display: flex;
      width: 100%;
      flex-grow: 1;
      justify-content: space-evenly; }
      .header nav.topnav .list .item {
        list-style: none; }
        .header nav.topnav .list .item .link {
          text-transform: uppercase;
          color: #0b2443;
          text-decoration: none;
          font-size: 16px; }
          .header nav.topnav .list .item .link:hover {
            text-decoration: underline; }
    .header nav.topnav .icons {
      display: flex; }
      .header nav.topnav .icons .icon {
        list-style: none;
        margin: 0 5px; }
        .header nav.topnav .icons .icon a img {
          max-width: 30px;
          max-height: 30px; }
    .header nav.topnav .menu {
      display: none; }
    .header nav.topnav .menu-toggle {
      display: none; }
  @media screen and (max-width: 1250px) {
    .header {
      flex-direction: column; }
      .header nav.topnav {
        flex-direction: column;
        align-items: center; }
      .header .icons {
        margin: 10px 0; } }
  @media (max-width: 800px) {
    .header nav.topnav {
      flex-direction: column; }
      .header nav.topnav .list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease; }
        .header nav.topnav .list .item {
          margin-bottom: 20px; }
        .header nav.topnav .list .link {
          font-size: 24px; }
      .header nav.topnav .icons {
        margin-top: 20px; }
      .header nav.topnav .menu-icon {
        display: block;
        width: 30px;
        height: 30px;
        position: fixed;
        top: 30px;
        right: 30px;
        cursor: pointer;
        background-color: #fff;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between; }
        .header nav.topnav .menu-icon .burger {
          top: 14px; }
          .header nav.topnav .menu-icon .burger, .header nav.topnav .menu-icon .burger::before, .header nav.topnav .menu-icon .burger::after {
            content: '';
            display: block;
            width: 100%;
            height: 3px;
            background-color: #0b2443;
            position: absolute;
            left: 0; }
          .header nav.topnav .menu-icon .burger::before {
            bottom: -8px; }
          .header nav.topnav .menu-icon .burger::after {
            top: -8px; }
        .header nav.topnav .menu-icon:nth-child(2) {
          top: 50%;
          transform: translateY(-50%); }
      .header nav.topnav .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1; }
      .header nav.topnav .menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: white;
        z-index: 2;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        transition: all 0.275s linear; }
        .header nav.topnav .menu .list {
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          .header nav.topnav .menu .list .item {
            margin-bottom: 20px; }
          .header nav.topnav .menu .list .link {
            font-size: 24px; }
      .header nav.topnav .menu-toggle:checked ~ .overlay {
        display: block; }
      .header nav.topnav .menu-toggle:checked ~ .menu {
        transform: translateX(0); } }

.hero {
  max-width: 1480px;
  padding: 0 20px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between; }
  .hero .left {
    display: flex;
    max-width: 700px;
    flex-direction: column; }
    .hero .left h1 {
      font-size: 40px;
      font-family: "Happy Monkey", cursive;
      color: #0b2443; }
    .hero .left h2 {
      font-size: 18px;
      font-weight: 400;
      font-family: "Lato", sans-serif;
      max-width: 60%;
      line-height: 30px; }
    .hero .left div.buttons {
      margin: 30px 0;
      display: flex;
      max-width: 90%;
      justify-content: space-between; }
  .hero .right img.anita_hero {
    max-width: 400px; }
  @media screen and (max-width: 1100px) {
    .hero .left {
      max-width: 550px; }
      .hero .left h2 {
        max-width: 90%; }
    .hero .right img.anita_hero {
      max-width: 300px; } }
  @media screen and (max-width: 900px) {
    .hero {
      flex-direction: column;
      align-items: center; }
      .hero .left {
        max-width: 100%;
        align-items: center; }
        .hero .left h2,
        .hero .left h1 {
          text-align: center; }
        .hero .left div.buttons {
          width: 100%; }
      .hero .right img.anita_hero {
        max-width: 100%; } }
  @media screen and (max-width: 600px) {
    .hero .left div.buttons {
      align-items: center;
      flex-direction: column; } }
