html {
    scroll-behavior: smooth;
}
body {
    font-weight: 500;
    font-family: 'El Messiri', sans-serif;
}
button, button:hover, button:focus {
    outline: none;
}
a, a:hover, a:focus {
    text-decoration: none;
}
p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 28px;
}

/* custom heading */
.customhead_title {
    font-size: 36px;
    text-transform: uppercase;
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.customhead_title:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    margin: 16px;
}
.customhead_title.lighttitle {
    color: #fff;
}
.customhead_title.darktitle:after {
    background: #4f76af;
}
.customhead_title.lighttitle:after {
    background: #fff;
}

/* custom button */
.custmbttn {
    background-color: #4f76af;
    font-size: 16px;
    padding: 10px 30px 8px;
    border-radius: 4px;
    color: #fff;
    text-transform: capitalize;
}
.custmbttn:after {
    background: #333;
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
    transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
.custmbttn:link, .custmbttn:visited {
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1;
}
.custmbttn:link:after, .custmbttn:visited:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}
.custmbttn:link:hover, .custmbttn:visited:hover {
    color: #FFF;
    text-shadow: none;
}
.custmbttn:link:hover:after, .custmbttn:visited:hover:after {
    height: 450%;
}


.headerarea {
    padding: 10px 0px;
    background-color: #000;
    position: fixed;
    width: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
}
.navbar-brand img {
    width: 200px;
}
.headerarea .navbar-nav ul {
	padding: 0;
	margin: 0;
}
.headerarea .navbar-nav ul li {
	display: inline-block;
    padding: 0px 3px;
}
.headerarea .navbar-nav a.nav-link {
    text-transform: capitalize;
    font-size: 18px;
    position: relative;
    color: #fff;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}
.headerarea .navbar-nav a.nav-link:hover, .headerarea .navbar-nav a.nav-link:focus {
    color: #81b3ff;
}
.headerarea .navbar-nav a:after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 8px;
    width: 30px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
.headerarea .navbar-nav ul li:hover a:after  {
	width: 34px;
    border-bottom: 1px solid #81b3ff;
}
.headerarea h4 {
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
}
.headerarea .navbar-nav .uploadresumebtnn a.nav-link {
    background-color: #1e9a8c;
    border: 1px solid #189083;
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}
.headerarea .navbar-nav .uploadresumebtnn a.nav-link:hover, .headerarea .navbar-nav .uploadresumebtnn a.nav-link:focus {
    background-color: #169284;
    border-color: #25a797;
}
.headerarea .navbar-nav .uploadresumebtnn a:after {
    display: none;
}
.headerarea .navbar-toggler {
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 0px;
    border: none;
}
.headerarea .navbar-toggler-icon {
    background-color: #fff;
    height: 2px;
    display: block;
    margin: 5px 0px;
    background-image: none;
}


.bannervdoarea {
    background-color: #000;
    margin-top: 90px;
    height: 100%;
    position: relative;
}
.bannervdoarea:after {
    content: "";
    position: absolute;
    background-color: #00000024;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.bannervdoarea video {
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.bnrvdocaption {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    z-index: 1;
}
.bnrvdocaption h1 {
    font-size: 52px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
}
.bnrvdocaption h1 span {
    font-size: 58px;
    font-weight: 700;
    color: #679ef1;
}
.bnrvdocaption p {
    font-size: 18px;
    color: #fff;
    margin: 10px auto 40px;
    width: 70%;
}


.golfcartaboutarea {
    padding: 60px 0px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.golfcartaboutarea p {
    color: #969696;
    margin-bottom: 0px;
}
.golfcartaboutarea p a {
    color: #4f76af;
}
.golfcartaboutarea .golf_cart_typesimg {
    margin-top: 50px;
}
.golfcartaboutarea .golfcarttype {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
}
.golfcartaboutarea .golfcarttype .carousel-item img {
    width: 100%;
    min-height: 350px;
}
.golfcartaboutarea .golfcarttype .carousel-indicators li {
    height: 10px;
    width: 10px;
    margin: 0px 4px;
}
.golfcartaboutarea .golfcarttype figcaption {
    padding: 20px 0px;
    background-color: #ffffff4a;
}
.golfcartaboutarea .golfcarttype figcaption h4 {
    font-size: 24px;
    margin: 0px 0px 10px;
    text-transform: capitalize;
}


.expectrentingarea {
    padding: 60px 0px;
    background-color: #4f76af;
}
.expectrentingarea p {
    color: #fff;
    margin-bottom: 0px;
}
.expectrentingarea p a {
    color: #000;
}


.nearbyattraction {
    padding: 60px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.nearbyattraction img {
    width: 100%;
}
.nearbyattraction .what_allowed {
    background-color: #fff;
    border-left: 3px solid #6285b9 !important;
    padding: 30px 20px;
    margin: 30px 0px;
    min-height: 260px;
    box-shadow: 0px 0px 10px #e8e8e8;
    border: 1px solid #f2f2f2;
}
.nearbyattraction .what_allowed p, .nearbyattraction .what_allowed ul li {
    color: #969696;
    line-height: 28px;
}
.nearbyattraction .what_allowed p, .nearbyattraction .what_allowed ul {
    margin: 0;
}
.nearbyattraction p a {
    color: #4f76af;
}


.recentpostarea {
    padding: 60px 0px;
    background-color: #4f76af;
}
.recentpostarea figure {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
    margin: 20px 0px;
}
.recentpostarea figure img {
    width: 100%;
    min-height: 235px;
}
.recentpostarea figure figcaption {
    background-color: #fff;
    padding: 20px;
    min-height: 340px;
}
.recentpostarea figure figcaption h4 {
    font-size: 22px;
}
.recentpostarea figure figcaption h4 a {
    color: #000;
}
.recentpostarea figure figcaption p {
    color: #969696;
    margin: 0;
}
.custmbttn.darkbgbtn {
    background-color: #fff;
    color: #000;
}


.contactarea {
    padding: 60px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.contactarea .getintouchfrm .group { 
    position:relative; 
    margin-bottom:40px; 
}
.contactarea .getintouchfrm input, .contactarea .getintouchfrm textarea {
    font-size:16px;
    padding:6px;
    display:block;
    width:100%;
    background-color: transparent;
    border:none;
    border-bottom:1px solid #8a8a8a;
    resize: none;
}
.contactarea .getintouchfrm input:focus, .contactarea .getintouchfrm textarea:focus {
    outline:none; 
}
.contactarea .getintouchfrm label {
    color:#999; 
    font-size:16px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:6px;
    top:10px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
}
.contactarea .getintouchfrm input:focus ~ label, .contactarea .getintouchfrm input:valid ~ label, .contactarea .getintouchfrm textarea:focus ~ label, .contactarea .getintouchfrm textarea:valid ~ label {
    top:-15px;
    font-size:14px;
    color:#6285b9;
}
.contactarea .getintouchfrm .bar {
    position:relative;
    display:block;
    width:100%;
}
.contactarea .getintouchfrm .bar:before, .bar:after {
    content:'';
    height:2px; 
    width:0;
    bottom:1px; 
    position:absolute;
    background:#6285b9; 
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
}
.contactarea .getintouchfrm .bar:before {
    left:50%;
}
.contactarea .getintouchfrm .bar:after {
    right:50%; 
}
.contactarea .getintouchfrm input:focus ~ .bar:before, .contactarea .getintouchfrm input:focus ~ .bar:after, .contactarea .getintouchfrm textarea:focus ~ .bar:before, .contactarea .getintouchfrm textarea:focus ~ .bar:after {
    width:50%;
}
.contactarea .getintouchfrm {
    background: #fafafa;
    padding: 40px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
}
.contactarea .contacttile {
    font-size: 24px;
    margin: 10px 0px 20px;
    text-transform: capitalize;
    position: relative;
}
.contactarea .contacttile::after {
    border-top: 2px solid;
    border-color: #4f76af;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 6px 0 0 0;
}
.contactarea .reachusbox {
    padding: 0px;
}
.contactarea .reachusbox p {
    line-height: 20px;
}
.contactarea .reachusbox p a, .contactarea .reachusbox p span {
    color: #4f76af;
    font-family: 'El Messiri', sans-serif;
}
.contactarea .socialiconns {
    margin: 40px 0px 20px;
}
.socialiconns.hmpgcontsocial {
    margin: 15px 0px;
}
.contactarea .socialiconns ul {
    padding: 0;
}
.contactarea .socialiconns ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
.contactarea .socialiconns ul li i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    background-color: #15114a;
    color: #fff;
    font-size: 14px;
}
.contactarea .socialiconns ul li a {
    transition: all 0.3s ease-in-out;
}
.contactarea .socialiconns ul li a:hover i {
    background-color: #4f76af;
}
.contactarea .socialiconns ul li .fa-facebook {
    background-color: #3b5998; 
}
.contactarea .socialiconns ul li .fa-twitter {
    background-color: #00acee;
}
.contactarea .socialiconns ul li .fa-linkedin {
    background-color: #0e76a8;
}
.contactarea .socialiconns ul li .fa-tripadvisor {
    background-color: #00AF87;
}

footer {
    background-color: #000;
    text-align: center;
    padding: 10px 0px;
}
footer p {
    color: #d8d8d8;
    margin: 0;
    font-size: 13px;
    line-height: 22px;
}
footer p a {
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
footer p a:hover {
    color: #679ef1;
}


.bannerimgarea {
    height: 350px;
    background: url(../../assets/images/banner/banner3.jpg);
    background-size: cover;
    background-position: 50% 60%;
}
.bannerimgarea:after {
    height: 100%;
    background-color: #00000017;
}
.bannerimgarea .bannertitle h2 {
    font-size: 62px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}
.bannerimgarea .bannertitle span {
    color: #81b3ff;
    font-size: 18px;
    text-transform: capitalize;
}
.bannerimgarea .bannertitle span a {
    color: #fff;
}
.bannerimgarea .bnrvdocaption {
    top: 30%;
}


.blogarea {
    padding: 60px 0px;
    /*background-color: #fff;*/
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.recentpostarea figure figcaption h6 {
    color: #555;
    font-size: 15px;
}
.recentpostarea figure figcaption h6 span {
    color: #4f76af;
}

.contct_text {
    display: inline-block;
    margin: 15px 0px;
    width: 100%;
}
.inrcontactpg .reachusbox p {
    display: inline-block;
    width: 90%;
    float: right;
    line-height: 25px;
    margin: 4px 0px;
}
.inrcontactpg .reachusbox i {
    font-size: 20px;
    background-color: #4f76af;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
}


.golfcartaboutarea.inrgolfypesec .golfcarttype {
    position: relative;
}
.golfcartaboutarea.inrgolfypesec .golfcarttype figcaption p {
    text-align: left;
    font-size: 12px;
}
.golfcartaboutarea.inrgolfypesec .golfcarttype figcaption h4 {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    background-color: #0000007a;
    padding: 10px 0px;
    color: #fff;
}
.golfcartaboutarea.inrgolfypesec .golfcartrow {
    margin: 0px;
    min-height: 220px;
}
.golfcartaboutarea.inrgolfypesec .golfcartcol {
    padding: 0px;
}
.golfcartaboutarea.inrgolfypesec .golfcartcol ul {
    margin: 10px 0px;
}
.golfcartaboutarea.inrgolfypesec .golfcartcol ul li {
    text-align: left;
    font-size: 16px;
    line-height: 32px;
    color: #666;
}
.rent_cart_text {
    text-align: left;
    margin: 20px 0px;
}
.rent_cart_text h5 {
    font-size: 22px;
    color: #000;
}
.rent_cart_text ul li,.rent_cart_text h6 {
    line-height: 28px;
    color: #666;
    font-family: 'Raleway', sans-serif;
}
.golfcart_rent_activity {
    margin: 40px 0px 60px;
}
.golfcart_rent_activity img {
    width: 100%;
    min-height: 280px;
    box-shadow: rgba(0,0,0,.0470588) 0px 4px 0px 1px, rgba(0,0,0,.0470588) 4px 2px 0 0;
}
.golfcart_rent_activity_content {
    text-align: left;
}
.golfcart_rent_activity_content h4 {
    font-size: 28px;
    color: #000;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 38px;
}
.golfcart_rent_activity_content p {
    line-height: 32px;
}


.servicearea {
    padding: 60px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.servicearea img {
    width: 100%;
}
.servicearea .sevicearea_content p {
    line-height: 32px;
    font-family: 'El Messiri', sans-serif;
    font-size: 18px;
}


.qaarea {
    padding: 60px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.qaarea h6 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 25px;
}
.qaarea .card p {
    margin: 0;
    color: #777;
}
.qaarea .maincontent {
    border-bottom: 1px solid #4f76af26;
}
.qaarea .maincontent.lastaccordn {
    border-bottom: none;
}
.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f0d8";
    float: right;
    background-color: #4f76af;
    height: 20px;
    width: 20px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 50px;
}
.accordion .card-header.collapsed:after {
    content: "\f0d7";
}
.qaarea .card {
    border: 1px solid #4f76af26;
    border-radius: 0px;
    background-color: #ffffff5e;
}
.qaarea .card .card-header {
    background-color: transparent;
    border-bottom-color: #4f76af26;
    padding: 16px 20px;
}
.qaarea .card .card-title {
    margin: 0;
    color: #4f76af;
    font-size: 18px;
    font-weight: 600;
}


.toursdestination {
    padding: 60px 0px 40px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.toursdestination h6 {
    text-align: center;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 25px;
}
.toursdestination .tourbox {
    background: #fafafa;
    margin: 30px 0px;
    box-shadow: 0px 0px 15px #0000001f;
    border: 1px solid #efefef;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.toursdestination .tourbox:hover {
    box-shadow: rgba(0,0,0,.0470588) 0px 0px 0px 1px, rgba(0,0,0,.0470588) 4px 2px 0 0;
}
.toursdestination .tourbox img {
    width: 100%;
    min-height: 260px;
}
.toursdestination .tourbox .tourdescptn {
    padding: 20px 16px;
}
.toursdestination .tourbox .tourdescptn h4 {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin: 0px;
    text-transform: capitalize;
}
.toursdestination .tourbox .tourdescptn p {
    font-size: 15px;
    margin: 10px 0px 20px;
}
.toursmodalarea .modal {
    z-index: 10000;
}
.toursmodalarea .modal-content {
    border: none;
    box-shadow: 0px 3px 10px #0000002e;
}
.toursmodalarea .modal .modal-header {
    margin: 0px;
    padding: 15px;
    border-bottom: 1px dashed #e8e8e8;
}
.toursmodalarea .modal .modal-header img {
    width: 16%;
}
.toursmodalarea .modal .modal-header h4 {
    color: #0776b6;
    font-size: 24px;
    line-height: 28px;
    width: 75%;
    margin-top: 5px;
    font-weight: 700;
    text-transform: uppercase;
}
.toursmodalarea .modal-header .close {
    margin: 0px;
    padding: 0px;
    font-size: 25px;
    line-height: 30px;
    margin-top: 3px;
    color: #fff;
    opacity: 1;
    background-color: #008cc9;
    border-radius: 50px;
    height: 25px;
    width: 25px;
    text-align: center;
}
.toursmodalarea .modal .modal-dialog {
    max-width: 700px;
}
.toursmodalarea .modal .modal-body h4 {
    font-size: 18px;
    color: #333;
    margin: 10px 0px;
}
.toursmodalarea .modal .modal-body h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
    line-height: 25px;
}
.toursmodalarea .modal .modal-body h6 {
    font-size: 20px;
    color: #4f76af;
    font-weight: bold;
    position: relative;
    margin: 30px 0px 0px;
}
.toursmodalarea .modal .modal-body h6::after {
    border-top: 2px solid;
    border-color: #4f76af;
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    margin: 4px 0px 0px;
}
.toursmodalarea .modal .modal-body p {
    font-size: 15px;
    color: #666;
    margin: 14px 0px;
}
.toursmodalarea .modal .modal-body p.highlightsubtxt {
    font-style: italic;
    font-weight: 600;
}
.toursmodalarea .modal .modal-body ul {
    padding-left: 30px;
    margin: 0px;
}
.toursmodalarea .modal .modal-body ul li {
    font-size: 15px;
    color: #666;
    line-height: 28px;
    border-radius: 50%;
}
.toursmodalarea .tourdetailsslider {
    margin-bottom: 20px;
}
.tourdetailsslider .carousel-item img {
    width: 100%;
    height: 450px;
}
.tourdetailsslider .carousel-indicators li {
    height: 10px;
    width: 10px;
    margin: 0px 4px;
}
.modal-backdrop.show {
    opacity: 0.8;
}
.tour-price-footer {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    border-top: 1px dashed #e8e8e8;
    padding-top: 14px;
}
.tour-price-footer .tour-price {
    float: left;
}
.toursmodalarea .modal .modal-body .tour-price-footer .tour-price h4 {
    font-size: 18px;
    font-weight: 600;
}
.toursmodalarea .modal .modal-body .tour-price-footer .tour-price h4 span {
    color: #4f76af;
    font-weight: 700;
    font-size: 22px;
    vertical-align: text-bottom;
}
.tour-price-footer .tour-booklink {
    float: right;
}
.toursmodalarea .modal .modal-body .tour-location-icon {
    background-color: #4f76af;
    color: #fff;
    height: 26px;
    width: 26px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
}
.toursmodalarea .modal .modal-body ul.topgapp {
    margin: 14px 0px 0px;
}
.toursmodalarea .modal .modal-body .download_doc_link {
    background-color: #f5f9ff;
    padding: 10px 20px;
    margin: 20px 0px;
    border-radius: 5px;
}
.toursmodalarea .modal .modal-body .download_doc_link a {
    color: #3a6fbb;
    font-weight: bold;
}
.tourdtlsplayvdobtn a {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #fff;
    padding: 12px 16px 8px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.12);
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    color: #000;
    z-index: 100;
}


.termsconditionarea {
    padding: 60px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../../assets/images/whitepatrnbg.png);
    background-repeat: repeat;
}
.termsconditionarea h6 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
}
.termsconditionarea ul {
    padding-left: 40px;
    margin: 10px 0px;
}
.termsconditionarea ul li {
    list-style: decimal;
    color: #333;
    margin-bottom: 10px;
    line-height: 28px;
    font-family: 'Raleway', sans-serif;
}
.termsconditionarea h5 {
    padding: 5px 0px 5px 25px;
    margin: 0;
    font-size: 16px;
    width: 100%;
    color: #4f76af;
    font-weight: bold;
    line-height: 28px;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
}


.blogdetailsarea {
    padding: 60px 0px;
}
.blogdetailsarea h2 {
    font-size: 28px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.blogdetailsarea h6 {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}
.blogdetailsarea p {
    margin: 20px 0px;
    text-align: justify;
}
.blogdetailsarea img {
    width: 100%;
}
.blogdetailsarea .blog_detals_travelguide {
    margin: 20px 0px;
}
.blogdetailsarea .blog_detals_travelguide h4 {
    position: relative;
    text-transform: capitalize;
    font-size: 25px;
    margin: 10px 0px;
    text-align: left;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    color: #4f76af;
}
.blogdetailsarea .blog_detals_travelguide h4::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    margin: 12px;
    border: 1px dashed #4f76af;
}
.blogdetailsarea .blog_detals_travelguide p {
    color: #8a8a8a;
    margin: 10px 0px;
}
.blogdetailsarea .blog_detals_travelguide h5 {
    font-size: 20px;
    color: #333;
    margin: 0px;
}
.blogdetailsarea .blog_detals_travelguide ul {
    margin: 20px 0px;
    padding-left: 20px;
}
.blogdetailsarea .blog_detals_travelguide ul li {
    color: #8a8a8a;
    line-height: 32px;
}
.blogdetailsarea .frmcheckkbx label {
    display: block;
    position: relative;
    left: 0px;
    top: 0px;
    pointer-events: all;
}
.blogdetailsarea .frmcheckkbx input {
    width: auto;
}
.blog_recentposts {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #f4f4f4;
    box-shadow: 0px 0px 6px #00000014;
    margin: 10px 0px;
}
.blog_recentposts h4 {
    font-size: 24px;
    margin: 10px 0px 30px;
    text-transform: capitalize;
    position: relative;
}
.blog_recentposts h4::after {
    border-top: 2px solid;
    border-color: #4f76af;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 6px 0 0 0;
}
.blog_recentposts ul {
    padding: 0px 10px;
    margin: 0;
}
.blog_recentposts ul li {
    list-style: none;
    margin: 0px;
    display: inline-block;
    border-bottom: 1px dashed #eaeaea;
    padding: 6px 0px 15px;
}
.blog_recentposts ul li a {
    color: #5496f5;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.blog_recentposts ul li a:hover {
    color: #333;
}
.blog_recentposts ul li img {
    width: 30%;
    float: left;
    height: 60px;
}
.blog_recentposts ul li p {
    width: 66%;
    margin: 0px;
    float: right;
    line-height: 20px;
    text-align: left;
}
#blogcommentform {
    margin: 40px 0px 10px;
    display:none;
}
#blogcommentform p {
    font-size: 15px;
    color: #666;
}

.toursdestination .tourbox .tourdescptn button, .golfcartaboutarea .golfcarttype figcaption button {
    background-color: #4f76af !important;
    border: none;
    box-shadow: none !important;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1;
    font-size: 16px;
    padding: 10px 30px 8px;
    border-radius: 4px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'El Messiri', sans-serif;
}

/*================= Responsive start =================*/
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation:portrait) {
    .headerarea {
        padding: 10px 0px;
    }
    .headerarea .navbar {
        padding: 0;
    }
    .headerarea .navbar-nav ul li {
        display: block;
        margin: 5px 0px;
        border-bottom: 1px solid #ffffff54;
        padding: 0px 14px;
    }
    .headerarea h4 {
        margin: 0px 0px 0px 12px;
        font-size: 20px;
    }
    .headerarea .navbar-nav ul li.uploadresumebtnn {
        padding: 5px 14px;
    }
    .headerarea .navbar-nav a:after {
        display: none;
    }
    .headerarea .navbar-nav .uploadresumebtnn a.nav-link {
        display: inline-block;
        width: 30%;
    }

    .bannervdoarea {
        margin-top: 60px;
        height: 350px;
    }
    .bannerimgarea {
        height: 160px;
    }
    .bannerimgarea .bannertitle h2 {
        font-size: 25px;
    }
    .navbar-brand img {
        width: 140px;
    }
    .headerarea .navbar-toggler {
        right: 0px;
        top: 0px;
        padding: 8px 0px;
    }
    .contactarea {
        padding: 40px 14px;
    }
    .customhead_title {
        font-size: 25px;
        padding: 0px 14px;
        margin-bottom: 10px;
    }
    .customhead_title:after {
        margin: 10px;
        width: 40%;
    }
    .inrcontactpg .reachtitle {
        margin-top: 10px;
    }
    .inrcontactpg .reachusbox i {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .inrcontactpg .reachusbox i.fa.fa-envelope {
        font-size: 10px;
    }
    .inrcontactpg .reachusbox p {
        margin: 0px;
    }
    .contactarea .getintouchfrm {
        padding: 16px 20px;
    }
    .qaarea, .blogarea, .contactarea, .golfcartaboutarea {
        padding: 40px 0px;
    }
    .qaarea .card .card-title {
        font-size: 14px;
    }
    .qaarea .card .card-header {
        padding: 14px 10px;
    }
    .recentpostarea figure {
        margin: 10px 0px;
    }
    .blogdetailsarea .blog_detals_travelguide h4 {
        font-size: 20px;
        margin: 0px;
    }
    .golfcartaboutarea .golfcarttype .carousel-item img {
        min-height: 260px;
    }
    .golfcart_rent_activity_content h4 {
        margin: 20px 0px 5px;
        font-size: 22px;
        line-height: 32px;
    }
    .golfcart_rent_activity {
        margin: 10px 0px;
    }
    .hmaboutarea p {
        padding: 0px 10px;
    }
    .bnrvdocaption {
        width: 100%;
    }
    .bnrvdocaption h1 span {
        font-size: 30px;
    }
    .bnrvdocaption h1 {
        font-size: 28px;
    }
    .bnrvdocaption p {
        font-size: 16px;
        margin: 6px auto 14px;
        width: 100%;
    }
    .expectrentingarea, .nearbyattraction, .recentpostarea {
        padding: 40px 0px;
    }
    .hmexpectrang p {
        padding: 0px 14px;
    }
    .golfcartaboutarea .golfcarttype figcaption h4 {
        font-size: 20px;
    }
    .contactarea .reachusbox {
        margin-top: 30px;
    }
    .toursdestination {
        padding: 40px 0px 20px;
    }
    .toursdestination .tourbox {
        margin: 20px 0px;
    }
    .tourdetailsslider .carousel-item img {
        height: 250px;
    }
    .toursmodalarea .modal .modal-body h4 {
        font-size: 18px;
    }
    .termsconditionarea {
        padding: 40px 10px 20px;
    }
    .headerarea .navbar-nav ul li.lastlink {
        border-bottom: none;
    }
    .tour-price-footer .tour-booklink {
        float: left;
    }
    .toursmodalarea .modal-header .close {
        margin-top: 0px;
    }
    .toursmodalarea .modal .modal-header h4 {
        width: 68%;
        margin-top: 0px;
        font-size: 16px;
        line-height: 20px;
    }
    .toursmodalarea .modal .modal-header img {
        width: 18%;
        margin-top: 4px;
    }
    .tourdtlsplayvdobtn a {
        bottom: 40px;
    }
    p {
        font-size: 15px;
    }
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation:landscape) {
    .headerarea {
        padding: 10px 0px;
    }
    .headerarea .navbar {
        padding: 0;
    }
    .headerarea .navbar-nav ul li {
        display: block;
        margin: 5px 0px;
        border-bottom: 1px solid #ffffff54;
        padding: 0px 14px;
    }
    .headerarea h4 {
        margin: 0px 0px 0px 12px;
        font-size: 20px;
    }
    .headerarea .navbar-nav ul li.uploadresumebtnn {
        padding: 5px 14px;
    }
    .headerarea .navbar-nav a:after {
        display: none;
    }
    .headerarea .navbar-nav .uploadresumebtnn a.nav-link {
        display: inline-block;
        width: 30%;
    }
    .headerarea .navbar-collapse {
        height: 270px;
        overflow-y: scroll;
    }

    .bannervdoarea {
        margin-top: 60px;
        height: 350px;
    }
    .bannerimgarea {
        height: 200px;
    }
    .bannerimgarea .bannertitle h2 {
        font-size: 25px;
    }
    .navbar-brand img {
        width: 140px;
    }
    .headerarea .navbar-toggler {
        right: 0px;
        top: 0px;
        padding: 8px 0px;
    }
    .contactarea {
        padding: 40px 14px;
    }
    .customhead_title {
        font-size: 25px;
        padding: 0px 14px;
        margin-bottom: 10px;
    }
    .customhead_title:after {
        margin: 10px;
        width: 40%;
    }
    .inrcontactpg .reachtitle {
        margin-top: 10px;
    }
    .inrcontactpg .reachusbox i {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .inrcontactpg .reachusbox i.fa.fa-envelope {
        font-size: 10px;
    }
    .inrcontactpg .reachusbox p {
        margin: 0px;
    }
    .contactarea .getintouchfrm {
        padding: 16px 20px;
    }
    .qaarea, .blogarea, .contactarea, .golfcartaboutarea {
        padding: 40px 0px;
    }
    .qaarea .card .card-title {
        font-size: 14px;
    }
    .qaarea .card .card-header {
        padding: 14px 10px;
    }
    .recentpostarea figure {
        margin: 10px 0px;
    }
    .blogdetailsarea .blog_detals_travelguide h4 {
        font-size: 20px;
        margin: 0px;
    }
    .golfcartaboutarea .golfcarttype .carousel-item img {
        min-height: 260px;
    }
    .golfcart_rent_activity_content h4 {
        margin: 20px 0px 5px;
        font-size: 22px;
        line-height: 32px;
    }
    .golfcart_rent_activity {
        margin: 10px 0px;
    }
    .hmaboutarea p {
        padding: 0px 10px;
    }
    .bnrvdocaption {
        width: 100%;
    }
    .bnrvdocaption h1 span {
        font-size: 30px;
    }
    .bnrvdocaption h1 {
        font-size: 28px;
    }
    .bnrvdocaption p {
        font-size: 16px;
        margin: 6px auto 14px;
        width: 100%;
    }
    .expectrentingarea, .nearbyattraction, .recentpostarea {
        padding: 40px 0px;
    }
    .hmexpectrang p {
        padding: 0px 14px;
    }
    .golfcartaboutarea .golfcarttype figcaption h4 {
        font-size: 20px;
    }
    .contactarea .reachusbox {
        margin-top: 30px;
    }
    .toursdestination {
        padding: 40px 0px 20px;
    }
    .toursdestination .tourbox {
        margin: 20px 0px;
    }
    .tourdetailsslider .carousel-item img {
        height: 300px;
    }
    .toursmodalarea .modal .modal-body h4 {
        font-size: 18px;
    }
    .termsconditionarea {
        padding: 40px 10px 20px;
    }
    .headerarea .navbar-nav ul li.lastlink {
        border-bottom: none;
    }
    .recentpostarea figure figcaption {
        min-height: auto;
    }
    p {
        font-size: 15px;
    }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
    .contactarea .getintouchfrm {
        padding: 40px 30px;
    }
    .contactarea .reachusbox {
        margin-top: 0px;
    }
    .customhead_title:after {
        margin: 12px;
        width: 100%;
    }
    .toursmodalarea .modal .modal-dialog {
        max-width: 90%;
    }
    .tourdetailsslider .carousel-item img {
        height: 400px;
    }
    .toursdestination .tourbox img {
        min-height: 320px;
    }
    .toursmodalarea .modal .modal-header img {
        width: 14%;
        margin-top: 4px;
    }
    .toursmodalarea .modal .modal-header h4 {
        width: 75%;
        margin-top: 8px;
        font-size: 24px;
        line-height: 28px;
    }
    .toursmodalarea .modal-header .close {
        margin-top: 5px;
    }
    .tour-price-footer .tour-booklink {
        float: right;
    }
    .tourdtlsplayvdobtn a {
        bottom: 15px;
    }
}