/* Modern CSS Reset */
/* === HARD RESET CSS === */

/* Reset all margins, paddings, borders */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* Remove default font styling */
html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    background: #fff;
    color: #212121;
    font-family: "Prompt", sans-serif;
}

body.page-template-about {
    background: #F5F5F5;
}

/* Remove all default list styles */
ol,
ul {
    list-style: none;
}

/* Remove quote styles */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

/* Remove default table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
    color: #ff3c00;
}

/* Remove outline and inherit font for form elements */
input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
}

/* Images, media: responsive by default */
img,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Buttons should have pointer */
button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Remove all headings default spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

/* Remove strong/em default styles */
em,
i,
strong,
b {
    font-style: normal;
    font-weight: normal;
}

/* Clear floats (if needed) */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.top-mobile-nav {
    display: none;
}

.primary-menu-wrapper .right-menu {
    display: none;
}

.mobile-buttons-holder {
    display: none;
}

li.button a,
a.button {
    background: #FF3C00;
    box-shadow: 0px 2px 4px #00000033;
    opacity: 1;
    color: #FFFFFF;
    opacity: 1;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    padding: 10px 35px;
    display: inline-block;
}

li.button a:hover,
a.button:hover {
    opacity: 0.8;
}


.button.blue {
    background: #007DFF;
    display: inline-block;
}

.button.blue:hover {
    opacity: 0.8;
}

.button.white {
    background: #fff;
    color: #FF3C00;
}

#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    left: 0;
    z-index: 9;
}

#site-header.scroll {
	background: rgba(0,0,0,0.5);
}


.header-inner.section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-inner.section-inner .primary-menu-wrapper ul {
    display: flex;
    align-items: center;
}

.header-inner.section-inner .primary-menu-wrapper ul li {
    margin: 0 15px;
}

.header-inner.section-inner .primary-menu-wrapper ul li a {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    opacity: 0.7;
    font-weight: 700;
}

.header-inner.section-inner .primary-menu-wrapper ul li a:hover {
    opacity: 1;
}

.hero {
    position: relative;
    height: 100vh;
}

.hero .hero-mark {
    width: 40px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    /* važno da se ne vidi višak */
}

.hero .hero-mark::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background-color: #ffffff;
    animation: dropLine 3s ease-in-out infinite;
}

/* Animacija */
@keyframes dropLine {
    10% {
        height: 0;
        top: 0px;
        opacity: 0;
    }

    30% {
        height: 10px;
        opacity: 1;
    }

    60% {
        top: 40px;
        /* 60% od 75px visine roditelja */
        height: 1px;
        opacity: 0;
    }
}

.hero .background-image {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover !important;
}

.page-template-about .hero .background-image {
	background-position: top 50% center!important;
}

.hero img {
    width: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}

.hero-content h1 {
    font-size: 90px;
    line-height: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
}

.hero-content h3 {
    color: #FF3C00;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 10px;
}

.hero-content p {
    margin-bottom: 50px;
}

.hero-content p strong {
    font-weight: 700;
}

.hero-content a.button {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 94px;
    position: relative;
    background: transparent;
    box-shadow: none;
}

.hero-content a.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff3c00;
    z-index: -1;
    transition: transform 0.3s ease;
}

.hero-content a.button:hover {
    opacity: 1;
}

.hero-content a.button:hover::before {
    transform: skew(-20deg);
}

.hero .button-holder {
    position: fixed;
    bottom: 0;
    right: 0;
	z-index: 9999;
}

.about {
    background: #F5F5F5;
}

.about .hero {
    max-height: 70vh;
}

.page-template-about .hero .background-image {
	background-position: top 45% center!important;
}

.about .hero .hero-text h1 {
    background-color: #FF3C00;
    color: #fff;
    font-size: 90px;
    line-height: 108px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    display: inline-block;
    padding: 0 40px 0 30px;
}

.about-content {
    width: 100%;
    position: relative;
}

.about-content-inner {
    max-width: 1360px;
    margin: auto;
    display: block;
    padding: 115px;
    background: #fff;
    margin-top: -115px;
    font-size: 16px;
    line-height: 26px;
}

.about-content-inner p {
    margin-bottom: 30px;
}

.about-content-inner .note {
    border: 1px solid #FF3C00;
    padding: 20px;
    margin: 50px 0;
}

.about-content-inner .note p {
    margin: 0;
}

.about-content-inner .note p strong {
    font-weight: 600;
}

.contact-info {
    display: flex;
}

.contact-info .box p {
    margin-bottom: 0;
}

.contact-info .box.first {
    border-right: 1px solid #F5F5F5;
    padding-right: 50px;
    margin-right: 50px;
}

.contact-info strong {
    font-weight: 600;
}

.contact-info a {
	color: inherit;
}

.contact-info a:hover {
	color: #FF3C00;
}

#site-footer {
    background: #F5F5F5;
}

.footer-bottom {
    width: 100%;
    background: #FF3C00;
    text-align: center;
    color: #fff;
    padding: 47px;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom ul li {
    margin: 0 15px;
    font-style: italic;
    font-weight: 800;
}

.footer-bottom ul li a {
    color: #fff;
}

.footer-top,
.footer-middle {
    max-width: 1360px;
    margin: auto;
    width: 100%;
}

.footer-top {
    padding: 100px 0 50px;
}

.footer-top .logo {
    margin-bottom: 50px;
}

.footer-top .boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-top .boxes ul {
    display: flex;
    align-items: center;
}

.footer-top .boxes .footer-text {
    font-size: 16px;
    line-height: 26px;
}

.footer-top .boxes .footer-text strong {
    font-weight: 700;
    display: block;
}

.footer-top .boxes .box {
    max-width: 555px;
    width: 100%;
}

.footer-middle {
    padding-bottom: 70px;
}

.footer-middle h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.footer-middle .footer-images {
    display: flex;
    align-items: center;
}

.footer-middle .footer-images .footer-image {
    max-width: 35px;
    margin-right: 20px;
}

.boxes-inner h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
}

.boxes-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 95px;
}

.contact {
    width: 100%;
    padding: 100px 0;
}

.section-contact-inner {
    display: flex;
}

.section-contact-right {
    max-width: 50%;
    width: 100%;
    background: #F5F5F5;
}

.section-contact-right-inner {
    padding: 100px 0;
    color: #030101;
    font-size: 18px;
    line-height: 30px;
}

.section-contact-right-inner-content {
	max-width: 670px;
	margin: auto;
	display: block;
}

.section-contact-right-inner h2 {
    font-size: 58px;
    line-height: 68px;
    text-transform: uppercase;
    color: #FF3C00;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 10px;
}

.section-contact-right-inner p {
    margin-bottom: 40px;
}

.section-contact-right-inner li {
    margin-bottom: 20px;
}

.section-contact-right-inner li.accept {
    margin-bottom: 0px;
}

.section-contact-right-inner .wpcf7-not-valid-tip {
    font-size: 12px;
}

.section-contact-right-inner li.spacer {
    margin-bottom: 40px;
}

.section-contact-right-inner li.textarea {
    margin-bottom: 10px;
}

.section-contact-right-inner li p {
    margin-bottom: 0;
}

.section-contact-right-inner .double p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-contact-right-inner .double .wpcf7-form-control-wrap {
    max-width: 48.6%;
    width: 100%;
}

.section-contact-right-inner input {
    background: #FFFFFF;
    border: 1px solid #989898;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #989898;
	appearance: auto;
}

.section-contact-right-inner input::placeholder,
.section-contact-right-inner textarea::placeholder{
	color: #989898;
}

.section-contact-right-inner input[type="checkbox"] {
    width: 16px;
    height: 16px;
    padding: 0;
}

.section-contact-right-inner input[type="submit"] {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 4px #00000033;
    opacity: 1;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: #FF3C00;
    padding: 10px 35px;
    border: none;
    max-width: fit-content;
    font-style: italic;
}

.section-contact-right-inner input[type="submit"]:hover {
    background: #FDF1ED;
}

.section-contact-right-inner .wpcf7-list-item {
    margin: 0;
}

.section-contact-right-inner .wpcf7-list-item label {
    font-size: 14px;
    line-height: 26px;
    display: flex;
    align-items: center;
    color: #212121;
}

.section-contact-right-inner .wpcf7-list-item label span {
    margin-left: 10px;
}

.section-contact-right-inner textarea {
    background: #FFFFFF;
    border: 1px solid #989898;
    padding: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #989898;
    width: 100%;
    height: 110px;
    resize: none;
}

.section-contact-left {
    max-width: 50%;
    width: 100%;
}

.section-contact-left .overlay-section {
    padding: 70px 0;
    background: rgba(255, 60, 0, 0.7)
}

.overlay-section-inner {
	max-width: 690px;
	width: 100%;
	margin: auto;
}

.section-contact-left .overlay-section ul li {
    margin-bottom: 50px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    padding-left: 70px;
    background: url('../images/checkmark.png') no-repeat left top 7px;
}

.section-contact-left .overlay-section ul li:last-child {
    margin-bottom: 0;
}

.section-contact-left .overlay-section ul li h3 {
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    font-size: 34px;
    line-height: 68px;
}

.section-contact-left .button-section {
    display: block;
    padding: 100px 0 100px;
    text-align: left;
	max-width: 690px;
	width: 100%;
	margin: auto;
}

.section-contact-left .button-section {
    padding-left: 70px;
}

.section-contact-left .button {
    display: inline-block;
    margin: auto;
    font-size: 18px;
    line-height: 28px;
    padding: 13px 94px;
    position: relative;
    background: transparent;
    box-shadow: none;
    z-index: 1;
}

.section-contact-left .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: transform 0.3s ease;
}

.section-contact-left .button:hover {
    opacity: 1;
}

.section-contact-left .button:hover::before {
    transform: skew(-20deg);
}

.travel-hack {
    width: 100%;
}

.travel-hack-inner {
    max-width: 1360px;
    margin: auto;
    display: block;
    padding: 100px 0 150px;
    text-align: center;
}

.travel-hack-inner h3 {
    font-size: 58px;
    line-height: 68px;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    margin: 0 auto 20px;
    max-width: 900px;
}

.travel-hack-inner p {
    margin: 0 auto 50px;
    display: block;
    max-width: 740px;
    font-size: 18px;
    line-height: 28px;
}

.travel-hack-inner .middle-content {
    background: #FF3C00;
    color: #fff;
    align-items: center;
    padding: 80px;
    margin-bottom: 30px;
}

.travel-hack-inner .middle-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-hack-inner .middle-content ul li {
    width: 100%;
    max-width: 325px;
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.travel-hack-inner .middle-content ul li:nth-child(2n) {
    margin: 0 56px;
    padding: 0 56px;
    position: relative;
    max-width: 438px;
}

.travel-hack-inner .middle-content ul li:nth-child(2n)::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.travel-hack-inner .middle-content ul li:nth-child(2n)::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.travel-hack-inner .middle-content ul li img {
    display: inline-block;
    margin-bottom: 10px;
}

.travel-hack-inner .bottom-content {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.lost-time {
    width: 100%;
}

.lost-time-inner {
    max-width: 1360px;
    margin: auto;
    display: flex;
    padding-bottom: 65px;
}

.lost-time-inner .lost-time-image {
    width: 100%;
    max-width: 50%;
}

.lost-time-inner .lost-time-content {
    width: 100%;
    max-width: 50%;
    padding-top: 200px;
    font-size: 16px;
    line-height: 26px;
}

.lost-time-inner .lost-time-content .button {
    font-size: 18px;
    line-height: 28px;
    padding: 13px 94px;
    margin-top: 10px;
    position: relative;
    background: transparent;
    box-shadow: none;
}

.lost-time-inner .lost-time-content .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff3c00;
    z-index: -1;
    transition: transform 0.3s ease;
}


.lost-time-inner .lost-time-content .button:hover {
    opacity: 1;
}

.lost-time-inner .lost-time-content .button:hover::before {
    transform: skew(-20deg);
}

.lost-time-inner .lost-time-content .button.blue {
    padding: 13px 79px;
    margin-left: 20px;
}

.lost-time-inner .lost-time-content .button.blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007DFF;
    z-index: -1;
    transition: transform 0.3s ease;
}

.lost-time-inner .lost-time-content .button.blue:hover::before {
    transform: skew(-20deg);
}

.lost-time-inner .lost-time-content h2 {
    font-size: 58px;
    line-height: 68px;
    font-weight: 800;
    font-style: italic;
}

.lost-time-inner .lost-time-content h3 {
    font-size: 34px;
    line-height: 68px;
    font-weight: 800;
    font-style: italic;
    color: #ff3c00;
    margin-bottom: 20px;
}

.lost-time-inner .lost-time-content p {
    margin-bottom: 35px;
}

.lost-time-inner .lost-time-content a {
    display: inline-block;
}

.how-it-works {
    width: 100%;
}

.how-it-works-inner {
    max-width: 1360px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.how-it-works-inner .how-it-works-image {
    width: 100%;
    max-width: 50%;
}

.how-it-works-inner .how-it-works-left {
    width: 100%;
    max-width: 50%;
    font-size: 18px;
    line-height: 28px;
}

.how-it-works-inner .how-it-works-left .button {
    background: #FF3C00;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    font-weight: normal;
    padding: 10px 15px;
}

.how-it-works-inner .how-it-works-left h2 {
    font-size: 58px;
    line-height: 68px;
    font-weight: 800;
    font-style: italic;
}

.how-it-works-inner .how-it-works-left h3 {
    font-size: 34px;
    line-height: 68px;
    font-weight: 800;
    font-style: italic;
    color: #ff3c00;
    margin-bottom: 20px;
}

.how-it-works-inner .how-it-works-left p {
    margin-bottom: 80px;
}

.how-it-works-inner .how-it-works-left a {
    display: inline-block;
}

.how-it-works-inner .how-it-works-left ul {
    position: relative;
}

.how-it-works-inner .how-it-works-left ul::before {
    content: "";
    border-left: 2px dashed #FF3C00;
    position: absolute;
    left: 25px;
    height: 80%;
}

.how-it-works-inner .how-it-works-left ul li {
    padding-left: 115px;
    margin-bottom: 74px;
    position: relative;
}

.how-it-works-inner .how-it-works-left ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
}

.how-it-works-inner .how-it-works-left ul li p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.how-it-works-inner .how-it-works-left ul li h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    padding-top: 6px;
}

.how-it-works-inner .how-it-works-left ul li:first-child::before {
    background: #fff url('../images/bg_one.png') no-repeat top left;
}

.how-it-works-inner .how-it-works-left ul li:nth-child(2n)::before {
    background: #fff url('../images/bg_two.png') no-repeat top left;
}

.how-it-works-inner .how-it-works-left ul li:last-child::before {
    background: #fff url('../images/bg_three.png') no-repeat top left;
}

.how-it-works-inner .how-it-works-left ul li:last-child {
    margin-bottom: 0;
}

.error-404 {
    text-align: center;
    height: 80vh;
    position: relative;
}

.error-404 h1 {
    font-size: 96px;
    margin-bottom: 20px;
    color: #e74c3c;
    padding-top: 25vh;
}

.error-404 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.error-404 p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.footer-menu li::after {
    content: "";
    height: 16px;
    width: 2px;
    background: #212121;
    display: inline-block;
    vertical-align: middle;
    margin: 0 14px;
}

.footer-menu li:last-child::after {
    display: none;
}

.footer-menu li a {
    color: #ff3c00;
	text-decoration: underline;
}

#site-footer {
	position: relative;
}

.footer-bottom-icon {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 41px;
	height: 41px;
}

@media screen and (max-width: 1290px) {
	.footer-top, .footer-middle {
		max-width: 95%;
	}
	
	.footer-top .boxes .box {
		max-width: 45%;
	}
	
	.overlay-section-inner {
		width: 90%;
	}
	
	.section-contact-right-inner-content {
		width: 90%;
	}
	
	.how-it-works-inner {
		max-width: 95%;
	}
	
	.travel-hack-inner {
		max-width: 95%;
	}
	
	.lost-time-inner {
		max-width: 95%;
	}
	
	.lost-time-inner .lost-time-content .button {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		max-width: 60%;
		text-align: center;
	}
	
	.lost-time-inner .lost-time-content .button.blue {
		max-width: 35%;
		margin-left: 5%;
		padding-left: 0;
		padding-right: 0;
	}
	
	.footer-top .boxes ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top .boxes ul li {
        margin-bottom: 10px;
    }

    .footer-menu li::after {
        display: none;
    }
	
	.section-contact-left .overlay-section ul li {
        background-size: 30px 30px;
        padding-left: 45px;
        background-position: left top 0;
    }

    .section-contact-left .overlay-section ul li h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .section-contact-left .overlay-section ul li p {
        font-size: 16px;
        line-height: 26px;
    }
	
	.how-it-works-inner .how-it-works-left h3,
	.lost-time-inner .lost-time-content h3{
		line-height: 46px;
	}
	
	.about-content-inner {
        max-width: 94vw;
        margin: -100px auto 0;
        padding: 50px 20px;
    }
}

@media screen and (max-width: 890px) {
	.footer-top, .footer-middle {
		max-width: 100%;
	}
	
	.footer-top .boxes .box {
		max-width: 45%;
	}
	
	.overlay-section-inner {
		width: 90%;
	}
	
	.section-contact-right-inner-content {
		width: 100%;
	}
	
	.how-it-works-inner {
		max-width: 100%;
	}
	
	.travel-hack-inner {
		max-width: 100%;
	}
	
	.lost-time-inner {
		max-width: 100%;
	}
	
	.lost-time-inner .lost-time-content .button {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	
	.lost-time-inner .lost-time-content .button.blue {
		max-width: 100%;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}
	
    .mobile-buttons-holder {
        display: block;
    }

    .mobile-buttons-holder .mobile-opener span {
        font-size: 10px;
        color: #fff;
        line-height: 10px;
    }

    .top-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.1);
    }

    .primary-menu-wrapper {
        display: none;
    }

    .primary-menu-wrapper .right-menu {
        display: block;
        position: absolute;
        bottom: 6%;
        max-width: 80vw;
        margin: auto;
        left: 0;
        right: 0;
        text-align: center;
    }

    .primary-menu-wrapper .right-menu li.button a {
        background: #fff;
        color: #FF3C00 !important;
        padding: 13px !important;
    }

    .primary-menu-wrapper .right-menu li .top-mobile-nav {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.1);
    }

    .top-mobile-nav a.logo {
        max-width: 100px;
    }

    .primary-menu-wrapper.active {
        width: 100vw;
        background: #FF3C00;
        position: fixed;
        top: 0;
        right: 0;
        display: block;
        height: 100vh;
    }

    .header-inner.section-inner .primary-menu-wrapper ul {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-inner.section-inner .primary-menu-wrapper ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(33, 33, 33, 0.1);
    }

    .header-inner.section-inner .primary-menu-wrapper ul li a {
        padding: 20px;
        display: block;
        opacity: 1;
        font-size: 16px;
        font-weight: 600;
    }

    .right-navigation {
        display: none;
    }

    .hero .hero-mark {
        display: none;
    }

    .hero-content {
        padding: 0 3vw;
    }

    .hero-content h1 {
        font-size: 39px;
        line-height: 80px;
    }

    .hero-content h3 {
        font-size: 27px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-content p:last-child {
        margin-bottom: 0;
    }

    .hero-content a.button {
        width: 100%;
		padding-left: 0;
		padding-right: 0;
    }

    .lost-time-inner {
        flex-direction: column;
    }

    .lost-time-inner .lost-time-image {
        max-width: 100%;
    }

    .lost-time-inner .lost-time-image img {
        max-width: 65%;
    }

    .lost-time-inner .lost-time-content {
        max-width: 94vw;
        padding-top: 100px;
        margin: auto;
    }

    .lost-time-inner .lost-time-content h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .lost-time-inner .lost-time-content h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .lost-time-inner .lost-time-content p {
        margin-bottom: 30px;
    }

    .lost-time-inner .lost-time-content .button {
        margin: 0;
        width: 100%;
        text-align: center;
		padding-left: 0;
		padding-right: 0;
    }

    .lost-time-inner .lost-time-content .button.blue {
        margin: 10px 0 0;
    }

    .travel-hack-inner {
        max-width: 94vw;
    }

    .travel-hack-inner h3 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
        width: 74%;
    }

    .travel-hack-inner p {
        font-size: 16px;
        line-height: 26px;
    }

    .travel-hack-inner .middle-content {
        padding: 50px 5vw;
    }

    .travel-hack-inner .middle-content ul {
        flex-direction: column;
    }

    .travel-hack-inner .middle-content ul li {
        font-size: 22px;
        line-height: 26px;
    }

    .travel-hack-inner .middle-content ul li:nth-child(2n) {
        margin: 80px 0;
        max-width: 100%;
        padding: 80px 0;
        border: none;
    }

    .travel-hack-inner .middle-content ul li:nth-child(2n)::before,
    .travel-hack-inner .middle-content ul li:nth-child(2n)::after {
        width: 100%;
        height: 1px;
    }

    .travel-hack-inner .middle-content ul li:nth-child(2n)::after {
        bottom: 0;
        top: inherit;
    }

    .how-it-works-inner {
        flex-direction: column;
    }

    .how-it-works-inner .how-it-works-left {
        max-width: 100%;
        padding: 0 3vw;
        order: 2;
    }

    .how-it-works-inner .how-it-works-right {
        max-width: 100%;
        order: 1;
        margin-bottom: 100px;
    }

    .how-it-works-inner .how-it-works-left .button {
        margin-left: -3vw;
    }

    .how-it-works-inner .how-it-works-left h2 {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .how-it-works-inner .how-it-works-left h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .how-it-works-inner .how-it-works-left p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 50px;
    }

    .how-it-works-inner .how-it-works-left ul li {
        padding-left: 90px;
    }

    .how-it-works-inner .how-it-works-left ul li::before {
        width: 43px;
        height: 43px;
        background-size: cover !important;
    }

    .how-it-works-inner .how-it-works-right img {
        max-width: 65%;
    }

    .section-contact-inner {
        flex-direction: column;
    }

    .section-contact-left,
    .section-contact-right {
        max-width: 100%;
    }

    .section-contact-left .overlay-section {
        padding: 50px 0;
    }

    .section-contact-left .overlay-section ul li {
        background-size: 30px 30px;
        padding-left: 45px;
        background-position: left top 0;
    }

    .section-contact-left .overlay-section ul li h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .section-contact-left .overlay-section ul li p {
        font-size: 16px;
        line-height: 26px;
    }

    .section-contact-right-inner {
        padding: 50px 4vw;
    }

    .section-contact-right-inner h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .section-contact-right-inner p {
        font-size: 16px;
        line-height: 26px;
    }

    .section-contact-right-inner .double p {
        flex-direction: column;
    }

    .section-contact-right-inner .double .wpcf7-form-control-wrap {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .section-contact-right-inner .double .wpcf7-form-control-wrap:last-child {
        margin-bottom: 0;
    }

    .section-contact-left .button-section .button {
        display: none;
    }

    .about .hero .hero-text h1 {
        font-size: 45px;
    }

    .about-content-inner {
        max-width: 94vw;
        margin: -100px auto 0;
        padding: 50px 20px;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-info .box.first {
        border: none;
        margin: 0 0 25px;
        padding: 0 0 25px;
        border-bottom: 1px solid #F5F5F5;
    }

    .footer-top {
        max-width: 90%;
        margin: auto;
        padding-top: 30px;
    }

    .footer-top .boxes {
        flex-direction: column;
    }

    .footer-top .boxes .box {
        padding-top: 50px;
		max-width: 100%;
    }

    .footer-top .boxes ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top .boxes ul li {
        margin-bottom: 10px;
    }

    .footer-menu li::after {
        display: none;
    }

    .footer-middle {
        margin: auto;
        max-width: 90%;
        padding-bottom: 80px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 30px 0 73px;
    }
	
	.how-it-works-inner .how-it-works-left ul::before {
		left: 20px;
	}
}

@media screen and (max-width: 400px)  {
	.footer-bottom ul li {
		margin: 0 7px;
	}
}