@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap);

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: initial;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

html {
    font-size: 62.5%
}

@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%
    }
}

@media only screen and (max-width: 56.25em) {
    html {
        font-size: 50%
    }
}

@media only screen and (min-width: 112em) {
    html {
        font-size: 75%
    }
}

body {
    box-sizing: border-box
}

input,
textarea {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.btn,
.btn:link,
.btn:visited {
    text-transform: uppercase;
    padding: 1.5rem 2rem;
    display: inline-block;
    border-radius: 10rem;
    transition: all 0.2s;
    position: relative;
    font-size: 1.6rem;
    border: none;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.2)
}

.btn:hover::after {
    transform: scaleX(0.2) scaleY(0.5);
    opacity: 0
}

.btn:focus,
.btn:active {
    outline: none;
    transform: translateY(-0.1rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1)
}

.btn--white {
    background-color: #fff;
    color: #777
}

.btn--white::after {
    background-color: #fff
}

.btn--green {
    background-color: #55c57a;
    color: #fff
}

.btn--green::after {
    background-color: #55c57a
}

.btn--blue {
    background-color: #0068a6;
    color: #fff
}

.btn--blue::after {
    background-color: #0068a6
}

.btn--animate {
    animation: moveInBottom 3s ease-out 0.75s;
    animation-fill-mode: backwards
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 10rem;
    transition: all 0.4s;
    z-index: -1
}

.btn-text:link,
.btn-text:visited {
    font-size: 1.8rem;
    color: #2998ff;
    text-decoration: none;
    display: inline-block;
    border-bottom: 0.1rem solid #125687;
    padding: 0.3rem;
    transition: all 0.4s
}

.btn-text:hover {
    background-color: #2998ff;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-5px)
}

.btn-text:active {
    box-shadow: 0 5rem 50rem rgba(0, 0, 0, 0.15);
    transform: translateY(0)
}

body {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #000
}

h1,
h2,
h3,
h3,
h5,
h6 {
    font-weight: 400
}

.heading-primary {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5rem
}

.heading-primary--main {
    display: block;
    font-size: 3.8rem;
    letter-spacing: 0.8rem;
    animation: moveInLeft 3s ease-in
}

@media only screen and (max-width: 56.25em) {
    .heading-primary--main {
        font-size: 3rem;
        letter-spacing: 1rem
    }
}

@media only screen and (max-width: 37.5em) {
    .heading-primary--main {
        font-size: 2.5rem;
        letter-spacing: 1rem
    }
}

.heading-primary--sub {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    animation: moveInRight 3s ease-in
}

@media only screen and (max-width: 56.25em) {
    .heading-primary--sub {
        font-size: 2rem;
        letter-spacing: 0.5rem
    }
}

@media only screen and (max-width: 37.5em) {
    .heading-primary--sub {
        font-size: 1.6rem;
        letter-spacing: 0.5rem
    }
}

.heading-secondary {
    display: inline-block;
    font-size: 3rem;
    background-image: linear-gradient(to right bottom, #125687, #2998ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px
}

@media only screen and (max-width: 56.25em) {
    .heading-secondary {
        font-size: 3rem
    }
}

@media only screen and (max-width: 37.5em) {
    .heading-secondary {
        font-size: 2rem
    }
}

.heading-secondary:hover {
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2)
}

.heading-tertiary {
    font-size: 1.6rem;
    text-transform: uppercase
}

.paragraph {
    font-size: 2.2rem
}

.paragraph:not(:last-child) {
    margin-bottom: 1rem
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%)
    }

    80% {
        opacity: 0.6;
        transform: translateX(1rem)
    }

    100% {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem)
    }

    80% {
        opacity: 0.6;
        transform: translateX(-1rem)
    }

    100% {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(5rem)
    }

    25% {
        opacity: 0.4;
        transform: translateY(4rem)
    }

    50% {
        opacity: 0.6;
        transform: translateY(2rem)
    }

    50% {
        opacity: 0.8;
        transform: translateY(1rem)
    }

    100% {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.slideUp {
    -webkit-animation-name: slideUp;
    animation-name: slideUp
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }

    100% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }

    100% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.u-text-center {
    text-align: center
}

.u-text-right {
    text-align: right
}

.u-text-lower {
    text-transform: lowercase
}

.u-text-upper {
    text-transform: uppercase
}

.u-margin-bottom-small {
    margin-bottom: 1.5rem
}

.u-margin-bottom-medium {
    margin-bottom: 4rem
}

.u-margin-bottom-big {
    margin-bottom: 8rem
}

.u-margin-top-small {
    margin-top: 1.5rem
}

.u-margin-top-medium {
    margin-top: 4rem
}

.u-margin-top-big {
    margin-top: 8rem
}

.u-margin-top-huge {
    margin-top: 10rem
}

.u-margin-left-small {
    margin-left: 1.5rem
}

.u-margin-left-medium {
    margin-left: 4rem
}

.u-margin-left-big {
    margin-left: 8rem
}

.u-margin-left-large {
    margin-left: 10rem
}

.u-margin-right-small {
    margin-right: 3rem
}

.u-d-block {
    display: block
}

.u-d-flex {
    display: flex
}

.u-justify-space-between {
    justify-content: space-between
}

.u-flex-wrap {
    flex-wrap: wrap
}

.u-flex-dir-col {
    flex-direction: column
}

.u-d-none {
    display: none
}

.u-font-size-small {
    font-size: 2rem
}

.u-bullet {
    margin-left: 2.2rem
}

.bullet::before {
    content: "\2022";
    color: #0068a6;
    font-size: 1rem;
    display: inline-block;
    width: 0.5rem;
    margin-right: 1.2rem
}

.u-text-justify {
    text-align: justify
}

.row {
    max-width: 114rem;
    margin: 0 auto
}

.row:not(:last-child) {
    margin-bottom: 3rem
}

@media only screen and (max-width: 56.25em) {
    .row {
        max-width: 80rem;
        padding: 0 3rem
    }
}

@media only screen and (max-width: 75em) {
    .row {
        max-width: 100rem;
        padding: 0 3rem
    }
}

.row::after {
    content: "";
    clear: both;
    display: block
}

.row [class^="col-"] {
    float: left
}

.row [class^="col-"]:not(:last-child) {
    margin-right: 6rem
}

@media only screen and (max-width: 56.25em) {
    .row [class^="col-"]:not(:last-child) {
        margin-right: 0;
        margin-bottom: 3rem
    }
}

@media only screen and (max-width: 56.25em) {
    .row [class^="col-"] {
        width: 100% !important
    }
}

.row .col-1-of-2 {
    width: calc((100% - 6rem) / 2)
}

.row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3)
}

.row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4)
}

.row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem)
}

.row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem)
}

.row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * (6rem))
}

.product-row {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto
}

.product-row:not(:last-child) {
    margin-bottom: 6rem
}

@media only screen and (max-width: 56.25em) {
    .product-row {
        max-width: 100rem;
        padding: 0 3rem
    }
}

@media only screen and (max-width: 75em) {
    .product-row {
        max-width: 120rem;
        padding: 0 3rem
    }
}

.product-row::after {
    content: "";
    clear: both;
    display: block
}

.product-row [class^="col-"] {
    float: left
}

.product-row [class^="col-"]:not(:last-child) {
    margin-right: 2rem
}

@media only screen and (max-width: 56.25em) {
    .product-row [class^="col-"]:not(:last-child) {
        margin-right: 0;
        margin-bottom: 3rem
    }
}

@media only screen and (max-width: 56.25em) {
    .product-row [class^="col-"] {
        width: 100% !important
    }
}

.product-row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4)
}

.product-row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * (6rem))
}

.banner {
    height: 95vh;
    background-image: linear-gradient(to right bottom, rgba(18, 86, 135, 0.5), rgba(41, 152, 255, 0.8)), url("https://www.anandsteels.co.in/assets/img/anand-steels.jpg");
    background-size: cover;
    background-position: top;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
    position: relative
}

@media only screen and (max-width: 56.25em) {
    .banner {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%)
    }
}

@media only screen and (max-width: 37.5em) {
    .banner {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%)
    }
}

.banner__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.section-about {
    background-color: #f7f7f7;
    padding: 20rem 0 10rem 0;
    margin-top: -20vh
}

@media only screen and (max-width: 75em) {
    .section-about {
        padding: 25rem 0 10rem 0
    }
}

@media only screen and (max-width: 56.25em) {
    .section-about {
        padding: 25rem 0 10rem 0
    }
}

.address,
.email {
    border-radius: 39px;
    background: #ededed;
    box-shadow: 2px 5px 1px #e1e1e1, -5px -5px 0px #f9f9f9;
    color: #000;
    padding: 2rem
}

.address {
    font-size: 1.8rem
}

.address>div {
    margin-bottom: 0.5rem
}

.email {
    font-size: 2.2rem
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

@media only screen and (max-width: 56.25em) {
    .contact-form {
        flex-direction: column
    }
}

.items {
    flex: 1 1 50%
}

.mail-status {
    text-align: center;
    width: 50%;
    margin: auto;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem
}

.mail-successful {
    background-color: #55c57a
}

.mail-unsuccessful {
    background-color: #ea1821
}

.btn-margin {
    display: block;
    margin-top: -3rem
}

@media only screen and (max-width: 56.25em) {
    .btn-margin {
        margin-top: 2rem
    }
}

@media only screen and (max-width: 37.5em) {
    .btn-margin {
        margin-top: 3rem
    }
}

.product-category,
.product-list,
.product-items:first-child,
.product-items.active:first-child {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border: 1px solid #ccc
}

.product-category {
    color: #000;
    font-size: 1.8rem
}

.product-navigation {
    padding: 1.5rem
}

.product-navigation-heading {
    letter-spacing: 0.1rem;
    padding: 0.5rem;
    padding-left: 2rem;
    border: 1px solid #ccc;
    background-color: #f5f5f5
}

.product-search {
    padding: 1rem
}

.search__input {
    font-size: inherit;
    font-family: inherit;
    padding: 0.4rem 2rem;
    border: none;
    background-color: #f5f5f5;
    border-radius: 2rem;
    width: 70%;
    outline: none;
    transition: width 0.3s;
    margin: auto;
    margin-right: -3.5rem
}

.search__input:focus {
    width: 80%;
    outline: none;
    background-color: #dcdcdc
}

.search__input::-webkit-input-placeholder {
    color: #000
}

.search__input:focus+.search__button {
    background-color: #dcdcdc
}

.search__button {
    border: none;
    background-color: #f5f5f5
}

.search__button:focus {
    outline: none
}

.search__icon {
    width: 1.4rem;
    height: 1.4rem;
    fill: #777
}

.product-items {
    list-style: none;
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    padding-left: 2rem;
    border: 1px solid #ccc;
    transition: all 0.4s ease-in-out
}

.product-items:hover {
    background-color: #eee
}

.product-count {
    background-color: #eee;
    display: inline-block;
    margin-left: 2rem;
    border-radius: 15px;
    padding: 0.2rem 0.5rem
}

.product-icon {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    fill: #777
}

.product-items.active {
    background-color: #0068a6;
    color: #fff
}

.product-items.active:hover {
    background-color: #0068a6;
    color: #fff
}

.product-items.active .product-icon {
    fill: currentColor
}

.product-items.active .product-count {
    color: #000
}

.product-view {
    display: flex;
    flex-wrap: wrap;
    color: #000
}

.product-view>div {
    width: 20rem
}

.product-image {
    width: 20rem
}

.product-thumbnail {
    padding: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-bottom: 2rem;
    margin-right: 0.8rem
}

.product-thumbnail-img {
    width: 100%;
    height: 20rem;
    object-fit: contain
}

.product-thumbnail-img:hover {
    transform: scale(1.04)
}

.product-heading {
    text-align: center
}

.product-heading--main {
    display: block;
    font-size: 2.4rem
}

.product-heading--sub {
    display: block;
    font-size: 1.8rem
}

.product-link {
    font-size: 1.8rem;
    text-align: center
}

.product-btn:link,
.product-btn:visited {
    color: #fff;
    padding: 0.8rem;
    background-color: #0068a6;
    letter-spacing: 0.8px;
    position: relative;
    top: 0
}

.is-animated {
    animation: moveInBottom 1.5s ease-in
}

@media only screen and (max-width: 56.25em) {
    .u-flex-col {
        flex-direction: column
    }
}

#product-image {
    width: 40.69rem;
    height: 30.6rem
}

#product-image img {
    object-fit: scale-down
}

.product__description {
    display: flex;
    align-items: flex-start
}

@media only screen and (max-width: 56.25em) {
    .product__description {
        flex-direction: column
    }
}

.product__content {
    flex: 0 0 70%
}

.product__img {
    margin-left: 2rem;
    width: 36rem;
    height: 30rem
}

@media only screen and (max-width: 56.25em) {
    .product__img {
        margin: auto
    }
}

.product__img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down
}

.card {
    border-radius: 39px;
    background: #f7f7f7;
    box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25), -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
    color: #000;
    padding: 2rem;
    flex: 1
}

@media only screen and (max-width: 37.5em) {
    .boxes {
        flex-direction: column
    }

    .boxes>div:not(:last-child) {
        margin-bottom: 3rem
    }
}

.faq-c {
    border-bottom: 1px solid #777;
    padding: 2rem 0
}

.faq-t {
    float: left;
    padding-right: 1.3rem
}

.faq-q {
    cursor: pointer;
    font-size: 2.2rem
}

.faq-a {
    clear: both;
    display: none;
    padding-left: 2.5rem
}

.faq-t:before {
    content: "+"
}

.faq-t.minus:before {
    content: "-";
    position: relative;
    top: -0.3rem
}

.story {
    margin: 0 auto;
    padding: 8rem;
    padding-left: 10rem;
    width: 80%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
    font-size: 1.9rem;
    transform: skewX(-12deg)
}

@media only screen and (max-width: 56.25em) {
    .story {
        padding: 3rem;
        transform: skewX(0deg)
    }
}

.story__shape {
    width: 20%;
    height: 20rem;
    float: left;
    transform: translate(-3rem, -2rem) skewX(12deg);
    position: relative
}

@media only screen and (max-width: 56.25em) {
    .story__shape {
        transform: translate(0rem, 0rem) skewX(0deg);
        position: relative;
        float: none;
        width: 50%;
        margin: auto;
        height: 20rem
    }
}

.story__img {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.5s;
    transform: scale(1.1)
}

.story__text,
.story__product {
    transform: skewX(12deg)
}

@media only screen and (max-width: 56.25em) {

    .story__text,
    .story__product {
        transform: skewX(0deg)
    }
}

.story__caption {
    position: absolute;
    color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
    backface-visibility: hidden
}

.story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%)
}

.story:hover .story__img {
    transform: scale(1);
    opacity: 0.3
}

.sitemap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

@media only screen and (max-width: 56.25em) {
    .sitemap {
        flex-direction: column
    }
}

.sitemap-list {
    flex: 0 0 33%
}

.sitemap-category {
    font-size: 2rem
}

.sitemap a {
    font-size: 1.8rem;
    letter-spacing: 0.03rem;
    margin-bottom: 0.5rem;
    color: #06c
}

.sitemap a:hover {
    text-decoration: underline
}

.sitemap ul {
    list-style: none
}

.website {
    display: flex
}

@media only screen and (max-width: 37.5em) {
    .website {
        flex-direction: column
    }
}

.website-thumbnail {
    flex: 0 0 30%;
    height: 20rem;
    margin-top: 1rem;
    margin-right: 3rem
}

@media only screen and (max-width: 37.5em) {
    .website-thumbnail {
        flex: 0 0 30%;
        margin-bottom: 2rem
    }
}

.website-image {
    width: 100%;
    height: 100%;
    margin-top: 1rem;
    object-fit: scale-down
}

@media only screen and (max-width: 37.5em) {
    .website-image {
        margin-top: 0
    }
}

.composition {
    position: relative
}

@media only screen and (max-width: 37.5em) {
    .composition {
        margin-top: 1rem
    }
}

@media only screen and (max-width: 56.25em) {
    .composition {
        margin-top: 2rem
    }
}

.composition__photo {
    width: 50%;
    border-radius: 2px;
    box-shadow: 0 0.5rem 3.2rem rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 10;
    transition: all 0.2s;
    outline-offset: 1rem
}

@media only screen and (max-width: 56.25em) {
    .composition__photo {
        float: left;
        position: relative;
        width: 33.33333%
    }
}

.composition__photo--p1 {
    top: -2rem;
    left: 0
}

@media only screen and (max-width: 56.25em) {
    .composition__photo--p1 {
        top: 0;
        transform: scale(1.2)
    }
}

.composition__photo--p2 {
    top: 2rem;
    right: 0
}

@media only screen and (max-width: 56.25em) {
    .composition__photo--p2 {
        top: 0;
        transform: scale(1.3);
        z-index: 100
    }
}

.composition__photo--p3 {
    top: 10rem;
    left: 20%
}

@media only screen and (max-width: 56.25em) {
    .composition__photo--p3 {
        top: 1rem;
        left: 0;
        transform: scale(1.1)
    }
}

.composition__photo:hover {
    transform: scale(1.05) translateY(1rem);
    z-index: 25;
    box-shadow: 0 0.5rem 3.2rem rgba(0, 0, 0, 0.6);
    outline: 0.6rem solid #003859
}

.composition:hover .composition__photo:not(:hover) {
    transform: scale(0.9)
}

header {
    font-weight: 400;
    text-transform: uppercase;
    list-style: none
}

.top {
    display: flex;
    justify-content: space-around;
    align-items: center
}

@media screen and (max-width: 660px) {
    .top {
        justify-content: flex-start;
        margin-left: 1%
    }
}

.top-icon {
    height: 3rem;
    width: 3rem;
    fill: currentColor
}

.top-links {
    color: #0068a6;
    font-size: 2.3rem
}

@media only screen and (max-width: 56.25em) {
    .top-links:nth-child(2) {
        display: none
    }
}

@media screen and (max-width: 660px) {
    .top-links {
        display: none
    }
}

.top-links:hover {
    transition: color 0.6s;
    color: #fb4e00
}

.top-links:hover .top-icon {
    fill: currentColor
}

@media screen and (max-width: 660px) {
    .nav {
        width: 0;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1500;
        opacity: 0;
        transition: all 0.8s
    }
}

.nav-button {
    display: none;
    background-color: #fff;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    position: fixed;
    top: 6rem;
    right: 6rem;
    z-index: 2000;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
    text-align: center;
    cursor: pointer
}

@media only screen and (max-width: 56.25em) {
    .nav-button {
        top: 4rem;
        right: 4rem
    }
}

@media screen and (max-width: 662px) {
    .nav-button {
        display: block;
        top: 3rem;
        right: 3rem
    }
}

.nav-checkbox {
    display: none
}

.nav-background {
    display: none;
    background-image: radial-gradient(#f7f7f7, #eee);
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: fixed;
    top: 6.5rem;
    right: 6.5rem;
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1)
}

@media only screen and (max-width: 56.25em) {
    .nav-background {
        top: 4.5rem;
        right: 4.5rem
    }
}

@media screen and (max-width: 662px) {
    .nav-background {
        top: 3.5rem;
        right: 3.5rem;
        display: block
    }
}

.nav-checkbox:checked~.nav-background {
    transform: scale(80)
}

.nav-checkbox:checked~.nav {
    opacity: 1;
    width: 100%
}

.nav-icon {
    position: relative;
    margin-top: 3.5rem
}

.nav-icon,
.nav-icon::after,
.nav-icon::before {
    width: 3rem;
    height: 2px;
    background-color: #000;
    display: inline-block
}

.nav-icon::after,
.nav-icon::before {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s
}

.nav-icon::after {
    top: 0.8rem
}

.nav-icon::before {
    top: -0.8rem
}

.nav-button:hover .nav-icon::before {
    top: -1rem
}

.nav-button:hover .nav-icon::after {
    top: 1rem
}

.nav-checkbox:checked+.nav-button .nav-icon {
    background-color: transparent
}

.nav-checkbox:checked+.nav-button .nav-icon::before {
    top: 0;
    transform: rotate(135deg)
}

.nav-checkbox:checked+.nav-button .nav-icon::after {
    top: 0;
    transform: rotate(-135deg)
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    background-color: #0068a6;
    list-style: none
}

@media screen and (max-width: 660px) {
    .nav-list {
        background-color: #f7f7f7;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%
    }
}

.nav-items {
    padding: 1.5rem
}

@media only screen and (max-width: 56.25em) {
    .nav-items {
        padding: 0.8rem
    }
}

@media screen and (max-width: 660px) {
    .nav-items {
        padding: 0.8rem
    }
}

.nav-items:last-child {
    margin-right: 8rem
}

@media only screen and (max-width: 56.25em) {
    .nav-items:last-child {
        margin-right: 0
    }
}

@media screen and (max-width: 660px) {
    .nav-items:last-child {
        margin-right: 0
    }
}

.nav-items:hover .dd-container {
    display: block
}

.nav-links {
    position: relative;
    color: #fff;
    font-size: 2.2rem
}

@media screen and (max-width: 660px) {
    .nav-links {
        font-size: 1.8rem;
        color: #000
    }
}

.nav-links:hover {
    transition: color 0.6s;
    color: #fb4e00
}

.nav-dd {
    position: absolute;
    padding: 1rem;
    z-index: 999;
    background-color: #0068a6;
    border: 2px solid #000;
    margin: 1.9rem 8rem 0 0
}

@media only screen and (max-width: 56.25em) {
    .nav-dd {
        margin-top: 1.2rem
    }
}

@media screen and (max-width: 660px) {
    .nav-dd {
        background-color: #f7f7f7;
        border: 2px solid #000;
        padding: 0;
        margin: 0
    }
}

.nav-dd-items {
    list-style: none;
    flex: 0 0 50%
}

.nav-dd .nav-links:hover {
    border-bottom: 2px solid currentColor
}

@media screen and (max-width: 660px) {
    .nav-dd .nav-links {
        font-size: 1.6rem
    }
}

.btn-get-quote {
    padding: 0.2rem 2rem;
    display: inline-block;
    border-radius: 10rem;
    transition: all 0.2s;
    background-color: #fff;
    color: #777
}

@media only screen and (max-width: 37.5em) {
    .btn-get-quote {
        color: #000;
        background-color: #777
    }
}

.btn-get-quote:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.2)
}

.btn-get-quote:hover::after {
    transform: scaleX(0.2) scaleY(0.5);
    opacity: 0
}

.btn-get-quote:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1)
}

@media screen and (max-width: 660px) {
    .mobile-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 98%
    }
}

footer {
    font-weight: 400;
    font-size: 1.8rem;
    color: #000;
    background-color: #dcdcdc;
    border-top: 0.2rem solid #000
}

footer li {
    list-style: none
}

footer span {
    margin-left: 0.5rem
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0
}

@media only screen and (max-width: 56.25em) {
    .footer div:first-child {
        display: none
    }
}

@media only screen and (max-width: 37.5em) {
    .footer div:not(:last-child) {
        display: none
    }
}

.footer-links:link,
.footer-links:visited {
    transition: color 0.6s;
    color: #000
}

.footer-links:link:hover,
.footer-links:visited:hover {
    color: #fb4e00
}

.footer-links:link:hover svg,
.footer-links:visited:hover svg {
    fill: currentColor
}

.footer-copyright {
    display: flex;
    justify-content: space-around;
    border-top: 0.2rem solid #000
}

@media screen and (max-width: 500px) {
    .footer-copyright {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .footer-copyright {
        font-size: 1.3rem
    }
}

.footer-copyright-item {
    padding: 0 1rem
}

.footer-copyright-item:not(:last-child) {
    border-right: 1px solid #000
}

.footer-social-links {
    display: flex;
    margin-top: 2rem
}

.footer-social-links li:not(:last-child) {
    margin-right: 1.5rem
}

.scroll {
    display: none;
    position: fixed;
    right: 5rem;
    bottom: 5rem;
    cursor: pointer;
    z-index: 999
}

.icon-small {
    height: 2rem;
    width: 2rem
}

.icon-medium {
    height: 3rem;
    width: 3rem
}

.icon-large {
    height: 4rem;
    width: 4rem
}

:root {
    --color: #08b2e3
}

.blue {
    --color: #08b2e3
}

.yellow {
    --color: #edae49
}

.orange {
    --color: #f18805
}

.green {
    --color: #76b041
}

.brown {
    --color: #916953
}

.red {
    --color: #e3655b
}

.pink {
    --color: #ec318c
}

.section-product {
    background-color: #0068a6;
    padding-bottom: 2rem
}

.main-content {
    font-size: 2rem;
    max-width: 110rem;
    position: relative;
    margin: auto;
    padding: 5rem 5rem 1rem
}

@media only screen and (max-width: 37.5em) {
    .main-content {
        padding: 1rem
    }
}

.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    align-self: stretch
}

.product-wrapper .product-image {
    flex: 4;
    overflow: hidden;
    position: relative;
    background-color: #fff
}

.product-wrapper .product-photo {
    max-width: 100%;
    position: absolute;
    bottom: 120%;
    right: 0;
    transition: all 1s ease
}

.product-wrapper .product-content {
    background-color: #fff;
    flex: 5;
    padding: 5%;
    text-align: center;
    min-height: 400px;
    overflow: hidden;
    position: relative
}

.product-wrapper .product-page {
    font-family: "Oswald";
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0;
    transition: all 1s ease;
    color: var(--color)
}

.product-wrapper .product-content-inner {
    transition: all 1s ease;
    top: 150%;
    position: absolute;
    left: 0;
    margin: 0 10%;
    right: 0
}

.product.active .product-page {
    opacity: 1
}

.product.active .product-photo {
    bottom: 20%
}

.product.active .product-content-inner {
    top: 6%
}

.product-name {
    text-transform: uppercase;
    margin: 20px 0 5px;
    letter-spacing: 2px;
    color: var(--color);
    position: relative
}

@media only screen and (max-width: 37.5em) {
    .product-name {
        margin: 0
    }
}

.product-context {
    color: #000;
    margin: 4rem 2rem
}

.product-serving {
    color: var(--color);
    border: 0.5px solid var(--color);
    border-width: 0.5px 0;
    margin: 3rem auto;
    max-width: 40rem
}

.product-serving p {
    display: inline-block;
    vertical-align: top;
    margin: 12px 6px 6px
}

.product-cta {
    display: block;
    padding: 0.7rem;
    border-radius: 4rem;
    background-color: var(--color);
    max-width: 18rem;
    font-size: 3rem;
    color: #fff;
    position: relative;
    margin: auto;
    top: 0;
    transition: all 0.1s ease;
    cursor: pointer
}

.product-cta:hover {
    top: -5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2)
}

@media (max-width: 750px) {
    .product-wrapper .product-photo {
        max-width: 100%
    }
}

@media (max-width: 750px) {

    .product-wrapper .product-image,
    .product-wrapper .product-content {
        flex: 1 1 100%
    }

    .product-wrapper .product-content {
        padding: 0
    }

    .product-wrapper .product-image {
        height: 250px
    }

    .product-wrapper .product-photo {
        left: 50%;
        transform: translate(-50%);
        height: 100%
    }

    .product-wrapper .product-context {
        margin: 2rem
    }

    .product.active .product-photo {
        bottom: 0
    }
}

@media (max-width: 500px) {
    .product-wrapper .product-content {
        min-height: 400px;
        padding: 0
    }
}

.navigation {
    display: flex;
    justify-content: center
}

.navigation span {
    margin: 1rem 0 0 2rem
}

.navigation svg {
    width: 4rem;
    height: 4rem;
    display: block;
    opacity: 0.6;
    cursor: pointer
}

.navigation svg:hover {
    opacity: 1
}

.navigation svg.disabled {
    opacity: 0.2;
    pointer-events: none
}

.navigation .not-allowed {
    cursor: not-allowed
}

.breadcrumb {
    font-size: 2.2rem;
    font-weight: 400;
    display: flex;
    list-style: none
}

@media only screen and (max-width: 37.5em) {
    .breadcrumb {
        font-size: 1.7rem
    }
}

.breadcrumb-items:not(:last-child)::after {
    content: "/";
    color: #0068a6;
    padding: 10px
}

.breadcrumb-links {
    color: #0068a6
}

.breadcrumb-links:hover {
    transition: color 0.6s;
    color: #fb4e00
}

button[type="submit"] {
    font-family: inherit;
    font-weight: 400
}

.form-group {
    position: relative;
    font-size: 2rem
}

.form-group:not(:last-child) {
    margin-bottom: 2rem
}

.form-input {
    position: relative;
    font-size: inherit;
    font-family: inherit;
    padding: 0.4rem 2rem;
    border-radius: 2px;
    border: none;
    border: 2px solid #003859;
    width: 90%;
    display: block;
    transition: border-bottom 0.6s
}

.form-input2{
    position: relative;
    font-size: inherit;
    font-family: inherit;
    padding: 0.4rem 2rem;
    border-radius: 2px;
    border: none;
    border: 2px solid #003859;
    width: 95%;
    display: block;
    transition: border-bottom 0.6s
}

.form-input::-webkit-input-placeholder {
    color: #999
}

.form-label {
    font-size: 1.7rem;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.4s
}

.form-input:placeholder-shown~.form-label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem)
}

.icon {
    width: 1.7rem;
    height: 1.7rem;
    position: absolute;
    top: 1.2rem;
    right: 6%;
    visibility: hidden
}

.success {
    fill: #7ed56f
}

.error {
    fill: red
}

.form-group.success input {
    border-bottom: 0.4rem solid #7ed56f
}

.form-group.error input {
    border-bottom: 0.4rem solid red
}

.form-group.error .icon.error {
    visibility: visible
}

.form-group.success .icon.success {
    visibility: visible
}

.form-group.error small {
    visibility: visible
}

.input-error {
    border-bottom: 0.4rem solid red
}

.input-success {
    border-bottom: 0.4rem solid #7ed56f
}

.transparent,
.form-input:focus {
    outline: none;
    border-top: none;
    border-right: none;
    border-left: none
}

.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 4000;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em
}

.blocker.behind {
    background-color: transparent
}

.modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 8000;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==")
}

.table {
    font-size: 2rem;
    border-collapse: collapse;
    width: 100%
}

.thead-dark {
    background-color: #0068a6;
    color: #fff;
    font-size: 2.2rem
}

.table td,
.table th {
    border: 1px solid #ddd;
    padding: 8px
}

.table tr:nth-child(even) {
    background-color: #eee
}

#table-wrapper {
    overflow: auto
}

.md-mail-status {
    text-align: center;
    width: 50%;
    margin: auto;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem
}

.paragraph.u-bullet {
    display: flex;
    flex-wrap: wrap
}

@media only screen and (max-width: 56.25em) {
    .paragraph.u-bullet {
        flex-direction: column
    }
}

.paragraph.u-bullet>li {
    flex: 0 0 50%
}