@import "./fonts.css";

/*Basic Style*/
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: TildaSans, Arial, sans-serif;
    line-height: 1.42857;
    font-size: 18px;
    color: #000000;
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 15px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
    color: inherit;
    opacity: 0.85;
}

h1 {
    font-size: 50px;
}
@media (max-width: 1199px) {
    h1 {
        font-size: 46px;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

h2 {
    font-size: 36px;
}
@media (max-width: 1199px) {
    h2 {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 22px;
}
@media (max-width: 1199px) {
    h3 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    h3 {
        font-size: 14px;
    }
}

h4 {
    font-size: 18px;
}
@media (max-width: 1199px) {
    h4 {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    h4 {
        font-size: 10px;
    }
}

h5 {
    font-size: 16px;
}
@media (max-width: 1199px) {
    h5 {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    h5 {
        font-size: 8px;
    }
}

h6 {
    font-size: 14px;
}
@media (max-width: 1199px) {
    h6 {
        font-size: 10px;
    }
}
@media (max-width: 767px) {
    h6 {
        font-size: 6px;
    }
}

p {
    margin: 0 0 10px;
}
@media (max-width: 767px) {
    p {
        font-size: 14px;
    }
}

a {
    text-decoration: none !important;
    outline: 0;
    transition: all 0.5s ease;
}
ul,
ol {
    margin-bottom: 10px;
    margin-top: 0;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 6px 30px;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #000;
    border: 0 none;
    color: #fff;
    cursor: pointer;
    padding: 8px 20px;
    transition: all 0.5s ease 0s;
    line-height: 1.3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
button,
select {
    text-transform: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.container_new_section {
    max-width: 98%;
    width: 100%;
    margin: 4% auto;
    padding: 0 10px;
}

@media only screen and (min-width: 500px) {
    header {
        background-color: #ffffff;
        padding: 5px 10px;
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-flow: wrap;
        position: relative;
    }
}
@media (max-width: 991px) {
    header nav {
        position: absolute;
        bottom: -159px;
        left: -100%;
        transition: all 0.5s ease;
        background-color: #ffffff;
        z-index: 1;
    }
    header nav.open {
        left: -5px;
    }
}
header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    justify-content: right;
}
@media (max-width: 991px) {
    header nav ul {
        border-top: 1px solid #000;
        display: block;
    }
}
header nav ul li a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}
@media (max-width: 991px) {
    header nav ul li a {
        min-width: 300px;
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid #000;
    }
}

.logo-main {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 20px;
}
@media (max-width: 991px) {
    .logo-main {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .logo-main {
        gap: 0;
    }
}
.logo-main .hamburger {
    display: none;
}
@media (max-width: 991px) {
    .logo-main .hamburger {
        display: block;
        width: 30%;
        display: flex;
        justify-content: left;
    }
}
@media (max-width: 767px) {
    .logo-main .hamburger {
        width: 10%;
    }
}
.logo-main .hamburger span {
    width: 30px;
    height: 20px;
    background-image: url("../images/hamburger.svg");
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.logo-main .hamburger.open span {
    background-image: url("../images/hamburger-close.svg");
}
@media (max-width: 991px) {
    .logo-main .logo {
        width: 20%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .logo-main .logo {
        width: 30%;
    }
}
.logo-main .logo span {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}
@media (max-width: 991px) {
    .logo-main .search {
        width: 30%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .logo-main .search {
        width: 55%;
    }
}
.logo-main .search input {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-weight: 500;
    outline: none;
}
@media (max-width: 767px) {
    .logo-main .search input {
        width: 100%;
    }
}

footer {
    background-color: #000000;
}
footer .container p {
    width: 100%;
    padding: 0;
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    text-align: left;
}
@media (max-width: 767px) {
    footer .container p {
        text-align: center;
        font-size: 14px;
    }
}

.modal-backdrop {
    z-index: 0 !important;
}

.section-01 {
    padding: 50px 0 130px;
    background: #e8e8e8;
}
.section-01 h1 {
    text-align: center;
    color: #000000;
    font-size: 42px;
    line-height: 1.23;
    margin-bottom: 30px;
}
.section-01 .inner {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 30px 2%;
    max-width: 99%;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .section-01 .inner {
        gap: 20px;
    }
}
.section-01 .inner .box {
    border-radius: 10px;
    overflow: hidden;
    width: 23%;
    height: 280px;
    position: relative;
}
@media (max-width: 767px) {
    .section-01 .inner .box {
        width: 100%;
    }
}
.section-01 .inner .box .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-01 .inner .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}
.section-01 .inner .box .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    right: 0;
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1)
    );
}
.section-01 .inner .box .content a {
    display: block;
    height: 100%;
    padding: 30px;
}
.section-01 .inner .box .content a h2 {
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 22px;
    line-height: 1.35;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
}
.section-01 .inner .box .content a h2:after {
    align-items: center !important; 
    justify-content: center !important;
    content: "";
    height: 24px;
    width: 14px;
    background-image: url("../images/chevron-right.svg");
}
.section-01 .inner .box .content a > span {
    position: absolute;
    bottom: 30px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}
.section-01 .inner .box:hover .image img {
    transform: scale(1.1);
}
