/*////////////////////////////////////////////////////////////////////////////////////////////
                        THE NEW CSS RESET
////////////////////////////////////////////////////////////////////////////////////////////*/
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}

/*////////////////////////////////////////////////////////////////////////////////////////////
                        OKTO GLOBAL STYLES
////////////////////////////////////////////////////////////////////////////////////////////*/

:root {
    --background: #658387;
    /* Add more colors as neccessary here */
}

* {
    font-family: poppins, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 120%;
    font-weight: 600;
}

p {
    line-height: 170%;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw + 1rem, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.25vw + 1rem, 2.25rem);
}

h5 {
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw + 1rem, 1.75rem);
}

section {
    padding: 3rem 0;
}

ul {
    list-style: disc;
    margin-left: 2rem;
}

.flexContainer {
    max-width: 90%;
    margin: auto;
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
}

.flexColumn {
    padding: 1rem 0;
}

.vertical {
    display: flex;
    flex-direction: column;
}

/*////////////////////////////////////////////////////////////////////////////////////////////
                        OKTO HEADER STYLES
////////////////////////////////////////////////////////////////////////////////////////////*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white
}

.header-spacer {
    height: 118.5px;
}

header .logo {
    width: 100%;
    max-width: 200px;
    margin: auto 0;
}

header .flexContainer {
    justify-content: space-between;
    padding: 1rem 0;
}

.navLinks {
    display: flex;
}

.navLinks a {
    margin: auto;
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.hamburgerContainer {
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#000;
    stroke-width:5.5;
    stroke-linecap:round;
    overflow: visible;
  }

  .ham6 .top {
    stroke-dasharray: 41 172;
  }
  .ham6 .middle {
    stroke-dasharray: 41 111;
  }
  .ham6 .bottom {
    stroke-dasharray: 41 172;
  }
  .ham6.active .top {
    stroke-dashoffset: -132px;
  }
  .ham6.active .middle {
    stroke-dashoffset: -71px;
  }
  .ham6.active .bottom {
    stroke-dashoffset: -132px;
  }

/*////////////////////////////////////////////////////////////////////////////////////////////
                        OKTO FOOTER STYLES
////////////////////////////////////////////////////////////////////////////////////////////*/

footer {
    background-color: grey;
    color: white;
}

footer .flexContainer {
    justify-content: space-between;
}

footer h5 {
    margin-bottom: 1rem;
}

footer a {
    padding: 0.5rem 0;
}

footer .logo {
    width: 100%;
    max-width: 200px;
    margin: auto 0;
    margin: 1rem 0;
}

/*////////////////////////////////////////////////////////////////////////////////////////////
                        MEDIA QUERIES
////////////////////////////////////////////////////////////////////////////////////////////*/


@media only screen and (max-width: 1000px) {
    .flexContainer {
        flex-direction: column;
    }

    header .flexContainer {
        flex-direction: row;
    }

    .hamburgerContainer {
        display: flex;
        margin-right: -1rem;
    }

    .navLinks {
        display: none;
    }

    .mobileNavLinks {
        position: absolute;
        width: 100%;
        top: 100px;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
    }
  }