/*
Theme Name: dev-2023
Theme URI: https://hedi.hu/
Author: the WordPress team
Author URI: https://hedi.hu/
Description: Basic Theme by Tóth Hédi
Tags: one-column, custom-colors, custom-menu
Version: 1.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dev-2023

*/

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000

.nunito-<uniquifier> {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.rowdies-bold {
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
}


img {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 1.5rem 0;
}

td,
th {
    padding: 0.5rem 1rem;
    border: solid 1px #ddd;
}

th {
    background: var(--extralight);
    text-align: left;
}

ul,
ol {
    padding: 0;
}

ul ul,
ul ul ul,
ol ol,
ol ol ol {
    margin: 0.5rem 0;
}

ol ol,
ol ol ol {
    padding-left: 1rem;
}

ul li {
    list-style-type: disc;
    margin-bottom: 0.25rem;
    margin-left: 1rem;
    line-height: 1.3;
}

ul li::marker {
    color: var(--pink);
}

ol {
    list-style: none;
    counter-reset: my-counter;
}

ol li {
    counter-increment: my-counter;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    padding-left: 2rem;
    position: relative;
}

ol li::before {
    content: counter(my-counter) ".";
    background: var(--middleblue);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    line-height: 1.5rem;
    color: white;
    text-align: center;
    margin-right: 0.5rem;
    position: absolute;
    left: 0;
    font-size: smaller;
}

p {
    line-height: 1.5;
}

a {
    color: var(--active);
    text-decoration: none;
}

a:hover {
    color: var(--pink);
    text-decoration: none;
}


:root {
    /*=======color========*/
    --active: linear-gradient(90deg, rgba(68,154,177,1) 0%, rgba(105,117,191,1) 27%, rgba(236,47,69,1) 97%);
    --text: #333249;
    --lightblue: #449AB1;
    --blue: #333249;
    --grey: #FCF3F2;
    --orange: #F29E07;
    --pink: #D93130;

    /*=======transition========*/
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

html {
    font-size: 20px;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    color: var(--text);
    margin: 0;
    padding-left: 100px;

}

.p-smaller {
    font-size: 16px;
}

h1 {
   font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
    color: var(--text);
    font-size: 3rem;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

h2 {
   font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
    color: var(--text);
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
    text-transform: uppercase;
}

h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    text-transform: uppercase;
}

h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}



.cim-bg {
    background-color: var(--orange);
    padding: 0.5rem;
    display: inline-block;
    border-radius: 10px;
    font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
    color: var(--text);
    font-size: 1.6rem;
}


h1 a,
h2 a,
h3 a,
h4 a {
    color: inherit;
}

blockquote,
q {
    quotes: none;
}

blockquote {
    background: var(--grey);
    margin: 1.5rem 0;
    padding: 0.5rem 1.5rem;
    overflow: hidden;
    border-left: solid 5px var(--orange);
}

.email,
.tel,
.cim {
    list-style-type: none;
    position: relative;
    line-height: 2;
    padding: 0 0 10px 15px;
}

.email:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    background: url(img/email.png) center center no-repeat;
    left: -35px;
    top: 25%;
    margin-top: -14px;
}

.tel:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    background: url(img/tel.png) center center no-repeat;
    left: -33px;
    top: 25%;
    margin-top: -14px;
}

.cim:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    background: url(img/hely.png) center center no-repeat;
    left: -33px;
    top: 25%;
    margin-top: -7px;
}

.read-more {
    display: inline-block;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--pink)!important;
    border-radius: 30px;
    text-transform: uppercase;

}

.read-more:hover {
    background: var(--active);
    color: #fff !important;
}

#hero .read-more {
    margin-left: 2rem;
}
.doku .border-solid a {
    color: #fff!important;
}
.doku .border-solid a:hover {
    color: var(--text-color);
}
.border-solid a {
    color: inherit;
}

.border-solid a:hover {
    color: var(--pink);
}
.doku .button {
    font-size: 16px;
}

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

.border-image1 img {
    border-radius: 30px 0 0 0;
}
.border-image2 img {
    border-radius: 0 0 30px 0;
}

/*=======hotspot========*/
.hotspot-title, .entry-content .hotspot-title {
    margin-top: 0;
    padding-top: 0;
    text-align: left!important;
    font-size: 1.4rem;
}


/*=======home========*/

.lista-elem {
    margin: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    border-left: solid 10px var(--blue);
}

.lista-elem ul {
    list-style-type: none;
    margin: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    border-left: solid 10px var(--blue);
}

.lista-elem li {
    list-style-type: none !important;
    margin-bottom: 1rem !important;
}

.home section {
    padding: 6vw 0;
}

.page-title {
    background-image: url(img/page-titlebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;

    text-align: center;
}

#breadcrumb {
    padding: 1rem;
    /*background: #F6F8FA;*/
    margin-bottom: 2rem;
}

.border-text {
    padding: 1rem;
    color: var(--text) !important;
    box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.9),
        0 1px 20px rgba(0, 0, 0, 0.2);
    background: radial-gradient(farthest-corner at 40px 40px,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6);
    margin: 1rem 0 2rem 0;
    border-radius: 0 0 50px 0;
}

.border-solid {
    border: double 5px #b0b0af;
    padding: 1rem 1rem 2rem 1rem;
    border-radius: 0 0 50px 0;
}

.image-radius img {
    border-radius: 50px 0 50px 0;
}

#services .border-solid {
    min-height: 30rem;
}

#services p {
    margin-bottom: 2rem;
}

main {
    padding-bottom: 2rem;
}

/*=======Hero========*/
#hero {
    padding: 3vw 0 6vw 0 !important;
}

#hero {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.vertical-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    padding: 1rem 0;
   
}



/*=======How========*/


.how .border-image {
    margin-right: 2rem;
}

/*=======Rólunk========*/
:where(.wp-block-columns) {
    margin-bottom: 0 !important;
}


.about-box:hover {
    color: var(--text) !important;
    box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.9),
        0 1px 20px rgba(0, 0, 0, 0.2);
    background: radial-gradient(farthest-corner at 40px 40px,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6);
    transition: var(--tran-03);
}

.box-text {
    margin-bottom: 4rem;
}

.contact-box {
    position: relative;
    text-align: center;
    /* Középre igazítás vízszintesen */
}

.contact-box .button-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Középre igazítás vízszintesen */
}

.tevekenysegunk a {
    color: var(--active);
}

.tevekenysegunk a:hover {
    color: var(--blue);
}

/*=======Szövetségünkről=======*/
.history {
    margin-bottom: 3rem;
}

.history h2 {
    margin: 3rem 0;
}

.szovetseg-bg {
    background-image: url(img/section3-bg.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.szovetseg2-bg {
    background-image: url(img/section3-bg.png);
    background-position: top left;
    background-repeat: no-repeat;
}

.timeline {
    margin: 0px;
    padding: 2rem 0;
    position: relative;
    background-image: url(img/hero-bg.png);
}

.timeline li {
    position: relative;
    list-style-type: none;
    padding: 0px 0 60px 0;
}

.timeline li:nth-child(odd) {
    margin-right: 50%;
    padding-right: 80px;
}

.timeline li:nth-child(even) {
    margin-left: 50%;
    padding-left: 80px;
}

.time-dot {
    background-size: 55px auto;

    width: 120px;
    height: 120px;
    line-height: 120px;
    position: absolute;
    top: 0;
    font-size: 20px;
    text-align: center;

    display: block;
    font-weight: 600;
    text-align: center;
}

.timeline li:nth-child(odd) .time-dot {
    right: -140px;
}

.timeline li:nth-child(even) .time-dot {
    left: -170px;
}

.timeline li:nth-child(odd):before {
    top: 0px;
    right: -1px;
    content: "";
    width: 2px;
    height: 100%;
    background: #ddd;
    display: block;
    position: absolute;
}

.timeline li:nth-child(even):before {
    top: 0px;
    left: -1px;
    content: "";
    width: 2px;
    height: 100%;
    background: #ddd;
    display: block;
    position: absolute;
}

.time-content p {
    line-height: 1.4;
    margin: 0 !important;
    padding: 5px 0 5px 0;
}

.timeline li:nth-child(odd) .time-content {
    text-align: right;
}

.time-content p:last-of-type {
    border-bottom: none !important;
}

.hexa {
    display: flex;
    --s: 145px;
    /* size  */
    --m: 4px;
    /* margin */
    --f: calc(1.732 * var(--s) + 4 * var(--m) - 1px);
}

.hexa-box {
    font-size: 0;
    /*disable white space between inline block element */
}

.hexa-box div {
    width: var(--s);
    margin: var(--m);
    padding: 0.5rem 0;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    background: var(--lightblue);
    color: #005c8b;
}

/*=======Elnökség========*/

.elnokseg {
    background-image: url(img/hero-bg.png);
}

.elnokseg .contact-box {
    background: #fff;
}

.tagok h3 {
    margin: 0.5rem 0;
}

.tagok p {
    margin: 0.5rem 0;
}

.tagok .contact-box {
    border: 1px solid #c9f4f3;
}

/*=======Blog========*/
.paper-bg {
    background-image: url(img/paper-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(-5deg);
    }
.paper-bg p {
    padding: 2rem;
    font-family: "Caveat", cursive;
  font-weight: 700;
  font-style: normal;
    font-size: 1.4rem;
    color: var(--text);
    }
.wrapper {
    position: relative;
    display: inline-block;
}

.wrapper img {
    display: block;
}

.wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -5%;
    background-image: url('img/kep-ragaszto.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 188px; 
    height: 94px; 
    z-index: 1;
}
.wrapper2 {
    position: relative;
    display: inline-block;
}

.wrapper2 img {
    display: block;
}

.wrapper2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    background-image: url('img/kep-ragaszto2.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 188px; 
    height: 94px; 
    z-index: 1;
}

.blog .border-solid {
    min-height: 32rem;
}


.single-rendezveny .post-tags,
.single-hir .post-tags {
    border-bottom: none;
    padding-bottom: 0;
}
.single-hir .post-cimkek {
      padding-top: 0;
}


.line {
    position: absolute;
    top: 62px;
    left: 17px;
    width: 90px;
    height: 5px;
    background: var(--active);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.post-meta {
    display: flex;
}

.post-meta li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-right: 1rem;
}

.post-meta li svg {
    width: 1rem;
    height: 1rem;
    vertical-align: baseline;
    margin-top: 0.25rem;
}

.post-meta li path,
.post-meta li polygon {
    fill: var(--pink);
}

.post-tags {
    border-bottom: solid 2px var(--text);
    padding-bottom: 1rem;
}

.post-tags a,
.wp-block-tag-cloud a {
    display: inline-block;
    background: var(--active);
    color: #fff;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem 0.25rem 0;
}

.post-tags a:hover {
    background: var(--orange);
    color: #fff;
}
.post-cimkek {
        padding-top: 1rem;
}

.post-cimkek a,
.wp-block-tag-cloud a {
    display: inline-block;
    background: var(--grey);
    color: var(--text);
    font-size: 0.6rem !important;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem 0.25rem 0;
}

.post-cimkek a:hover {
    background: var(--active);
    color: #fff;
}

#related-post img {
    margin-bottom: 1rem;
}

#author {
    display: flex;
}

#author div:first-of-type {
    flex-basis: 8rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.avatar {
    width: 6.5rem;
    height: auto;
}

.comment-body {
    border-top: solid 2px var(--extralight);
    padding: 1rem 0;
    margin: 1rem 0;
}

.comment-body p,
.comment-body reply {
    padding-left: 2rem;
}

.comment-author,
.comment-meta {
    display: inline-block;
    margin-right: 1rem;
}

.comment-list {}

.comment-list li {}

.comment-list li:before {
    content: none;
}

.comment-list > li {
    padding: 0;
}

.pagination {
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.pagination a,
.pagination span {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    display: block;

    float: left;
}

.pagination .current {
    background: var(--active);
    color: var(--extralight);
    font-weight: bold;
}

aside > div {
    background: var(--extralight);
    padding: 1rem;
    margin-bottom: 1rem;
}

.single .border-solid a {
    color: var(--active);
}

.single .border-solid a:hover {
    color: var(--blue);
}

/*.wp-block-group a {
    color: inherit;


}

.wp-block-group a:hover {
    color: var(--active);


}




/*=======Kapcsolat========*/
.contact-box {
    padding: 1rem;
    border: 1px solid var(--text);
    border-radius: 10px;
}

.contact-maps iframe {
    border: 1px solid var(--text);
    border-radius: 10px;
}

.maps-section {
    background-image: url(img/hero-bg.png);
}

.titkarsag .footer-info {
    text-align: center;
}

.titkarsag .footer-info ul li {
    list-style-type: none;
}

.titkarsag p {
    margin: 0;
}

.titkarsag h4 {
    margin: 1rem 0 0 0;
}

/*=======Fiataloknak========*/
.page-template-page-fiatalok .page-title {
    background-image: url(img/mavesz-fiatalok-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-template-page-fiatalok .page-title h1 {
    padding: 1.5rem;
    display: inline-block;
    color: var(--text) !important;
    box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.9),
        0 1px 20px rgba(0, 0, 0, 0.2);
    background: radial-gradient(farthest-corner at 40px 40px,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.page-template-page-fiatalok h3 {
    color: #005c8b;
}

.torj-ki {
    background: #f4f6f5;
}

.palyavalasztas {
    background: rgb(107, 221, 232);
    background: linear-gradient(180deg,
            rgba(107, 221, 232, 1) 0%,
            rgba(59, 141, 159, 1) 50%,
            rgba(220, 93, 43, 1) 88%);
    color: #fff;
}

.vegyipar {
    background: #f5efef;
}

.vegyipar-fontos {
    background: #fcf4e7;
}

.allas {
    background: rgb(108, 157, 165);
    background: linear-gradient(180deg,
            rgba(108, 157, 165, 1) 0%,
            rgba(59, 141, 159, 1) 50%,
            rgba(193, 116, 80, 1) 94%);
    color: #fff;
}

.allas h3 {
    color: #fff !important;
}

.allas ul li {
    font-weight: 500;
}

.tanulj {
    background-image: url(img/hero-bg.png);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

/*=======Partners========*/
#partners {
    background: var(--extralight);
    padding: 3rem 0;
    text-align: center;
}

#partners ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    background: var(--extralight);
}

#partners li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: calc((100% / 4) -2rem);
}

#partners li img {
    filter: grayscale(1);
    opacity: 0.5;
}

/*=======Footer========*/
.constant-contact {
    background: url(img/kapcsolat-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}

.newsletter-box {
    background: url(img/hirlevel-bg.jpg);;
    color: var(--text);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0 4rem 0;
}
.newsletter-box .border-text {
    padding: 1rem 2rem;
}

.newsletter-box .row {
    align-items: center;
}

footer {
    background: var(--blue);
    color: white;
    padding: 2rem 0 2rem 0;
    font-size: 18px;
}

footer .wp-block-image .aligncenter {
    margin-left: 0;
    margin-right: 0;
}

footer ul li::marker {
    color: var(--pink) !important;
}

footer h3 {
   font-family: "Rowdies", sans-serif;
font-weight: 700;
font-style: normal;
    color: var(--orange);
}

#footer-info ul {
    padding-left: 0.5rem;
}

.aligncenter size-full is-resized #top-social ul li:first-of-type {
    margin-left: 0 !important;
}

.copyright {
    background: var(--blue);
    color: white;
    text-align: center;
    font-size: smaller;
    padding: 0 0 0.75rem 0;
}

.copyright .content-box {
    border-top: 1px solid var(--orange);
}

#gotop {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background: var(--active);
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
}

#gotop svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

#gotop svg path {
    fill: #fff;
}

/*=======Accordion========*/

.accordion {
    margin: 0 0 2rem 0;
    clear: both;
}

.accordion .accordion-content {
    display: none;
}

.accordion .accordion-title h2,
.accordion .accordion-title h3,
.accordion .accordion-title h4 {
    margin: 0;
}

.accordion .accordion-title {
    cursor: pointer;
    margin: 0;
    line-height: 1.3;
    border-bottom: solid 1px #ddd;
    color: inherit;
    padding: 0.65rem 0.5rem 0.65rem 2rem;
    position: relative;
}

.accordion .accordion-title:after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: "";
    display: inline-block;
    height: 0.6rem;
    width: 0.6rem;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.3rem;
    transform: rotate(45deg);
    vertical-align: top;
}

.accordion .accordion-title.active,
.accordion .accordion-title:hover {
    color: var(--active);
}

.accordion .active h4 {
    border-bottom: none;
}

.accordion .accordion-title.active:after,
.accordion .accordion-title:hover:after {
    transform: rotate(135deg);
    left: 0.25rem;
    margin-top: -0.35rem;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.accordion .accordion-content {
    margin: 0;
    padding: 1rem 2rem;
    overflow: hidden;
    border-bottom: solid 1px #ddd;
}

.accordion .accordion-content p {
    line-height: 1.4 !important;
}

.accordion .accordion-content p:last-of-type {
    margin: 0 !important;
}

@media only screen and (max-width: 1120px) {
    .contact-box .button-box {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .lista-elem {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

@media only screen and (max-width: 1400px) {
    .contact-maps iframe {
        max-width: 350px;
    }
     .hero-video iframe {
    max-width: 400px;
    height: 253px;
}
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 18px;
    }

    body {
        font-size: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1rem;
    }

    .page-title {
        padding: 1rem 0;
    }
    .hero-video iframe {
    width: 360px;
    height: 253px;
}


    .border-solid {
        padding: 0.75rem;
    }

    .timeline li {
        margin: 0 !important;
        padding: 0 0 20px 20px !important;
    }

    .timeline li:before {
        left: 0px !important;
    }

    .time-dot {
        width: 60px;
        height: 60px;
        line-height: 60px;
        top: -156px;
        left: 8px !important;
    }

    .time-content:before {
        left: -11px;
        transform: rotate(-135deg) !important;
        -webkit-transform: rotate(-135deg) !important;
        -moz-transform: rotate(-135deg) !important;
        -o-transform: rotate(-135deg) !important;
    }

    .timeline li:nth-child(odd) .time-content,
    .timeline li:nth-child(even) .time-content {
        text-align: left;
        margin: 4rem 0;
    }

    .hexa-box div {
        padding: 1rem 0;
    }

    footer {
        padding: 2rem 1rem 1rem 1rem;
    }
}

@media only screen and (max-width: 425px) {
    html {
        font-size: 18px;
    }

    body {
        font-size: 18px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    .tab-box {
        display: block;
        border-bottom: none;
    }

    .tab-content-box {
        margin: 0rem;
    }

    .tab-content-box .border-text {
        max-width: inherit;
    }

    .tab-container {
        padding: 0;
    }
}

#mobile-top {
    display: none;
}

.old {
    display: none;
    padding: 3rem 0;
}

@media only screen and (max-width: 768px) {
    .contact-maps iframe {
        max-width: 300px;
    }
}

/* 2023.09.20  */

/*
#main-menu nav ul li {
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 1.5rem;
    margin-left: 0;
    padding-left: 2rem;
}


#main-menu nav ul li a {
    display: block;
    min-height: 1.5rem;
    min-width: 1.5rem;
}

#main-menu nav ul li a span {
    display: none;
}

#main-menu nav ul li a:hover span {
    display: inline-block;
}

.rolunk {
    background-image: url(img/rolunk.svg);
} */
