/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&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 {
    /* === Fonts === */
    --font-heading: "Lexend Deca", serif;
    --font-body: "Poppins", sans-serif;

    /* === Primary Colors === */
    --primary: #00c3ff;
    /* Main heading/text color */
    --secondary: #012151;
    /* Highlighted text (e.g., VESTIBULUM) */
    --black: #000000;
    /* CTA button background */

    /* === Backgrounds === */
    --white: #ffffff;
    /* General background */
    --sky: #cfe2f3;
    /* Hero section sky gradient start */
    --color-bg-footer: #0e0e0e;
    /* Footer background */

    /* === Text Colors === */
    --color-text-dark: #1a1a1a;
    /* Main dark text */
    --color-text-light: #ffffff;
    /* Light text (e.g., footer text) */

    /* === Additional Grays (Optional use) === */
    --color-gray-100: #f5f5f5;
    --color-gray-300: #dcdcdc;
    --color-gray-600: #999999;
}

::selection {
    background-color: var(--secondary);
    color: var(--white);
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    font-size: 16px;
}


body {
    overflow-x: clip;
    font-family: var(--font-body);
    background: var(--white);
    color: #606060;
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

ul,
ol {
    padding-left: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    color: #606060;
}

section {
    position: relative;
    overflow: clip;
}

.padd-y {
    padding: 5rem 0;
}

.theme-color {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}


/* LENIS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* THEMEBTN */
.themeBtn {
    position: relative;
    width: fit-content;
    display: block;
    background: var(--primary);
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 1.125em 2.75em;
    border-radius: 3.125rem;
    will-change: transform;
    outline: 0;
    transform: translateZ(0) rotate(0.001deg);
    overflow: hidden;
}

.btn-fill {
    background: var(--primary);
    position: absolute;
    width: 150%;
    height: 200%;
    border-radius: 50%;
    top: -50%;
    left: -25%;
    transform: translate3d(0, -76%, 0);
    will-change: transform;
    transition: background-color ease-in-out .25s;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: var(--color-text-light);
    position: relative;
    transform: rotate(0.001deg);
    pointer-events: none;
    will-change: transform, color;
}

.themeBtn:hover {
    cursor: pointer;
    color: var(--color-text-light);
}

.container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

header .header_btn {
    color: var(--primary);
    background: #fff;
    box-shadow: 8px 8px 20px 0px rgba(0, 139, 153, 0.3);
    -webkit-box-shadow: 8px 8px 20px 0px rgba(0, 139, 153, 0.3);
    -moz-box-shadow: 8px 8px 20px 0px rgba(0, 139, 153, 0.3);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 1rem;
    padding: 1em 1.75em;
    line-height: 1;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    position: relative;
    border: 1px solid;
}

header .header_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.8);
}

header .header_btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 139, 153, 0.3);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 139, 153, 0.3);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 139, 153, 0.3);
}

header .header_btn:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

:is(.heading) .char {
    display: inline !important;
}



.logo {
    max-width: 200px;
}


.dropdown-menu.show {
    z-index: 1021;
}

a:hover {
    color: var(--primary);
}

/*--------------------------------------
  1. General Navigation Structure
---------------------------------------*/
.main-header {
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 rgba(42, 67, 113, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.main-header .container-fluid {
    padding: 0 6.25em;
}

.navbar .dropdown-menu {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    background: var(--white);
}

/*--------------------------------------
    2. Dropdown Styles
  ---------------------------------------*/
.nav-item .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.nav-item.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.navbar .dropdown:hover .dropdown-menu li {
    display: block;
    position: relative;
    padding: 5px 20px;
}

.navbar .dropdown:hover .dropdown-menu a.dropdown-item {
    color: var(--black);
    background: var(--white);
    position: relative;
    padding-left: 0;
}

.navbar .dropdown:hover .dropdown-menu a.dropdown-item:hover {
    color: var(--primary);
    padding-left: 15px;
}

.navbar .dropdown:hover .dropdown-menu a.dropdown-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00c3ff;
    transform: translateY(-50%);
    transition: all 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.navbar .dropdown:hover .dropdown-menu a.dropdown-item:hover::before {
    left: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------
    3. Nav Link Styles
  ---------------------------------------*/
.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    margin-right: 20px;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
    color: var(--white);
}

/* Sticky header overrides */
.sticky-header .nav-link {
    color: var(--black);
}

.sticky-header .navbar-nav .nav-link.active,
.sticky-header .navbar-nav .nav-link.show,
.sticky-header .nav-link:focus,
.sticky-header .nav-link:hover {
    color: var(--black);
}

/*--------------------------------------
    4. Underline Animation for nav-link
  ---------------------------------------*/
.main-header .nav-link::before,
.main-header .nav-link::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -3px;
    background: #00c3ff;
    display: block;
    transition: all 0.3s linear;
    border: none;
    border-radius: 0;
}

.nav-link::before {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-link::after {
    right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.nav-link:hover::before,
.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link.show::before {
    left: 50%;
    width: 50%;
}

.nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link.show::after {
    right: 50%;
    width: 50%;
}

/*--------------------------------------
    5. Sticky Header
  ---------------------------------------*/
header.main-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: 4px 4px 30px rgba(42, 67, 113, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    animation: stickySlideDown 0.5s ease-out both;
}

/*--------------------------------------
    6. Keyframes
  ---------------------------------------*/
@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*--------------------------------------
    7. Utility Classes
  ---------------------------------------*/

a.nav-item.th-btn {
    margin-left: 20px;
}

.sec_heading h2 {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #1a1b1e;
}

.sec_heading h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #a5b7d2;
    position: relative;
    display: inline-block;
    padding-left: 21px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sec_heading h6:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #a5b7d2;
    top: 3.5px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}


.para {
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 2rem;
}


.hero_banner {
    background-color: transparent;
    background-image: linear-gradient(80deg, #1f0098 0%, #05d7f0 100%);
    padding: 240px 0 0;
    z-index: 0;
}

.hero_banner_bg {
    background-image: url(../images/home/hero_banner_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.hero_banner .content_area {
    min-height: 770px;
    position: relative;
    z-index: 1;
}

.hero_banner .content_area .title_top {
    color: #c4f1ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 1px;
}

.hero_banner .content_area h1 {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 80px;
}

.hero_banner .content_area h1 span {
    display: block;
    margin-bottom: 55px;
}

.theme_color {
    color: var(--primary);
}

.header_form {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 7px;
    background: #fff;
    border-radius: 33px;
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
}

.header_form form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header_form form .form_input {
    width: 40%;
    position: relative;
}

.header_form .form_input input {
    color: #7e7e7e;
    border: none;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    padding: 0.625em 1.25em;
    box-sizing: border-box;
    outline: none;
    width: 100%;
}

.header_form .form_input:nth-child(2):before {
    content: "";
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 20%;
}

.arrowBtn {
    background: #fe4c1c;
    text-align: left;
    padding: 0.375em 0.375em 0.375em 1.25em;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0;
    cursor: pointer;
    border: 1px solid transparent;
    outline: 0;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    border-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 25px;
    position: relative;
}

.arrowBtn i {
    background: #fff;
    color: #fe4c1c;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    margin-left: 14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.arrowBtn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.8);
}

.arrowBtn:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.arrowBtn.arrowBtnWhite {
    background: var(--white);
    color: #fe4c1c;
}

.arrowBtn.arrowBtnWhite i {
    color: var(--white);
    background: #fe4c1c;
}

.arrowBtn.arrowBtnWhite:before {
    background-color: rgba(254, 76, 28, 0.5);
}

.arrowBtn.arrowBtnBlue {
    background: var(--primary);
    color: var(--white);
}

.arrowBtn.arrowBtnBlue i {
    color: var(--primary);
    background: var(--white);
}

.shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: -1;
}

.shape-bottom {
    bottom: -1px;
}

.onum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    user-select: none;
    pointer-events: none;
}

.shape.shape-bottom svg {
    display: block;
    width: -webkit-calc(100% + 1.3px);
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(300% + 1.3px);
    height: 1200px;
}

path.shape-fill {
    fill: #f0f6ff;
}

.about_sec {
    background-color: #f0f6ff;
    position: static;
    padding-bottom: 360px;
}

.about_sec_img {
    position: relative;
    margin-top: -360px;
    text-align: center;
    z-index: 1;
}


.seo_about_sec {
    padding-bottom: 30px;
    z-index: 0;
}

.top_up {
    margin-top: -250px;
}

.seo_about_sec .shape.shape-bottom {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icon_box {
    padding: 3.125em 1.75em;
    transition: all 0.3s linear;
    position: relative;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    text-align: center;
}

.icon_box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 8px 8px 30px 0px rgba(1, 96, 231, 0.3);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(1, 96, 231, 0.3);
    -moz-box-shadow: 8px 8px 30px 0px rgba(1, 96, 231, 0.3);
    background-color: transparent;
    background-image: linear-gradient(180deg, #00c3ff 100%, #f2295b 100%);
    font-size: 2rem;
}

.icon_box .content-box h5 {
    margin-bottom: 12px;
    font-size: 1.125rem;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.icon_box .content-box p {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    color: #606060;
    font-size: 1rem;
    font-weight: 400;
}

.action-box {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.icon_box:hover .action-box {
    bottom: -26px;
    opacity: 1;
    visibility: visible;
}

.bg_icon_box {
    position: absolute;
    content: "";
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.bg_icon_before,
.bg_icon_after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: #fff;
    z-index: -1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.bg_icon_before {
    top: 0;
    left: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
}

.bg_icon_after {
    bottom: 0;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
}

.icon_box:hover .bg_icon_before,
.icon_box:hover .bg_icon_after {
    display: none;
}

.icon_box:hover .bg_icon_box {
    visibility: visible;
    opacity: 1;
}

.icon_box:hover .icon_box .icon {
    color: var(--primary);
    background: var(--white);
}

.icon_box:hover .content-box h5,
.icon_box:hover .content-box p {
    color: var(--white);
}

.seo_about_sec .row>.col-lg-3:nth-child(even) {
    margin-top: 80px;
}

.sec_about_sec,
.client_logo_sec,
.marketing_boxes_sec {
    padding: 4rem 0;
}

.client_logo_slider {
    text-align: center;
}

.client_logo_sec .client_logo_slider img {
    -webkit-filter: contrast(0%);
    filter: contrast(0%);
    opacity: .7;
    max-width: 137px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
}

.client_logo_sec .client_logo_slider img:hover {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.marketing_boxes_sec .marketing_box {
    padding: 3em;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.marketing_boxes_sec .marketing_box i {
    margin-bottom: 30px;
    line-height: 1;
    text-shadow: 8px 8px 30px rgba(1, 96, 231, 0.3);
    -moz-text-shadow: 8px 8px 30px rgba(1, 96, 231, 0.3);
    font-size: 3rem;
    display: block;
    text-align: center;
}

.marketing_boxes_sec .marketing_box h3 {
    margin-bottom: 14px;
    font-size: 1.375rem;
    font-weight: bold;
    text-align: center;
}

.marketing_boxes_sec .marketing_box p {
    text-align: center;
    color: var(--white);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.marketing_boxes_sec .row {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
    -webkit-box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
    -moz-box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
}

.marketing_boxes_sec .marketing_box:hover {
    background: var(--white);
    color: #000000cc;
}

.marketing_boxes_sec .marketing_box:hover p {
    color: #000000cc;
}

.pricing_sec {
    padding: 4rem 0;
    background: url('../images/home/pricing_bg.png');
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    background-color: #f0f6ff;
}

.pricing_sec .sec_heading h6:after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #a5b7d2;
    top: 3.5px;
    right: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.pricing_sec .sec_heading h6 {
    padding-right: 21px;
}

.pkg_box:before {
    background-image: url('../images/home/top-price1.png');
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background-position: top center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
}

.pkg_box::after {
    content: "";
    background-image: url("../images/bot-price1.png");
    background-position: bottom left;
    position: absolute;
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
}

.pkg_box {
    position: relative;
    text-align: center;
    padding: 30px 40px 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.1);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.1);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.1);
    background: var(--white);
}

.pkg_header img {
    position: relative;
    margin-bottom: 35px;
}

.pkg_box .pkg_title {
    position: absolute;
    top: 30px;
    left: 0;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #00c3ff;
    padding: 5px 15px;
    letter-spacing: 0.5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-right-radius: 17px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 17px;
    -moz-border-radius-bottomright: 17px;
    -moz-border-radius-bottomleft: 0px;
    box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -webkit-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -moz-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
}

.pkg_box .pkg_header h2 {
    font-size: 2.625rem;
    font-weight: 500;
    color: #00c3ff;
    margin-bottom: 3px;
}

.pkg_box .pkg_header>p {
    color: #a5b7d2;
    font-weight: 500;
    margin-bottom: 0;
}

.pkg_box .pkg_body {
    margin-top: 35px;
    padding-top: 28px;
    padding-bottom: 30px;
    line-height: 42px;
    border-top: 1px solid #e5e5e5;
}

.pkg_footer .arrowBtn {
    margin-bottom: -26px;
    position: relative;
    z-index: 1;
}

.bg-counter {
    background-image: url("../images/shape3-home1.png");
    background-position-x: 100%;
    background-position-y: 155px;
    background-repeat: no-repeat;
    overflow: unset;
}

.btn-rounder {
    border-radius: 15px;
}

.shadow-primary {
    box-shadow: 23px 23px 87px 0px rgba(254, 76, 28, .42);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.bg-cover {
    background-size: cover !important;
}

.m-t--140 {
    margin-top: -140px;
}

.p-b100 {
    padding-bottom: 100px;
}

.p-t100 {
    padding-top: 100px;
}

.ot-counter h6 {
    font-size: 1rem;
    color: #ffd68e;
    margin-bottom: 13px;
    margin-top: 0;
    padding-left: 20px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.ot-counter span {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
}

.ot-counter span.num {
    padding-left: 20px;
}

.p-t120 {
    padding-top: 120px;
}

.p-b130 {
    padding-bottom: 130px;
}

.p-t130 {
    padding-top: 130px;
}

.ot-accordions .acc-item {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
}

.ot-accordions .acc-item .acc-toggle {
    cursor: pointer;
    display: block;
    overflow: hidden;
    font-weight: 500;
    color: #1a1b1e;
    padding: 13px 10px 13px 25px;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ot-accordions .acc-item .acc-toggle i {
    float: right;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 1rem;
    background: #00c3ff;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.ot-accordions .acc-item .acc-toggle i.up {
    display: none;
}

.ot-accordions .acc-item .acc-toggle:hover {
    color: #00c3ff;
}

.ot-accordions .acc-item .acc-content {
    display: none;
    padding: 0 25px 20px;
}

.ot-accordions .acc-item .acc-content p:last-child,
.ot-accordions .acc-item .acc-content ul:last-child {
    margin-bottom: 0;
}

.ot-accordions .acc-item.current {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.ot-accordions .acc-item.current .acc-toggle {
    color: #00c3ff;
}

.ot-accordions .acc-item.current .acc-toggle i.down {
    display: none;
}

.ot-accordions .acc-item.current .acc-toggle i.up {
    display: inherit;
}

.ot-accordions .acc-item:last-child {
    margin-bottom: 0;
}

.p-b40 {
    padding-bottom: 40px;
}

.p-t200 {
    padding-top: 200px;
}

.team-wrap {
    text-align: center;
}

.team-wrap .team-thumb {
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.team-wrap .team-thumb img {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    width: 100%;
}

.team-wrap .team-info {
    background: #fff;
    margin: -80px 30px 0;
    padding: 1.5em;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
}

.team-wrap .team-info h4 {
    font-weight: bold;
    margin-bottom: 3px;
    color: #1a1b1e;
}

.team-wrap .team-info h4 a {
    color: #1a1b1e;
}

.team-wrap .team-social {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.team-wrap .team-social a,
.team-wrap .team-social span {
    cursor: pointer;
    font-size: 1rem;
    margin-right: 12px;
    color: #fff;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #00c3ff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 5px 5px 18px 0px rgba(21, 183, 236, 0.3);
    -webkit-box-shadow: 5px 5px 18px 0px rgba(21, 183, 236, 0.3);
    -moz-box-shadow: 5px 5px 18px 0px rgba(21, 183, 236, 0.3);
}

.team-wrap .team-social .twitter,
.steam-social .twitter {
    background-color: #15b7ec;
}

.team-wrap .team-social .facebook {
    background-color: #0160e7;
}

.team-wrap .team-social .pinterest,
.steam-social .pinterest {
    background-color: #fe4c1c;
}

.team-wrap .team-social a:hover,
.team-wrap .team-social span:hover {
    box-shadow: none;
}

.team-wrap .team-social a {
    opacity: 0;
    right: -40px;
    position: relative;
    visibility: hidden;
}

.team-wrap .team-social a:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.team-wrap .team-social span {
    margin-right: 0;
}

.team-wrap .team-social.active span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
    background: #fff;
    color: #00c3ff;
}

.team-wrap .team-social.active a {
    opacity: 1;
    visibility: visible;
    right: 0;
    box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 5px 5px 18px 0px rgba(42, 67, 113, 0.15);
}

.team-wrap:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.team-slider,
.team-slider-h5 {
    margin: 0 -15px;
}

.team-slider .team-wrap,
.team-slider-h5 .team-wrap {
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .team-wrap {
        display: block;
        text-align: center;
    }

    .team-wrap .team-thumb {
        display: block;
        margin: 0 auto 25px;
    }

    .team-wrap .team-info {
        display: block;
        padding-left: 0;
        border: none;
    }
}

@media (min-width: 992px) {
    .col-md-1\/5 {
        width: 20%;
    }
}

.p-t150 {
    padding-top: 150px;
}

.p-t50 {
    padding-top: 50px;
}

.p-b290 {
    padding-bottom: 290px;
}

.p-t80 {
    padding-top: 80px;
}

.bg-testi {
    background-image: url("../images/shape-team-1.png");
    background-position: 0 220px;
    background-repeat: no-repeat;
}

.bg-overlay-testi {
    background-image: url("../images/bg-testi2.png");
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: background .3s, border-radius .3s, opacity .3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.ot-testimonials .testimonial-wrap {
    position: relative;
    max-width: 700px;
    padding-left: 4.375em;
    margin: 6.25em auto 8.375em;
}

.ot-testimonials .testimonial-wrap .testimonial-inner {
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background: #fff;
    padding: 5em 3.125em;
    text-align: center;
}

.ot-testimonials .testimonial-wrap .testimonial-inner img {
    display: inline-block;
    margin-bottom: 42px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 100px;
}

.ot-testimonials .testimonial-wrap .testimonial-inner .ttext {
    font-size: 1.375rem;
    color: #1a1b1e;
    margin-bottom: 32px;
}

.ot-testimonials .testimonial-wrap .testimonial-inner h6 {
    margin-bottom: 5px;
}

.ot-testimonials .testimonial-wrap .bg-block {
    content: "";
    position: absolute;
    top: -70px;
    left: 0px;
    width: calc(50% + 90px);
    height: calc(100% + 140px);
    z-index: -1;
    box-shadow: 30px 30px 45px 0px rgba(2, 156, 236, 0.3);
    -webkit-box-shadow: 30px 30px 45px 0px rgba(2, 156, 236, 0.3);
    -moz-box-shadow: 30px 30px 45px 0px rgba(2, 156, 236, 0.3);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
}

.ot-testimonials .testimonial-wrap.no-bblock {
    margin: 8px auto 30px;
}

.ot-testimonials-heading .ot-testimonials .testimonial-wrap {
    max-width: 100%;
}

.ot-testimonials-heading .ot-testimonials .testimonial-wrap .bg-block {
    width: calc(50% + 55px);
}

.ot-testimonials-heading .ot-testimonials .testimonial-wrap.no-bblock {
    padding-left: 0px;
}

.ot-testimonials-heading .ot-testimonials .testimonial-wrap.no-bblock .slick-dots {
    bottom: -80px;
}

.ot-testimonials-slider .slick-dots {
    left: 0px;
    bottom: -145px;
}

.testicustom-slider-nav {
    position: relative;
}

.testicustom-slider-nav .slick-arrow {
    position: static;
    outline: none;
}

.testicustom-slider-nav .slick-arrow:not(.slick-disabled):hover {
    box-shadow: 8px 8px 18px 0px rgba(0, 195, 255, 0.3);
    -webkit-box-shadow: 8px 8px 18px 0px rgba(0, 195, 255, 0.3);
    -moz-box-shadow: 8px 8px 18px 0px rgba(0, 195, 255, 0.3);
}

.testicustom-slider-nav .slick-arrow.next-nav {
    margin-left: 14px;
}

@media only screen and (max-width: 480px) {
    .ot-testimonials .slider__arrows {
        display: none;
    }

    .ot-testimonials .testimonial-wrap {
        margin: 30px 0px 0px;
        padding-left: 0px;
    }

    .ot-testimonials .testimonial-wrap .bg-block {
        display: none;
    }

    .ot-testimonials .testimonial-wrap .testimonial-inner {
        padding: 30px 15px;
    }

    .ot-testimonials .testimonial-wrap .testimonial-inner.ot-testimonials-slider .slick-dots {
        bottom: -60px;
    }
}

.slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 40px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    background: #fff;
    color: #00c3ff;
    border: none;
    outline: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
}

.slick-arrow:not(.slick-disabled):hover {
    background: #00c3ff;
    color: #fff;
}

.slick-arrow.next-nav {
    left: auto;
    right: 40px;
}

.slick-arrow i:before {
    font-size: 1.125rem;
}

.heading-testimonials h2 {
    margin-bottom: 25px;
}

.bg-cta {
    background-image: url("../images/bg-maps2-1.png");
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-color: rgb(240, 246, 255);
}

.p-b210 {
    padding-bottom: 210px;
}

.p-t330 {
    padding-top: 330px;
}

.cta .bg-overlay {
    background-image: url("../images/bg-bot-home1.png");
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    user-select: none;
    pointer-events: none;
}

.shape-top,
.shape-top-2 {
    top: -1px;
}

.cta .shape svg {
    height: 111px;
}

.shape svg {
    display: block;
    width: -webkit-calc(100% + 1.3px);
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(145% + 1.3px);
    height: 230px;
}

/* footer */
.bg-gradient-2 {
    background-image: linear-gradient(280deg, #04b6f1 0%, #002cae 62%);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    line-height: 24px;
    font-size: 1rem;
    font-weight: 400;
}

.main-footer {
    padding: 130px 0 110px;
}

.m-b25 {
    margin-bottom: 25px;
}

.site-footer-2 .footer-widget p {
    color: #fff;
    line-height: 30px;
    margin-bottom: 30px;
}

.site-footer-2 .footer-social {
    margin-top: 0;
}

.footer-social {
    margin-top: 47px;
    padding-bottom: 8.5px;
}

.footer-social-icon.twitter {
    color: #4ccef9;
}

.footer-social-icon {
    display: inline-block;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #818a91;
    font-size: 1rem;
    padding: .5em;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
}

.footer-social-icon i,
.footer-social-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

.footer-social-icon.facebook {
    color: #25e;
}

.footer-social-icon.linkedin {
    color: #3292ff;
}

.footer-social-icon.instagram {
    color: #ff970f;
}

.footer-social-icon:last-child {
    margin-right: 0;
}

.site-footer-2 .footer-widget h5 {
    color: #fff;
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 700;
}

.site-footer-2 .footer-contact-2 ul,
.site-footer-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-2 .footer-contact-2 ul li {
    line-height: 30px;
    margin-bottom: 12px;
}

.site-footer-2 .footer-contact-2 ul li strong {
    font-weight: 700;
    color: #9ee8ff;
}

.site-footer-2 .ft-menu-list li {
    padding-bottom: calc(6px / 2);
    margin-bottom: 12px;
    font-weight: 400;
}

.site-footer-2 .ft-menu-list a {
    color: #9ee8ff;
    font-family: 'Poppins';
}

.instafeed-gallery .instafeed-item {
    display: inline-block;
    width: 33.33333333%;
    float: left;
}

.instafeed-gallery .instafeed-item a {
    display: inline-block;
    margin: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: #f1f1f1;
    overflow: hidden;
}

/* inner_banner */
.inner_banner {
    width: 100%;
    height: 300px;
    background: url("../images/bg-page-header.jpg") no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_banner_content h1 {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1b1e;
}

.inner_banner_content .breadcrumb {
    margin-bottom: 0;
    margin-top: 30px;
    text-transform: capitalize;
    gap: 1rem;
    justify-content: center;
}

.p-t110 {
    padding-top: 110px;
}

.p-b70 {
    padding-bottom: 70px;
}

.service-box {
    overflow: hidden;
    position: relative;
    padding: 35px 35px 26px;
    background: #fff;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.service-box * {
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.service-box .number-box {
    float: left;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    box-shadow: 8px 8px 20px 0px rgba(42, 67, 113, 0.3);
    -webkit-box-shadow: 8px 8px 20px 0px rgba(42, 67, 113, 0.3);
    -moz-box-shadow: 8px 8px 20px 0px rgba(42, 67, 113, 0.3);
}

.service-box .content-box {
    padding-left: 75px;
}

.service-box .content-box h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-box .content-box p:last-child {
    margin-bottom: 0;
}

.service-box .big-number {
    position: absolute;
    right: 35px;
    bottom: -13px;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(165, 183, 210, 0.2);
    z-index: -1;
}

.service-box .overlay {
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    opacity: 0;
}

.service-box:hover {
    background: none;
}

.service-box:hover .content-box p:last-child {
    color: var(--white);
}

.service-box:hover .overlay {
    opacity: 1;
}

.service-box:hover .number-box {
    background: #fff;
    color: #00c3ff;
}

.service-box:hover .content-box {
    color: #fff;
}

.service-box:hover .content-box h5 {
    color: #fff;
}

.service-box:hover .big-number {
    color: rgba(255, 255, 255, 0.2);
}

.service-box-s2 {
    overflow: hidden;
    position: relative;
    padding: 30px 30px 28px;
    background: #fff;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.service-box-s2 .number-box {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #00c3ff;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: rgba(0, 195, 255, 0.15);
}

.service-box-s2 .content-box {
    padding-left: 70px;
}

.service-box-s2 .content-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.service-box-s2 .content-box p:last-child {
    margin-bottom: 0;
}

.service-box-s2:hover {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.active .service-box .overlay {
    opacity: 1;
}

.active .service-box .number-box {
    background: #fff;
    color: #00c3ff;
}

.active .service-box .content-box {
    color: #fff;
}

.active .service-box .content-box h5 {
    color: #fff;
}

.active .service-box .big-number {
    color: rgba(255, 255, 255, 0.2);
}

.active .service-box-s2 {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

@media (max-width: 600px) {
    .service-box .number-box {
        float: none;
        margin-bottom: 30px;
    }

    .service-box .content-box {
        padding-left: 0;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.m-b30 {
    margin-bottom: 30px;
}

.s-box .big-number {
    font-size: 4.5rem;
}

.service-box .big-number {
    z-index: 0;
}

.service-box.s-box .big-number {
    right: 20px;
}

.p-b110 {
    padding-bottom: 110px;
}

.m-b50 {
    margin-bottom: 50px;
}

.ot-counter {
    font-weight: 900;
    color: #1a1b1e;
    display: inline-block;
    text-align: left;
}

.ot-counter.s3 span {
    color: #0160e7;
    font-size: 2.25rem;
}

.ot-counter.s3 .num {
    padding-left: 0;
}

.ot-counter.s3 span {
    color: #0160e7;
    font-size: 2.25rem;
}

.ot-counter.s3 h6 {
    color: #1a1b1e;
    padding-left: 0;
}

.bg-light {
    background-color: #f0f6ff !important;
}

.m-b35 {
    margin-bottom: 35px;
}

.ot-cprocess {
    position: relative;
    display: inline-block;
    width: 500px;
}

.ot-cprocess .ot-cprocess-item.text-right {
    text-align: right;
}

.ot-cprocess .ot-cprocess-item {
    position: absolute;
    z-index: 2;
}

.repeater-item-1 {
    top: 80px;
    left: -295px;
}

.ot-cprocess .ot-cprocess-item .ot-cprocess-item-number {
    width: 90px;
    height: 90px;
    line-height: 90px;
    vertical-align: middle;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    font-size: 1.875rem;
    font-weight: 700;
    display: inline-block;
}

.ot-cprocess .ot-cprocess-item.text-right .ot-cprocess-item-number {
    float: right;
}

.repeater-item-1 .ot-cprocess-item-number {
    color: #00c3ff;
}

.ot-cprocess .ot-cprocess-item.text-right .ot-cprocess-item-inner {
    padding-right: 140px;
}

.ot-cprocess .ot-cprocess-item .ot-cprocess-item-inner {
    width: 400px;
}

.ot-cprocess .ot-cprocess-item .ot-cprocess-item-dot {
    content: "";
    margin-bottom: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: inline-block;
}

.repeater-item-1 .ot-cprocess-item-dot {
    background-color: #00c3ff;
    box-shadow: 8px 8px 18px 0px rgba(0, 195, 255, .4);
}

.ot-cprocess .ot-cprocess-item .ot-cprocess-item-title {
    color: #1a1b1e;
    font-size: 1.375rem;
    font-weight: 900;
}

.ot-cprocess .ot-cprocess-item .ot-cprocess-item-desc {
    color: #606060;
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
}

.repeater-item-2 {
    top: 430px;
    left: 20px;
}

.ot-cprocess .ot-cprocess-item.text-center .ot-cprocess-item-number {
    margin-bottom: 50px;
}

.repeater-item-2 .ot-cprocess-item-number {
    color: #0160e7;
}

.repeater-item-2 .ot-cprocess-item-dot {
    background-color: #0160e7;
    box-shadow: 8px 8px 18px 0px rgba(1, 96, 231, .4);
}

.repeater-item-3 {
    top: 135px;
    left: 425px;
}

.ot-cprocess .ot-cprocess-item.text-left .ot-cprocess-item-number {
    float: left;
}

.ot-cprocess .ot-cprocess-item.text-left .ot-cprocess-item-inner {
    padding-left: 140px;
}

.repeater-item-3 .ot-cprocess-item-dot {
    background-color: #fe4c1c;
    box-shadow: 8px 8px 18px 0px rgba(254, 76, 28, .4);
}

.ot-cprocess .circle_logo {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.ot-cprocess .ot-cprocess-circle-chart {
    position: relative;
    z-index: 1;
}

@media (min-width: 1025px) {
    .services-content-marketing {
        display: none;
    }
}

.process-box {
    position: relative;
    padding: 5.25em 2.125em 2.5em;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    height: 100%;
}

.process-box:hover {
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    background: #fff;
}

.process-box .number-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -35px;
    margin-left: -35px;
    margin-bottom: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    box-shadow: 10px 10px 30px 0px rgba(2, 156, 236, 0.3);
    -webkit-box-shadow: 10px 10px 30px 0px rgba(2, 156, 236, 0.3);
    -moz-box-shadow: 10px 10px 30px 0px rgba(2, 156, 236, 0.3);
}

.process-box .icon-main {
    margin-bottom: 30px;
    line-height: 1;
}

.process-box .content-box h5 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1b1e;
}

.process-box .content-box p:last-child {
    margin-bottom: 0;
    font-weight: 400;
}

.p-b340 {
    padding-bottom: 340px;
}

.circle-progress {
    text-align: center;
}

.circle-progress .inner-bar {
    position: relative;
    display: inline-block;
}

.circle-progress .inner-bar>span {
    position: absolute;
    width: 130px;
    height: 130px;
    line-height: 90px;
    top: 32px;
    left: 32px;
    text-align: center;
    font-weight: 900;
    font-size: 1.75rem;
    color: #1a1b1e;
    border: 20px solid #f0f6ff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.circle-progress h4 {
    display: block;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 15px 0 0;
    color: var(--black);
}

.m-t60 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .xs-m-t60 {
        margin-top: 60px;
    }
}

.p-t140 {
    padding-top: 140px;
}

.ot-tabs .tabs-heading {
    margin: 0px;
    display: inline-block;
    border: 1px solid #d2dbe8;
    padding: 4px;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
}

.ot-tabs .tab-link {
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    font-size: 1rem;
    padding: 16px 28px 16px 28px;
    line-height: 1;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    background: #fe4c1c;
    cursor: pointer;
    border: 1px solid transparent;
    outline: 0;
    box-sizing: border-box;
    color: #fff;
    box-shadow: none;
    background: none;
    color: #a5b7d2;
    padding: 14px 28px;
    cursor: pointer;
}

.octf-btn {
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    font-size: 1rem;
    padding: 16px 28px 16px 28px;
    line-height: 1;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    background: #fe4c1c;
    cursor: pointer;
    border: 1px solid transparent;
    outline: 0;
    box-sizing: border-box;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    box-shadow: 12px 12px 20px 0px rgba(254, 76, 28, 0.3);
    -webkit-box-shadow: 12px 12px 20px 0px rgba(254, 76, 28, 0.3);
    -moz-box-shadow: 12px 12px 20px 0px rgba(254, 76, 28, 0.3);
}

.octf-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.8);
}

.octf-btn:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.ot-tabs .tab-link.current,
.ot-tabs .tab-link:hover {
    background: #00c3ff;
    color: #fff;
    font-weight: 600;
    box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -webkit-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -moz-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
}

.ot-tabs .tab-link:last-child {
    margin-right: 0 !important;
}

.ot-tabs .tab-content {
    display: none;
    background: #fff;
    padding: 30px 5px;
}

.ot-tabs .tab-content.current {
    display: inherit;
}

.ot-tabs .tab-content ul.has-icon:last-child {
    margin-bottom: 0;
}

.ot-tabs .tab-content ul.has-icon li {
    position: relative;
    padding-bottom: 12px;
}

.ot-tabs .tab-content ul.has-icon li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #fe4c1c;
    display: none;
}

.p-b180 {
    padding-bottom: 170px;
}

.ot-progress {
    font-weight: 500;
}

.m-b20 {
    margin-bottom: 20px;
}

.ot-progress .iprogress {
    height: 10px;
    background: #f0f6ff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.ot-progress .iprogress {
    background: #fff;
}

.ot-progress .pname {
    margin-bottom: 10px;
}

.ot-progress .progress-bar {
    height: 100%;
    width: 0;
    background: #00c3ff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.ot-progress .progress-bar {
    background: #00c3ff;
    box-shadow: 10px 10px 24px 0px rgba(0, 195, 255, .3);
}

.ot-progress .overflow {
    display: flex;
    justify-content: space-between;
}

.services-video {
    background-image: url("../images/bg-counter-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 23px 23px 87px 0px rgba(254, 76, 28, .42);
    padding: 50px 0 55px;
    border-radius: 15px;
    text-align: center;
}

.services-video h2 {
    margin-bottom: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
}

.video-popup .btn-inner {
    display: inline-block;
    border-radius: 50%;
}

.video-popup a {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align: center;
    line-height: 62px;
    font-size: 1.25rem;
    color: #fe4c1c;
}

.video-popup a i {
    margin-left: 8%;
}

.video-popup a span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: -1;
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.services-video .video-popup a span {
    z-index: 1;
}

.video-popup a .circle-2 {
    animation: circle-fade-after 2s infinite ease-in-out;
    -webkit-animation: circle-fade-after 2s infinite ease-in-out;
}

@keyframes circle-fade-before {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes circle-fade-after {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.m-t--130 {
    margin-top: -130px;
}

.p-b120 {
    padding-bottom: 120px;
}

.pricing_sec_inner {
    background: transparent;
}

.m-r--60 {
    margin-right: 0;
}

.icon-box {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.p-b60 {
    padding-bottom: 60px;
}

.icon-box.s1 .icon-main,
.icon-box.s4 .icon-main {
    float: left;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 61px;
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 8px 8px 20px 0px rgba(2, 156, 236, 0.3);
    -webkit-box-shadow: 8px 8px 20px 0px rgba(2, 156, 236, 0.3);
    -moz-box-shadow: 8px 8px 20px 0px rgba(2, 156, 236, 0.3);
    display: none;
}

.icon-box.s4 .icon-main {
}

.search-engine .icon-box.s4 .icon-main,
.search-engine .icon-box.s1 .icon-main {
    background-image: linear-gradient(145deg, #fff 0%, #fff 100%);
}

.search-engine .icon-box.s4 .icon-main span,
.search-engine .icon-box.s1 .icon-main span {
    color: #00c3ff;
}

.icon-box.s1 .icon-main span,
.icon-box.s4 .icon-main span {
    display: block;
}

.icon-box.s4 .content-box {
    text-align: right;
}

.search-engine .icon-box.s4 h5,
.search-engine .icon-box.s1 h5 {
    margin-bottom: 10px;
}

.icon-box .content-box h5 {
    margin-bottom: 17px;
    font-weight: 500;
    color: var(--black);
}

.search-engine .icon-box.s4 p,
.search-engine .icon-box.s1 p {
    font-size: 1rem;
}

.icon-box .content-box p:last-child {
    margin-bottom: 0;
}

.search-engine-form {
    position: relative;
    margin-bottom: -160px;
    background-color: transparent;
    background-image: linear-gradient(145deg, #0039e4 0%, #04dbf1 100%);
    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
}

.search_engine_section {
    z-index: 1;
}

.search-engine-form .bg-overlay {
    background-image: url("../images/rocket-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.search-engine-form .bg-overlay-img2 {
    background-image: url("../images/rocket-img.png");
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    height: 120%;
    width: 100%;
    left: 0;
    bottom: 0;
    max-height: 334px;
    position: absolute;
}

.search-engine-form .title {
    position: relative;
}

.search-engine-form h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    padding-top: 80px;
    line-height: 1;
}

.search-engine-form form {
    padding-bottom: 80px;
}

.one-line-form {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 7px;
    background: #fff;
    border-radius: 33px;
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
}

.one-line-form>* {
    float: left;
}

.one-line-form>span {
    width: 40%;
}

.wpcf7 input.wpcf7-text,
.form-contact .wpcf7-form input {
    width: 100%;
}

.one-line-form input {
    border: none;
    color: #7e7e7e;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    padding: 9px 20px;
    box-sizing: border-box;
}

.testi_inner {
    background: transparent;
}

.our-contact {
    padding: 60px;
    background-image: linear-gradient(145deg, #0039e4 0%, #04dbf1 100%);
    border-radius: 15px;
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 18px 18px 40px 0px rgba(2, 156, 236, .3);
}

.text-light * {
    color: #fff !important;
}

.contact-info.text-light {
    color: #fff;
}

.contact-info {
    font-size: 1.375rem;
    overflow: hidden;
}

.contact_form .wpcf7-form :is(input, textarea) {
    width: 100%;
    color: #7e7e7e;
    border: 1px solid #e6e6e6;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    padding: 9px 20px;
    box-sizing: border-box;
    outline: none;
}

.contact_form .wpcf7-form textarea {
    height: 120px;
    padding: 15px 20px;
    vertical-align: top;
}

.map {
    filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
}

.map iframe {
    margin-top: -40px;

}

.section-contact {
    z-index: 1;
}

.section-contact,
.map_section {
    overflow: unset;
}

.contact_form .wpcf7-list-item input {
    width: fit-content;
}

span.wpcf7-list-item {
    display: block;
    margin: 0;
    width: 33.3333333%;
    float: left;
}

.m-b100 {
    margin-bottom: 100px;
}

.main-header.inner-header {
    position: relative;
    background-color: #fff;
    box-shadow: 4px 4px 30px rgba(42, 67, 113, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
}

.main-header.inner-header .nav-link {
    color: var(--black);
}

.bg-team {
    background-image: url("../images/shape-team-1.png");
    background-position: 0 71%;
    background-repeat: no-repeat;
}

.p-tb110 {
    padding-bottom: 110px;
    padding-top: 110px;
}

.team-block {
    background-image: linear-gradient(145deg, #0039e4 0%, #04dbf1 100%);
    box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, .3);
    padding: 50px;
    border-radius: 15px;
    float: right;
}

.m-b55 {
    margin-bottom: 55px;
}

.m-b80 {
    margin-bottom: 80px;
}

.process-box .p-arrow {
    position: absolute;
    top: -13px;
    right: -70px;
    z-index: 1;
}

.section-tab {
    max-width: 1530px;
    padding: 110px 20px 90px 20px;
    margin-right: auto;
    margin-left: auto;
    background-image: linear-gradient(145deg, #0039e4 0%, #04dbf1 100%);
    border-radius: 15px;
    margin-bottom: -270px;
    z-index: 1;
}

.tab-titles .slick-list {
    padding-bottom: 15px;
}

.tab-titles .col-md {
    padding: 0 15px;
}

.tab-titles .title-item:hover,
.tab-titles .title-item.tab-active {
    background: #fff;
    border-color: transparent;
}

.tab-titles .title-item {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 30px 15px;
    position: relative;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.tab-titles .title-item:hover .icon-main,
.tab-titles .title-item.tab-active .icon-main {
    color: #0160e7;
}

.tab-titles .title-item .icon-main {
    line-height: 1;
    margin-bottom: 15px;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: none;
}

.tab-titles .title-item h6 {
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.tab-titles .title-item h6 {
    font-weight: 700;
}

.tab-titles .title-item:hover h6,
.tab-titles .title-item.tab-active h6 {
    color: #1a1b1e;
}

.tab-slider-content {
    background-color: #f0f6ff;
    padding: 355px 0 110px 0;
}

.z-index-1 {
    z-index: 1;
}

.tab-titles .title-item:after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: -1;
    bottom: -8px;
    left: 50%;
    margin-left: -20px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.tab-titles .title-item.tab-active:after {
    opacity: 1;
    visibility: visible;
}

#content-tabs .section-content {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: none;
}

#content-tabs .section-content.active {
    display: flex;
}

.about-content .video-popup a {
    color: #fff;
    background: #00c3ff;
}

.video-popup>span {
    margin-left: 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1a1b1e;
    letter-spacing: 0.5px;
}

.project_filters {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}

.project_filters li {
    display: inline-block;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
}

.project_filters li a {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    outline: none;
    color: #636363;
    padding-bottom: 10px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.project_filters li a:hover,
.project_filters li a.selected {
    color: #00c3ff;
}

.project_filters li a:after {
    position: absolute;
    height: 3px;
    width: 0%;
    left: 0px;
    bottom: 0px;
    background-color: #00c3ff;
    content: "";
    display: block;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.project_filters li a:hover:after,
.project_filters li a.selected:after {
    opacity: 1;
    width: 100%;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -ms-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

/* End: Recommended Isotope styles */
.project-bottom {
    padding-top: 50px;
}

.single-portfolio-navigation {
    padding: 50px 0px 100px;
    border-top: 1px solid #e5e5e5;
}

.post-likes {
    padding: 50px 0px;
}

.portfolio-related-title-wrap h2 {
    margin-bottom: 30px;
}

@media only screen and (max-width: 993px) {

    .project-item,
    .projects-grid.pf_4_cols .project-item,
    .projects-grid.pf_5_cols .project-item {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .projects-box .portfolio-info {
        right: 0;
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {

    .project-item,
    .projects-grid.pf_5_cols .project-item,
    .projects-grid.pf_4_cols .project-item,
    .projects-grid.pf_2_cols .project-item {
        width: 100%;
    }

    .project_filters li {
        margin-left: 8px;
        margin-right: 8px;
    }
}

.projects-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.projects-box .portfolio-info {
    width: 270px;
    position: absolute;
    bottom: 20px;
    right: -270px;
    z-index: 4;
    opacity: 0;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
}

.projects-box .portfolio-info .portfolio-info-inner {
    text-align: left;
    padding: 30px 30px 10px 30px;
    box-sizing: border-box;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(90deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(90deg, #0039e4, #04dbf1);
    background-image: linear-gradient(90deg, #0039e4, #04dbf1);
    border-top-left-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15px;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 15px;
    box-shadow: 12px 12px 30px 0px rgba(0, 57, 228, 0.3);
    -webkit-box-shadow: 12px 12px 30px 0px rgba(0, 57, 228, 0.3);
    -moz-box-shadow: 12px 12px 30px 0px rgba(0, 57, 228, 0.3);
}

.projects-box .portfolio-info .portfolio-info-inner h5 a:hover,
.projects-box .portfolio-info .portfolio-info-inner .portfolio-cates a:hover {
    opacity: 0.8;
}

.projects-box .portfolio-info h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1;
}

.projects-box .portfolio-info h5 a {
    color: #fff;
}

.projects-box .portfolio-info .portfolio-cates {
    color: #95e1fa;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.projects-box .portfolio-info .portfolio-cates a {
    color: #95e1fa;
}

.projects-box .portfolio-info .portfolio-cates span {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
}

.projects-box .portfolio-info .portfolio-cates span:last-child {
    display: none;
}

.projects-box:hover .portfolio-info {
    right: 0px !important;
    opacity: 1;
}

.projects-box .projects-thumbnail {
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.projects-box img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    object-fit: cover;
}

.projects-box:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.post-box .post-inner {
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background: #fff;
    margin-bottom: 60px;
    overflow: hidden;
}

.post-box p {
    margin-bottom: 0;
    letter-spacing: -0.2px;
}

.post-box .entry-media {
    position: relative;
}

.post-box .entry-media .post-cat {
    position: absolute;
    z-index: 1;
    top: 40px;
    left: 40px;
}

.post-box .inner-post {
    padding: 40px;
}

.post-box .post-cat a {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    display: inline-block;
    color: #fff;
    background: #fe4c1c;
    padding: 10px;
    margin-bottom: 35px;
    margin-right: 6px;
}

.post-box .post-cat a:hover {
    background: #fff;
    color: #fe4c1c;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
}

.post-box .entry-meta {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 13px;
}

.post-box .entry-meta>span:not(.sl-wrapper) {
    margin-right: 10px;
    display: inline-block;
}

.post-box .entry-meta>span:not(.sl-wrapper) i {
    margin-right: 4px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.post-box .entry-meta a {
    color: #a5b7d2;
}

.post-box .entry-meta a:hover {
    color: #1a1b1e;
}

.post-box .entry-meta a:hover i {
    color: #fe4c1c;
}

.post-box .entry-title {
    margin-bottom: 15px;
    line-height: 36px;
}

.post-box .entry-title a {
    color: #1a1b1e;
    display: inline-block;
}

.post-box .entry-title a:hover {
    color: #fe4c1c;
}

.post-box .padding-box {
    padding: 40px 40px 0 40px;
}

.post-box .audio-box {
    margin-bottom: -5px;
}

.post-box .audio-box iframe {
    width: 100%;
}

.post-box .link-box {
    margin-bottom: -5px;
}

.post-box .link-box a {
    font-size: 24px;
    font-weight: 500;
    color: #1a1b1e;
}

.post-box .link-box a:hover {
    color: #00c3ff;
}

.post-box .link-box i {
    text-shadow: 8px 8px 18px rgba(0, 195, 255, 0.3);
    -moz-text-shadow: 8px 8px 18px rgba(0, 195, 255, 0.3);
    color: #00c3ff;
    margin-right: 20px;
}

.post-box .link-box i:before {
    font-size: 32px;
    line-height: 1;
}

.post-box .quote-box {
    overflow: hidden;
    margin-bottom: -5px;
}

.post-box .quote-box i {
    float: left;
    color: #00c3ff;
    text-shadow: 8px 8px 18px rgba(0, 195, 255, 0.3);
    -moz-text-shadow: 8px 8px 18px rgba(0, 195, 255, 0.3);
}

.post-box .quote-box i:before {
    font-size: 32px;
    line-height: 1;
}

.post-box .quote-box .quote-text {
    padding-left: 52px;
    margin-top: -10px;
    font-size: 24px;
    font-weight: 500;
    line-height: 42px;
    color: #1a1b1e;
}

.post-box .quote-box .quote-text span {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #a5b7d2;
}

.post-box .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    margin-top: -30px;
    margin-left: -30px;
}

.post-box .btn-play i {
    position: relative;
    z-index: 1;
    font-size: 19px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #fff;
    color: #00c3ff;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.post-box .btn-play i:before {
    margin-left: 3px;
}

.post-box .btn-play i:hover {
    background: #00c3ff;
    color: #fff;
}

.post-box .btn-play:before,
.post-box .btn-play:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 1024;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.post-box .btn-play:after {
    animation: circle-fade-after 2s infinite ease-in-out;
    -webkit-animation: circle-fade-after 2s infinite ease-in-out;
}

.post-box.format-standard.has-post-thumbnail .inner-post .post-cat {
    display: none;
}

.post-box.post-item {
    margin-bottom: 0;
}

.post-box.post-item .post-cat {
    top: 30px;
    left: 30px;
}

.post-box.post-item .inner-post {
    padding: 30px;
}

.post-box.post-item .entry-meta {
    margin-bottom: 10px;
}

.post-box.post-item h4 {
    font-weight: bold;
    margin-bottom: 12px;
}

.page-pagination {
    margin-top: 70px;
    margin-bottom: 0;
}

.page-pagination li {
    display: inline-block;
}

.page-pagination li a,
.page-pagination li span {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.15);
    font-size: 18px;
    color: #1a1b1e;
    background: #fff;
    font-weight: 600;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    margin-right: 8px;
}

.page-pagination li span,
.page-pagination li a:hover {
    box-shadow: 6px 6px 13px 0px rgba(0, 195, 255, 0.3);
    -webkit-box-shadow: 6px 6px 13px 0px rgba(0, 195, 255, 0.3);
    -moz-box-shadow: 6px 6px 13px 0px rgba(0, 195, 255, 0.3);
    background: #00c3ff;
    color: #fff;
}

.post-box .entry-media .blog_img {
    display: block;
}

.post-box .entry-media .blog_img img {
    width: 100%;
    object-fit: cover;
}

.widget-area .widget {
    margin-bottom: 50px;
}

.author-widget_wrapper {
    padding: 30px 26px;
    background-color: #0039e4;
    background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
    -webkit-box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
    -moz-box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
}

.author-widget_wrapper .author-widget_image-wrapper {
    margin-bottom: 26px;
}

.author-widget_wrapper .author-widget_title {
    margin-bottom: 10px;
    color: #fff;
}

.author-widget_wrapper .author-widget_text {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
}

.author-widget_social a {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    height: 26px;
    width: 26px;
    line-height: 26px;
    cursor: pointer;
    margin-right: 5px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.author-widget_social a.social-facebook {
    color: #2255ee;
}

.author-widget_social a.social-twitter {
    color: #4ccef9;
}

.author-widget_social a.social-google {
    color: #dd4b39;
}

.author-widget_social a.social-pinterest {
    color: #ff2e2e;
}

.author-widget_social a.social-linkedin {
    color: #3292ff;
}

.author-widget_social a.social-buffer {
    color: #000000;
}

.author-widget_social a.social-digg {
    color: #005be2;
}

.author-widget_social a.social-reddit {
    color: #ff4500;
}

.author-widget_social a.social-tumbleupon {
    color: #eb4924;
}

.author-widget_social a.social-tumblr {
    color: #35465c;
}

.author-widget_social a.social-vk {
    color: #45668e;
}

.author-widget_social a.social-yummly {
    color: #E16120;
}

.author-widget_social a.social-email {
    color: #E84231;
}

.author-widget_social a.social-dribbble {
    color: #ea4c89;
}

.author-widget_social a.social-instagram {
    color: #ff9000;
}

.author-widget_social a.social-youtube {
    color: #FF0000;
}

.author-widget_social a.social-pinterest {
    color: #E60023;
}

.author-widget_social a:last-child {
    margin-right: 0px;
}

.widget-area .widget .widget-title {
    font-weight: 700;
    padding-left: 17px;
    position: relative;
}

.widget-area .widget .widget-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #fe4c1c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.widget-area .widget ul:not(.recent-news)>li {    
    font-weight: 500;
    font-size: 14px;
    position: relative;
    margin-bottom: 11px;
    line-height: 24px;
}

.widget-area .widget ul:not(.recent-news)>li a {
    color: #1a1b1e;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.widget-area .widget ul:not(.recent-news)>li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 0px;
    height: 3px;
    border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.widget-area .widget ul:not(.recent-news) > li a:hover {
    color: #00c3ff;
    padding-left: 22px;
}

.widget-area .widget ul:not(.recent-news) > li a:hover:before {
    width: 10px;
    opacity: 1;
    visibility: visible;
    background: #00c3ff;
}

.search-form {
    position: relative;
}

.search-form .search-field {
    width: 100%;
    padding: 0 48px 0 20px;
    height: 50px;
    line-height: 1;
    background: #fff;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    border: 1px solid #e6e6e6;
}

.search-form .search-submit {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    outline: none;
    font-size: 26px;
    color: #a5b7d2;
    padding: 0px 5px;
}

.widget .recent-news {
    padding-top: 5px;
}

.widget .recent-news li:not(:last-child) {
    margin-bottom: 25px;
}

.widget .recent-news li {
    font-weight: 700;
}

.widget ul li {
    position: relative;
}

.widget .recent-news .thumb {
    float: left;
    margin-right: 20px;
}

.widget .recent-news .thumb img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.widget .recent-news h6 {
    margin: -3px 0 3px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 700;
}

.widget .recent-news .entry-date {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #a5b7d2;
}

.instagram_widget .widget-insta-feeds {
    display: table;
}

.widget .tagcloud {
    padding-bottom: 16px !important;
    margin: 0 -3px;
}

.widget .tagcloud a {
    color: #707f96;
    background: #f0f6ff;
    font-size: 14px !important;
    font-weight: 500;
    padding: 10px 12px;
    margin: 0 3px;
    margin-bottom: 9px;
    line-height: 1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    display: inline-block;
}

.widget .recent-news h6 a {
    color: #1a1b1e;
    display: block;
}

p.copyright-2.text-center {
    color: var(--white);
}