@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #31363A;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #31363A;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #FDBF67;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
    padding: 0 50px;
}

@media only screen and (max-width:760px) {
    .container {
        padding: 0 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .container {
        padding: 0 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1400px) {
    .container {
        padding: 0 30px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-info-section {
    padding: 15px 0;
    height: 50px;
    background: #31363A1A;
    transition: all .4s ease-in-out;
}

.header-info-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info-section aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info-section .tagline {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #31363A;
}

.header-info-section ul.social {
    margin: 0 25px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-info-section ul.social li a {
    font-size: 18px;
    color: #31363A;
    transition: .5s;
}

.header-info-section ul.social li a:hover {
    color: #FDBF67;
    transition: .5s;
}

.header-info-section ul.language {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.header-info-section ul.language li img {
    opacity: .5;
}

.header-info-section ul.language li.select img {
    opacity: 1;
}

@media only screen and (max-width:760px) {
    .header-info-section .tagline {
        display: none;
    }

    .header-info-section aside {
        width: 100%;
    }

    .header-section .container figure,
    .header-section .container figure img {
        height: 66px !important;
    }
}

.header-section {
    padding: 40px 0;
    background-color: #FFFFFF;
    position: relative;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    padding: 20px 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 25px 0px #00000005;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .container figure,
.header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 86px;
}

.header-section .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-size: 18px;
    line-height: 50px;
    font-weight: 600;
    color: #31363A;
    transition: .5s;
}

.menu-bar li:last-child a {
    margin: 0;
    padding: 10px 15px;
    background-color: #FDBF67;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
}

.menu-bar li:last-child a:hover {
    background-color: #31363A;
    transition: .5s;
}

.menu-bar li a.store {
    color: #FDBF67 !important;
    font-weight: 700;
}

.menu-bar.show li a {
    color: #31363A;
    display: block;
}

.menu-bar.show li a.active {
    color: #FDBF67;
}

.menu-bar.show li a svg path {
    fill: #31363A;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #31363A;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #31363A;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 16px;
    line-height: 1;
    color: #31363A;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 30px;
    padding: 0;
    color: #31363A;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

@media (min-width: 1170px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 1170px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 50px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a:hover {
        color: #FDBF67;
        transition: .5s;
    }

    .menu-bar li a.active {
        color: #FDBF67;
        transition: .5s;
    }

    .dropDown-list a.active {
        color: #FDBF67;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #FDBF67;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #FDBF67;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #FFFFFF;
    }
}

@media only screen and (max-width:760px) {
    .header-section {
        padding: 20px 0;
    }

    .menu-bar li:last-child {
        margin-top: 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .toggle-btn {
        right: 30px;
    }

    .menu-bar li:last-child {
        margin-top: 15px;
    }
}

@media only screen and (min-width:1170px) and (max-width:1300px) {
    .menu-bar {
        gap: 20px;
    }
}

@media only screen and (min-width:1300px) and (max-width:1400px) {
    .menu-bar {
        gap: 40px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section .container {
    position: relative;
    z-index: 1;
}

.banner-section .container .right-box {
    position: absolute;
    right: 15px;
    bottom: 50px;
}

.skewed-box {
    width: auto;
    height: auto;
    background-color: #FDBF67;
    position: relative;
    z-index: 9;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.skewed-box h2 {
    padding: 40px 20px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.skewed-box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FDBF67;
    border-radius: 10px;
    z-index: -1;
    transform-origin: left top;
    transform: skewY(-5deg);
}

.skewed-box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FDBF67;
    border-radius: 10px;
    z-index: -1;
    transform-origin: left bottom;
    transform: skewY(5deg);
}

.banner-section .container .call-box {
    position: absolute;
    right: 75px;
    top: 30px;
    padding: 10px 20px;
    background-color: #31363A;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.banner-section .container .call-box span {
    color: #FDBF67;
}

.content-box {
    position: absolute;
    left: 120px;
    top: 120px;
    z-index: 99;
}

.content-box h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #FDBF67;
    text-shadow: 4px 4px 20px 0px #00000080;
    max-width: 600px;
    vertical-align: middle;
}

.content-box h1 span {
    display: block;
    color: #FFFFFF;
}

.content-box h1 a {
    margin: 0;
    padding: 10px 40px;
    background-color: #FDBF67;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
    position: relative;
    top: -10px;
}

.content-box h1 a:hover {
    background-color: #31363A;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .banner-section .container {
        position: relative;
        z-index: 1;
    }

    .banner-section .container .right-box {
        position: absolute;
        right: 10px;
        bottom: 120px;
    }

    .skewed-box {
        height: auto;
    }

    .skewed-box h2 {
        padding: 15px;
        font-size: 16px;
    }

    .banner-section .container .call-box {
        right: 20px;
        top: 10px;
        width: calc(100% - 40px);
        padding: 5px;
        font-size: 12px;
    }

    .banner-section .container .call-box span {
        color: #FDBF67;
    }

    .content-box {
        position: inherit;
        left: auto;
        top: auto;
        z-index: 99;
    }

    .content-box h1 {
        font-size: 24px;
    }

    .content-box h1 span {
        color: #31363A;
    }

    .content-box h1 a {
        margin: 0;
        padding: 5px 15px;
        font-size: 16px;
        top: 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .content-box {
        left: 50px;
        top: 60px;
    }

    .banner-section .container .call-box {
        right: 40px;
        top: 10px;
    }

    .banner-section .container .right-box {
        right: 15px;
        bottom: 15px;
    }

    .skewed-box {
        width: auto;
        height: auto;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .content-box {
        left: 90px;
        top: 100px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #31363A;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 48px;
}

.content-section h2 {
    font-size: 32px;
}

.content-section h2 span {
    color: #FDBF67;
}

.content-section h3 {
    font-size: 28px;
}

.content-section h4 {
    font-size: 24px;
}

.content-section h5 {
    font-size: 22px;
}

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #31363A;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #31363A;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #31363A;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #FDBF67;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
}

.btn-01 a:hover {
    background-color: #31363A;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section ul li {
        font-size: 16px;
    }

    .content-section ol li {
        font-size: 16px;
    }

    .btn-01 a {
        margin: 10px 0;
        padding: 10px 15px;
        font-size: 16px;
    }
}

.offer-section {
    padding: 70px 0 120px 0;
}

.offer-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 100px;
}

.offer-section .offer-heading {
    width: 25%;
    padding-right: 50px;
}

.offer-section .offer-heading p {
    font-weight: 500;
    text-align: justify;
}

.offer-section .offer-card {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}

.offer-section .offer {
    width: 270px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

.offer-section .offer::before {
    content: "";
    width: 150px;
    height: 110px;
    background-color: #31363A;
    border-radius: 8px;
    position: absolute;
    right: 0;
    bottom: -25px;
    z-index: -1;
}

.offer-section .offer h6 {
    font-weight: 500;
    text-transform: uppercase;
    min-height: 50px;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.offer-section .offer h6 a {
    color: #31363A;
}

.offer-section .offer h6::after {
    content: "";
    width: 30px;
    height: 16px;
    background: url(../img/arrow.png) no-repeat right;
    position: absolute;
    right: -50px;
    top: 5px;
}

.offer-section .offer figure img {
    border-radius: 8px;
}

@media only screen and (max-width:760px) {
    .offer-section {
        padding: 30px 0;
    }

    .offer-section .container {
        gap: 20px;
        row-gap: 20px;
        justify-content: center;
    }

    .offer-section .offer-heading {
        width: 100%;
        padding-right: 0;
    }

    .offer-section .offer-card {
        width: 47%;
        margin-bottom: 20px;
    }

    .offer-section .offer {
        width: 100%;
    }

    .offer-section .offer::before {
        width: 100px;
        height: 100px;
        bottom: -15px;
    }

    .offer-section .offer h6 {
        min-height: 40px;
    }

    .offer-section .offer h6::after {
        right: -35px;
        top: 2px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .offer-section .container {
        row-gap: 50px;
    }

    .offer-section .offer-heading {
        width: 50%;
    }

    .offer-section .offer-card {
        width: 50%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .offer-section .container {
        row-gap: 70px;
    }

    .offer-section .offer-heading {
        padding: 0;
    }

    .offer-section .offer-card {
        padding-left: 30px;
    }
}

.about-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-section .image-overlay {
    width: calc(50% - 50px);
    z-index: 9;
    border-radius: 0 8px 8px 0;
}

.about-section .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-section aside {
    padding: 50px 0 50px 50px;
    width: 50%;
    position: relative;
    z-index: 1;
}

.about-section aside::before {
    content: "";
    width: 80px;
    height: 154px;
    background: url(../img/vector.png) no-repeat center;
    position: absolute;
    top: 30px;
    left: -90px;
    z-index: -1;
}

.about-section aside p {
    font-weight: 500;
    text-align: justify;
}

.about-section aside ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.about-section aside ul li {
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width:760px) {
    .about-section {
        margin-bottom: 0;
    }

    .about-section .image-overlay {
        width: 100%;
        position: inherit;
        left: auto;
        top: auto;
        border-radius: 8px;
    }

    .about-section aside {
        padding: 30px 0 30px 10px;
        width: 100%;
    }

    .about-section aside::before {
        left: -80px;
    }

    .about-section aside ul {
        margin: 15px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-section aside ul li {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .about-section .image-overlay {
        width: 100%;
        position: inherit;
        left: auto;
        top: auto;
        border-radius: 8px;
    }

    .about-section aside {
        width: 100%;
    }

    .about-section aside::before {
        left: -70px;
    }
}

.cta-section {
    padding: 150px 0;
    background: #31363A url(../img/cta-bg.png) no-repeat center/cover;
    text-align: center;
}

.cta-section h2 {
    color: #FFFFFF;
}

.cta-section form {
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 430px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 8px;
    position: relative;
}

.cta-section form input[type="tel"] {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #31363A;
}

.cta-section form input[type="tel"]::placeholder {
    color: #31363A;
}

.cta-section form button[type="submit"] {
    margin: 0 auto;
    padding: 7px 15px;
    background-color: #FDBF67;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    color: #FFFFFF !important;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: .5s;
    position: absolute;
    right: 0;
    top: 0;
}

.cta-section form button[type="submit"]:hover,
.cta-section form button[type="submit"]:focus {
    background-color: #31363A;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-section form {
        margin: 15px auto 0 auto;
    }

    .cta-section form input[type="tel"] {
        padding: 10px;
        font-size: 14px;
    }

    .cta-section form button[type="submit"] {
        margin: 0 auto;
        padding: 7px 10px;
    }

    .cta-section form button[type="submit"]:hover,
    .cta-section form button[type="submit"]:focus {
        background-color: #31363A;
        transition: .5s;
    }
}

.blog-section {
    margin-top: 80px;
}

.blog-section .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px;
}

.blog-section .blog-box {
    width: calc(50% - 35px);
}

.blog-section .blog-box figure img {
    border-radius: 8px;
}

.blog-section .blog-box article {
    padding: 10px 0;
}

.blog-section .blog-box h2 {
    font-weight: 600;
}

.blog-section .blog-box p {
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    padding: 0;
}

#pagination {
    margin: 0 0 100px 0;
    padding: 0;
    text-align: center
}

#pagination li {
    display: inline
}

#pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 8px 15px;
    color: #31363A;
}

#pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

#pagination li a.active {
    background-color: #FDBF67;
}

#pagination li a:hover:not(.active) {
    background-color: #ddd;
}

@media only screen and (max-width:760px) {
    .blog-section {
        margin-top: 30px;
    }

    .blog-section .container {
        gap: 20px;
    }

    .blog-section .blog-box {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .blog-section .container {
        gap: 30px;
    }

    .blog-section .blog-box {
        width: calc(50% - 18px);
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {}

.company-section {
    padding: 50px 0;
}

.company-section h4 {
    font-weight: 600;
}

.company-section p {
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (max-width:760px) {
    .company-section {
        padding: 20px 0;
    }

    .company-section p {
        font-size: 14px;
    }
}

.map-section {
    min-height: 380px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width:760px) {
    .map-section {
        min-height: 200px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-section aside {
    width: 50%;
}

.footer-section ul.links {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    row-gap: 15px;
}

.footer-section ul.links li a {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    transition: .5s;
}

.footer-section ul.links li a:hover,
.footer-section ul.links li a.active {
    color: #FDBF67;
    transition: .5s;
}

.footer-section ul.links li a.store {
    color: #FDBF67 !important;
    transition: .5s;
}

.footer-section ul.social {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-section ul.social li a {
    font-size: 18px;
    color: #FFFFFF;
    transition: .5s;
}

.footer-section ul.social li a:hover {
    color: #FDBF67;
    transition: .5s;
}

.footer-section p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    transition: .5s;
}

.footer-section p a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-section p a:hover {
    color: #FDBF67;
    transition: .5s;
}

.footer-section ul.infos {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.footer-section ul.infos li {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #31363A;
    transition: .5s;
}

.footer-section ul.infos li a {
    color: #31363A;
    transition: .5s;
}

.footer-section ul.infos li strong {
    color: #FDBF67;
    font-weight: 600;
}

.footer-section .footer-form-section {
    background-color: #FDBF67;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 50px);
    height: 100%;
    object-fit: cover;
    z-index: 9;
}

.footer-section form {
    padding: 40px 0 0 0;
    width: 100%;
    max-width: 600px;
}

.footer-section form h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 0;
}

.footer-section form p {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 1px 0;
}

.footer-section .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.footer-section .col-half {
    width: 50%;
}

.footer-section .col-full {
    width: 100%;
}

.footer-section input[type="text"],
.footer-section input[type="email"],
.footer-section input[type="tel"],
.footer-section textarea {
    margin: 0;
    padding: 15px;
    width: 100%;
    background-color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #31363A;
}

.footer-section textarea {
    height: 140px;
    overflow: auto;
    resize: none;
}

.footer-section ::placeholder {
    color: #31363A;
}

.uploadFile {
    width: auto !important;
    background-color: #31363A;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #FFFFFF;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
    resize: none;
}

.uploadFile [type=file] {
    cursor: pointer !important;
    display: inline-block;
    font-size: 16px;
    filter: alpha(opacity=0);
    width: auto !important;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.footer-section input[type="submit"] {
    margin: 0 auto;
    padding: 10px 40px;
    background-color: #31363A;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
}

.footer-section .footer-top-section {
    background-color: #FFFFFF;
    padding: 10px 0 50px 0;
}

.footer-section .footer-top-section p {
    font-size: 14px;
    color: #31363A;
    font-weight: 500;
}

.footer-section .footer-top-section .d-flex {
    gap: 40px;
}

.footer-section .footer-top-section article,
.footer-section .footer-top-section figure {
    width: 33.333%;
}

.footer-section .footer-bot-section {
    background-color: #31363A;
    padding: 30px 0;
}


@media only screen and (max-width:760px) {
    .footer-section aside {
        width: 100%;
    }

    .footer-section ul.links {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-section ul.social {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-section ul.infos {
        margin: 15px 0;
    }

    .footer-section .footer-form-section {
        position: inherit;
        top: auto;
        right: auto;
        width: 100%;
    }

    .footer-section form {
        padding: 30px 0 15px 0;
        width: 100%;
        max-width: 100%;
    }

    .footer-section form h2 {
        font-size: 24px;
    }

    .footer-section .row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 5px 0;
    }

    .footer-section .col-half {
        width: 100%;
    }

    .uploadFile {
        width: 100% !important;
        display: block;
    }

    .footer-section .footer-top-section {
        padding: 15px 0;
        text-align: center;
    }

    .footer-section .footer-top-section .d-flex {
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-section .footer-top-section article,
    .footer-section .footer-top-section figure {
        width: 100%;
    }

    .footer-section .footer-top-section article {
        display: flex;
        justify-content: space-between;
    }

    .footer-section .footer-top-section article ul:first-child {
        text-align: left;
    }

    .footer-section .footer-top-section article ul:last-child {
        text-align: right;
    }

    .footer-section .footer-bot-section {
        background-color: #31363A;
        padding: 15px 0;
        text-align: center;
    }

}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section aside {
        width: 100%;
    }

    .footer-section .footer-form-section {
        position: inherit;
        top: auto;
        right: auto;
        width: 100%;
    }

    .footer-section form {
        max-width: 100%;
        padding: 30px 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .footer-section ul.links {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .footer-section .footer-top-section .d-flex {
        gap: 20px;
    }

    .footer-section ul.infos li span {
        display: block;
    }
}

.contact-section {
    padding: 0 0 50px 0;
    text-align: center;
}

.contact-section h4 {
    margin: 0 auto;
    font-weight: 600;
    max-width: 950px;
}

.m-0 {
    margin: 0 !important;
}

.pt-3 {
    padding-top: 30px;
}

.pb-10 {
    padding-bottom: 100px;
}

@media only screen and (max-width:760px) {
    .pt-3 {
        padding-top: 15px;
    }

    .pb-10 {
        padding-bottom: 50px;
    }
}

.blog-image {
    width: calc(50% - 35px);
}

.blog-image img {
    border-radius: 8px;
}

.blog-title {
    width: calc(50% - 35px);
    display: flex;
    align-items: center;
}

.blog-description {
    width: 100%;
}

.blog-description p {
    text-align: justify;
}

@media only screen and (max-width:760px) {
    .blog-image {
        width: 100%;
    }

    .blog-title {
        width: 100%;
    }
}

.projects-section {
    padding: 30px 0 120px 0;
}

.projects-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 100px;
}

.projects-section .project-heading {
    width: 25%;
    padding-right: 50px;
}

.projects-section .project-heading p {
    font-weight: 500;
    text-align: justify;
}

.projects-section .project-card {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}

.projects-section .project {
    width: 270px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

.projects-section .project::before {
    content: "";
    width: 150px;
    height: 110px;
    background-color: #31363A;
    border-radius: 8px;
    position: absolute;
    right: 0;
    bottom: -25px;
    z-index: -1;
}

.projects-section .project h6 {
    font-weight: 500;
    min-height: 50px;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.projects-section .project h6 a {
    color: #31363A;
}

.projects-section .project h6::after {
    content: "";
    width: 30px;
    height: 16px;
    background: url(../img/arrow.png) no-repeat right;
    position: absolute;
    right: -50px;
    top: 5px;
}

.projects-section .project figure img {
    border-radius: 8px;
}

@media only screen and (max-width:760px) {
    .projects-section {
        padding: 0 0 50px 0;
    }

    .projects-section .container {
        gap: 20px;
        row-gap: 20px;
        justify-content: center;
    }

    .projects-section .project-heading {
        width: 100%;
        padding-right: 0;
    }

    .projects-section .project-card {
        width: 47%;
        margin-bottom: 20px;
    }

    .projects-section .project {
        width: 100%;
    }

    .projects-section .project::before {
        width: 100px;
        height: 100px;
        bottom: -15px;
    }

    .projects-section .project h6 {
        min-height: 40px;
    }

    .projects-section .project h6::after {
        right: -35px;
        top: 2px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .projects-section .container {
        row-gap: 50px;
    }

    .projects-section .project-heading {
        width: 50%;
    }

    .projects-section .project-card {
        width: 50%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .projects-section .container {
        row-gap: 70px;
    }

    .projects-section .project-heading {
        padding: 0;
    }

    .projects-section .project-card {
        padding-left: 30px;
    }
}

.pt-30 {
    padding-top: 30px !important;
}

@media only screen and (max-width:760px) {
    .pt-30 {
        padding-top: 0px !important;
    }
}

.downloadable-section {
    padding: 0 0 120px 0;
}

.downloadable-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.downloadable-section .container aside {
    width: 50%;
}

.skewed-title {
    margin: 50px 0;
    width: 100%;
    height: 50px;
    background-color: #FDBF67;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.skewed-title h4 {
    padding: 10px 30px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

.skewed-title::after {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: #FDBF67;
    border-radius: 8px;
    z-index: -1;
    transform-origin: left top;
    transform: skewY(-1deg);
}

.skewed-title::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FDBF67;
    border-radius: 8px;
    z-index: -1;
    transform-origin: left bottom;
    transform: skewY(1deg);
}

.downloadable-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.downloadable-section ul li {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 700;
}

.downloadable-section ul li a {
    display: block;
    padding: 10px 30px;
    color: #FFFFFF;
    background-color: #31363A;
    border-radius: 8px;
}

@media only screen and (max-width:760px) {
    .downloadable-section {
        padding: 0 0 50px 0;
    }

    .downloadable-section .container {
        flex-wrap: wrap;
        gap: 0px;
    }

    .downloadable-section .container aside {
        width: 100%;
    }

    .skewed-title {
        margin: 20px 0;
    }

    .skewed-title h4 {
        padding: 10px 15px;
        font-size: 20px;
    }

    .downloadable-section ul li {
        margin: 10px 0;
        font-size: 16px;
    }

    .downloadable-section ul li a {
        padding: 10px 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .downloadable-section .container {
        gap: 30px;
    }

    .skewed-title {
        margin: 30px 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .downloadable-section .container {
        gap: 50px;
    }
}

.company-details-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.company-details-section figure {
    margin: 0;
    padding: 0 150px 100px 0;
    width: 50%;
    position: relative;
}

.company-details-section figure img {
    border-radius: 8px;
}

.company-details-section figure .img-02 {
    position: absolute;
    left: 120px;
    bottom: 0;
    border-radius: 8px;
}

.company-details-section figure .img-03 {
    position: absolute;
    right: 0;
    top: 40px;
    border-radius: 8px;
}

.company-details-section article {
    width: 50%;
}

.company-details-section article p {
    text-align: justify;
}

@media only screen and (max-width:760px) {
    .company-details-section .container {
        flex-wrap: wrap;
        gap: 50px;
    }

    .company-details-section figure {
        padding: 0 50px 50px 0;
        width: 100%;
    }

    .company-details-section figure .img-02 {
        width: 50%;
        left: 30px;
        bottom: 0;
    }

    .company-details-section figure .img-03 {
        width: 50%;
        top: 20px;
    }

    .company-details-section article {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .company-details-section figure {
        padding: 0 50px 50px 0;
    }

    .company-details-section figure .img-02 {
        width: 50%;
        left: 30px;
    }

    .company-details-section figure .img-03 {
        width: 50%;
        top: 20px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .company-details-section figure {
        padding: 0 50px 100px 0;
    }

    .company-details-section figure .img-02 {
        left: 30px;
    }
}

.company-infos-section {
    padding: 50px 0;
}

.company-infos-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.company-infos-section ul.com-infos {
    margin: 0;
    padding: 0;
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-infos-section ul.com-infos li {
    width: 50%;
    font-weight: 600;
    text-align: center;
}

.company-infos-section ul.com-infos li strong {
    font-weight: 600;
    color: #FDBF67;
    text-align: center;
}

.company-infos-section ul.pro-infos {
    margin: 0;
    padding: 0;
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.company-infos-section ul.pro-infos li {
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width:760px) {
    .company-infos-section {
        padding: 30px 0;
    }

    .company-infos-section .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .company-infos-section ul.com-infos {
        width: 100%;
        flex-wrap: wrap;
    }

    .company-infos-section ul.com-infos li {
        width: 100%;
    }

    .company-infos-section ul.pro-infos {
        width: 100%;
        flex-wrap: wrap;
    }

    .company-infos-section ul.pro-infos li {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .company-infos-section .container {
        flex-wrap: wrap;
    }

    .company-infos-section ul.com-infos,
    .company-infos-section ul.pro-infos {
        width: 100%;
    }
}

.companies-section {
    padding: 50px 0;
    text-align: center;
}

.companies-section p {
    margin: 0 auto;
    max-width: 1130px;
}

.companies-section ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.companies-section ul li {
    margin: 0;
    padding: 0;
}

.companies-section ul li img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: .5s;
}

.companies-section ul li img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .companies-section {
        padding: 30px 0;
    }

    .companies-section ul {
        margin: 15px 0 0 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .companies-section ul li {
        width: 47%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .companies-section ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .companies-section ul li {
        width: 22%;
    }
}

.technologies-section .container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.technologies-section img {
    border-radius: 8px;
}

.technologies-section aside {
    width: 35%;
}

.technologies-section article {
    width: 65%;
    position: relative;
    z-index: 1;
    padding: 35px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.technologies-section article h2 {
    color: #FFFFFF;
    width: 100%;
}

.technologies-section article p {
    color: #FFFFFF;
    text-align: justify;
    width: calc(100% - 250px);
}

.technologies-section article .right-box {
    position: absolute;
    right: -35px;
    bottom: 50px;
}

.technologies-section .skewed-box {
    width: 270px;
}

.technologies-section .skewed-box h4 {
    padding: 20px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.technologies-section .skewed-box h4 strong {
    color: #31363A;
    display: block;
}

@media only screen and (max-width:760px) {
    .technologies-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .technologies-section img {
        border-radius: 8px;
    }

    .technologies-section aside {
        width: 100%;
    }

    .technologies-section article {
        width: 100%;
        padding: 20px;
    }

    .technologies-section article p {
        width: 100%;
        margin-bottom: 20px;
    }

    .technologies-section article .right-box {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .technologies-section .skewed-box {
        width: 100%;
    }

    .technologies-section .skewed-box h4 {
        padding: 20px;
        font-size: 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .technologies-section .container {
        gap: 30px;
    }

    .technologies-section article p {
        width: 100%;
        margin-bottom: 20px;
    }

    .technologies-section article .right-box {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .technologies-section .skewed-box {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1400px) {
    .technologies-section article .right-box {
        right: -25px;
    }
}

.our-story-section {
    padding: 100px 0;
}

.our-story-section .container {
    display: flex;
    justify-content: space-between;
}

.our-story-section .container figure {
    width: 45%;
}

.our-story-section .container article {
    width: 55%;
}

.story-box {
    padding: 30px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.story-box::before {
    content: "";
    width: auto;
    height: 100%;
    border-left: 2px dotted #FDBF67;
    position: absolute;
    left: 49px;
    top: 20%;
}

.story-box:last-child::before {
    display: none;
}

.story-box .year {
    width: 100px;
    height: auto;
    background-color: #FDBF67;
    position: relative;
    z-index: 9;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.story-box .year h4 {
    padding: 20px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
}

.story-box .year::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FDBF67;
    border-radius: 10px;
    z-index: -1;
    transform-origin: left top;
    transform: skewY(-5deg);
}

.story-box .year::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FDBF67;
    border-radius: 10px;
    z-index: -1;
    transform-origin: left bottom;
    transform: skewY(5deg);
}

.story-box .content {
    width: calc(100% - 130px);
}

@media only screen and (max-width:760px) {
    .our-story-section {
        padding: 30px 0;
    }

    .our-story-section .container {
        flex-wrap: wrap-reverse;
    }

    .our-story-section .container figure {
        width: 100%;
    }

    .our-story-section .container article {
        width: 100%;
    }

    .story-box {
        padding: 20px 0;
        gap: 20px;
    }

    .story-box::before {
        top: 10%;
    }

    .story-box .year h4 {
        font-size: 20px;
    }

    .story-box .content {
        width: calc(100% - 120px);
    }
}

.offer-image-section {
    padding: 15px 0;
}

.offer-image-section img {
    border-radius: 8px;
}

.offer-more-section {
    padding: 30px 0;
    text-align: center;
}

.offer-more-section h4 {
    font-weight: 600;
}

.offer-more-section h4 a {
    color: #FDBF67;
}

.offer-products-section {
    padding: 0 0 120px 0;
}

.offer-products-section .container {
    display: flex;
    justify-content: space-between;
    /*gap: 80px;*/
    flex-wrap: wrap;
}

.offer-products-section aside {
    width: 50%;
}

.offer-products-section article {
    padding: 0 30px 30px 30px;
}

.offer-products-section article p {
    text-align: justify;
}

.products-wrapper {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.products-wrapper .product-card {
    width: 50;
    display: flex;
    justify-content: flex-end;
}

.products-wrapper .product {
    width: 270px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

.products-wrapper .product::before {
    content: "";
    width: 150px;
    height: 110px;
    background-color: #31363A;
    border-radius: 8px;
    position: absolute;
    right: 0;
    bottom: -25px;
    z-index: -1;
}

.products-wrapper .product h6 {
    font-weight: 500;
    min-height: 50px;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.products-wrapper .product h6 a {
    color: #31363A;
}

.products-wrapper .product h6::after {
    content: "";
    width: 30px;
    height: 16px;
    background: url(../img/arrow.png) no-repeat right;
    position: absolute;
    right: -50px;
    top: 5px;
}

.products-wrapper .product figure img {
    border-radius: 8px;
}

@media only screen and (max-width:760px) {
    .offer-more-section {
        padding: 0;
    }

    .offer-products-section {
        padding: 0 0 50px 0;
    }

    .offer-products-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .offer-products-section aside {
        width: 100%;
    }

    .offer-products-section article {
        padding: 0 15px;
    }

    .products-wrapper {
        flex-wrap: wrap;
    }

    .products-wrapper .product-card {
        width: 100%;
    }

    .products-wrapper .product {
        margin: 0 auto;
        padding-right: 0;
    }

    .products-wrapper .product h6 {
        min-height: 40px;
    }

    .products-wrapper .product h6::after {
        right: -35px;
        top: 2px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .offer-products-section .container {
        flex-wrap: wrap;
    }

    .offer-products-section aside {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .offer-products-section .container {
        gap: 30px;
    }

    .products-wrapper .product {
        width: 100%;
    }
}

.product-details-section {
    margin: 15px 0;
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 54%, #FDBF67 54%, #FDBF67 100%);
}

.product-details-section .container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.product-details-section article {
    width: 40%;
    padding: 50px 0;
}

.product-details-section article p {
    text-align: justify;
}

.product-details-section article p strong {
    font-weight: 600;
    color: #FDBF67;
}

.product-details-section article ul {
    list-style: none;
}

.product-details-section aside {
    width: 20%;
}

.product-details-section aside img {
    margin: 0 auto;
}

@media only screen and (max-width:760px) {
    .product-details-section {
        margin: 0;
        background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 54%, #FFFFFF 54%, #FFFFFF 100%);
    }

    .product-details-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-details-section article {
        width: 100%;
        padding: 0;
    }

    .product-details-section aside {
        width: 100%;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .product-details-section {
        background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 54%, #FFFFFF 54%, #FFFFFF 100%);
    }

    .product-details-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-details-section article {
        width: 100%;
        padding: 0;
    }

    .product-details-section aside {
        width: 100%;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .product-details-section .container {
        gap: 30px;
    }
}

.details-tabs-section {
    padding: 50px 0 100px 0;
}

.tabpanel-tab {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.tabpanel-tab:checked+.tabpanel-tablabel {
    background: #FDBF67;
    color: #FFFFFF;
}

.tabpanel-tablabel {
    flex: 0 1 auto;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #FDBF67;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #FDBF67;
    text-align: center;
}

.tabpanel-tablabel:hover {
    cursor: pointer;
}

.tabpanel-panel {
    display: none;
}

.tabpanel-panel>*:first-child {
    margin-top: 0;
}

.tabpanel-panel>*:last-child {
    margin-bottom: 0;
}

.tabpanel-panel>*+* {
    margin-top: 24px;
}

#tabpanel-tab-1:checked~.tabpanel-panels #tabpanel-panel-1,
#tabpanel-tab-2:checked~.tabpanel-panels #tabpanel-panel-2,
#tabpanel-tab-3:checked~.tabpanel-panels #tabpanel-panel-3,
#tabpanel-tab-4:checked~.tabpanel-panels #tabpanel-panel-4,
#tabpanel-tab-5:checked~.tabpanel-panels #tabpanel-panel-5 {
    display: block;
    position: relative;
    top: 0px;
}

.tabpanel {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (max-width: 600px) {
    .tabpanel {
        flex-direction: column;
    }

    .tabpanel .tabpanel-tablabel+.tabpanel-tab+.tabpanel-tablabel {
        margin-top: 20px;
    }

    .tabpanel .tabpanel-tab:checked~.tabpanel-panels {
        order: 1;
    }

    .tabpanel .tabpanel-tab:not(:checked)+.tabpanel-tablabel {
        order: initial;
    }

    .tabpanel #tabpanel-tab-1+.tabpanel-tablabel {
        order: 1;
    }

    .tabpanel #tabpanel-tab-1:checked~.tabpanel-panels {
        order: 1;
    }

    .tabpanel #tabpanel-tab-2+.tabpanel-tablabel {
        order: 2;
    }

    .tabpanel #tabpanel-tab-2:checked~.tabpanel-panels {
        order: 2;
    }

    .tabpanel #tabpanel-tab-3+.tabpanel-tablabel {
        order: 3;
    }

    .tabpanel #tabpanel-tab-3:checked~.tabpanel-panels {
        order: 3;
    }

    .tabpanel #tabpanel-tab-4+.tabpanel-tablabel {
        order: 4;
    }

    .tabpanel #tabpanel-tab-4:checked~.tabpanel-panels {
        order: 4;
    }

    .tabpanel #tabpanel-tab-5+.tabpanel-tablabel {
        order: 5;
    }

    .tabpanel #tabpanel-tab-5:checked~.tabpanel-panels {
        order: 5;
    }
}

@media screen and (min-width: 601px) {
    .tabpanel {
        flex-direction: row;
    }

    .tabpanel .tabpanel-tablabel {
        flex: 1;
        text-align: center;
    }

    .tabpanel .tabpanel-tablabel+.tabpanel-tab+.tabpanel-tablabel {
        margin-left: 6px;
    }

    .tabpanel .tabpanel-panel {
        padding: 30px 0;
    }

    .tabpanel .tabpanel-panels {
        flex: 1 1 100%;
    }
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*gap: 80px;*/
}

.product-gallery aside {
    width: 50%;
}

.product-gallery figure {
    padding-top: 30px;
}

@media only screen and (max-width:760px) {
    .product-gallery {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-gallery aside {
        width: 100%;
    }

    .product-gallery figure {
        padding-top: 30px;
    }
}

ul.pattern {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

ul.pattern li {
    margin: 0;
    width: 196px;
}



@media only screen and (max-width:760px) {
    ul.pattern {
        margin: 10px 0;
        gap: 20px;
        row-gap: 0;
    }

    ul.pattern li {
        width: 156px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    ul.pattern li {
        width: 164px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    ul.pattern li {
        width: 180px;
    }
}

#mapWrap {
    width: 100%;
    height: 400px;
}

