@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-color: #345C7E;
    --black: #000;
    --white: #fff;
    --blue: #345C7E;
    --paragraph: #4c4c4c;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h5, h6 {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    color: var(--paragraph);
    font-weight: 400;
    line-height: 24px;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.bannertext h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.bannertext h1 span {
    font-size: 70px;
    font-weight: 600;
}

.headertext h3 {
    font-size: 44px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
}

.headertext h5 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: normal;
}

.headertext h6 {
    font-size: 25px;
    color: var(--red);
    margin-bottom: 10px;
}

.boxtitle h4 {
    font-size: 28px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px;
}

.smalltitle h5 {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: normal;
}

/*[class^=col-] {
    margin-bottom: 30px; 
}*/


/* ======================================================================= */
    /* header start */
/* ======================================================================= */
.headerarea {
    background-color: #fff;
    box-shadow: none;
    border-radius: 20px;
    padding: 0px 20px;
    position: relative;
    box-shadow: 0 4px 15px rgb(255 255 255 / 12%);
}

.headerarea::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 97%;
    height: 8px;
    margin: 0 auto;
    background-color: #fff;
    opacity: 20%;
    border-radius: 0 0 20px 20px;
}

.headerarea .logo {
    width: 100%;
    max-width: 170px;
}

.headerarea .logo img {
    width: 100%;
    object-fit: cover;
}

.headerarea .header-contact .call {
    width: 100%;
    min-width: 43px;
    max-width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F6F7FB;
    background-color: #F6F7FB;
    color: #000000;
    border-radius: 100%;
    margin-left: 10px;
    transition: 0.5s;
}

.headerarea .header-contact .call:hover {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    z-index: 3333;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.header-right .header-contact .btn {
    margin-right: 10px;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu{ margin-right: 25px; }
.menu ul{margin:0;padding:0;font-size:0;}
.menu ul li{display:inline-block;padding:0;list-style-type:none;position:relative;vertical-align:middle;}
.menu ul li.active{ position: relative; }
.menu ul li.active::before { content: ''; position: absolute; top: -5px; left: 0; width: 100%; max-width: 50px; height: 50px; background-repeat: no-repeat; background-size: contain; background-position: center; background-image: url(../images/menu-active-shape.svg); }
.menu ul li span{ position: absolute; top: 45%; right: 10px; }
.menu ul li span::after { content: '\2b'; color: #000000; font-family: FontAwesome; font-size: 10px; }
.menu ul li:hover span::after{ color: #f7c624; }
.headarea.innerheader .menu ul li a{ color: #000; }
.menu ul li a { color: #000000; font-size: 16px; text-transform: capitalize; font-weight: 400; display: block; padding: 35px 0px; margin: 0 15px; position: relative; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; -ms-transition: all 0.5s ease; transition: all 0.5s ease; }
.menu ul li a:hover, .menu ul li.active a { color: #345C7E; }
.menu ul li.active a::after{width: 100%;}
.menu ul li a span { display: inline-block; vertical-align: 0px; margin-left: 6px; font-size: 10px; }
.menu ul li:hover ul li a:hover { color: #000; background-color: #f7c624; }
.menu ul li ul { width: 240px; position: absolute; top: calc(100% + 30px); left: 0; z-index: 2; background-color: #ffffff; text-align: left; transition: 0.3s; opacity: 0; visibility: hidden; box-shadow: 0 4px 15px rgb(0 0 0 / 3%); }
.menu ul ul li:first-child:before{display:none;}
.menu ul ul li:after{display:none;}
.menu ul li:last-child ul{width:220px;position:absolute;top:100%;left:auto;right:0;z-index:2;background-color:#ffffff;box-shadow:0px 5px 14px rgb(0 0 0 / 2%);text-align:left;}
.menu ul li ul li a { font-size: 14px; text-transform: none; padding: 12px 15px; color: #000; line-height: 20px; font-weight: 500; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -khtml-transition: all ease-in-out 0.5s; display: block; margin: 0; }
.menu ul li ul li ul{top:10px;left:149px;}
.menu ul li ul li span{right:7px;top:12px;}
.menu ul li a:hover.menu ul li ul{display:block;}
.menu ul li ul li{display:block;padding:0;border-bottom:solid 1px rgb(255 255 255 / 7%);border-right:none;}
.menu ul li ul li:last-child{border:none;}
.menuButton{width:40px;height:35px;padding:5px;float:right;display:none;}
.menuButton span { width: 100%; height: 2px; background: #000; margin-bottom: 6px; float: left; transition: all 0.3s ease-in-out 0s; }
.menuButton span:last-child{margin-bottom:0;}
@media (min-width:991.98px){.menu ul{display:block!important;}
 .menu ul li:hover > ul{opacity:1;top:100%;visibility:visible;}
}
@media (max-width:991.98px){.menuButton{display:block;margin-left:0px;cursor:pointer;}
 .menu ul li span{background:url(../images/menu_arrow.png) center center no-repeat;cursor:pointer;width:15px;height:15px;position:absolute;right:15px;top:20px;z-index:99;}
 .menu ul li:hover span{background:url(../images/menu_arrow_hover.png) center center no-repeat;}
 .arrow_change span:nth-child(2){display:none;}
 .arrow_change span:first-child{position:relative;top:9px;transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);}
 .arrow_change span:last-child{position:relative;top:1px;transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);}
 .menuBar{padding:15px 0;}
 .menu{padding:5px 0;}
 .menu ul{display:none;background-color:#fff;position:absolute;top:100%;left:0;width:100%;z-index:99;}
 .menu ul li a{color:#071731;display:block;width:100%;font-size:14px;}
 .menu ul li ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;padding:0;visibility: initial;opacity: 1;}
 .menu ul li:last-child ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;}
 .menu ul li{display:block;padding:10px 15px 10px 15px;border-top:1px solid #cccccc54;text-align:left;position:relative;}
 .menu ul li span{position:absolute;right:30px;z-index:99;cursor:pointer;top:12px;text-align:center;}
 .menu ul li ul li ul{top:0;left:0;}
 .menu ul li ul li a{font-size: 12px;text-transform: none; background-color: #e1e1e1; padding: 8px 12px;color: #000;}
}
.header-contact .mobile-ligin-dropdown{
  display: none;
}
/*// 23.12.2024*/
.topHead {
    padding: 25px 0;
    position: absolute;
    width: 100%;
    z-index: 999;
}

/*// full width mobile search start //*/
.openBtn { background: #000; color: #fff; border: none; padding: 9px; width: 42px; height: 42px; border-radius: 50%; font-size: 17px; cursor: pointer; }
/*.openBtn:hover { background: #e5eaee; }*/
.overlay { height: 100vh; width: 100%; display: none; position: fixed; z-index: 999; top: 0; left: 0; background-color: rgb(0,0,0); background-color: rgba(0,0,0, 0.9); }
.overlay-content { position: relative; top: 46%; width: 50%; text-align: center; margin-top: 30px; margin: auto; }
.overlay .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; cursor: pointer; color: white; }
.overlay .closebtn:hover { color: #ccc; }
.overlay input[type=text] { padding: 15px; font-size: 17px; border: none; float: left; width: 80%; background: white; border-radius: 5px 0 0 5px;}
.overlay input[type=text]:hover { background: #f1f1f1; }
.overlay button { float: left; width: 12%; padding: 15px; background: #ddd; font-size: 17px; border: none; cursor: pointer; border-radius: 0 5px 5px 0;}
.overlay button:hover { background: #bbb; }
/*// full width mobile search end //*/

/*-- header area stop --*/


.mainbtn {
    padding: 12px 25px;
    margin: 0 auto;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    background-color: var(--white);
    color: var(--blue);
    text-align: center;
    display: inline-block;
    transition: 0.6s;
}

.mainbtn:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* ======================================================================= */
    /* banner start */
/* ======================================================================= */
.banner {
    width: 100%;
    min-height: 650px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shadow.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner_contain {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 111;
}


.icon-scroll, .icon-scroll:before { position: absolute; left: 50%; }
.icon-scroll { width: 30px; height: 50px; margin-left: -12px; bottom: 50px; margin-top: -35px; border: 2px solid #fff; border-radius: 25px; }
.icon-scroll:after { content: ""; position: absolute; bottom: -25px; left: 27%; background: url(../images/mouse.png); width: 13px; height: 15px; }
/*@media (max-width: 767px) {
    .icon-scroll {
        position: relative
    }
}*/
.icon-scroll:before { content: ''; width: 4px; height: 8px; background: #fff; margin-left: -2px; top: 8px; border-radius: 4px; animation-duration: 1.5s; animation-iteration-count: infinite; animation-name: scroll; }
@keyframes scroll {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: translateY(26px)
    }
}

/*-- video banner area stop --*/

/* ======================================================================= */
    /* destination_sec start */
/* ======================================================================= */

.destination_sec { width: 100%; }
.destination_right { width: 100%; }
.destination_box { width: 100%; transition: 0.6s; }
.destination_box:hover .smalltitle h5 {
    color: var(--blue);
    transition: 0.6s;
}

.destination_box:hover .fa-arrow-right {
    color: var(--blue);
    transition: 0.6s;
}
.destination_box:hover .smalltitle {
    border-bottom: 1px solid var(--blue);
}
.destination_boxpic { height: 400px; position: relative; display: flex; border-radius: 15px; overflow: hidden; }
.destination_boxpic img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.destination_boxpic::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
    z-index: 1;
}
.destination_btm a img { width: 14px !important; height: 16px; display: inline-block !important; }
.destination_box:hover .destination_boxpic img { transform: scale(1.1); transition: 0.6s; }
.destination_sec_in .mainbtn { margin-top: 10px; }
.destination_box .smalltitle { width: 100%; margin-top: 15px; padding-bottom: 15px; transition: 0.6s; border-bottom: 1px solid #DFDFDF; display: flex; align-items: center; justify-content: space-between;}
.destination_box .smalltitle h5 { margin-bottom: 0px; }
/**/
/*.destination_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}*/
.destination_slide .owl-nav button.owl-prev, .destination_slide .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #a5a5a5; border-radius: 50%; color: #a5a5a5; font-size: 30px;}
.destination_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.destination_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #a5a5a5 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.destination_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.destination_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.destination_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #a5a5a5 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.destination_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.destination_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.destination_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.destination_slide .owl-nav { position: absolute; bottom: 40px; display: inline-flex; left: -300px; justify-content: start; width: 100%;}
.destination_slide .owl-nav button.owl-prev:hover, .destination_slide .owl-nav button.owl-next:hover { background: #103A6A; border: 1px solid #103A6A; color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
.owl-carousel .destination_slide .owl-dots.disabled, .owl-carousel .destination_slide .owl-nav.disabled {
    display: block !important;
}

.destination_box .smalltitle .fa-arrow-right {
	color: #000;
	transition: 0.6s;
}

.destination_box .smalltitle:hover .fa-arrow-right {
	color: #345C7E;
}

/* ======================================================================= */
    /* latest_news start */
/* ======================================================================= */
.latest_news {
    width: 100%;
    padding-top: 0;
}

.latest_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest_top .headertext {
    width: 60%;
}

.btn2 {
    border: 1px solid var(--blue);
    color: var(--blue);
    margin-right: 0;
}

.btn2 .fa-arrow-right {
    transform: rotate(-45deg);
}

.latest_newsin {
    width: 100%;
    margin-top: 35px;
}

/*// latest_left */
.latest_left { width: 100%; }
.latest_leftpic { height: 521px; position: relative; display: flex; border-radius: 15px; overflow: hidden; }
.latest_leftpic img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s;}
.latest_leftpic::before { content: ""; width: 100%; height: 100%; position: absolute; left: 0; bottom: 0; padding: 20px; background: rgb(0, 0, 0); background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%); opacity: 0.8; z-index: 1; }
.btm_textbox { width: 90%; position: absolute; left: 0; right: 0; bottom: 35px; margin: 0 auto; z-index: 111; }
.btm_textbox .smalltitle h5 { color: var(--white); margin: 0; }
.latest_newsin .smalltitle h6 { font-size: 14px; color: var(--white); font-weight: 300; margin-bottom: 12px; }
.latest_left:hover .latest_leftpic img { transform:scale(1.1); }
@media (min-width: 992px) {
    .latest_news .col-lg-6 {
        flex: 0 0 auto;
        width: 45%;
    }
    .latest_news .col-lg-3 {
        flex: 0 0 auto;
        width: 27%;
    }
}
/*// latest_right*/
.latest_right { width: 100%; background-color: var(--white); box-shadow: 0 4px 15px rgb(0 0 0 / 12%); border-radius: 15px;}
.latest_rightpic { height: 300px; position: relative; display: block; border-radius: 15px 15px 0 0; overflow: hidden; }
.latest_rightpic img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s;}
.latest_btm { width: 100%; padding: 33px 15px; display: flex; align-items: center; justify-content: start; }
.latest_right .smalltitle h5 { font-size: 18px; color: var(--black); font-weight: 500; margin-bottom: 8px; line-height: normal; }
.latest_right p { font-size: 14px; line-height: normal; margin-bottom: 10px; }
.latest_right .smalltitle h6 { font-size: 14px; color: var(--black); font-weight: 300; margin-bottom: 12px; }
.latest_right a { font-size: 14px; color: var(--black); font-weight: 500; display: flex; align-items: baseline; justify-content: left; gap: 5px; }
.latest_right .fa-arrow-right-long { font-size: 12px; }
.latest_right .latest_rightpic:nth-child(2) { border-radius: 0 0 15px 15px; }
.latest_right:hover .latest_rightpic img { transform:scale(1.1); }
.latest_right a:hover { color: var(--blue); }


/* ======================================================================= */
    /* category start */
/* ======================================================================= */
.category { width: 100%; padding-top: 0; }
.category .headertext p { width: 60%; margin: 0 auto; }
.category_in { width: 100%; margin-top: 25px; }
.category_pic { height: 290px; position: relative; display: block; overflow: hidden; border-radius: 15px; }
.category_box:hover .category_pic img { transform: scale(1.1); }
.category_box:hover .category_btm a { color: var(--white); }
.category_pic img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.category_pic::before { content: ""; width: 100%; height: 100%; position: absolute; left: 0; bottom: 0; padding: 20px; background: rgb(0, 0, 0); background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%); opacity: 0.7; z-index: 1; }
.category_btm { width: 88%; position: absolute; left: 0; right: 0; bottom: 20px; margin: 0 auto; z-index: 111; }
.category_btm .smalltitle h5 { color: var(--white); margin-bottom: 5px; }
.category_btm a { font-size: 14px; color: #e3e3e3; font-weight: 400; transition: 0.6s; display: flex; align-items: baseline; justify-content: left; gap: 5px; }
.category_btm .fa-arrow-right-long { font-size: 12px; }


/* ======================================================================= */
    /* adventure start */
/* ======================================================================= */

.adventure {
    width: 100%;
    background-color: #345C7E;
}

.adventure .headertext h3 {
    color: var(--white);
}

.adventure .headertext p {
    width: 55%;
    margin: 0 auto;
    color: var(--white);
}

.adventure_in {
    width: 100%;
    margin-top: 40px;
}

.adventurearea { background-color: transparent;}
.adventurearea .headertext {width: 45%;}
.adventuretext {position: absolute;top: -22px;right: 0px;width: 415px;background: #57A7EB;padding: 70px 45px;
  height: 110%; border-radius: 15px; opacity: 0; }

.adventureimg { height: 480px; position: relative; display: flex; overflow: hidden; border-radius: 15px; }
.adventureimg img { width: 100%; height: 100%; object-fit: cover; }
.adventure-carousel .owl-stage-outer { padding: 30px 0px;}
.adventurearea { position: relative;}
.adventure-carousel .owl-drag .owl-item { position: relative;}
.adventuretext h5 {font-size: 34px;color: #fff;margin-bottom: 15px; letter-spacing: 1px;}
.adventuretext h6 {font-size: 18px;color: #fff;margin-bottom: 15px; position: relative; display: inline-block;}
.adventuretext h6:before { content: ""; position: absolute; left: -16px; bottom: -25px; width: 100px; height: 1px; background-color: #fff;  }
.adventuretext .btn2 { background-color: transparent; border: 1px solid #fff; color: #fff; }
.adventuretext .btn2:hover { background-color: #fff; border: 1px solid #fff; color: #345C7E; }
/*//*/
.adventuretext p { color: #fff; padding: 30px 0 20px;}
.adventuretext .btn {border: 1px solid #fff;color: #fff;padding: 0px;display: flex;align-items: center;overflow: hidden;
  width: 163px;margin: 20px auto 0px;}
  .adventuretext .btn:hover { background: #fff; color: #000;}
.adventure-carousel .owl-drag .owl-item .center { position: relative;}
.adventure-carousel .center .adventuretext { opacity: 1;}
.adventure-carousel .owl-nav {position: absolute;top: -114px;display: block !important;right: 80px; display: none !important;}
.adventure-carousel .owl-nav button.owl-prev, .adventure-carousel .owl-nav button.owl-next {width: 45px;height: 45px;border: 1px solid #220a00;border-radius: 50%;color: #220a00;font-size: 33px;transition: all .3s ease-in-out;}
.adventure-carousel .owl-nav button.owl-prev:hover, .adventure-carousel .owl-nav button.owl-next:hover { background: #220a00; color: #fff;transition: all .3s ease-in-out;}
.adventure-carousel .owl-nav button.owl-prev span {position: relative;top: -5px;}
.adventure-carousel .owl-nav button.owl-next span {position: relative;top: -5px;}
.adventure-carousel .owl-nav button.owl-prev {left: 0px;position: relative;}
.adventure-carousel .owl-nav button.owl-next {right: 0px;position: relative;}

/* ======================================================================= */
    /* business_travel start */
/* ======================================================================= */

.business_travel {
    width: 100%;
    padding-bottom: 50px;
}

.business_travel p {
    padding-bottom: 15px;
}

.business_right {
    width: 100%;
    padding-left: 50px;
}


/* ---- Create Accordion --- */
.accordion {  width: 100%; height: 500px; display: flex; overflow: hidden; }
.tab { position: relative; width: 33%; height: inherit; padding: 20px; margin: 0 6px; color: #FFF; cursor: pointer; transition: width .5s ease; }
.tab img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 15px; object-fit: cover; transition: all .5s ease; }
.caption { position: absolute; z-index: 2; white-space: nowrap; top: 20px; right: 20px; opacity: 0; }
.caption_box { padding: 10px 20px; margin: 0 auto; position: relative; font-size: 15px; border-radius: 30px; font-weight: 500; background-color: var(--white); color: var(--blue); text-align: center; display: inline-block; transition: 0.6s; }
.tab:hover img { opacity: .8; }
.tab:hover { width: 80%; }
.tab:hover .caption { transition: all .5s ease; opacity: 1; }
/* ---- Create Accordion --- */


/* ======================================================================= */
    /* solo_sec start */
/* ======================================================================= */

.solo_sec { width: 100%; overflow: hidden; position: relative; }
.solo_card { width: 100%; position: relative; }
.solo_left .mainbtn { background-color: var(--blue); border: 1px solid var(--blue); color: var(--white); }
.solo_left .mainbtn:hover { background-color: transparent; border: 1px solid var(--blue); color: var(--blue); }
.solo_left .mainbtn::after { border: 1px solid rgba(52, 92, 126, 1); width: 100%; height: 100%; border-top: none; border-right: none; }
.solo_left h6 { font-size: 20px; color: #000; margin-bottom: 15px; font-weight: 500; }
.solo_pic { height: 550px; position: relative; display: flex;  border-radius: 15px; }
.solo_pic img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px;}
.solo_pic::before { content: ""; position: absolute; top: -35px; right: 25px; background-color: var(--blue); border-radius: 10px; width: 250px; height: 150px; z-index: -1; }
.solo_pic::after { content: ""; position: absolute; bottom: -35px; left: -25px; border: 2px solid var(--blue); border-radius: 10px; width: 200px; height: 250px; z-index: -1; }
.order_item1 { order: 1; }
.order_item2 { order: -1; }
.solo_left { width: 120%; left: -20%; background-color: #fff; border-radius: 15px; padding: 50px 75px 50px 50px; box-shadow: 0 4px 10px 0px rgb(0 0 0 / 10%); position: relative; z-index: 1; }
.solo_left p { padding-bottom: 15px; }
.solo_sec .headertext h3 { position: relative; padding-bottom: 25px; display: inline-block; }
.solo_sec .headertext h3:after { content: ""; position: absolute; left: -16px; bottom: 10px; width: 100px; height: 1px; background-color: #345C7E; }


/* ======================================================================= */
    /* latest_blog start */
/* ======================================================================= */
.latest_blog { width:100%; padding-top: 0;}
.latest_blog_slide { width:100%; margin-top: 40px;}
.sliderow { width: 100%; margin-top: 65px;}
.slide_box { width: 100%; position: relative;}
.slide_box:hover .slide_boxpic img { transform: scale(1.1); transition: 0.6s;}
.slide_boxpic { width: 100%; height: 250px; display: flex; overflow: hidden; border-radius: 12px; transition: 0.6s;}
.slide_boxpic img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s;}
.blogtextbox { width: 100%; padding: 15px; position: relative;}
.datebox {width: 80%;background-color: #fff;padding: 10px;display: flex;align-items: center;justify-content: start;gap: 8px;position: relative;border-radius: 0 8px 8px 0;margin-bottom: 10px;margin-top: -45px;margin-left: -15px;}
.datebox_circle { width: 36px; height: 36px; text-align: center;  border-radius: 50%; padding: 5px; background-color: #9dd2ff5c; display: flex; align-items: center; justify-content: center;}
.datebox_circle .fa-calendar-days { color: #345c7e;}
.datebox h6 { font-size: 15px; color: var(--blue); font-weight: 500; margin-bottom: 0px;}
.blogtextbox h4 a { font-size: 20px; color: #000; font-weight: 500; position: relative; display: inline-block; }
.blogtextbox h4::before { content: ""; position: absolute; left: 5px; top: 48px; width: 37px; height: 1px; background-color: #345C7E; }
.blogtextbox p { font-size: 15px; color: var(--paragraph);  font-weight: 400; margin-bottom: 0px;}
.text_btm { width: 100%; padding-left: 35px; }
.learn_more { transition: 0.5s; font-size: 15px; color: #C72324; font-weight: 600; display: flex; align-items: center; justify-content: start; gap: 7px;}
.learn_more img { width: 18px !important; height: 13px;}
.learn_more:hover img { transition: 0.6s; filter: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(6%) hue-rotate(214deg) brightness(109%) contrast(101%);}
.learn_more:hover {color: #000;}
/**/
.blogpost_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.blogpost_slide .owl-nav button.owl-prev, .blogpost_slide .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #000; border-radius: 50%; color: #000; font-size: 30px;}
.blogpost_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.blogpost_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.blogpost_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.blogpost_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.blogpost_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.blogpost_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.blogpost_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.blogpost_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.blogpost_slide .owl-nav { position: absolute; top: -90px; display: inline-flex; right: 0; justify-content: end;}
.blogpost_slide .owl-nav button.owl-prev:hover, .blogpost_slide .owl-nav button.owl-next:hover { background: #C72324; border: 1px solid #C72324; color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
/**/

.latest_blog .headertext p {
    width: 60%;
    margin: 0 auto;
}

/* ======================================================================= */
    /* footer start */
/* ======================================================================= */

.footer-area { width: 100%; background-color: #345c7e; padding-bottom: 30px;}
.footer-logo { width: 100%; max-width: 190px; margin: 0 0 25px; }
.footer_left { width:100%; padding-right: 60px; }
.footer-logo img { width: 100%; object-fit: cover; filter: brightness(0) invert(1);}
.footer-area p { color: #fff; }
.footer h4, .footer h5 { color: #fff; font-size: 22px; line-height: 32px; margin: 0 0 15px; }
.footer h5 { margin: 0 0 5px; }
.footer ul { padding: 0px; margin: 0px 0 0 20px; }
.footer ul li { margin-bottom: 12px; list-style: none; }
.footer h6 { color: #fff; font-size: 18px; font-weight: 600; margin: 0 0 5px; }
.footer h6 a { color: #fff; font-size: 16px; font-weight: 500; }
.footer ul li:last-child { margin-bottom: 0; }
.footer ul li a { color: #e3e3e3; font-size: 16px; font-weight: 300; transition: 0.5s; position: relative; }

.footer ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.35s ease-out;
}
.footer ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer ul li a::before { content: "\f101"; position: absolute; top: 3px; left: -18px; font-size: 12px; font-family: FontAwesome; color: #e3e3e3; transition: 0.5s; }
.footer ul li a:hover, .footer ul li a:hover::before { color: #fff; padding-left: 3px;}
.footer address, .footer a { color: #fff; font-size: 16px; font-weight: 500; }
.footer a:hover { text-decoration: none; }
.footer { margin-bottom: 15px; }
.footer:last-child { margin-bottom: 0; }
.footer-social { display: flex; justify-content: center; margin-bottom: 10px; position: relative;}
.footer-social::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 41%;
    height: 1px;
    background-color: #fff;
}
.footer-social::after {
    content: "";
    position: absolute;
    right: 0;
    top: 17px;
    width: 41%;
    height: 1px;
    background-color: #fff;
}
.footer-social li { margin: 0px 5px; }
.footer-social li a { width: 100%; min-width: 35px; max-width: 35px; height: 35px; border-radius: 50%; background-color: transparent; display: inline-flex; border: 1px solid #fff; align-items: center; justify-content: center; font-size: 16px; color: #fff; transition: 0.5s; text-decoration: none; box-shadow: 0px 4px 15px rgb(0 0 0 / 10%); }
.footer-social li a:hover { background-color: #fff; border-color: #fff; color: #345C7E; }
.copyright { width: 100%; background-color: #345c7e; }
.copyrightin { width: 100%; padding: 18px 0; }
.copyright p { margin-bottom: 0; color: #e3e3e3; font-size: 15px; }
.copyright p a { font-weight: 500; color: #fff; }
.footer-body-area  .col-lg-3:nth-child(1) { flex: 0 0 auto; width: 34%; padding-right: 25px; }
.footer-body-area  .col-lg-3:nth-child(2) { flex: 0 0 auto; width: 22%; }
.footer-body-area  .col-lg-3:nth-child(3) { flex: 0 0 auto; width: 22%; }
.footer-body-area  .col-lg-3:nth-child(4) { flex: 0 0 auto; width: 22%; }
.inner_footer { padding-top: 80px; margin-top: 0; }



.innerbanner{ min-height: 370px;}
.projectboxinner{padding: 10px; box-shadow: 0px 0px 10px 0px #ddd;border: 1px solid #ddd;}
.favorites_box_img{height: 350px;}
.favorites_box_img img{ width:100%; height:100%; object-fit:cover;}
.box_btm_content{margin-top: 10px;}
.box_btm_content h4{font-size: 20px;color: #000;min-height: 40px;}
.your_favorites{ padding:50px 0px;}
.inner_folloowinner{ padding-top:150px}
.innerblogimg img{ width:100%;}

.blogpost h1, .blogpost h2, .blogpost h3{ margin:20px 0px 10px}







