:root {
  --color1: #00aa00;
  --color2: #7b9971;
  --color3: #f3fcf0;
  --color4: #f6edd9;
  --color5: #3f4a3c;
  --color6: #00a6ff;
  --fontsize: 14px;
}

* {
    box-sizing: border-box;
}
@font-face {
  font-family: 'southern';
  src: url('../fonts/SouthernAire.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font: var(--fontsize) Arial, sans-serif;
    background: var(--color3);
}

header {
    width: 100%;
    float: left;
    height: auto;
    padding: 0;
    margin: 0;
}

.top_header {
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 10px 5% 10px 5%;
    display: flex;
    background: var(--color5);
    color: var(--color3);
}

.top_left {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.info {
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
}
.info > span {
    margin: 0 3% 0 0;
}
.top_right {
    width: 30%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.icon_btn {
    display: flex;
    width: 10%;
    text-align: center;
}
.icon_btn a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease-in-out;
}
.icon_btn a:hover {
    color: var(--color6);
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 10;
}
nav {
    width: 100%;
    height: 70px;
    display: flex;
    padding: 0 5% 0 5%;
    background: var(--color3);
    z-index: 10;
}
.logo {
    width: 30%;
    height: 100%;
    display: flex;
}
.logo > img {
    width: auto;
    height: 100%;
}
.menu {
    width: 70%;
    height: 100%;
    display: flex;
}
.menu .mobile_link {
    display: none;
}
.menu .menu_ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    }
.menu_ul li {
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color5);
}

.menu .mobile_link a, .menu li a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease-in-out;
}

.menu .mobile_link a:hover, .menu li a:hover {
    color: var(--color1);
    
}
.slideshow {
    width: 100%;
    height: 400px;
    display: flex;
    background: var(--color3);
}
.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 1}
}
.container {
    width: 100%;
    height: auto;
    float: left;
    padding: 10px 5% 10px 5%;
}
.parallax1 {
	background-image: url("../pics/slides/FB_IMG_1731832426861.jpg");
	width: 100%;
  	height: 100%;
  	background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
}
.parallax1 > .block {
	background-color:rgba(255,255,255,.7);
}
.parallax1 > .block > h1, .parallax1 > .block > .block_list li {
	color: var(--color5) !important;	
}
.container .quote_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px 2% 20px 2%;
    background: var(--color3);
}
.quote_box .textbox {
    width: 30%;
    height: 40px;
    display:  flex;
    padding: 10px 2% 10px 2%;
    margin: 0 2% 10px 0;
    font-family: Arial, sans-serif;
    border: none;
    background: var(--color3);
    outline: solid 1px var(--color5);
    color: var(--color5);
}
.textbox:focus {
    outline-color: var(--color6);
}
.quote_box .submit {
    width: 30%;
    height: 40px;
    background: var(--color6);
    color: var(--color4);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    transition: background .3s ease-in-out;
}
.quote_box .submit:hover {
    background: var(--color5);
}
.quote_box h1 {
    width: 30%;
    height: auto;
    font-size: 1em;
    text-align: center;
    color: var(--color6);
}
.container .block {
    width: 100%;
    height: auto;
    float: left;
    margin: 30px 0 30px 0;
}
.block .map {
    width: 100%;
    height: 400px;
    float: left;
    background: var(--color1);
    /*z-index: -1; */
}
.block h1 {
    font-size: 3em;
    color: var(--color5);
    text-align: center;
}
.block h2 {
    font-size: 2em;
    color: var(--color1);
    text-align: center;
}
.fancy_text {
    font-family: 'southern';
    font-size: 4em !important;
    font-weight: normal;
    line-height: 0em;
    color: var(--color1) !important;
}
.block p {
    font-size: 1.1em;
    line-height: 1.5em;
    color: var(--color5);
}
.block .block_list {
    width: 100%;
    height: auto;
}
.block_list li {
    width: 100%;
    height: auto;
    padding: 5px 0 5px 0;
    color: var(--color5);
}
.block .gallery_block {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.gallery_block .gallery_thumb {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    border: solid 1px var(--color5);
    padding: 10px 1% 10px 1%;
    margin: 10px 0 0 0;
    background: var(--color4);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.gallery_block .gallery_thumb a {
    text-decoration: none;
}
.gallery_thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.gallery_thumb h1 {
    width: 100%;
    height: auto;
    font-size: 1.5em;
}
.block .block_60 {
    width: 60%;
    height: auto;
    float: left;
}
.block_60 .contact_form {
    width: 90%;
    height: auto;
    border: solid 1px var(--color5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: var(--color4);
}
.contact_form .textbox1 {
    width: 45%;
    height: auto;
    display: flex;
    padding: 10px 2% 10px 2%;
    margin: 10px 0 10px 0;
    border: solid 1px var(--color5);
    background: var(--color3);
}
.contact_form .textbox2 {
    width: 95%;
    height: 100px;
    display: flex;
    padding: 10px 2% 10px 2%;
    margin: 10px 0 10px 0;
    border: solid 1px var(--color5);
    background: var(--color3);
    font-family: Arial, sans-serif;
    resize: none;
}
.contact_form .captcha {
    width: 40%;
    height: auto;
    display: flex;
    border: solid 1px var(--color5);
    background: var(--color3);
    padding: 5px 2% 5px 2%;
     margin: 10px 0 10px 0;
} 
.captcha .textbox3 {
    width: 75%;
    height: auto;
    display: flex;
    border: none;
    background: var(--color3);
}
.captcha img {
    width: 25%;
    height: auto;
}
.textbox1:focus, .textbox2:focus, .captcha .textbox3:focus {
    outline: none;
}
.contact_form .submit_btn {
    width: 48%;
    height: auto;
    display: block;
    border: none;
    font-weight: bold;
    background: var(--color6);
    color: var(--color3);
    padding: 18px 0 18px 0;
    cursor: pointer;
     margin: 10px 0 10px 0;
}
.block .block_40 {
    width: 40%;
    height: auto;
    float: left;
}
.block_40 h2 {
    width: 100%;
    height: auto;
    font-size: 1.5em;
}
.block .package_list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.package_list .package_box {
    width: 30%;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    margin: 0 0 50px 0;
}
.package_box img {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
    display: block;
	object-fit: cover;
}
.package_box .box1 {
    width: 100%;
    height: auto;
    background: var(--color1);
    color: var(--color3);
    font-size: 1.5em;
    padding: 10px 5% 10px 5%;
    display: flex;
    justify-content: space-around;
}
.package_box .box2 {
    width: 100%;
    height: auto;
    padding: 5px 5% 5px 5%;
}
.box2 h1 {
    width: 100%;
    height: auto;
    font-size: 1.3em;
    line-height: 1.3em;
    margin: 5px 0 0 0;
    color: var(--color5);
}
.box2 p {
    width: 100%;
    height: auto;
    font-size: 1em;
    line-height: 1.3em;
    color: var(--color5);
}
.package_box .box3 {
    width: 100%;
    height: auto;
    padding: 10px 0 10px 0;
    text-align: center;
    background: var(--color1);
    color: var(--color3);
    border-radius: 0 0 10px 10px;
    font-weight: bold;
    font-size: 1.2em;
}
.box3 a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease-in-out;
}
.box3 a:hover {
    color: var(--color5);
}
.block .load_packages {
    width: 30%;
    height: auto;
    background: var(--color1);
    color: var(--color3);
    text-align: center;
    border-radius: 30px;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    margin: 0px auto;
    text-decoration: none;
}
.block details {
    width: 100%;
    height: auto;
    background: var(--color3);
    padding: 10px 2% 10px 2%;
    margin: 10px 0 10px 0;
    border: solid 1px var(--color5);
    border-radius: 10px;
}
.block details > summary {
    width: 100%;
    height: auto;
    color: var(--color5);
}
.block details > p {
    width: 100%;
    height: auto;
    padding: 5px 2% 5px 2%;
    border-radius: 10px;
}
.block .package_block {
    width: 100%;
    height: 250px;
    border: solid 1px var(--color5);
    border-radius: 10px;
    float: left;
    margin: 10px 0 10px 0;
}
.package_block img {
    width: 25%;
    height: 100%;
    display: block;
    border-radius: 10px 0 0 10px;
    float: left;
    margin: 0 2% 0 0;
    object-fit: cover;
}
.package_block .package_info {
    width: 60%;
    height: auto;
    float: left;
}
.package_info h1 {
    width: 100%;
    height: auto;
    font-size: 1.5em;
    text-align: left;
    color: var(--color6);
}
.package_row {
    width: 100%;
    height: auto;
    display: flex;
}
.package_row h2 {
    width: 20%;
    height: auto;
    font-size: 1em;
    text-align: left;
    color: var(--color5);
    display: flex;
}
.package_row p {
    width: 80%;
    height: auto;
    font-size: 1em;
    text-align: left;
    color: var(--color5);
    display: flex;
}
.package_row2 {
    width: 40%;
    height: auto;
    font-size: 2em;
    display: flex;
    justify-content: space-between;
}
.package_row2 span {
    cursor: pointer;
    transition: color .3s ease-in-out;
}
.package_row2 span:hover {
    color: var(--color1);
}
.package_row3 {
    width: 10%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column;
}
.package_row3 h3 {
    width: 100%;
    height: auto;
    font-size: 1.5em;
    color: var(--color6);
}
.package_row3 .button {
    width: 100%;
    height: auto;
    font-size: 1.2em;
    color: var(--color4);
    background: var(--color1);
    border-radius: 5px;
    padding: 5px 0 5px 0;
    text-align: center;
    text-decoration: none;
}
.block .package_heading {
    width: 100%;
    height: 400px;
    background: var(--color4);
    border: solid 1px var(--color5);
    padding: 10px 1% 10px 1%;
    display: flex;
}
.package_heading .slidelist {
    width: 60%;
    height: 100%;
   display: flex;
}
.slidelist img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.package_heading .book_form {
    width: 40%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
     justify-content: space-between;
     align-items: flex-start;
    padding: 0 0 0 1%;
}
.book_form h2 {
    width: 100%;
    height: auto;
    font-size: 1.1em;
    text-align: center;
    color: var(--color6);
    display: block;
    padding: 0;
}
.book_form .textbox1 {
    width: 48%;
    height: auto;
    display: flex;
    padding: 10px 5% 10px 5%;
    background: var(--color3);
    border: solid 1px var(--color5);
}
.book_form .textbox2 {
    width: 100%;
    height: 100px;
    display: flex;
    padding: 10px 5% 10px 5%;
    background: var(--color3);
    border: solid 1px var(--color5);
     resize: none;
}
.book_form .captcha {
    width: 48%;
    height: auto;
    display: flex;
    border: solid 1px var(--color5);
    background: var(--color3);
    padding: 10px 5% 10px 5%;
} 
.captcha .textbox3 {
    width: 65%;
    height: auto;
    display: flex;
    border: none;
    background: var(--color3);
}
.captcha img {
    width: 35%;
    height: auto;
}
.textbox1:focus, .textbox2:focus, .captcha .textbox3:focus {
    outline: none;
}
.book_form .book_btn {
    width: 48%;
    height: auto;
    display: block;
    border: none;
    font-weight: bold;
    background: var(--color6);
    color: var(--color3);
    padding: 18px 5% 18px 5%;
    cursor: pointer;
}
.container .block2 {
    width: 100%;
    height: auto;
    float: left;
    margin: 30px 0 30px 0;
    padding: 10px 2% 10px 2%;
    background: var(--color4);
}
.block2 h1 {
    width: 100%;
    height:auto;
    font-size: 2em;
}
.block2 h2 {
    width: 100%;
    height:auto;
    font-size: 1.3em;
    background: var(--color5);
    color: var(--color3);
    padding: 10px 2% 10px 2%;
}
.block2 p {
    width: 100%;
    height: auto;
    font-size: 1em;
    line-height: 1.5em;
    padding: 0 0 0 2%;
}
.block2 .block_ul {
    width: 100%;
    height: auto;
    list-style: none;
    padding: 0 0 0 2%;
    margin: 0;
}
.block_ul li {
    width: 100%;
    height: auto;
    padding: 0 0 10px 0;
    line-height: 1.5em;
}
.block_ul li:before {
    font-family: 'sundarban';
    content: '\e909';
    font-size: 1.5em;
    padding-right: 1%;
    color: var(--color1);
}
.container .block3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px 0;
}
.block3 .smallbox1 {
    width: 23%;
    height: auto;
    padding: 10px 1% 10px 1%;
    margin: 0 0 20px 0;
    border: solid 1px var(--color5);
    display:flex;
    flex-direction: column;
}
.smallbox1 .imgbox {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
}
.imgbox img {
    width: auto;
    height: 100%;
}
.smallbox1 h1 {
    width: 100%;
    height: auto;
    font-size: 1.5em;
    text-align: center;
    line-height: 1em;
    color: var(--color5);
}
.smallbox1 p {
    width: 100%;
    height: auto;
    font-size: 1.1em;
    text-align: center;
    color: var(--color5);
}
.container .block4 {
    width: 100%;
    height: 300px;
    display: flex;
    margin: 0 0 20px 0;
}
.block4 img {
    width: 30%;
    height: 100%;
	object-fit: cover;
    display: flex;
	
}
.block4 .activities {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 2% 0 2%;
    color: var(--color5);
}
.activities h1 {
    width: 100%;
    height: auto;
    font-size: 2em;
    padding: 0;
}
.activities p {
    width: 100%;
    height: auto;
    font-size: 1.1em;
    line-height: 1.5em;
}
.block4:nth-child(even) {
    flex-direction: row-reverse;
}
.container .block5 {
    width: 100%;
    height: 150px;
    display: flex;
    margin: 0;
	justify-content: space-between;
	border: solid 2px var(--color5);
	padding: 10px 3% 10px 3%;
	background: var(--color4);
}
.block5 .food {
	width: 20%;
	height: 100%;
	display: flex;
}
.food img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    display: flex;
}
.greenblock {
	background: var(--color2);
	margin: 10px 0 20px 0;
}
.container .block6 {
    width: 100%;
    height: auto;
    display: flex;
    margin: 0;
	justify-content: space-between;
	padding: 10px 3% 10px 3%;
}
.block6 .rating {
	width: 20%;
	height: auto;
	display: flex;
	flex-direction: column;
	color: var(--color4);
}
.rating h1 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	font-size: 4em;
	line-height: 0em;
}
.rating h2 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	font-size: 2em;
	line-height: 0em;
}
.rating p {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	font-size: 0.9em;
	line-height: 0.1em;
}

footer {
    width: 100%;
    height: auto;
    float: left;
    background: var(--color5);
    color: var(--color3);
    padding: 40px 5% 40px 5%;
}
.footer_links {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 20px 0;
}
.footer_links > .footer_content {
    width: 23%;
    height: auto;
    margin: 0 0 0 2%;
}
.footer_content > h1 {
    width: 100%;
    height: auto;
    font-size: 1.3em;
    border-bottom: dotted 1px var(--color3);
    padding: 0 0 10px 0;
}
.footer_content > h2 {
    width: 100%;
    height: auto;
    font-size: 1em;
    line-height: 1.7em;
}
.footer_content > h2 a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease-in-out;
}
.footer_content > h2 a:hover {
    color: var(--color6);
}
footer > .copyright {
    width: 50%;
    height: auto;
    float: left;
    font-size: 0.9em;
}
.mobile_call_block {
    display: none;
}
.shadowbox {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    justify-content: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.9);;
    z-index: 20;
    padding: 5%;
}
.shadowbox img {
    width: auto;
    height: 100%;
}

.opacity {
	opacity: 0.5;	
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
	.pc_hide {
		display: none;
	}
    .top_right {
        display: none;
        }
    .top_left {
        width: 100%;
        justify-content: center;
        }
    .logo {
        width: 80%;
    }
    .menu {
        width: 20%;
        position: relative;
        }
    .menu .mobile_link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        font-weight: bold;
    }
    .menu .menu_ul {
        position: absolute;
        width: 500%;
        right: 0;
        top: 50px;
        background: var(--color5);
        color: var(--color3);
        display: none;
        flex-direction: column;
        z-index: 20;
        }
    .menu_ul li {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: left;
        padding: 10px 0 10px 0;
        color: var(--color3);
        }
    .container .quote_box {
        flex-direction: column;
        padding: 10px 10% 10px 10%;
        }
    .quote_box .textbox {
        width: 100%;
        }
    .quote_box .submit {
        width: 100%;
        }
    .quote_box h1 {
        width: 100%;
        }
    .container .fancy_text {
        font-size: 3em;
        line-height: 1em;
        }
    .gallery_block .gallery_thumb {
        width: 100%;
        }
    .block .load_packages {
        width: 90%;
        }
    .package_list .package_box {
        width: 100%;
        }
    .package_list .load_packages {
        width: 100%;
        }
    .package_block .package_info {
        width: 100%;
        padding: 0 5% 0 5%;
        }
    .block .package_block {
        height: 550px;
        border-radius: 0px;
        }
    .package_block img {
        width: 100%;
        height: 250px;
        border-radius: 0px;
        }
    .package_row h2 {
        width: 30%;
        margin: 5px 0 5px 0;
        font-size: 1em;
        }
    .package_row p {
        width: 70%;
        margin: 5px 0 5px 0;
        }
    .package_row2 {
        width: 100%;
        }
    .package_row3 {
        width: 100%;
        padding: 0 0 10px 0;
        }
    .package_row3 h3 {
        width: 70%;
        }
    .package_row3 .button {
        width: 50%;
        }
    .package_heading {
        height: auto !important;
        flex-direction: column;
        }
    .package_heading img {
        width: 100%;
        }
    .package_heading .book_form {
        width: 100%;
        padding: 0;
        }
    .block .map {
        height: 200px;
        }
    .book_form .textbox1 {
        width: 100%;
        margin: 0 0 10px 0;
        }
    .book_form .textbox2 {
        margin: 0 0 10px 0;
        }
    .book_form .captcha {
        width: 100%;
        margin: 0 0 10px 0;
        }
    .captcha .textbox3 {
        width: 65%;
        }
    .captcha img {
        width: 35%;
        }
    .book_form .book_btn {
        width: 100%;
        }
    .block .block_60 {
        width: 100%;
        }
    .block_60 .contact_form {
        width: 100%;
        }
    .block .block_40 {
        width: 100%;
        }
    .container .block4 {
		height: 650px;
        flex-direction: column;
        }
    .block4 img {
        width: 100%;
		height: 250px;
        }
    .block4 .activities {
        width: 100%;
        }
	.container .block5 {
    	height: 300px;
		flex-wrap: wrap;
		}
	.block5 .food {
		width: 48%;
		height: 45%;
		}

	.container .block6 {
    	flex-direction: column;
		}
	.block6 .rating {
		width: 100%;
		}
    .footer_links {
        flex-direction: column;
        }
    .footer_links > .footer_content {
        width: 100%;
        height: auto;
        margin: 0 0 0 2%;
        }
    footer > .copyright {
        width: 100%;
        line-height: 1.5em;
        text-align: center;
        margin: 0 0 10px 0;
        }
    .block3 .smallbox1 {
        width: 100%;
        }
    .mobile_call_block {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        display: flex;
        }
    .mobile_call_block .mobile_call_btn {
        width: 33.3%;
        height: auto;
        font-size: 2em;
        color: var(--color3);
        padding: 10px 0 10px 0;
        text-align: center;
        }
    .mobile_call_block .mobile_call_btn a {
        color: inherit;
        text-decoration: none;
        }
    .bg_call {
        background: var(--color2);
        }
    .bg_whatsapp {
        background: var(--color1);
        }
    .bg_mail {
        background: var(--color6);
        }
}





/*Amiya css*/


  


