@font-face {
    font-family: 'CnnSans-regular';
    src: url('fonts/cnn_sans_display-v1.woff2');
}

@font-face {
    font-family: 'CnnSans-bold';
    src: url('fonts/cnn_sans_display-bold-v1.woff2');
}

@font-face {
    font-family: 'CnnSans-medium';
    src: url('fonts/cnn_sans_display-medium-v1.woff2');
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444;
    background-color: #fff;
}
a {
    color: #3444be;
}
a:hover {
    color: #51cdbe!important;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'CnnSans-regular', helveticaneue, Helvetica, Arial, Utkal, sans-serif;
}
#main {
    margin-top: 50px;
}
@media (max-width: 992px) {
    #main {
        margin-top: 30px;
    }
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #041e42;
    border-top-color: #dcf5f2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 1003;
}
.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #9c2c34;
    color: #fff;
    transition: all 0.4s;
}
.back-to-top i:hover {
    background: #9c2c34;
    color: #fff;
}
.fake-button {
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 1002;
}
.whatsapp_link{
    /* right:100px; */
}
.fake-button img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.4s;
}
.animate > svg {
    animation: pulse 1s linear 4;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
#header {
    background: #333366;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08);
    z-index: 997;
    padding: 15px 0;
}
#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#header .logo a {
    color: #222;
}
#header .logo img {
    max-height: 60px;
}
@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu > ul {
    display: flex;
}
.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 20px;
}
.nav-menu a {
    display: block;
    position: relative;
    color: #C4CED4;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'CnnSans-regular', helveticaneue, Helvetica, Arial, Utkal, sans-serif;
    font-weight: 600;
    text-decoration: none;
}
.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
}
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #ff9b14;
    text-decoration: none;
}
.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #222;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #3444be;
    text-decoration: none;
}
.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}
@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}
.mobile-nav-toggle {
    position: fixed;
    right: 9px;
    top: 20px;
    z-index: 1000;
    border: 0;
    background: none;
    font-size: 37px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    background-color: #8b2731;
    padding: 5px;
}
.mobile-nav-toggle i {
    color: #fff;
}
.mobile-nav {
    position: fixed;
    top: 67px;
    right: 9px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #ed462f;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav > ul > li:not(:last-child) > a {
    border-bottom: 1px solid #e18377;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 7px 20px;
    font-weight: 500;
    outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #3444be;
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}
.header-social-links {
    padding-left: 20px;
}
.header-social-links a {
    color: #222;
    padding-left: 6px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
    font-size: 16px;
}
.header-social-links a:hover {
    color: #3444be;
}
@media (max-width: 992px) {
    .header-social-links {
        padding: 0 48px 0 0;
    }
}
#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/banner_combined.jpg) top right;
    background-size: cover;
}
#hero .container {
    position: relative;
}
@media (max-width: 992px) {
    #hero .container {
        padding-top: 58px;
    }
}
#hero .btn-about, #hero .btn-design, .btn-download-resume {
    font-family: 'CnnSans-regular', helveticaneue, Helvetica, Arial, Utkal, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #9d2235;
    margin-top: 5px;
}
#hero .btn-about:hover, #hero .btn-design:hover, .btn-download-resume:hover {
    background: #00285e !important;
    color: #fff !important;
}
@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
}
@media (max-width: 992px) {
    #hero:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        color: #000;
    }
    #hero {
        background-repeat: no-repeat;
        background-size: cover !important;
        height: 100vh !important;
    }
    .banner-img {
        margin: 50px auto !important;
    }
}
@media (max-width: 700px) {
    #hero {
        background-repeat: no-repeat;
        background-size: cover !important;
    }
}
@media (max-width: 600px) {
    #hero {
        background-repeat: no-repeat;
        background-size: cover !important;
        height: 100vh !important;
    }
    #hero .container {
        padding-top: 0;
        margin-top: -160px;
    }
    #hero:before {
        content: "";
        height: 100vh !important;
    }
}
section {
    padding: 60px 0;
}
.section-bg {
    background-color: #e7f8f6;
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #00285e;
    bottom: 0;
    left: calc(50% - 25px);
}
.section-title p {
    margin-bottom: 0;
}
.testimonials .section-header {
    margin-bottom: 40px;
}
.testimonials .testimonial-item {
    text-align: center;
}
#footer {
    background: #333366;
    padding: 6px 0;
    color: #C4CED4;
    font-size: 14px;
    text-align: center;
    position: static;
    height: 38px;
    bottom: 0;
    width: 100%;
}
#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}
#footer .credits a {
    color: #3444be;
}
.blog-card-body {
    background-color: #e9e8e6;
}
.btn-read-more {
    color: #3444be !important;
    border: 1px solid #3444be !important;
}
.page-item.active .page-link {
    background-color: #3444be !important;
    border-color: #3444be !important;
}
.page-link, .page-link:hover {
    color: #3444be;
}
nav#nav-social {
    position: fixed;
    width: 60px;
    margin-top: 150px;
    transition: all 0.3s linear;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4);
}
nav#nav-social ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
nav#nav-social li {
    height: 45px;
    position: relative;
}
nav#nav-social li a {
    color: #fff !important;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 45px;
    padding-left: 25%;
    transition: all 0.3s linear;
    text-decoration: none !important;
}
nav#nav-social li a i {
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 18px;
}
ul#ul-social li a span {
    display: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
ul#ul-social li a:hover {
    z-index: 1;
    width: 150px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
}
ul#ul-social li:hover a span {
    padding-left: 30%;
    display: block;
    font-size: 12px;
}
img.note-float-left {
    margin-right: 10px;
}
img.note-float-right {
    margin-left: 10px;
}
.responsive-grid {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.responsive-grid div {
    margin-bottom: 15px;
}
.responsive-grid a {
    width: 100%;
    padding: 7px 0;
}
.responsive-grid a img {
    width: 100%;
}
@media (max-width: 500px) {
    .responsive-grid {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
.youtube {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}
.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
}
.youtube img, .youtube .play-button {
    cursor: pointer;
}
.youtube img, .youtube iframe, .youtube .play-button, .youtube .play-button:before {
    position: absolute;
}
.youtube .play-button, .youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.text-white {
    color: #fff !important;
}
.header-social-links > a > i {
    color: #C4CED4;
}
.banner-content {
    /* margin-top: 35px; */
}
.banner-img img {
    width: 70%;
}
.banner-btns {
    margin-top: 40px;
}
@media (max-width: 1920px) {
    .banner-img {
        margin-left: -40px;
        margin-top: 190px;
    }
}
@media (max-width: 1600px) {
    .banner-img {
        margin-left: -70px;
        margin-top: 10px;
    }
}
@media (max-width: 992px) {
    .banner-img img {
        width: 97%;
    }
    .banner-content {
        margin-top: 0;
    }
    .banner-btns {
        margin-top: 0;
    }
}
body {
    margin: 0;
}
@media (max-width: 767px) {
    .banner-img {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 600px) {
    .banner-btns {
        margin-top: 210px;
    }
    .banner-img img {
        width: 100%;
    }
}
.cookieConsent {
    background-color: #00285e;
    font-size: 15px;
    color: #fff;
    padding: 18px 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1001;
    border-top: 2px solid #9d2d35;
    font-family: "Baloo Thambi", cursive;
}
.cookieConsent a {
    color: #ff9b14;
    text-decoration: underline;
}
.cookieConsent a:hover {
    color: #fff;
}
.closeCookieConsent {
    float: right;
    cursor: pointer;
    margin: -10px 0 0 0;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
}
.closeCookieConsent:hover {
    color: #fff;
}
.cookieConsent a.cookieConsentOK {
    background-color: #9c2c34;
    color: #fff;
    display: inline-block;
    border-radius: inherit5px;
    padding: 5px 15px;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 0;
}
.cookieConsent a.cookieConsentOK:hover {
    background-color: #00285e;
    border: 1px solid #9c2c34;
}
.banner-img img:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}
@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
@media only screen and (max-width: 767px) {
    #footer {
        padding: 13px 0;
        height: 72px;
    }
    .post_container iframe{
        width:100%;
    }
    #v-background h2{
        padding-top:30px;
    }
}
 #owl-demo{
     margin-top:55px;
}
 .date-slider ul li{
     display: inline-block;
     margin-right: 10px;
}
 .date-slider ul li span{
     padding: 5px;
     cursor: pointer;
}
 .date-slider ul li .active{
     color: lightblue;
}
 tbody {
     text-align: center;
}
/* Click the image one by one to see the different layout */
/* Owl Carousel */
 .owl-prev {
     background: url(https://res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png) center no-repeat;
     position: absolute;
     top: 50%;
     z-index: 1000;
     left: -2%;
     cursor: pointer;
     color: transparent;
     margin-top: -27px;
     background-color: darkblue;
     padding: 5px 0 5px 0;
     background-size: 15px;
     border-radius: 50%;
     border: 2px solid white;
}
 .owl-next {
     background: url(https://res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png) center center no-repeat;
     position: absolute;
     top: 50%;
     z-index: 1000;
     right: -2%;
     cursor: pointer;
     color: transparent;
     margin-top: -27px;
     background-color: darkblue;
     padding: 5px 0 5px 0;
     background-size: 15px;
     border-radius: 50%;
     border: 2px solid white;
}
 .owl-prev:hover, .owl-next:hover {
     opacity: 0.5;
}
 .owl-carousel .inner{
     cursor: pointer;
}
 .owl-carousel .close-button{
     width: 50%;
     display: inline-block;
     margin: auto;
}
/* Owl Carousel */
/* Popup Text */
 .white-popup-block {
     background: #FFF;
     padding: 20px 30px;
     text-align: left;
     max-width: 650px;
     margin: 40px auto;
     position: relative;
}
 .popuptext {
     display: table;
}
 .popuptext p {
     margin-bottom: 10px;
}
 .popuptext span {
     font-weight: bold;
     float: right;
}
/* Popup Text */
/* Icon CSS */
 .item {
     position: relative;
}
 .item i {
     display: none;
     font-size: 4rem;
     color: #FFF;
     opacity: 1;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
}
 .item a {
     display: block;
     width: 100%;
}
/*.item a:hover:before {
    */
    /* content: "";
    */
    /* background: rgba(0, 0, 0, 0.5);
    */
    /* position: absolute;
    */
    /* height: 100%;
    */
    /* width: 100%;
    */
    /* z-index: 1;
    */
    /*
}
*/
 .inner {
     transition: 1s ease;
}
 .inner:hover {
     display: block;
     z-index: 2;
     -webkit-transform: scale(1.1);
     -ms-transform: scale(1.1);
     transform: scale(1.1);
     transition: 1s ease;
}
 .report-modal .modal-body{
     background: #ededed;
}
 .report-modal li{
     margin-bottom: 5px;
}
 .report-date{
     display: inline-block;
}
 .report-date label{
     margin-right: 10px;
}
 .from{
     margin-right: 30px;
}
 .date-slider{
     margin: 10px;
     padding: 15px;
     background: lightblue;
     border-radius: 5px;
}
 .date-slider i{
     font-size: 25px;
     color: darkblue;
     margin-right: 30px;
}
 .earning-table thead{
     background: darkblue;
     color: white;
}
 .w100{
    width:100%;
}
 .tp-30{
    padding-top:30px;
}
/* Google Trends CSS */
 .trending-lists ul {
     display: flex;
     flex-direction: column;
     padding: 0;
     margin: 0;
}
 .trending-lists ul li a {
     background: #fff;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border: 1px solid #fff;
     border-bottom: 1px solid #eee;
     transition: .2s;
}
 .trending-lists ul li a:hover {
     transform: scale(1.02);
     border: 1px solid #def3ff;
}
 .trend-searches span {
     font-size: 12px;
     color: #ada4a4;
}
 .trending-lists .trend-img {
     background-size: cover;
     height: 110px;
     width: 110px;
     background-position: center;
}
 .trending-lists .trend-count {
     display: flex;
     align-items: center;
     justify-content: center;
}
 .trending-lists .trend-num {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: #208bcb;
     color: #fff;
}
 .trend-headings h2 {
     font-size: 22px;
     margin: 0;
}
 .trend-headings p.trend-desc {
     margin: 0;
     font-size: 14px;
     color: #208bcb;
     font-weight: 100;
}
 span.trend-posted-date {
     font-size: 12px;
     color: #9f9f9f;
     font-style: italic;
     font-weight: 500;
}
 .trend-left-data {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     width: 70%;
     padding: 20px;
}
 .trend-right-data {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     width: 30%;
}
 .trend-headings {
     margin-left: 15px;
}
 .trend-searches {
     margin-right: 60px;
}
 .latest-trends-counters ul {
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 18px;
}
 .sub_header_in{
     padding-top: 100px;
}
/* News Trends */
 .news-trends-items .trend-left-data{
     width: 88%;
}
 .news-trends-items .trend-right-data{
     width: 12%;
}
 ul.latest-news-lists li .lnl-img {
     position: relative;
     width: 100px;
     height: 75px;
     overflow: hidden;
     margin-right: 5px;
}
 ul.latest-news-lists li .lnl-img img {
     position: absolute !important;
     left: 50% !important;
     top: 50% !important;
     height: 100%;
     width: 100%;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     max-width: unset !important;
}
 ul.latest-news-lists li a {
     display: flex;
     align-items: stretch;
     justify-content: space-between;
}
 ul.latest-news-lists li {
     -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
     -moz-box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
     box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
     margin-bottom: 10px;
     background: #f8f8f8;
     transition: .2s;
     list-style-type: none;
}
 ul.latest-news-lists li:hover{
     background: #fff;
}
 .lnl-content h6 {
     white-space: nowrap;
     width: 120px;
     overflow: hidden;
     text-overflow: ellipsis;
     font-size: 14px;
     margin-bottom: 0;
}
 .lnl-content {
     padding: 10px;
     display: flex;
     flex-direction: column;
     align-items: baseline;
     justify-content: center;
}
 .lnl-content p {
     margin: 0;
     font-size: 11px !important;
     color: #808080;
     line-height: 1;
}
 .widget.latest-news-wrapper .widget-title {
     padding-top: 0;
}
/* Close News Trends */
 .btn {
     clear: both;
     white-space: nowrap;
     font-size: 0.8em;
     display: inline-block;
     border-radius: 5px;
     box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
     margin: 2px;
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     transition: all 0.5s;
     overflow: hidden;
}
 .btn:hover {
     box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
}
 .btn:focus {
     box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}
 .btn > span, .btn-icon > i {
     float: left;
     padding: 13px;
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     transition: all 0.5s;
     line-height: 1em;
}
 .btn > span {
     padding: 14px 18px 16px;
     white-space: nowrap;
     color: #fff;
     background: #b8b8b8;
}
 .btn:focus > span {
     background: #9a9a9a;
}
 .btn-icon > i {
     border-radius: 5px 0 0 5px;
     position: relative;
     width: 35px;
     text-align: center;
     font-size: 1.25em;
     color: #fff;
     background: #212121;
}
 .btn-icon > i:after {
     content: "";
     border: 8px solid;
     border-color: transparent transparent transparent #222;
     position: absolute;
     top: 13px;
     right: -15px;
}
 .btn-icon:hover > i, .btn-icon:focus > i {
     color: #fff;
}
 .btn-icon > span {
     border-radius: 0 5px 5px 0;
}
 .btn-facebook:hover > i, .btn-facebook:focus > i {
     color: #3b5998;
}
 .btn-facebook > span {
     background: #3b5998;
}
 .btn-twitter:hover > i, .btn-twitter:focus > i {
     color: #55acee;
}
 .btn-twitter > span {
     background: #55acee;
}
 .btn-pinterest:hover > i, .btn-pinterest:focus > i {
     color: #cb2028;
}
 .btn-pinterest > span {
     background: #cb2028;
}
 .btn-linkedin:hover > i, .btn-linkedin:focus > i {
     color: #007bb6;
}
 .btn-linkedin > span {
     background: #007bb6;
}
/* new chat gpt */
 .copy-btn {
     bottom: -26px;
     left: 48px;
     font-size: 11px;
}
 .new-ui .from{
     text-align: right;
     margin: 5px 60px 60px 8%;
     padding-right: 30px;
     background-color: inherit;
}
 .from-container{
     border-radius: 12px 12px 0 12px;
     position: relative;
     display:inline-block;
     background-color: #00285e;
     padding:10px;
     color:#FFFFFF;
}
 .new-ui .to{
     text-align: left;
     padding-left: 30px;
}
 .to-container{
     display: inline-block;
     background: #16a6fa57;
     border-radius: 12px 12px 12px 0;
     margin: 5px 8% 60px 60px;
     position: relative;
     padding:10px;
     color:#FFFFFF;
}
 .from-img{
     position: absolute;
     bottom: -25px;
     right: -34px;
     background: #e8b83e;
     border-radius: 45px;
     color: #000000;
     padding: 4px;
     font-family: sans-serif;
}
 .to-img{
     position: absolute;
     bottom: -25px;
     left: -32px;
     background: #FFFFFF;
     border-radius: 45px;
     width: 34px;
     padding: 6px;
}
 .chat-ai {
     height: auto !important;
}
 pre code {
     color: #FFFFFF !important;
}
/* others */
 .left_img{
     float: left;
     width: 50%;
     padding-right: 20px;
}
 .post_h{
     float: left;
}
 #bio iframe {
     width: 100%;
    /* Set the initial width to 100% of its container */
     height: 500px;
    /* Set the initial height as needed */
}
 @media (max-width: 767px) {
     #bio iframe {
         width: 100%;
        /* Set the width to 100% on mobile devices */
         height: 300px;
    }
}
 @media only screen and (min-width: 1900px){
     .container {
         max-width: 1800px !important;
    }
}
 @media only screen and (max-width: 900px) {
     .owl-carousel.owl-drag .owl-item{
         padding: 0 10px;
    }
}
 @media only screen and (max-width: 600px) {
     .owl-prev{
         left: -4%;
    }
     .owl-next{
         right: -4%;
    }
     .owl-carousel.owl-drag .owl-item{
         padding: 0 10px;
    }
    /* new chat gpt */
     .new-ui .from {
         text-align: right;
         margin: 5px 0px 30px 0
    }
     .to-container {
         margin: 5px 0 30px 0;
    }
     #message-box {
         padding-bottom: 40px;
    }
}

/* Google Trends CSS */
.trending-lists ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.trending-lists ul li a {
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    border-bottom: 1px solid #eee;
    transition: .2s;
}

.trending-lists ul li a:hover {
    transform: scale(1.02);
    border: 1px solid #def3ff;
}

.trend-searches span {
    font-size: 12px;
    color: #ada4a4;
}

.trending-lists .trend-img {
    background-size: cover;
    height: 110px;
    width: 110px;
    background-position: center;
}

.trending-lists .trend-count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-lists .trend-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #208bcb;
    color: #fff;
}

.trend-headings h2 {
    font-size: 22px;
    margin: 0;
}

.trend-headings p.trend-desc {
    margin: 0;
    font-size: 14px;
    color: #208bcb;
    font-weight: 100;
}

span.trend-posted-date {
    font-size: 12px;
    color: #9f9f9f;
    font-style: italic;
    font-weight: 500;
}

.trend-left-data {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
    padding: 20px;
}

.trend-right-data {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
}

.trend-headings {
    margin-left: 15px;
}

.trend-searches {
    margin-right: 60px;
}

.booking-banner-wrapper iframe {
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46rem !important;
    height: 5.7rem !important;
    overflow: hidden !important;
    border: 0;
}
.booking-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.latest-trends-counters ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.hide-spinner {
    opacity: 0;
}

.trending-lists .trend-num.warning-bg {
    background: #cb7720;
}

.blog-img-bg {
    height: 25rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-img-bg-new {
    position: relative;
    overflow: hidden;
    height: 25rem;
    width: 100%;
}

.blog-img-bg-new img {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
}

.singlepost.trending-post-wrapper {
    padding: 0;
}

.trending-post-content {
    padding: 0px 30px 30px 30px;
}

ul, ol {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

@media only screen and (max-width:425px) {
    .trending-lists ul li a {
        flex-direction: column;
    }
    .trend-left-data {
        width: 100%;
        padding: 10px;
    }
    .trend-right-data {
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }
    .latest-trends-counters ul {
        font-size: 16px;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .trend-headings p.trend-desc {
        font-size: 12px !important;
        font-weight: 400;
    }
    .news-trends-items .trend-right-data {
        width: 100%;
    }
    .trend-headings h2 {
        font-size: 18px;
    }
}

.country-search-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.latest-trends-counters ul {
    margin-bottom: 10px;
}

.country-search-filters {
    margin-top: 10px;
}

.country-search-filters .styled-select:after {
    font-family: 'FontAwesome';
    content: "\f0ac";
    color: #555;
    position: absolute;
    right: 10px;
    top: 1px;
}

.country-search-filters .styled-select {
    color: #555;
}

.country-search-filters .styled-select {
    height: auto;
}

.styled-select {
    width: 100%;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    border: none;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding-right: 35px;
    position: relative;
}

.styled-select select {
    background: transparent;
    width: 110%;
    padding-left: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 30px;
    color: #555;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0;
    font-weight: 500;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.country-search-filters .styled-select {
    height: auto;
}

.country-search-filters .styled-select {
    color: #555;
}

/* Google Trends CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    border-top: 3px solid #FB4F14;
}

.dropdown-content a {
    color: #002244 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background: #ffffff;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #FB4F14 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown ul{
    padding-top: 31px;
    background: transparent;
    box-shadow: inherit;
}

/* ============================================
   Nested Submenu Styles for Resources Menu
   ============================================ */

/* Main mega-dropdown container */
.mega-dropdown .mega-menu {
    min-width: 220px;
    background: #ffffff;
}

/* Submenu parent item */
.mega-menu .has-submenu {
    position: relative;
}

.mega-menu .has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
    color: #002244 !important;
    background: #ffffff;
}

.mega-menu .has-submenu > a i {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

/* Nested submenu */
.mega-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    padding-top: 0 !important;
    margin-left: 0;
    z-index: 1001;
    border-radius: 8px;
    border-top: 3px solid #FB4F14;
}

.mega-menu .submenu li {
    list-style: none;
}

.mega-menu .submenu a {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    color: #002244 !important;
    background: #ffffff;
}

.mega-menu .submenu a:hover {
    background: #f5f5f5;
    color: #FB4F14 !important;
}

/* Show submenu on hover */
.mega-menu .has-submenu:hover > .submenu {
    display: block;
}

.mega-menu .has-submenu:hover > a {
    background: #f5f5f5;
    color: #FB4F14 !important;
}

.mega-menu .has-submenu:hover > a i {
    transform: rotate(90deg);
}

/* Submenu hover effects */
.mega-menu .submenu a:hover {
    background: #f5f5f5;
    color: #FB4F14 !important;
}

/* Divider styling */
.dropdown-content .divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 4px 0;
}

@media (max-width: 768px) {
    .dropdown, .dropdown ul, .dropdown .dropdown-content a{
        width:100%;
    }
    .dropdown ul {
        padding-top: 0;
    }
    .dropdown .dropdown-content a {
        color: rgb(255, 255, 255);
        display: inline-block;
        padding-left: 56px;
    }
    
    /* Mobile submenu styles */
    .mega-menu .submenu {
        position: static;
        left: 0;
        box-shadow: none;
        margin-left: 20px;
        background: #2d2d5e;
    }
    
    .mega-menu .has-submenu > a i {
        transform: rotate(90deg);
    }
    
    .mega-menu .has-submenu:hover > .submenu,
    .mega-menu .has-submenu.active > .submenu {
        display: block;
    }
}

.no-src.lazyload,
.no-src.lazyloading {
  opacity: 0;
}

.no-src.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

[data-expand].lazyload {
  opacity: 0;
  transform: scale(0.8);
}

[data-expand].lazyloaded {
  opacity: 1;
  transition: all 700ms;
  transform: scale(1);
}

.lazyload,
.lazyloading {
  opacity: 0;
  transform: scale(0.8);
}
  
.lazyloaded {
  opacity: 1;
  transition: all 700ms;
  transform: scale(1);
}

/*.blur-up {*/
  /*-webkit-filter: blur(4px);*/
  /*filter: blur(4px);*/
  /*transition: filter 400ms, -webkit-filter 400ms;*/
/*}*/

/*.blur-up.lazyloaded {*/
  /*-webkit-filter: blur(0);*/
  /*filter: blur(0);*/
/*}*/
