/* BASE */
@import url("https://fonts.googleapis.com/css2?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");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky {
    background: #f8fafc;
    padding: 15px 40px 20px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

header .logo {
    padding-top: 10px;
    width: auto;
    height: 60px;
    position: relative;
    display: flex;
    justify-items: center;
    align-items: center;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px;
    transition: 0.5s;
}

header ul li a:hover,
header ul li a.active {
    background: #00adef;
    border-radius: 3px;
    color: #ffffff;
}

header.sticky ul li a:hover,
header.sticky ul li a.active {
    color: #ffffff;
}

header.sticky ul li a {
    color: #000000;
}

@media (max-width: 991px) {

    header,
    header.sticky {
        padding: 10px 20px;
        z-index: 1000;
    }

    .menu {
        position: fixed;
        top: 0px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #f8fafc;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .menu.active {
        left: 0;
    }

    header ul li a {
        color: #000000;
        font-size: 20px;
        margin: 10px;
    }

    header ul li:hover a:hover,
    header ul li.active a {
        color: #ffffff;
    }

    header .logo {
        font-weight: 500;
    }

    .toggle {
        position: relative;
        width: 53px;
        height: 50px;
        background: #f8fafc;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.17);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        z-index: 1001;
    }

    .toggle span {
        position: absolute;
        width: 35px;
        height: 4px;
        background: #00adef;
        border-radius: 4px;
        transition: 0.5s;
        left: 8px;
    }

    .toggle span:nth-child(1) {
        transform: translateY(-14px);
        width: 25px;
        left: 8px;
    }

    .toggle span:nth-child(2) {
        transform: translateY(14px);
        width: 15px;
        left: 8px;
    }

    .toggle.active span:nth-child(1) {
        width: 40px;
        transform: translateY(0px) rotate(45deg);
        transition-delay: 0.125s;
        left: 5px;
    }

    .toggle.active span:nth-child(2) {
        width: 40px;
        transform: translateY(0px) rotate(315deg);
        transition-delay: 0.25s;
        left: 5px;
    }

    .toggle.active span:nth-child(3) {
        transform: translateX(60px);
    }
}

@media only screen and (min-device-width: 480px) and (max-device-width: 767px) {
    .menu {
        width: 100%;
        padding: 50px 0;
        overflow-y: scroll;
    }

    .menu::-webkit-scrollbar {
        display: none;
    }
}

.title {
    text-align: left;
    line-height: initial;
    margin-bottom: 30px;
}

.title h1 {
    color: #00adef;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.title p {
    text-align: left;
    font-style: normal;
}

h1 {
    font-size: 22px;
    font-weight: 400;
}

h2 {
    font-size: 19px;
    font-weight: 400;
}

p {
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
}

.btn {
    background: #00adef;
    color: #ffffff;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
    border: 3px solid transparent;
}

.btn:hover {
    background: #ffffff;
    color: #00adef;
    border: 3px solid #00adef;
}

.fieldBag {
    right: 17px;
    z-index: 10;
    width: auto;
    height: auto;
    bottom: 10px;
    display: block;
    position: fixed;
}

.fieldBag .container {
    width: 65px;
    height: 65px;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    background: #00adef;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.fieldBag .container i {
    font-size: 35px;
    color: #ffffff;
}

.fieldBag .container span {
    top: -5px;
    width: 30px;
    right: -10px;
    height: 30px;
    display: flex;
    font-size: 14px;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    align-items: center;
    background: #000000dd;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.50);
}

.fieldCart {
    top: 0;
    width: 480px;
    height: 100%;
    right: -100%;
    z-index: 10001;
    position: fixed;
    background: #ffffff;
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fieldCart.active {
    right: 0;
}

.fieldCart .row {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 10px 30px 10px 30px;
    justify-content: space-between;
}

.fieldCart .row .fieldCartClose {
    position: relative;
    transition: 0.5s ease-in-out;
}

.fieldCart .row .fieldCartClose h1 {
    font-size: 35px;
    cursor: pointer;
    color: #dc3545;
    font-weight: 900;
    position: relative;
    margin-bottom: 15px;
    transition: 0.5s ease-in-out;
}

.fieldCart .row .fieldCartClose h1:hover {
    color: #000000;
}

.fieldCart .row .listProductCart {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    overflow: auto;
    position: relative;
}

.fieldCart .row .listProductCart p {
    font-style: normal;
    margin-bottom: 10px;
}

.fieldCart .row .listProductCart .card {
    padding: 10px 0;
    border-top: 1px solid #dcdcdc;
}

.fieldCart .row .listProductCart .card h1 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
}

.fieldCart .row .listProductCart .card h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.fieldCart .row .listProductCart .card p {
    font-size: 16px;
    cursor: pointer;
    color: #dc3545;
}

.fieldCart .row .fieldFinalizeCart {
    width: 100%;
    margin-top: 15px;
    position: relative;
}

.fieldCart .row .fieldFinalizeCart .fieldText {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.fieldCart .row .fieldFinalizeCart a {
    margin: 0;
    width: 100%;
    background: #00adef;
    text-transform: capitalize;
}

.fieldCart .row .fieldFinalizeCart a:hover {
    margin-top: 0;
    color: #00adef;
    background: #ffffff;
    border: 3px solid #00adef;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .fieldCart {
        width: 100%;
    }

    .fieldCart .row {
        padding: 20px;
    }
}

@media only screen and (min-device-width: 480px) and (max-device-width: 767px) {
    .fieldCart .row {
        padding: 10px 20px;
    }

    .fieldCart .row .fieldCartClose h1 {
        margin-bottom: 0;
    }
}

.inputBox {
    z-index: 1;
    width: 100%;
    color: #000000;
    position: relative;
    margin-bottom: 10px;
}

.inputBox .text {
    padding: 0;
    display: block;
    font-size: 16px;
    color: #000000;
    transition: 0.5s;
    position: relative;
    margin-bottom: 2px;
    pointer-events: none;
}

.inputBox input {
    z-index: 1;
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
    color: #000000;
    border-radius: 4px;
    position: relative;
    padding: 13px 10px;
    border: solid 1px #000000;
}

.error {
    color: #ff0000;
    text-align: center;
}

.fieldFinalize {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 10101;
    position: fixed;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    background-color: rgba(113, 113, 113, 0.9);
}

.fieldFinalize.active {
    display: flex;
}

.fieldFinalize .container {
    width: 80%;
    height: 580px;
    display: flex;
    border-radius: 4px;
    position: relative;
    background: #ffffff;
    flex-direction: column;
    transition: 0.5s ease-in-out;
    justify-content: space-between;
}

.fieldFinalize .container .backField {
    padding: 15px 20px;
    position: relative;
    border-bottom: solid 2px #1f2b4420;
}

.fieldFinalize .container .backField h1 {
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #1f2b44;
    position: relative;
    align-items: center;
    text-transform: uppercase;
}

.fieldFinalize .container .backField h1 i {
    font-size: 25px;
    font-weight: 300;
    color: #1f2b44;
    position: relative;
    margin-right: 10px;
}

.fieldFinalize .container .content {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    padding: 20px 20px 0 20px;
    position: relative;
    overflow-x: hidden;
    transition: 0.5s ease-in-out;
}

.fieldFinalize .container .fieldBTN {
    text-align: right;
    padding: 15px 20px;
    position: relative;
}

.fieldFinalize .container .fieldBTN a {
    margin: 0;
    background: #075e54;
    text-transform: capitalize;
}

.fieldFinalize .container .fieldBTN a:hover {
    margin-top: 0;
    color: #075e54;
    background: #ffffff;
    border: 3px solid #075e54;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

    .fieldFinalize .container {
        width: 100%;
        height: 90%;
        margin: 10px;
    }

    .fieldFinalize .container .backField {
        padding: 15px 10px;
    }

    .fieldFinalize .container .content {
        padding: 15px 10px 0 10px;
    }

    .fieldFinalize .container .fieldBTN {
        padding: 10px
    }

    .fieldFinalize .container .fieldBTN a {
        width: 100%;
    }
}

footer {
    width: 100%;
    height: 100%;
    color: #ffffff;
    position: relative;
    padding: 70px 100px 50px 100px;
    background: #00adef;
}

footer .content {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

footer .content .textAbout .fieldIMG {
    width: 100%;
    height: 80px;
    position: relative;
}

footer .content .textAbout .fieldIMG img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
}

footer .content .textAbout h2 {
    margin-top: 20px;
}

footer .content .textContact {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 0;
}

footer .content .textContact li {
    margin: 0 10px;
}

footer .content .textContact a {
    text-decoration: none;
    color: #fff;
    border: 1px solid white;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

footer .content .textContact a i {
    font-size: 25px;
    transition: all 0.5s ease-in-out;
}

footer .content .textContact a:hover {
    color: #000000;
    border: 1px solid #000000;
}

footer .content .textContact a p {
    margin-left: 10px;
    font-style: normal;
}

.copyrightText {
    width: 100%;
    background: #0075a2;
    padding: 25px 100px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    z-index: 6;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex: none;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 991px) {

    footer {
        padding: 50px;
    }

    footer .content .textContact.second {
        width: 100%;
        display: block;
    }

    footer .content .textContact.second a {
        margin-bottom: 10px;
    }

    .copyrightText {
        padding: 25px 25px 25px 25px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

    footer {
        padding: 50px 20px;
    }

    .copyrightText {
        padding: 25px 25px 25px 25px;
    }
}

@media only screen and (min-device-width: 480px) and (max-device-width: 767px) {}