/* base 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;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
/* font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; */

body {
    color: #000;
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    font-family: "Lora", serif;
}

* {
    box-sizing: border-box;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.relative {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #203656;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin: 20px 0;
}

a {
    color: #6e72fc;
    outline: 0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #203656;
}

a:focus {
    outline: 0;
}

/* ****************** header css starts ******************* */

.site-wrapper .main-overlay {
    opacity: 0;
    visibility: hidden;
    filter: blur(2px);
    background: #fff;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 5;
    transition: all 0.3s ease-in-out;
}

.site-wrapper .main-overlay.active {
    opacity: 0.6;
    visibility: visible;
}

.header-default {
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.header-default .navbar-nav {
    margin-left: 50px;
}

.header-default.clone {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    right: 0;
    padding: 25px 0;
    transform: translateY(-100%);
    transition: 0.2s transform cubic-bezier(0.3, 0.73, 0.3, 0.7);
    z-index: 4;
}

body.down .header-default.clone {
    transform: translateY(0);
}

.top-header-area {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #d3d3d3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top-header-area {
        float: right;
    }
    .top-social {
        display: none;
    }
    .subscribe {
        display: none;
    }
    .navbar-brand img {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .top-header-area {
        text-align: center;
    }
    .subscribe {
        display: none;
    }
    .top-social {
        display: none;
    }
    .navbar-brand img {
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .top-header-area {
        text-align: center;
    }
    .subscribe {
        display: none;
    }
    .top-social {
        display: none;
    }
    .navbar-brand img {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .top-header-area .top-social-info a {
        margin-left: 50%;
    }
    .subscribe {
        display: none;
    }
    .top-social {
        display: none;
    }
    .navbar-brand img {
        width: 100%;
    }
}

.navbar {
    padding: 0;
}

.navbar-nav {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.navbar-nav .nav-link {
    padding: 0.439rem 1rem;
    color: #000;
}

.navbar-nav .nav-link:hover {
    color: #203656;
}

.navbar-nav li.active .nav-link {
    color: #fff;
    background: #6a3093;
    border-radius: 25px;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: 0 8px 20px rgba(32, 54, 86, 0.2);
}

.dropdown-menu::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    top: -10px;
    left: 25%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
}

.dropdown-menu li::after {
    content: "";
    background: #ebebeb;
    background: linear-gradient(to right, #ebebeb 0%, transparent 100%);
    display: block;
    height: 1px;
    width: 100%;
}

.dropdown-menu li:last-child::after {
    content: "";
    display: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.6rem 1.5rem;
    clear: both;
    font-weight: 400;
    font-size: 13px;
    color: #79889e;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover {
    margin-left: 5px;
    transition: all 0.4s ease-in-out;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #6e72fc;
    background-color: transparent;
}

.dropdown-divider {
    height: 0;
    margin: 0.1rem 0;
    overflow: hidden;
    border-top: 1px solid #ddd;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    font-size: 8px;
    border-top: transparent;
    border-right: transparent;
    border-bottom: 0;
    border-left: transparent;
    content: "";
    font-family: "simple-line-icons";
}

.burger-icon::before,
.burger-icon::after {
    content: "";
    background: #fff;
    display: block;
    margin: auto;
    height: 1px;
    width: 15px;
}

.burger-icon::before {
    margin-bottom: 6px;
}

.burger-icon::after {
    margin-top: 6px;
}

.header-right .social-icons {
    display: inline-block;
}

.header-right .header-buttons {
    display: inline-block;
    margin-left: 50px;
}

.header-right .header-buttons button {
    margin-left: 10px;
}

.header-right .header-buttons button:first-child {
    margin-left: 0;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.3rem;
        padding-left: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .container-xl {
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .container-xl {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .header-right .social-icons {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        animation: growOut 300ms ease-in-out forwards;
        transform-origin: top center;
    }
    @keyframes growOut {
        0% {
            transform: scale(0);
        }
        80% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

button {
    transition: all 0.3s ease-in-out;
}

button:focus {
    outline: none;
    box-shadow: none !important;
}
iframe {
    width: 100%;
}
.icon-button {
    color: #fff;
    border: 0;
    border-radius: 50%;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    background-size: auto 200%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 37px;
    line-height: 39px;
    text-align: center;
    vertical-align: middle;
    width: 37px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
    outline: none;
}

.icon-button:hover {
    background-position: bottom center;
}

.social-icons a {
    font-size: 16px;
    color: #203656;
}

.social-icons a:hover {
    color: #6e72fc;
}

.social-icons li:not(:last-child) {
    margin-right: 1rem;
}

/* ************ canvas menu *********** */

.canvas-menu {
    background: #fff;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px;
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    z-index: 6;
    box-shadow: -4px 0px 20px rgba(32, 54, 86, 0.2);
    transform: translateX(350px);
    transition: all 0.3s ease-in-out;
}

.canvas-menu.open {
    transform: translateX(0);
}

.canvas-menu .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    position: absolute;
    padding: 0.25em 0.25em;
    color: #000;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.4;
    right: 30px;
    top: 20px;
    transition: all 0.3s ease-in-out;
}

.canvas-menu .btn-close:focus {
    outline: none;
    box-shadow: none;
}

.canvas-menu .btn-close:hover {
    opacity: 1;
}

.canvas-menu .logo {
    margin-bottom: 80px;
    margin-top: 50px;
    width: 100%;
}

.canvas-menu nav {
    width: 100%;
}

.canvas-menu .vertical-menu {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.canvas-menu .vertical-menu li.openmenu > a {
    color: #203656;
}

.canvas-menu .vertical-menu li.openmenu .switch {
    transform: rotate(180deg);
}

.canvas-menu .vertical-menu li {
    padding: 0;
    position: relative;
    list-style: none;
    transition: all 0.2s ease-in-out;
}

.canvas-menu .vertical-menu li a {
    color: #203656;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.canvas-menu .vertical-menu li::after {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to right, #ebebeb 0%, transparent 100%);
}

.canvas-menu .vertical-menu li.active a {
    color: #6e72fc;
}

.canvas-menu .vertical-menu li.active .submenu a {
    color: #79889e;
}

.canvas-menu .vertical-menu li.active .submenu a:hover {
    color: #203656;
}

.canvas-menu .submenu {
    display: none;
    padding: 10px 20px;
}

.canvas-menu .submenu li {
    padding: 5px 0;
}

.canvas-menu .submenu li::after {
    content: "";
    display: none;
}

.canvas-menu .vertical-menu li .switch {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    font-size: 10px;
    display: inline-block;
    padding: 10px;
    line-height: 1;
    cursor: pointer;
    color: #6e72fc;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

/* ************** search pop up ************* */

.search-popup {
    background: white;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
}

.search-popup.visible {
    opacity: 1;
    visibility: visible;
    animation: growOut 500ms ease-in-out forwards;
}

.search-popup .search-content {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 650px;
    transform: translate(-50%, -50%);
}

.search-popup .btn-close {
    right: 30px;
    top: 30px;
    position: absolute;
}

.search-popup-prices {
    background: white;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
}

.search-popup-prices.visible {
    opacity: 1;
    visibility: visible;
    animation: growOut 500ms ease-in-out forwards;
}

.search-popup-prices .search-content {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 650px;
    transform: translate(-50%, -50%);
}

.search-popup-prices .btn-close {
    right: 30px;
    top: 30px;
    position: absolute;
}
.btn {
    color: #fff;
    border: 0;
    border-radius: 25px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn-default {
    color: #fff;
    padding: 9.5px 36px;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    background-size: 200% auto;
}

.btn-default:hover {
    color: #fff;
    background-position: right center;
}

.btn-lg {
    padding: 13px 40px;
    font-size: 16px;
}

.form-control {
    display: block;
    border-radius: 25px;
    width: 100%;
    padding: 8px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ebebeb;
    box-shadow: none;
}

.form-control:focus {
    border-color: #6e72fc;
    outline: 0;
    box-shadow: none;
}

/* *************** hero section ************ */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(125deg, #6e72fc 0%, #6e72fc 100%);
    border-radius: 10px;
}

.header-area {
    padding: 250px 0 305px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.header-area.header-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.header-area .bg-img {
    height: 250px;
    width: 380px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    z-index: 9;
    animation: bikerun 10s infinite;
    transition: all 0.5s;
}

@keyframes bikerun {
    0% {
        right: -27%;
    }
    100% {
        right: 100%;
    }
}

.header-area .bg-img-02 {
    height: 130px;
    width: 110px;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 10%;
    z-index: -1;
    animation: balloonfly 15s infinite;
    transition: all 0.5s;
}

@keyframes balloonfly {
    0% {
        top: 40%;
        opacity: 0;
    }
    30% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        top: 10%;
        opacity: 0;
    }
}

.header-area .bg-img-03 {
    height: 30px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 27%;
    top: 10%;
    z-index: -1;
    animation: balloonfly-02 10s infinite;
    transition: all 0.5s;
}

@keyframes balloonfly-02 {
    0% {
        top: 40%;
        opacity: 0;
    }
    30% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        top: 10%;
        opacity: 0;
    }
}

.header-area .bg-img-04 {
    height: 50px;
    width: 65px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    right: 12%;
    top: 1%;
    z-index: -1;
    animation: balloonfly-03 12s infinite;
    transition: all 0.5s;
}

@keyframes balloonfly-03 {
    0% {
        top: 40%;
        opacity: 0;
    }
    30% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        top: 15%;
        opacity: 0;
    }
}

.header-area .bg-img-05 {
    height: 165px;
    width: 60px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    left: 5%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-06 {
    height: 135px;
    width: 35px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    left: 9%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-07 {
    height: 115px;
    width: 50px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    left: 31%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-08 {
    height: 300px;
    width: 70px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    right: 19%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-09 {
    height: 450px;
    width: 165px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    right: 8%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-10 {
    height: 275px;
    width: 70px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    right: 5%;
    bottom: 60px;
    z-index: -2;
    transform-origin: bottom center;
    animation: swing 12s infinite both;
}

.header-area .bg-img-11 {
    height: 400px;
    width: 500px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    right: 2%;
    bottom: 0;
    z-index: -2;
}

.header-area .title-inner {
    font-size: 60px;
    line-height: 65px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}

.header-area p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.header-area span {
    color: #fb3c7f;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}

.btn-wrapper {
    display: block;
}

.btn-wrapper .boxed-btn {
    background-color: #fb3c7f;
    color: #fff;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    letter-spacing: 2px;
}

.header-area .btn-wrapper .boxed-btn {
    border: 1px solid transparent;
}

.header-area .btn-wrapper .boxed-btn:hover {
    text-decoration: none;
    border: 1px solid #fff;
    background-color: #fff;
    color: #fb3c7f;
}

.header-area .btn-wrapper .boxed-btn + .boxed-btn {
    margin-left: 20px;
}

@media only screen and (max-width: 991px) {
    .header-area .bg-img-11 {
        height: 360px;
        width: 473px;
        right: 0;
    }
    .header-area .bg-img {
        height: 190px;
    }
    .header-area .bg-img-06 {
        left: 10%;
    }
    .header-area .bg-img-09 {
        height: 260px;
        width: 100px;
    }
    .header-area .bg-img-08 {
        height: 230px;
    }
    .header-area .bg-img-10 {
        height: 200px;
    }
    .header-area {
        padding: 290px 0 355px;
    }
}

@media only screen and (max-width: 767px) {
    .header-area .title-inner {
        font-size: 60px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 599px) {
    .header-area .bg-img {
        height: 130px;
        width: 220px;
    }
    .header-area .bg-img-09 {
        height: 150px;
        width: 80px;
    }
    .header-area .bg-img-08 {
        height: 170px;
    }
    .header-area .bg-img-10 {
        height: 140px;
    }
    .header-area .bg-img-05 {
        height: 130px;
    }
    .header-area .bg-img-06 {
        height: 120px;
    }
    .header-area .bg-img-11 {
        display: none;
    }
}

@media only screen and (max-width: 414px) {
    .header-area .title-inner {
        font-size: 40px;
        line-height: 50px;
    }
    .header-area {
        padding: 200px 0 300px;
    }
    .header-area .btn-wrapper .boxed-btn {
        width: 100%;
    }
    .header-area .btn-wrapper .boxed-btn + .boxed-btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 360px) {
    .header-area .title-inner {
        font-size: 32px;
        line-height: 42px;
    }
}
section {
    position: relative;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 1040px;
    width: 100%;
}

.hero::after {
    content: "";
    background: #203656;
    display: block;
    left: 0;
    opacity: 0.8;
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
}

.post .category-badge {
    color: #fff;
    font-size: 13px;
    border-radius: 25px;
    display: inline-block;
    padding: 6px 11px;
    line-height: 1;
    left: 20px;
    top: 20px;
    z-index: 1;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}

.post .category-badge:hover {
    background-position: right center;
    background-color: linear-gradient(315deg, #6e72fc 0%, #00fffc 74%);
}

.post .thumb {
    position: relative;
}

.post .thumb.rounded .inner {
    border-radius: 10px;
    overflow: hidden;
}

.post .thumb img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.post .thumb:hover img {
    transform: scale(1.07);
}

.post .post-title a {
    color: #203656;
}

.post .post-title a:hover {
    color: #6e72fc;
}

.post .meta {
    font-size: 14px;
    color: #000;
}

.post .meta a {
    color: #000;
    font-weight: 400;
}

.post .meta a:hover {
    color: #570f75;
    background-color: linear-gradient(315deg, #6e72fc 0%, #00fffc 74%);
}

.post .meta i {
    vertical-align: middle;
}

.post .meta li:last-child::after {
    content: "";
    display: none;
}

.post .meta li::after {
    content: "";
    display: inline-block;
    background-color: #6e72fc;
    border-radius: 50%;
    margin-left: 1rem;
    height: 3px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    width: 3px;
}

.post .meta li:not(:last-child) {
    margin-right: 0.8rem;
}

.featured-post-lg {
    position: relative;
}

.featured-post-lg:hover .thumb .inner {
    transform: scale(1.05);
}

.featured-post-lg .thumb {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(32, 54, 86, 0.3);
}

.featured-post-lg .thumb::after {
    content: "";
    background: #203656;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    top: 0;
    position: absolute;
    width: 100%;
}

.featured-post-lg .details {
    bottom: 50px;
    left: 50px;
    right: 50px;
    position: absolute;
    z-index: 1;
}

.featured-post-lg .post-title {
    font-size: 32px;
}

.featured-post-lg .post-title a {
    color: #fff;
}

.featured-post-lg .thumb .inner {
    background-size: cover;
    background-position: center center;
    height: 533px;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.featured-post-lg .post-title a:hover {
    color: #e098ff;
}

.featured-post-lg .meta {
    color: rgba(255, 255, 255, 0.6);
}

.featured-post-lg .meta li::after {
    content: "";
    background: rgba(255, 255, 255, 0.6);
}

.featured-post-lg .meta li a {
    color: rgba(255, 255, 255, 0.6);
}

/* ******************* hero right side ************** */

.rounded {
    border-radius: 10px !important;
}

.bordered {
    border: 1px solid #ebebeb;
}

.post-tabs {
    padding: 30px;
}

.post-tabs .tab-content {
    margin-top: 30px;
}

.nav-tabs {
    border-bottom: 0;
}

.tab-content {
    position: relative;
}

.tab-pane {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.tab-pane.loading {
    opacity: 0.3;
}

.lds-dual-ring {
    display: inline-block;
    position: absolute;
    right: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.lds-dual-ring.loading {
    visibility: visible;
    opacity: 1;
}

.lds-dual-ring::after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid;
    border-color: #6e72fc transparent #6e72fc transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nav-fill .nav-item,
.nav-fill > .nav-link {
    margin-right: 10px;
}

.nav-fill .nav-item:last-child,
.nav-fill > .nav-link:last-child {
    margin-right: 0;
}

.nav-fill .nav-item > .nav-link {
    color: #000 !important;
    margin-right: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff !important;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    border-color: transparent;
    background-size: 200% auto;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 1px solid #6e72fc;
    border-radius: 30px;
}

.post.post-list-sm {
    clear: both;
}

.post.post-list-sm.circle .thumb {
    max-width: 60px;
}

.post.post-list-sm.circle .details {
    margin-left: 80px;
}

.post.post-list-sm .thumb {
    float: left;
    position: relative;
}

.post .thumb {
    position: relative;
}

.post .thumb.rounded .inner {
    border-radius: 10px;
    overflow: hidden;
}

.post .thumb.circle .inner {
    overflow: hidden;
    border-radius: 50%;
}

.post.post-list-sm .post-title {
    font-size: 15px;
}

.post.post-list-sm::after {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to left, #ebebeb 0%, transparent 100%);
}

.post.post-list-sm:last-child::after {
    content: "";
    display: none;
}

/* ************** */

.main-content {
    margin-top: 60px;
}

.section-header {
    margin-bottom: 30px;
    position: relative;
}

.section-title {
    font-size: 24px;
    margin: 0;
    text-align: center;
}

/* *********************** */

.padding-30 {
    padding: 30px;
}

.post .post-format {
    color: #fff;
    display: block;
    border-radius: 50%;
    font-size: 20px;
    height: 50px;
    line-height: 54px;
    right: 20px;
    text-align: center;
    bottom: -25px;
    position: absolute;
    width: 50px;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: #6e72fc;
    background: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    z-index: 1;
}

.post .meta li img.author {
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 50%;
}

.post.post-list-sm.square .thumb {
    max-width: 110px;
}

.post.post-list-sm.square .details {
    margin-left: 130px;
}

/* ******************* */

.post.post-list-sm.before-seperator::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to left, #ebebeb 0%, transparent 100%);
}

.post.post-list-sm.before-seperator::after {
    content: "";
    display: none;
}

/* ************** */

.slick-arrows-top {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
}

.slick-custom-buttons {
    color: #6e72fc;
    font-size: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #6e72fc;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.slick-custom-buttons:hover {
    color: #ffff;
    background-color: #6e72fc;
    border-color: #6e72fc;
}

/* -************ */

.post-carousel .slick-slide {
    margin: 0px 12px;
}

.post.post-over-content {
    position: relative;
}

.post.post-over-content .thumb {
    position: relative;
    overflow: hidden;
}

.post.post-over-content .thumb::after {
    content: "";
    background: #203656;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    top: 0;
    position: absolute;
    width: 100%;
}

.post.post-over-content .details {
    bottom: 20px;
    left: 20px;
    right: 20px;
    position: absolute;
    z-index: 1;
}

.post.post-over-content .post-title {
    font-size: 22px;
}

.post.post-over-content .post-title a {
    color: #fff;
}

.post.post-over-content .post-title a:hover {
    color: aliceblue;
}

.post.post-over-content .meta {
    color: rgba(255, 255, 255, 0.5);
}

.post.post-over-content .meta li::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
}

.post.post-over-content .meta li a {
    color: rgba(255, 255, 255, 0.5);
}

/* **************** */

.post.post-list {
    margin-bottom: 30px;
}

.post.post-list .thumb {
    float: left;
    max-width: 265px;
}

.post.post-list .details {
    margin-left: 295px;
}

.post.post-list .post-title {
    margin: 9px 0;
}

.post.post-list .post-bottom {
    margin-top: 9px;
}

.post.post-list .post-bottom .social-share .icons {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.post.post-list .post-bottom .social-share .icons::before {
    content: "";
    background: #ddd;
    display: inline-block;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    width: 30px;
}

.post.post-list .post-bottom .social-share .icons.visible {
    opacity: 1;
    visibility: visible;
}

.post .post-bottom .social-share .toggle-button {
    font-size: 16px;
    color: #000;
    background-color: transparent;
    border: 0;
    padding: 0;
    vertical-align: middle;
}

.post .post-bottom .social-share .icons {
    display: inline;
    vertical-align: middle;
}

.post .post-bottom .social-share .icons li a {
    color: #000;
    font-size: 14px;
}

.post .post-bottom .social-share .icons li a:hover {
    color: #6e72fc;
}

.post .post-bottom .social-share .icons li:not(:last-child) {
    margin-right: 0.8rem;
}

.post .post-bottom .more-button a {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.post .post-bottom .more-button a i {
    color: #000;
    font-size: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

.post .post-bottom .more-button a:hover {
    color: #6e72fc;
}

.post.post-list::after {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to left, #ebebeb 0%, transparent 100%);
}

.post .post-format-sm {
    color: #fff;
    display: block;
    border-radius: 50%;
    font-size: 14px;
    height: 30px;
    line-height: 34px;
    left: 20px;
    text-align: center;
    top: 20px;
    position: absolute;
    width: 30px;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    z-index: 1;
}

.btn-simple {
    color: #000;
    padding: 9.5px 36px;
    background: transparent;
    border: 1px solid #ebebeb;
}

.btn-simple:hover {
    color: #6e72fc;
    border-color: #6e72fc;
}

/* ************** */

.widget {
    border: 1px solid #ebebeb;
    padding: 35px 30px;
    margin-bottom: 40px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .widget-header {
    margin-bottom: 30px;
}

.widget .widget-title {
    font-size: 20px;
    margin: 0;
}

.post.post-list-sm .thumb .number {
    color: #fff;
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 700px;
    height: 24px;
    line-height: 22px;
    left: 0;
    text-align: center;
    top: -10px;
    position: absolute;
    width: 24px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    background: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    z-index: 1;
}

.widget ul.list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.widget ul.list li {
    line-height: 2.8rem;
}

.widget ul.list li a {
    color: #203656;
    font-weight: 700;
}

.widget ul.list li a::before {
    color: #000;
    font-family: "simple-line-icons";
    font-size: 11px;
    vertical-align: middle;
    margin-right: 25px;
    content: "";
}

.widget ul.list li a:hover {
    color: #6e72fc;
}

.widget ul.list li::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #ebebeb;
    background-image: linear-gradient(to right, #ebebeb 0%, transparent 100%);
}

.widget ul.list li span {
    float: right;
}

.widget ul.list li:last-child::after {
    content: "";
    display: none;
}

/* ****************** */

.newsletter-headline {
    font-size: 15px;
    font-weight: bold;
    color: #203656;
    display: block;
}

.newsletter-privacy {
    font-size: 13px;
    display: block;
}

.btn-default {
    color: #fff;
    padding: 9.5px 36px;
    background-color: #6e72fc;
    background-image: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
    background-size: 200% auto;
}

.btn-default:hover {
    color: #fff;
    background-position: right center;
}

.btn-full {
    padding: 9.5px 36px;
    width: 100%;
}

/* ***************** */

.slick-arrows-bot {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

/* ****************** */

.tag {
    color: #000;
    border: 1px solid #000;
    border-radius: 25px;
    font-size: 13px;
    display: inline-block;
    padding: 3px 14px;
    margin: 4px 0;
}

.tag:hover {
    border-color: #6e72fc;
    color: #6e72fc;
}

/* *************** */

.instagram {
    margin: 60px 0 0;
    position: relative;
}

.instagram-feed {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.instagram-feed .insta-item {
    overflow: hidden;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.instagram-feed .insta-item img {
    border-radius: 10px;
}

.btn-instagram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* *********** */

footer {
    margin-top: 50px;
}

footer .footer-inner {
    border-top: 1px solid #ebebeb;
    padding: 40px 0;
}

footer .footer-inner .copyright {
    color: #000;
}

#return-to-top {
    color: #000;
    font-size: 13px;
    border: 1px solid #6e72fc;
    text-decoration: none;
    border-radius: 25px;
    padding: 6px 20px;
    z-index: 4;
    transition: all 0.3s ease-in-out;
}

#return-to-top i {
    font-size: 11px;
    vertical-align: middle;
    margin-right: 10px;
}

#return-to-top:hover {
    color: #6e72fc;
    border-color: #6e72fc;
}

/* *********** responsiveness **************** */

@media only screen and (max-width: 992px) {
    .inner-wrapper-sticky {
        transform: none !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: auto !important;
    }
}

@media only screen and (max-width: 767px) {
    .featured-post-lg .thumb .inner {
        height: 425px;
    }
    .post.post-list .thumb {
        float: none;
        max-width: 550px;
    }
    .post.post-list .details {
        margin-left: 0;
        margin-top: 25px;
    }
    .post .meta li::after {
        content: "";
        margin-left: 0.5rem;
    }
    .post .meta li:not(:last-child) {
        margin-right: 0.3rem;
    }
    .instagram-feed .insta-item {
        text-align: center;
        margin: 2.5px 0;
    }
    .footer-inner {
        text-align: center;
    }
    .featured-post-lg .post-title {
        font-size: 26px;
    }
    .featured-post-lg .details {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .search-popup .search-content {
        padding: 0px 20px;
        width: 100%;
    }
    .post-carousel-widget .post-carousel {
        margin: 0 12px;
    }
    .post-carousel-widget .post-carousel .post-title {
        font-size: 16px;
    }
}

/********************************************************
testimonials
********************************************************/
.pt-150 {
    padding-top: 150px;
}

.pb-70 {
    padding-bottom: 70px;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: hidden;
}

.p-relative {
    position: relative;
}

.circle-animation {
    border: 1px solid rgb(113, 39, 234, 0.14);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

.circle-animation span {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    animation: circle-animation 2s linear infinite;
}

@keyframes circle-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.circle-animation span::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -4px;
    right: -4px;
}

.circle-animation.testimonial {
    top: 21%;
    left: 11%;
    border: 1px solid rgb(113, 39, 234, 0.14);
    width: 270px;
    height: 270px;
}

.circle-animation.testimonial span::before {
    background-color: #6e72fc;
}

.testmonial_shape img {
    position: absolute;
    z-index: -1;
}

.testmonial_shape img.testimonial-circle-1 {
    top: 11%;
    left: 4%;
    animation: testi-cir-1 3s linear 0s infinite alternate;
}

.testmonial_shape img.testimonial-circle-2 {
    top: 17%;
    right: 5%;
    animation: testi-cir-2 3s linear 0s infinite alternate;
}

@keyframes testi-cir-1 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translate(0px);
    }
}

@keyframes testi-cir-2 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translate(0px);
    }
}

.section-padding {
    padding-left: 70px;
    padding-right: 70px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding-left: 0;
        padding-right: 0;
    }
}

.mb-65 {
    margin-bottom: 65px;
}

.section_title {
    margin-bottom: 25px;
}

.testimonial_thumb img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}
.testimonial_slider .owl-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_slider .owl-dots .owl-dot {
    margin: 0px 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadada;
}
.testimonial_slider .owl-dots .owl-dot.active {
    background: #6e72fc;
}
.testimonial_slider .owl-stage-outer {
    overflow: visible;
}
.testimonial_slider .owl-stage-outer .owl-item {
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial_slider .owl-stage-outer .owl-item.active {
    opacity: 1;
}
.testimonial_item {
    position: relative;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    border-radius: 10px;
    padding: 50px 40px;
}

@media (max-width: 575px) {
    .testimonial_item {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.testimonial_item::before {
    position: absolute;
    content: "";
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    height: 100%;
    bottom: -20px;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    border-radius: 10px;
    z-index: -1;
    background: #fff;
}

.white-bg {
    background: #fff;
}

.transition-3 {
    transition: all 0.3s ease-out 0s;
}
.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

/* .testimonial_text p{
    font-size: 18px;
    line-height: 28px;
    color: #000;
     
} */

.testimonial_author h3 {
    font-size: 25px;
    color: #000;
    margin-bottom: 0;
}

.testimonial_author span {
    font-size: 14px;
    color: #6e72fc;
    font-weight: 600;
}

/********************************************************
PRICES
********************************************************/

.price_shape img {
    position: absolute;
    z-index: -1;
}

.price_shape img.price-circle-1 {
    top: 11%;
    left: 4%;
    animation: price-cir-1 3s linear 0s infinite alternate;
}

.price_shape img.price-circle-2 {
    top: 17%;
    right: 5%;
    animation: price-cir-2 3s linear 0s infinite alternate;
}

@keyframes price-cir-1 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translate(0px);
    }
}

@keyframes price-cir-2 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translate(0px);
    }
}

.main-content #prices {
    margin: 100px auto;
}

.main-content #prices img {
    width: 100px;
    max-width: 100%;
    height: auto;
}
.main-content #prices .text-center {
    text-align: center;
}

/* .main-content #prices .section-title{
    font-size: 5px;
    margin: 0;
    margin-left: 14px;
    position: relative;
    margin-bottom: 60px;
    letter-spacing: 5px;
} */
.main-content #prices .price-item {
    padding: 50px 40px;
}

.main-content #prices .price-item h2.plan {
    font-size: 24px;
}

.main-content #prices .price-item .price {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.main-content #prices .price-item .price em {
    font-size: normal;
    font-size: 14px;
    vertical-align: super;
    margin-right: 5px;
}

.main-content #prices .price-item .price span {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}
.main-content #prices .price-item .btn {
    margin-top: 20px;
}

.main-content #prices .price-item.recommended {
    padding: 80px 40px;
    z-index: 1;
    position: relative;
}

.main-content #prices .price-item .badge {
    color: #fff;
    background: #6e72fc;
    transform: rotate(-90deg);
    position: absolute;
    left: 0;
    top: 46px;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 400;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.main-content #prices .price-item .btn {
    border-radius: 30px;
    font-family: "Encode Sans SC", sans-serif;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    line-height: 1;
    padding: 12px 32px;
    color: #eee;
    background-color: #6e72fc;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    border: none;
    outline: none;
}

.main-content #prices .price-item .btn:hover {
    color: #eee;
    background: linear-gradient(315deg, #00fffc 0%, #6e72fc 74%);
}

.btn:focus {
    box-shadow: none;
    outline: 0;
}

.rounded {
    border-radius: 20px !important;
}
.bg-white {
    background: #fff;
}
.shadow-dark {
    box-shadow: 0 5px 20px 0 rgba(69, 67, 96, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content #prices .price-item {
        padding: 40px 30px;
    }
}
.contact-form .container {
    max-width: 100%;
    margin-top: 0 auto;
}
.contact-form h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    font-family: "poppins";
}
.contact-form h2 {
    line-height: 40px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    color: #6e72fc;
    text-align: center;
}
.contact-form .main {
    position: relative;
    display: flex;
    margin: 30px 0;
}
.contact-form .content {
    flex-basis: 50%;
    padding: 3em 3em;
    background: #fff;
    box-shadow: 2px 9px 49px -17px rgba(156, 39, 148, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.form-img {
    flex-basis: 50%;
    background: #f0f4f8;
    background-size: cover;
    padding: 40px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    align-items: center;
    display: grid;
}
.form-img img {
    max-width: 100%;
}
.contact-form .btn,
button,
input {
    border-radius: 35px;
}
.contact-form .btn:hover,
button:hover {
    color: #6e72fc;
    transition: 0.5s ease;
    background-color: #fff;
    border: #6e72fc 1px solid;
}
.contact-form form {
    margin: 30px 0;
}
.contact-form input,
textarea {
    outline: none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #999;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;

    background: #fcfcfc;
    transition: 0.3s ease;
    border-bottom: #6e72fc 1px solid;
}
.contact-form input:focus {
    background: transparent;
    border: 1px solid #6e72fc;
}
.contact-form button {
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: #6e72fc;
    font-weight: 600;
    transition: 0.3s ease;
    padding: 14px 15px;
    border: 1px solid #6e72fc;
}
@media (max-width: 736px) {
    .contact-form .main {
        flex-direction: column;
    }
    .contact-form form {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .form-img {
        border-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        order: 2;
    }
    .contact-form .content {
        order: 1;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
}
