html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

i {
    font-style:italic!important;
}

html, body {
    background-color: #e7dfd9;
    font-family: 'Poppins', sans-serif;
}

body {
    padding-bottom: 5%;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.title {
    padding: 5%;
}

.site-name {
    display: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px 20px;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    pointer-events: none;
    transition: background 0.3s ease;
}

.nav-overlay.active {
    background: rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.full-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .box {
    border: 2px #000 solid;
    padding: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bottom {
    padding: 2%;
}

.about .box, .press .box, .faq .box, .books .box, .contact .box {
    border: 2px #000 solid;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right img, .left img {
    max-width: 450px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.social img {
    box-shadow: none;
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.social {
    display: flex;
    flex-direction: row;
}

.social img {
    max-width: 35px;
}

.home ul {
    list-style-type: none;
}

li {
    margin-right: 40px;
}

h1 {
    font-size: 4rem;
    font-weight: 500;
}

p {
    font-size: 2rem;
    font-weight: 300;
}

.title {
    font-weight: 800;
}

.left div:nth-of-type(2) p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.decorate {
    text-decoration: underline;
    font-weight: 600;
}

.about .right {
    margin-left: 20px;
}

.about p, .press p, .faq p, .contact p {
    font-size: 1rem;
}

b {
    font-weight: 600;
}

.press img, .faq img, .contact img {
    width: 100%;
}

.contact .box div:nth-of-type(2), .faq .box div:nth-of-type(2), .press .box div:first-of-type {
    margin: 0 auto;
}

.press h2, .faq h2, .contact h2 {
    font-size: 2rem;
}

.books h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.books p {
    font-size: 1rem;
    line-height: 1.5rem;
}

.books .right { 
    margin-left: 20px;
}

.books p b a {
    text-decoration: underline;
}


.books ul {
    margin-left: 30px;
}

.books img {
    max-width: 375px;
}

.tops {
    margin-top: 80px;
}

.books h1, .about h1 {
    margin: 0 auto;
    font-size: 2rem;
    text-align: center;
}

.heading {
    margin-bottom: 40px;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .header, .full-container {
        max-width: 95%;
    }
    .header {
        justify-content: space-between;
        padding: 10px 0;
        position: relative;
        z-index: 1002;
    }
    .site-name {
        display: block;
        order: 1;
    }
    .hamburger {
        display: flex;
        order: 2;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #e7dfd9;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-menu .title {
        padding: 14px 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        border-bottom: none;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-menu.active .title {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-menu.active .title:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active .title:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active .title:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active .title:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active .title:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu .title a {
        position: relative;
        display: inline-block;
    }
    .nav-menu .title a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #000;
        transition: width 0.3s ease;
    }
    .nav-menu .title a:hover::after {
        width: 100%;
    }
    .home .box {
        flex-direction: column;
    }
    .row {
        flex-direction: column-reverse;
    }
    .left {
        margin: 0 auto;
    }
    .books img, .about img {
        margin-top: 50px;
    }
    .about img {
        margin-bottom: 50px;
    }
    img {
        max-width: 100%!important;
    }
    .home li {
        max-width: 35px !important;
    }
    .about ul {
        margin-left: 5%;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: flex;
        margin: 20px 0 50px 0;
    }
    .home .box {
        margin-top: 10%
    }
    .about .right, .books .right {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .formcarry-container {
        width: 370px!important;
    }
    .home h1 {
        font-size: 2.5rem;
    }
    .home p {
        font-size: 1.5rem;
    }
    .left div:nth-of-type(2) p {
        font-size: 1.2rem;
    }
    .header, .full-container {
        max-width :96%;
    }
}

@media (max-width: 400px) {
    .formcarry-container {
        width: 360px!important;
    }
}

.formcarry-container {
    box-sizing: border-box;
    margin: 40px auto;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;

    width: 400px;

    /* NORMAL */
    --fc-border-color: #ECEFF9;
    --fc-normal-text-color: #0E0B3D;
    --fc-normal-placeholder-color: #B3B8D0;

    /* PRIMARY COLOR | HSL FORMAT*/
    --fc-primary-color-hue: 220;
    --fc-error-color-hue: 356;
    --fc-primary-hsl: var(--fc-primary-color-hue), 100%, 54%;
    --fc-error-hsl: var(--fc-error-color-hue), 100%, 54%;

    /* HOVER */
    --fc-field-hover-bg-color: #F7F9FC;
    --fc-border-hover-color: #DDE0EE;
    --fc-field-hover-text-color: #B3B8D0;

    --fc-border-active-color: #b1bb86;
  }

  .formcarry-container * {
    box-sizing: border-box;
  }

  .formcarry-container label {
    display: block;
    cursor: pointer;
  }

  .formcarry-container .formcarry-block:not(:first-child) {
    margin-top: 16px!important;
  }

  /*=============================================
  =            Fields           =
  =============================================*/
  
  .formcarry-container input,
  .formcarry-container textarea,
  .formcarry-container select {
    margin-top: 4px;
    width: 100%;
    height: 42px;
    border: 1px solid var(--fc-border-color);
    color: var(--fc-normal-text-color);
    border-radius: 6px;
    padding: 8px 12px;
    
    font-family: "Inter", sans-serif;
    font-size:14px;
    transition: 125ms background, 125ms color, 125ms box-shadow;
  }

  .formcarry-container textarea{
    min-height: 188px;
    max-width: 100%;
    padding-top: 12px;
  }

  .formcarry-container input::placeholder,
  .formcarry-container textarea::placeholder,
  .formcarry-container select::placeholder {
    color: var(--fc-normal-placeholder-color);
  }

  .formcarry-container input:hover,
  .formcarry-container textarea:hover,
  .formcarry-container select:hover {
    border-color: var(--fc-border-hover-color);
    background-color: var(--fc-field-hover-bg-color);
  }

  .formcarry-container input:hover::placeholder,
  .formcarry-container textarea:hover::placeholder,
  .formcarry-container select:hover::placeholder {
    color: var(--fc-field-hover-text-color);
  }

  .formcarry-container input:focus,
  .formcarry-container textarea:focus,
  .formcarry-container select:focus {
    background-color: #fff;
    border-color: hsl(var(--fc-primary-hsl));
    box-shadow: hsla(var(--fc-primary-hsl), 8%) 0px 0px 0px 3px;
    outline: none;
  }

  .formcarry-container select {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9997 14.5001L8.46387 10.9642L9.64303 9.78589L11.9997 12.1434L14.3564 9.78589L15.5355 10.9642L11.9997 14.5001Z' fill='%236C6F93'/%3E%3C/svg%3E%0A");
    /* background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px); */
    background-size: 24px 24px;
    background-position: 98%;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
  }

  .formcarry-container button {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.02em;
    height: 42px;
    line-height: 40px;
    width: 100%;
    border-radius: 6px;
    box-sizing: border-box;
    border: 1px solid #b1bb86);
    background-color: #b1bb86;
    color: #fff;
    cursor: pointer;
  }

  .formcarry-container button {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.02em;
    height: 40px;
    line-height: 24px;
    width: 100%;
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #b1bb86;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 0 0 transparent;
    
    transition: 125ms all;
  }
  
  .formcarry-container button:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #b1bb86;
  }
  
  .formcarry-container button:focus {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #b1bb86;
    border-inline: 1px solid inline rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 0px 3px rgba(var(--fc-primary-hsl), 12%);
  }

  .formcarry-container button:active {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #b1bb86;
  }

  .formcarry-container button:disabled {
    background-color: hsla(var(--fc-primary-hsl), 40%);
    cursor: not-allowed;
  }

  .formcarry-container input:focus:required:invalid,
  .formcarry-container input:focus:invalid, 
  .formcarry-container select:focus:required:invalid,
  .formcarry-container select:focus:invalid
  {
    color: hsl(var(--fc-error-hsl)); 
    border-color: hsl(var(--fc-error-hsl));
    box-shadow: 0px 0px 0px 3px hsla(var(--fc-error-hsl), 12%);
  }

  /*=====  End of Fields  ======*/

