/* large Desktops and laptops ----------- */
@media only screen and (min-width: 1225px) and (max-width: 2500px) {
	.container {
		max-width: 1170px
	}
}







/* Desktops and laptops  */
@media only screen and (min-width: 992px) and (max-width: 1224px) {
	.container {
		max-width: 960px;
	}
}








/* TABLETS (portrait and landscape) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.container {
		max-width: 720px
	}
}








/* TABLETS - SMARTPHONES LANDSCAPE (portrait and landscape)  */
@media only screen and (min-width: 481px) and (max-width: 767px) {
	.container {
		max-width: 640px;
	}
}








/* Smartphones (portrait and landscape)  */
@media only screen and (min-width: 320px) and (max-width: 480px) {
	.container {
		max-width: 360px;
	}

	.flex-wrap {
		flex-wrap: wrap;
	}

	.column {
		flex-direction: column;
	}

	.full {
		width: 100% !important;
	}
	.bgNone{
		display: block;
	}
	.menu {
		position: fixed;
		right: 0;
		top: 0;
		background: #fff;
		width: 100%;
		height: 100%;
		z-index: 99999;
		transform: rotateY(90deg);
		transform-origin: right;
		transition: 0.5s all ease;
	}

	.menu.active {
		transform: rotateY(0);
	}

	.icon-menu {
		font-size: 28px;
		display: block;
		margin-left: 15px;
	}

	.icon-close2 {
		position: absolute;
		top: 10px;
		right: 10px;
		font-size: 22px;
		z-index: 99999;
		display: block;
	}

	.smdnone {
		display: none !important;
	}

	.header .logoMenu .logo {
		width: 30%;
	}


	.logoMenu .menu ul {
		flex-direction: column;
	}

	.logoMenu .menu ul li {
		margin: 5px 10px;
	}
	.hero{
		height: 50vh;
		display: grid;
		place-content: center;
		background: linear-gradient(#0000006e, #0000006e), url("../img/bg.jpg") no-repeat top center / cover;
	}

	.hero h5 {
		font-size: 13px;
		letter-spacing: 2px;
	}

	.hero h1 {
		color: #fff;
		font-size: 18px;
		margin: 10px;
		font-weight: 600;
		text-align: center;
	}
	.hero p {
		text-align: center;
		line-height: 22px;
		margin-bottom: 15px;
	}

	.hero p a {
		padding: 5px 20px;
		font-size: 13px;
	}

	.hero p.booktaxi {
		text-align: center;
	}

	.hero .box .bgblur {
		padding: 15px 25px;
		display: inline-block;
		border-radius: 10px;
		margin-bottom: 25px;
		text-align: center;
	}

	.aboutUs .bookForm form {
		display: none;
	}

	.cta .left h1{
		font-size: 25px;
	}

	.popup{
		background: #0000008c;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
		z-index: 999999;
		display: grid;
		place-content: center;
		transform: scale(0);
		transition: 0.5s all ease;
		z-index: 999999999999999999999;
		display: flex!important;
		justify-content: center;
		align-items: center;
	}
	.popup.active{
		transition: 0.5s all ease;
		transform: scale(1);
	}
	.popup .icon-close2 {
        color: #fff;
        font-size: 20px;
        background: #f8ae0030;
        border-radius: 50%;
        position: absolute;
        right: 10px;
        top: 10px;
        padding: 8px;
        cursor: pointer;
        display: inline-block;
    }

	.popup .popbookForm {
		top: 0px;
		position: relative;
		width: 360px;

	}
	.popup .popbookForm  form{
		box-shadow: 0 0px 5px #000;
	}

	.aboutUs {
		padding: 50px 0 50px 0;
		margin-top: 0px;
	}

	.aboutUs .right h2 {
		font-size: 25px;
	}
	.cta {
		background: #f8ae00;
		padding: 50px 0;
		position: relative;
	}
	.cta .left {
		width: 65%;
		border-right: 1px solid transparent;
		border-bottom: 1px solid #fff;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.Services .allServices .sinServices {
		width: calc(100% - 40px);
	}

	.features .service {
		padding: 20px 7.5%;
		width: calc(100% - 15%);
	}

	.features .service:nth-child(even) {
		margin-top: 0px;
	}

	.features .service {
		margin-bottom: 20px;
	}

	ul.contactDetails li {
		font-size: 14px;
		text-align: left;
		display: block;
	}
	.fSocial input[type="email"] {
		width: calc(100% - 20px);
	}

	.contactUs .details .sin{
		width: calc(100% - 60px);
	}
	.contactUs .getInTouch .left{
		width: calc(100% - 20px);
	}
	.contactUs .getInTouch .right{
		width: calc(100% - 30px);
	}
	.contactUs .getInTouch .right form input[type="text"],
	.contactUs .getInTouch .right form input[type="email"]{
		width: calc(100% - 30px);
	}
}

/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {}