/* ------------------------------------------------------------------------------ 
Project Name : AW 
Description : Main Style Sheet 
Author : Imran Rovan 
Created On : 28 Nov 2023 
--------------------------------------------------------------------------------*/

:root {
    --yellow: #ffd114;
    --pink: #f20867;
    --blue: #07447c;
    --grey: #363c45;
    --white: #fff;
    --font-main: 'Montserrat', sans-serif;
    --font-headings: 'Ubuntu', sans-serif;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&family=Cairo&display=swap');

/*  Reset */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, p, a, li, span, div {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html, body {
    margin: 0;
    padding: 0;
}

html, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
}

img {
    display: block;
    outline: none;
}

img, input, textarea, button, select {
    border: 0;
    outline: 0;
    resize: none;
}

a, a:hover, a:focus {
    text-decoration: none;
    -moz-transition: all .250s ease-in-out;
    -webkit-transition: all .250s ease-in-out;
    transition: all .250s ease-in-out;
}
h2 {
    font-size: 42px;
    line-height: 55px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
}
h6 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #666;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
/* Theme */
body {
    color: var(--grey);
    font-family:  var(--font-main);
    font-size: 16px;
    line-height: 25px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
h1, h2, h3, h4 {
    font-family: var(--font-headings);
}
p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #363c45;
}
.main-visual .visual-progress .progress .btn-progress:last-child {
    display: none !important;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 15px 80px;
    transition: all 0.4s linear;
}
header.header-fixed {
    padding: 8px 80px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
header .logo img.white {
    height: 110px;
    transition: all 0.4s linear;
}
header .logo img.original {
    display: none;
    height: 70px;
    transition: all 0.4s linear;
}
header .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
header nav > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    list-style: none;
}
header nav > ul > li {
    position: relative;
}
header nav > ul > li a {
    position: relative;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    color: #fff;
    display: block;
    padding-bottom: 4px;
}
header nav > ul > li > a:hover, header nav li.active a {
    color: var(--yellow);
}
header nav > ul > li > a::after {
    display: block;
    content: "";
    height: 1px;
    background-color: var(--yellow);
    position: absolute;
    bottom: 0px;
    width: 100%;
    transform: translateX(-101%);
}
header nav ul li.mob-nav {
    display: none;
}
header nav > ul > li > ul {
    position: absolute;
    min-width: 900px;
    padding-top: 40px;
    top: 80px;
    left: -200px;
    margin-top: 0px;
    visibility: hidden;
    opacity: 0;
    border: none;
    transition: all .4s;
    position: absolute;
}
header nav > ul > li > ul > li {
    background-color: #fff;
    box-shadow: 0 10px 50px 0 rgba(0,0,0,.17);
    display: flex;
    padding: 20px;
    border-radius: 10px;
}
header .nav-flex {
    width: 33%;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #ddd;
}

header .nav-flex:first-child {
    padding-left: 0px;
    margin-left: 0px;
    border-left: none;
}
header .nav-flex p {
    font-size: 14px;
    line-height: 22px;
}
header .nav-flex h5 {
    color: #07447c;
    margin-bottom: 10px;
}
header nav .nav-flex img {
    height: 90px;
    margin-bottom: 10px;
}
header nav > ul > li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 10px;
}
header nav li:hover a::after, header nav li.active a::after {
    transition: transform 0.3s cubic-bezier(0.5, 0.7, 0.4, 1);
    transform: translateX(0);
}
header nav > ul > li > ul:after {
    content: '';
    top: 26px;
    left: 25%;
    border: solid transparent;
    position: absolute;
    pointer-events: none;
    z-index: 9;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #fff;
}
header .right .lang {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
header .right .lang a {
    font-family: 'Cairo', sans-serif;
    color: #fff;
    font-weight: 500;
    margin-left: 15px;
}
header .right .btn-member a {
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
    color: var(--grey);
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
}
header .right .btn-member a:hover {
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
}
header.header-fixed {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
header.header-inner {
    background-color: #fff;
}
header.header-fixed .logo img.white, header.header-inner .logo img.white {
    display: none;
}
header.header-fixed  .logo img.original, header.header-inner .logo img.original {
    display: block;
}
header.header-fixed nav li a, header.header-fixed .right .lang a, header.header-inner .right .lang a, .header-inner nav li a  {
    color: #333;
}
header.header-fixed nav li a:hover {
    color: #c6a51c;
}
header.header-fixed  nav li a::after {
    background-color: #c6a51c;
}
header.header-fixed  .right .lang, header.header-inner .right .lang {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
}
header.header-fixed  .right .btn-member a {
    background-color: #c6a51c;
    border: 2px solid #c6a51c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
}
header.header-fixed  .right .btn-member a:hover {
    background-color: transparent;
    border: 2px solid #c6a51c;
    color: #c6a51c;
}

.fullscreen-bg {
    position: relative;
    z-index: 8;
}
.fullscreen-bg::before {
    content: '';
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(17,17,17,1) 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 8;
    opacity: 0.7;
    filter: blur(5px);
}
.hme-section {
    padding: 80px 0;
}
.hme-about {
    padding: 120px 0 80px 0;
    background: #07447c;
}
.hme-about h1 {
    font-size: 36px;
    line-height: 50px;
    color: var(--grey);
    padding: 0 0px;
}
.hme-about h1 span {
    color: var(--pink);
}
.hme-about .txt {
    padding: 0 0px;
    margin-bottom: 30px;
}
.btn-more {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.btn-more a {
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
    color: var(--grey);
    padding: 0px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    gap: 25px;
    height: 50px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.hme-brands .container {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    gap: 30px;
}
.hme-brands .brands {
    background-color: #fff; 
    border: 1px solid #ddd;
   
    border-radius: 40px;
    width: 30%;
}
.hme-brands .brands:hover {
    background-color: #f1f1f1; 
    border: 1px solid #ddd;
    border-radius: 40px;
    width: 30%;
}
.hme-brands .brands {
    position: relative;
    padding: 0px;
}
.hme-brands .brands a:first-child > img {
    width: 100%;
    margin-bottom: 0px;
    border-radius: 40px 40px 0 0;
}
.hme-brands .brands a:last-child > img {
    height: 175px;
    margin-bottom: 0px;
    padding: 20px;
}
.hme-brands .brands .brandimg {
    position: relative;
    margin-top: 100px;
}
.hme-brands .brands:hover .brandimg img {
    transition: all .200s linear;
    filter: blur(5px) opacity(0.5);
}
.hme-brands .brands .brandimg img {
    height: auto;
    width: 100%;
    position: relative;
    right: -40px;
    bottom: -50px;
    margin: 0;
    margin-top: -50px;
}
.hme-brands .brands a {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}
.hme-brands .brands a span {
    width: 42px;
    height: 42px;
    background-color: #191919;
    border:2px solid #191919;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.hme-brands .brands:hover a span {
    background-color: transparent;
    border:2px solid #191919;
    color: #191919;
}
.hme-brands .brands a .wrap-txt {
    position: absolute;
    z-index: 9;
    bottom: 155px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    
}
.hme-brands .brands:hover a .wrap-txt {
    right: 15px;
    transition: all 0.3s ease-in-out 0s;
    opacity: 1;
    visibility: visible;
}
.hme-attraction .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hme-attraction .swiper-slide {
    width: 350px;
    /* transform: scale(0.75) rotate(-10deg); */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    transition: transform .3s linear;
}
/* .hme-attraction .swiper-slide-prev, .hme-attraction .swiper-slide-next {
    transform: scale(0.85) rotate(10deg);
}
.hme-attraction .swiper-slide-active {
    filter: blur(0px);
} */

.hme-attraction .swiper-slide .card-caro .img {
    border-radius: 20px;
    height: 230px;
    overflow: hidden;
    border: 4px solid #ffd114;
}
.hme-attraction .swiper-slide.swiper-slide-active .card-caro .img {
    border: 4px solid #f20867;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
}
.hme-attraction  .swiper-slide .card-caro .img img {
    width: 100%;
    border-radius: 15px;
}
.hme-attraction .swiper-slide.is-active .people__card__image {
    transform: translateX(100px);
}

.hme-attraction .swiper-slide .card-caro .dtls {
    display: block;
    position: relative;
    margin-top: 0px;
    transition: all .3s linear;
}
.hme-attraction .swiper-slide .card-caro .dtls svg {
    width: 88%;
    margin: auto;
    display: flex;
    margin-top: -1px;
    fill: #ffd114;
}
.hme-attraction .swiper-slide.swiper-slide-active .card-caro .dtls svg {
    fill: #f20867;
}
.hme-attraction .swiper-slide .card-caro .dtls h2 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.hme-attraction .swiper-slide .card-caro .dtls p {
    color: #666;
}
.hme-attraction .swiper-slide.swiper-slide-active {
    transform: scale(1);
}
.hme-attraction .swiper-slide.swiper-slide-active .card-caro .dtls {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}
.hme-attraction .col-md-6 p {
    font-size: 18px;
}
.hme-offers {
    background: url(../images/bg-stats.png) no-repeat  top center;
    background-size: 100% auto;
    position: relative;
    padding-bottom: 25px;
}
.hme-offers::before {
    content: '';
    width: 100%;
    height: 100%;
    background:  url(../images/bg-stats_hover.png) no-repeat  top center;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hme-offers .stats .rides {
    display: inline-block;
    width: 540px;
}
.hme-offers .stats {
    padding-left: 49%;
    padding-top: 220px;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.hme-offers .stats .rides span {
    font-size: 320px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -20px;
    display: inline-block;
}
.hme-offers .stats .rides > i {
    font-size: 250px;
    font-weight: 700;
    color: #fff;
}
.hme-offers .stats .rides p {
    text-align: right;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    padding-right: 50px;
}
.hme-offers .offers {
    margin-top: 40px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.hme-offers .offers h2 {
    color: #fff;
    text-align: center;
}
.coupon-card {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
    position: relative;
}
.coupon-card .img img {
    width: 80px;
}
.coupon-card .dtls  {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px dotted #ccc;
}
.coupon-card .dtls h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
}
.coupon-card .dtls h3 span {
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    display: block;
    color: #1d4765;
}
.coupon-card .dtls p {
    font-size: 15px;
    margin: 10px 0 0 0;
    color: #666;
}
.coupon-row{
    display: flex;
    align-items: center;
    margin: 15px 0 0 0;
    width: 100%;
}
#cpnCode{
    border: 1px dashed #ccc;
    padding: 10px 20px;
    border-right: 0;
    width: 100%;
    
}
#cpnBtn{
    border: 1px solid #ccc;
    background: #eee;
    padding: 10px 20px;
    color: #7158fe;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
}
.circle1, .circle2{
    background: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
}
.circle1{
    left: -25px;
}
.circle2{
    right: -25px;
}
#map {
    width: 100%;
    height: 500px;
}
.hme-maps {
    position: relative;
}
.hme-maps .tabs-maps {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}
.hme-maps .tabs-maps #nav-tab {
    border: none;
}
.hme-maps .tabs-maps #nav-tab .nav-link {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 14px 30px;
    color: #232323;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}
.hme-maps .tabs-maps #nav-tab .nav-link:first-child {
    border-radius: 50px 0 0 50px;
    border-right: 1px solid #ddd;
}
.hme-maps .tabs-maps #nav-tab .nav-link:last-child {
    border-radius: 0 50px 50px 0;
    border-left: 1px solid #ddd;
}
.hme-maps .tabs-maps #nav-tab .nav-link.active {
    background: #07447c;
    color: #fff;
}
.hme-subscribe {
    background-color: #07447c;
    margin-top: -10px;
}
.hme-subscribe .subscribewrap {
    background: #fceee0 url(../images/bg-subscribe.jpg) no-repeat top left;
    background-size: auto 100%;
    padding: 30px 40px;
    border-radius: 30px;
    top: -100px;
    position: relative;
    margin-bottom: -70px
}
.hme-subscribe .subscribewrap .title {
    text-align: center;
}
.hme-subscribe .subscribewrap .title h2 {
    font-size: 35px;
    color: #07447c;
    margin-bottom: 0px;
}
.formoffer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.formoffer .formgroup {
    width: 40%;
    margin-top: 40px;
}
.formoffer .formgroup:last-child {
    width: 200px;
}
.formoffer .formgroup input {
    width: 100%;
    height: 50px;
    background-color: #fff4ea;
    border: 1px solid #aaa;
    border-radius: 50px;
    display: block;
    padding: 0 15px;
    color: #333;
}
.formoffer .formgroup button {
    background: #f20867;
    width: 100%;
    height: 50px;
    border: 1px solid #f20867;
    border-radius: 50px;
    display: block;
    padding: 0 15px;
    color: #333;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
#nav-tabContent {
    position: relative;
    z-index: 0;
}
.tabs-maps {
    position: relative;
    z-index: 1;
}
#nav-tabContent::before {
    content: '';
    background: rgba(0, 0, 0, 0.00001);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
footer {
    background-color: #07447c;
    padding: 40px 0 20px 0;
    position: relative;
    z-index: 2;
}
footer .img img {
    height: 100px;
}
footer .nav-footer a {
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 10px;
    margin-left: 10px;
    font-size: 15px;
}
footer .nav-footer a:first-child {
    border-left: none;
    padding-left: 0px;
    margin-left: 0px;
}
.btmnav {
    text-align: right;
    margin-top: 15px;
}
footer .copyright::before {
    content: '';
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
footer .copyright {
    padding: 20px 0 0px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    position: relative;
}
footer .copyright .text {
    font-size: 15px;
    color: #fff;
}
footer .copyright .social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.social-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
footer .copyright .social a, .social-wrap a {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .copyright .social a:hover, .social-wrap a:hover {
    background-color: rgba(0,0,0,0.25);
}

.inner-content {
    padding: 170px 0 50px 0;
}
.top-title h2 {
    color: #f20867;
}
.top-title h4 {
    max-width: 60%;
    line-height: 1.4;
    color: #666;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
}
.breadcrumb li a {
    color: #9E9E9E;
    font-weight: 500;
}
.breadcrumb li svg {
    fill: #9E9E9E;
}


.img_box {position: relative; margin-top: 0em;padding-top:50px; }
.img_box .img { width: 100%; height: 100% ;}
.img_box img { width: 100%; height: 100% ;object-fit: cover; object-position: center}

.img_box .left {position: absolute; left: 0; top: 0; width: 25%; height: 100%; background-color: #fff}
.img_box .right {position: absolute; right: 0; top: 0; width: 25%; height: 100%; background-color: #fff}
.content p {
    margin-bottom: 15px;
}
.content {
    padding: 80px 0 0 0;
}
.values {
    background-color: #f1f1f1;
}
.contact-list {
    margin-bottom: 50px;
    margin-top: 30px;
    display: flex;
    align-items: flex-center;
}
.contact-list li:first-child {
    width: 50%;
}
.contact-list li {
    width: 30%;
    margin-right: 50px;
}
.conico {
    width: 40px;
    min-width: 60px;
    height: 60px;
    background-color: #ffd114;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.condtls h6 {
    font-size: 14px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.condtls a {
    color: #666;
    text-decoration: underline;
}
form.contact-form {
    margin-top: 25px;
}
form.contact-form input, form.contact-form select, form.contact-form textarea {
    outline: none;
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    line-height: 1.5;
    padding: 15px 22px;
    transition: all .15s cubic-bezier(.165,.84,.44,1);
}
form.contact-form label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: #222;
    margin-bottom: 5px;
}
form.contact-form .col-md-4 {
    margin-bottom: 25px;
}
form.contact-form  .button {
    margin-top: 25px;
    padding: 12px 55px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    height: 60px;
    border-radius: 5px;
    background-color: rgb(100 64 251);
    border: 2px solid rgb(100 64 251);
}
form.contact-form  .button:hover {
    color: #6440fb !important;
    background-color: #fff;
    border: 2px solid #6440fb;
}
.coupon-main {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.15);
    box-shadow: 0 0 3px rgba(0,0,0,.15);
    transition: all .3s ease;
}
.coupon-main .img {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}
.coupon-main .img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    transition: all .5s ease-in-out;
}
.coupon-main:hover .img .img-main {
    transform: scale(1.15);
}
.coupon-main img.img-logo {
    width: 25%;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-radius: 5px;
    padding: 10px;
    z-index: 9;
}
.coupon-main .dtls {
    padding: 10px 20px;
}
.coupon-main .dtls h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.coupon-main .dtls h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #07447c;
}
.coupon-main .dtls h4 del {
    margin: 0 10px;
    color: #666;
    font-size: 16px;
}
.coupon-main .dtls h4 span {
    padding: 4px 10px;
    color: #fff;
    background-color: #07447c;
    font-size: 16px;
    border-radius: 5px;
}
.coupon-main .dtls p {
    font-size: 14px;
}
.news-main {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,.15);
    box-shadow: 0 0 6px rgba(0,0,0,.15);
}
.news-main .img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    transition: all .5s ease-in-out;
}
.news-main .img {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}
.news-main:hover .img img {
    transform: scale(1.15);
}
.news-main .dtls {
    padding: 10px 15px;
}
.news-main .dtls .date {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.news-main .dtls h3 a {
    font-size: 20px;
    font-weight: 500;
    display: block;
    color: #333;
    height: 75px;
    margin-bottom: 15px;
}
.news-main .dtls > a {
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 500;
    color: rgb(7, 68, 124);
}
.testimonial {
    background: #fff;
}

section .inner {
    margin: 0 auto;
    text-align: center;
}
.testimonial .inner {
    padding-top: 20px;
    text-align: left;
}

.testimonial #quote-wrapper {
    position: relative;
    padding-top: 40px;
}

.testimonial blockquote {
    color: #666;
    font-size: 24px;
    line-height: 36px;
    position: relative;
    z-index: 1;
    width: 60%;
}

.testimonial blockquote::before {
    content: "“";
    color: #E0DDD7;
    font-family: georgia, serif;
    font-size: 7em;
    position: absolute;
    left: -15px;
    top: 30px;
    z-index: -10;
}
#rev_slider_wrapper {
    min-height: 100vh;
}
.rev_slider .tp-mask-shadow img {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 5px !important;
    background-color: #fff;
}
.rev_slider .tp-mask-wrap {
    padding: 15px;
}
.rev_slider .tp-mask-shadow {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}
.park-carousel .park-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}
.park-carousel .park-card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 1;
}
.park-carousel .park-card .img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    background: -webkit-linear-gradient(bottom,rgba(0,0,0,0.9) 0%,transparent 70%);
    background: linear-gradient(0deg,rgba(0,0,0,0.9) 0%,transparent 70%);
    transform: translateY(0%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.park-carousel .park-card:hover .img .overlay {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.park-carousel .park-card .dtls {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    padding: 20px 20px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.park-carousel .park-card .dtls h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    bottom: 10%;
    margin-bottom: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.park-carousel .park-card:hover .dtls h3 {
    bottom: 100%;
}
.park-carousel .park-card .dtls p {
    color: #fff;
    font-size: 500;
    line-height: 22px;
    padding-top: 10px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateY(300%);
    -ms-transform: translateY(300%);
    transform: translateY(300%);
    opacity: 0;
}
.park-carousel .park-card:hover .dtls p {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.attractions-wrap {
    background-color: #fff;
    padding: 40px 0;
}
.attractions-wrap h2 {
    text-align: center;
}
.gallery-wrap{
    background-color: #121212;
    padding: 40px 0;
}
.gallery-wrap h2 {
    color: #fff;
}
.gallery-wrap .gallery-card {
    column-width: 400px;
    column-gap: 5px;
    padding: 5px;
}

.gallery-wrap img {
    width: 100%;
    cursor: pointer;
    margin-bottom: 5px;
}


/* Services */
.has-animation {
    position: relative;
}

.has-animation p, .has-animation img {
    opacity: 0;
}

.has-animation.animate-in p, .has-animation.animate-in img {
    animation: textHidden 0.1s 1.1s forwards;
}

.has-animation.animate-in:before, .has-animation.animate-in:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 10;
}

.has-animation.animate-in:before {
    background-color: #ffd114;
}

.has-animation.animate-in:after {
    background-color: #f20867;
    animation-delay: .5s;
}

.has-animation.animation-ltr.animate-in:before {
    animation: revealLTR 1.8s ease;
}

.has-animation.animation-ltr.animate-in:after {
    animation: revealLTR 1s .6s ease;
}

.has-animation.animation-rtl.animate-in:before {
    animation: revealRTL 1.8s ease;
}

.has-animation.animation-rtl.animate-in:after {
    animation: revealRTL 1s .6s ease;
}

@keyframes revealRTL {
    
    0% {
        width: 0;
        right: 0;
    }
    
    65% {
        width: 100%;
        right: 0;
    }
    
    100% {
        width: 0;
        right: 100%;
    }
}

@keyframes revealLTR {
    
    0% {
        width: 0;
        left: 0;
    }
    
    65% {
        width: 100%;
        left: 0;
    }
    
    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes textHidden {
    
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}

.exper {
    background: #fff;
    position: relative;
    margin-bottom:0px;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.exper-box-img {
    position: absolute;
    z-index: 10;
    top: 0;
    width: 50%;
    height: 100%;
    right: 0px;
    overflow: hidden;
}

.exper-box-img img {
    min-height: 100%;
    min-height: 100%;
    display: block;
    width: auto;
    max-width: none;
}

.flex {
    padding: 0 50px 0 0;
}

.flright .flex {
    padding: 0 0px 0 50px;
}

.flex h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.flright .exper-box-img {
    left: 0;
    right: inherit;
}

.flright .row {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.flex {
    transition: 1s all;
    transform: translate(-200px, 0px);
    opacity: 0;
}

.flex.active {
    transform: translate(0px, 0px);
    opacity: 1;
}

.serv-title {
    text-align: center;
    padding: 0 5%;
}

.serv-title .prod-brand img {
    height: 150px;
    margin: 0 auto 10px;
}

.serv-title h2 {
    text-align: center;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 15px;
}

.serv-title h2 span {
    display: block;
    text-align: center;
    font-size: 30px;
    color: #222;
}

.serv-title p.intro {
    text-align: center;
    padding: 0;
}

.serv-title a {
    display: inline-block;
}

.serv-title > span {
    font-size: 14px;
    line-height: 18px;
    color: #313131;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.serv-title h5 {
    font-size: 30px;
    color: #11467a;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.serv-title h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 3px;
    background-image: -webkit-linear-gradient(0deg, #2977b5 0, #10457a 100%);
    background-image: -ms-linear-gradient(0deg, #2977b5 0, #10457a 100%);
}

.serv-title .intro {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    text-align: left;
    padding-right: 10%;
    margin-bottom: 15px;
}

.serv-title p {
    margin-bottom: 15px;
}

.exper h5 {
    font-size: 30px;
    color: #11467a;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}
.exper p {
    margin-bottom: 20px;
}
.exper ul {
    margin-bottom: 20px;
}
.login-card {
    max-width: 440px;
    width: 90%;
    padding: 0px;
    background-color: #fff;
    margin: auto;
}
.login-card .title {
    text-align: left;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input::-webkit-input-placeholder {
    opacity: 0;
}
.form-group input[type="text"], .form-group input[type="password"], .form-group input[type="date"], .form-group input[type="email"], .form-group input[type="number"], .form-group input[type="file"], .form-group select {
    width: 100%;
    height: 48px;
    padding-left: 35px;
    border-radius: 8px;
    border: solid 1px #aaa;
    background-color: #fff;
}
.form-group label {
    background: #fff;
    padding: 0 4px;
    display: inline;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 31px;
    font-size: 14px;
    color: #727272;
    transform: translateY(12px);
    transition-duration: 300ms;
}

.form-group input:focus+label, .form-group input:not(:placeholder-shown)+label {
    color: #aaa;
    transform: translateY(-10px);
    font-size: 13px;
}


.form-group select:focus~label, .form-group select:not([value=""]):valid~label {
    color: #aaa;
    transform: translateY(-10px);
    font-size: 13px;
}

.form-group input:focus+label {
    color: #004aad;
    font-weight: 500;
}

.form-group input[type="submit"], .form-group button {
    width: 100%;
    height: 48px;
    background-color: #004aad;
    border-radius: 8px;
    border: solid 1px #004aad;
    color: #fff;
    font-weight: bold;
}

.form-group .icon {
    height: 48px;
    width: 40px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.5;
    z-index: 2;
}

.form-group input:focus-visible+label+.icon {
    filter: grayscale(0);
    opacity: 1;
}

.form-group .show-password {
    height: 48px;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.5;
    z-index: 2;
}

.remember label {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}
.privacy-policy h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #07447c;
}
.privacy-policy ul {
    margin-bottom: 15px;
    margin-left: 25px;
}
.privacy-policy ul li {
    margin-bottom: 10px;
    margin-left: 25px;
}


/* New */
:root {
--gradient-primary-1-b: linear-gradient( 45deg, #ff68cc 0%, #dc5fff 33%, #a080ff 67%, #7f99ff 100%);
}
.composition-7{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.composition-7 img{
    width: 100%;
}
.composition-7-border{
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: var(--border-radius-default);
	background:	linear-gradient(to right, white, white), var(--gradient-primary-1-b); 
	-webkit-background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
    z-index: 0;
}
.composition-7-inner{
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    isolation: isolate;
    transform: translateZ(0);
    z-index: 1;
}
.composition-7-image-1{    
    position: relative;
    width: 14.9903%; 
}
.composition-7-image-2{    
    position: relative;
    width: 24.8549%; 
}
.composition-7-image-3{    
    position: relative;
    width: 30.0773%; 
}
.composition-7-image-4{    
    position: relative;
    width: 21.3733%; 
}
.composition-7-border{
	background:	linear-gradient(to right, #07447c, #07447c), var(--gradient-primary-1-b); 
	-webkit-background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
}
.txt .btn-more {
    position: relative;
    z-index: 5;
}
.bg-line-1 {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    z-index: 0;
}
.single-testimonial {
	border: 5px solid #07447c;
	text-align: center;
	border-radius: 45px;
	position: relative;
	z-index: 2;
}
.single-testimonial p {
	color: #666;
	font-size: 15px;
	line-height: 24px;
	padding: 50px;
	padding-bottom: 30px;
	position: relative;
	z-index: 3;
}
.single-testimonial::before {
	content: "";
	position: absolute;
	left: -35px;
	top: -15px;
	background: #fff url(../images/quote.png) no-repeat;
	background-size: 50%;
	width: 126px;
	height: 100px;
	transform: rotate(180deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -34px;
	background: #fff url(../images/quote.png) no-repeat;
	background-size: 50%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
}
.round {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.client-video {
	padding-right: 15px;
}
.client-info {
	position: relative;
	z-index: 3;
}
.client-info a {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	font-size: 22px;
}
.client-info {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	padding-bottom: 50px;
}
.client-info h6 {
	color: #000;
	font-weight: 700;
	font-size: 18px;
	color: #222;
}
.client-info span {
	display: inline-block;
	color: #666;
	font-size: 12px;
}