/*
Theme Name: Landingpage2022
*/

:root {
	--white: #f9f9f9;
	--blue: #164d7a;; 
	--red: #ee6e73;
	--grey: #f3f3f3;
	--grey2: #e7e7e7;
	--grey3: #2a2a2a;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: black;
	font-size: 15px;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

div, p, input, button, form, span, a, ul, li {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
}

p {
	line-height: 1.6em;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.container {
	width: 1171px;
	margin: 0 auto;
}

.header {
	background: rgba(77,192,254,1);
    background: -moz-linear-gradient(-45deg, rgba(77,192,254,1) 0%, rgba(55,144,217,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(77,192,254,1) 0%, rgba(55,144,217,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(77,192,254,1) 0%, rgba(55,144,217,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(77,192,254,1) 0%, rgba(55,144,217,1) 100%);
    background: linear-gradient(135deg, rgba(77,192,254,1) 0%, rgba(55,144,217,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dc0fe', endColorstr='#3790d9', GradientType=1 );
    padding-top: 56px;
    padding-bottom: 140px;
    color: #fff;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	/*background-color: var(--red);*/
	color: var(--white);
}

.nav-links a {
    color: var(--white);
}

.menu {
	display: flex;
	font-size: 18px;
	font-weight: bold;
	z-index: 1;
}

.menu li {
	padding: 5px 15px;
} 

.menu li a:hover {
	transition: all .3s;
    color: var(--blue);
}

#checkbox_toggle {
    display: none;
}

.hamburger {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.hamburger-line {
	background-color: var(--white);
	display: block;
	height: 2px;
	position: relative;
	width: 24px;
}

.hamburger-line::before,
.hamburger-line::after {
	background-color: var(--white);
	content: '';
	display: block;
	position: absolute;
	transition: all .3s;
    width: 100%;
    height: 100%; 
}

.hamburger-line::before {
    top: 7px;
}

.hamburger-line::after {
    top: -7px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dream {
    width: 554px;
}

.title {
	font-size: 34px;
	font-weight: 700;
}

.title span {
	font-size: 48px;
}

.intro {
    margin-bottom: 43px;
    margin-top: 46px;
    width: 360px;
}

.btn {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	background: #ffd429;
	color: #2e2a1b;
	display: block;
	width: 221px;
	padding: 19px 0;
	text-align: center;
	text-decoration: none;
	transition: all 0.5s ease;
}

.btn:hover {
	background:#e0b920;
}

.travel {
	margin-top: 57px;
}

.future {
	padding-top: 120px;
	padding-bottom: 120px;
}

.section-title {
	font-size: 30px;
	text-align: center;
}

.blocks {
	display: flex;
	justify-content: space-between;
	margin-top: 74px;
}

.block {
	width: 287px;
	background: url('assets/images/icon1.png') no-repeat center top;
	padding-top: 70px;
}

.block-title {
	font-size: 19px;
	text-align: center;
	padding-top: 19px;

}

.block-text {
	margin-top: 7px;
	text-align: center;
}

.block-travels {
	width: 264px;
	background: url('assets/images/icon2.png') no-repeat center top;
}

.block-values {
	width: 297px;
	background: url('assets/images/icon3.png') no-repeat center top;
}

.ticket {
	background: #ecf3f8;
	padding-top: 104px;
	padding-bottom: 102px;	
}

.form {
	/*display: flex;
	flex-direction: column;
	align-items: center;*/
	max-width: 340px;
	margin: 0 auto;
	margin-top: 62px;
}

.input {
	width: 100%;
	border: 1px solid #bbbbbb;
	font-size: 15px;
	font-family: 'Ubuntu', sans-serif;	
	color: #9c9b9f;
	border-radius: 1px;
	height: 46px;
	padding-left: 24px;
	margin-bottom: 15px;
	/*margin: 0 auto 15px;
	display: block;*/		
}

.btn-form {
	width: 100%;
	border: 0;
	cursor: pointer;
    /*margin: 0 auto;*/
}

.footer {
	padding: 62px 0;
    background: #164d7a;
}

.credits {
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin: 0;
}

.red {
	color: red;
}

/*Responsive*/

@media (max-width: 768px) {
	.menu {
		/*display: none;*/
		max-height: 0;
		overflow: hidden;
		position: absolute;
		background-color: var(--grey);
		text-align: center;
		right: 0;
		left: 0;
		margin-top: 20px;
	}

	.menu li a {
		color: var(--grey3);
		display: block;
		padding: 15px;
	}

	.menu li {
		transition: all .5s;
	}

	.menu li:hover {
		background-color: var(--grey2);
	}

	.hamburger {
	    display: block;
	    padding: 20px 0;
	}

    #checkbox_toggle:checked ~ .menu {
        display: block;
        max-height: 100%;
        transition: all .5s;
    }
    
     #checkbox_toggle:checked ~ .hamburger .hamburger-line {
     	background-color: transparent;
     }     
    
     #checkbox_toggle:checked ~ .hamburger .hamburger-line::before {
        transform: rotate(-45deg);
        top: 0; 
     }

     #checkbox_toggle:checked ~ .hamburger .hamburger-line::after {
        transform: rotate(45deg);
        top: 0; 
     }
}

/* 992px - 1200px*/
@media screen and (max-width: 1200px) {
	.container {
		width: 960px;
	}
	p {
		width: auto;
	}
}

/* 768px - 992px */
@media screen and (max-width: 992px) {
	.container {
		width: 720px;
	}
	.wrapper {
		flex-direction: column;
	}
	.dream {
		width: 100%;
	}
	.intro {
		width: auto;
	}
	.travel {
		display: block;
		width: 641px;
        margin: 57px auto 0;
	}
	.blocks {
		flex-direction: column;		
	}
	.block {
		width: auto;
		margin-bottom: 30px;
	}
}

/* 576px - 768px */
@media screen and (max-width: 768px) {
	.container {
		width: 540px;
	}
	.travel {
		width: 100%;
	}
}

/* 0 - 576px */
@media screen and (max-width: 576px) {
	.container {
		width: 90%;
	}
}