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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444445;
}

a {
    color: #2C8EB1;
    text-decoration: none;
}

a:hover {
    color: #2C8EB1;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-image: linear-gradient(to right, #2c8eb1, #35abd3);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background-image: linear-gradient(to right, #35abd3, #2c8eb1);
    color: #fff;
    margin-bottom: 10px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #2C8EB1;
    border-top-color: #efefef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background-image: linear-gradient(to right, #35abd3 , #2c8eb1);
    font-size: 15px;
    height: 40px;
    padding: 0;
    color: #fff;
}

#topbar .contact-info a {
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #fff;
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .social-links a {
    color: #fff;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
}

#header.fixed-top {
    background: rgba(255, 255, 255, 0.95);
}

#header .logo {
    font-size: 35px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #2C8EB1;
}

#header .logo img {
    max-height: 45px;
}

.scrolled-offset {
    margin-top: 70px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    margin-left: 5px;
}

.navbar ul .demobtn {
    background-color: #2C8EB1;
    color: white;
    box-shadow: none !important;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 24px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #07182d;
    white-space: nowrap;
    transition: 0.7s;
    text-decoration: none;
    border-bottom: 3px solid #2c8eb100;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #2C8EB1;
    border-bottom: 5px solid #2C8EB1;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #f5f5f5;
    box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.111);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: rgb(50, 50, 50);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #2C8EB1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #3e3e3e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #2C8EB1;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #2C8EB1;
    background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #2C8EB1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero .heroimg {
    z-index: -999;
    width: 100%;
}

#hero .heroimg img {
    width: 100%;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

#hero h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 65px;
    font-weight: 700;
}
#hero p {
    color: #eee;
    margin-bottom: 30px;
    font-size: 19px;
    font-weight: 400;
}
#hero p span {
    font-weight: 700;
}
#hero .main-contents {
    width: 100%;
    height: 500px;
    margin-top: -500px;
}

#hero .herolinks {
    position: absolute;
}

#hero .btn-main {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px 28px;
    transition: 0.5s;
    color: white;
    transition: 1s;
    margin-right: 30px;
    background-image: linear-gradient(to right, #35abd3 , #2c8eb1);
}

#hero .btn-main:hover {
    background-image: linear-gradient(to right, #2c8eb1 , #35abd3);
    transition: 1s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.play-btn{
    color: #fff;
    font-weight: 500;
    transition: 1s;
}
.play-btn:hover{
    color: #fff;
    margin-left: 15px;
}
.play-btn img {
    width: 50px;
    margin-right: 10px;
}

@media (max-width: 1440px) {
    #hero .main-contents {
        width: 100%;
        height: 250px;
        margin-top: -250px;
    }
    #hero .herolinks {
        position: absolute;
        left: 30px;
    }
    #hero .btn-main {
        padding: 10px 10px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    #hero .main-contents {
        width: 100%;
        height: 350px;
        margin-top: -350px;
    }
    .about-highlights{
        flex-direction: column;
    }
    .about-highlights-content{
        margin-top: 30px;
    }
    .play-btn img {
        width: 40px;
        margin-right: 10px;
    }
    #hero .herolinks {
        position: absolute;
        left: 30px;
    }
    #hero .btn-main {
        padding: 10px 10px;
        font-size: 13px;
    }
    .cta-content-details{
        text-align: center;
    }
    .cta img{
        height: 50vh;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    #hero .main-contents {
        width: 100%;
        height: 175px;
        margin-top: -175px;
    }
    #hero .herolinks {
        position: absolute;
        left: 30px;
    }
    #hero .btn-main {
        padding: 10px 10px;
        font-size: 12px;
    }
    #hero h2{
        font-size: 22px;
        color: #fff;
    }
    #hero p {
        margin-bottom: 15px;
        font-size: 12px;
    }
    .play-btn img {
        width: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 322px) {
    #hero .main-contents {
        width: 100%;
        height: 60px;
        margin-top: -60px;
    }
    #hero .herolinks {
        position: absolute;
        left: 10px;
    }
    #hero .btn-main {
        padding: 5px 5px;
        font-size: 10px;
    }
    
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.modal-content {
    background: url("../img/jewel.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #191919;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 30px;
    color: #f4f4f4;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .section-title span {
        font-size: 38px;
    }
    
}

h5.header-first-span {
    color: #2C8EB1;
    font-size: 18px;
    letter-spacing: 3px;
}
h2.title-section {
    font-size: 27px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
    background: #F5F5F5;
    padding: 100px 0;
    position: relative;
}
.about-bg {
    background: #09162a;
    height: 100%;
    width: 30%;
    position: absolute;
    top: 0;
    left: 0;
}
.about .about-image{
    display: flex;
    align-items: center;
}
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}
.about .content p{
    text-align: justify;
    color: #09162a;
    font-size: 16px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 15px;
    color: #2C8EB1;
}

.about .content p:last-child {
    margin-bottom: 0;
}


.about-two{
    padding: 100px 0;
    background: #fafafa;
}
.about-two p{
    font-size: 16px;
    text-align: justify;
}
.about-two img{
    padding-left: 30px;
    width: 100%;
}

.about-highlights {
    padding: 30px;
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    margin-top: 30px;
    transition: 0.1s;
}
.about-highlights:hover{
    box-shadow: rgba(100, 100, 111, 0) 0px 7px 29px 0px;
    transition: 0.1s;
}
.about-highlights h5{
    color: #0880e8;
}
.about-highlights p{
    font-size: 16px;
}
.about-highlights-image {
    margin-right: 30px;
    height: 100px;
    width: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
    background: #0880e80f;
    border: 2px solid #0880e8;
    border-radius: 100px;
    transition: transform .7s ease-in-out;
}
.about-highlights:hover .about-highlights-image{
    transform: rotate(360deg);
}
.about-highlights img{
    padding-left: 0px;
    width: 60px;
}
.about-two-image{
    position: relative;
}
.about-two-image img.shape-rectangle{
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: -1;
    width: 200px;
}
.about-two .shape-triangle-fill-about {
    position: absolute;
    bottom: -25px;
    right: -10px;
    width: 171px;
    transform: rotate(360deg);
    opacity: 0.7;
}


.about-main-image{
    position: relative;
}
.about-main-image-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
img.about-main-image-img {
    width: 100%;
}
img.laptop.about-main-image-img {
    z-index: 1;
    width: 90%;
}
.rotate{
    animation: loading 13s linear infinite;
}
.rotate-reverse{
    animation: loading-reverse 11s linear infinite;
}
@keyframes loading {
    0% { 
      transform: rotate(0); 
    }
    100% { 
      transform: rotate(360deg);
    }
   }
   @keyframes loading-reverse {
    0% { 
      transform: rotate(0); 
    }
    100% { 
      transform: rotate(-360deg);
    }
   }

   img.laptop {
    width: 90%;
    position: absolute;
	overflow: hidden;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us {
    padding-top: 10px;
}

.why-us .box {
    padding: 0px 0px;
    padding-bottom: 15px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
}

.why-us .box .top_heading {
    background-color: #2C8EB1;
    color: white;
    padding: 30px 50px;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.why-us .box h4 {
    margin-top: 15px;
    font-size: 36px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #191919;
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box p .btn-details {
    margin-top: 25px;
    padding: 15px 65px;
    background-color: #2C8EB1;
    border-radius: 50px;
    margin-bottom: 20px;
    color: white;
    box-shadow: none;
    text-decoration: none;
    font-weight: 700;
    font-size: larger;
    transition: all ease-in-out 0.3s;
}

.why-us .box p .btn-details:hover {
    background-color: #111111;
    padding: 15px 75px;
}

.why-us .box:hover {
    /*padding: 30px 30px 70px 30px;*/
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #0880e8;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #0880e8;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#0a0a0a 50%, #2C8EB1 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.why-us .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #ffffffe8;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid #f1a737;
    transform: scale(20);
}

.why-us .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }
    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.marquee {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-left: 1px solid #aaaaaa;
}
.marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 4rem;
    height: 100%;
    content: "";
    z-index: 1;
}
/* .marquee:before {
    left: 0;
    background: linear-gradient(to right, #fff 20%, transparent 80%);
}
.marquee:after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
} */

.marquee-content {
    display: inline-block;
    margin-top: 25px;
    animation: marquee 40s linear infinite;
}

.item-collection-1 {
    position: relative;
    left: 0%;
    animation: swap 40s linear infinite;
}

@keyframes swap {
    0%,
    50% {
        left: 0%;
    }
    50.01%,
    100% {
        left: 100%;
    }
}

/* .marquee-content:hover {
                        animation-play-state: paused
                    } */

.item1 {
    display: inline-block;
    height: 100px;
    width: 200px;
    margin-left: 50px;
    vertical-align: middle;
}

.item1 img {
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
}

.item2 img {
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
}

.marquee-content span img:hover {
    filter: grayscale(0%) !important;
}

.item2 {
    display: inline-block;
    height: 100px;
    width: 200px;
    margin-left: 50px;
    vertical-align: middle;
    margin-left: 50px;
}

/* Transition */

@keyframes marquee {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-100%)
    }
}

.clients {
    padding: 60px 0;
}

.clients img {
    transition: all 0.4s ease-in-out;
}

.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

.clients p, .contact p{
    font-size: 14px;
    color: #898989;
}

@media (max-width: 768px) {
    .clients img {
        width: 100%;
    }
    .marquee{
        border-right: 1px solid #aaaaaa;
    }
    .marquee:before {
        left: 0;
        background: none;
    }
    .marquee:after {
        right: 0;
        background: none;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services{
    text-align: center;
    background: #09162a;
    padding: 100px 0;
    position: relative;
}
.services .title-section{
    color: #f8f8f8;
}
.services .tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.tab {
    overflow: hidden;
  }
  .tabcontent-mobile{
    display: none;
  }

  .tab button {
    float: left;
    border: none;
    outline: none;
    z-index: 1;
    cursor: pointer;
    padding: 6px 16px;
    margin: 0px 10px;
    transition: 0.3s;
    font-size: 17px;
    color: #ecececdb;
    background: #041836;
    border-radius: 10px;
    border: 2px solid #1F3462;
  }
  
  .tab button:hover, .tab button.active  {
    border-color: #1F4BA9;
    color: #fff;
  }
  
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    text-align: left;
    color: #f4f4f4;
    min-height: 200px;
  }
  .tabcontent .tabcontent-image{
    text-align: center;
    transition: 1s;
  }
  .tabcontent .tabcontent-image img{
    border-radius: 10px;
  }
.tabcontent-details{
    display: grid;
    align-items: center;
    align-content: center;
}

.tabcontent-mobile {
    background: #041836;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #1F3462;
    margin-bottom: 30px;
    text-align: center;
}
.tabcontent-mobile img{
    border-radius: 20px;
}
.tabcontent-mobile:hover{
    border-color: #1F4BA9;
}

img.service-dotted-circle-one {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    transform: rotate(90deg);
}
img.service-dotted-circle-two {
    position: absolute;
    top: 0;
    opacity: 0.8;
    right: 0;
    width: 360px;
    transform: rotate(270deg);
}
/*--------------------------------------------------------------


# Features
--------------------------------------------------------------*/

.feature{
    text-align: center;
    padding: 100px 0;
    position: relative;
}
.featureBox {
    text-align: center;
    /* padding: 80px 20px; */
    width: 100%;
    height: 170px;
}

.featureBox:hover {
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    cursor: pointer;
}

.featureBox:hover .iconboxA {
    border: 1px solid rgb(16, 16, 187);
    background-color: rgb(255, 255, 255);
    /* transition: all ease-in-out 0.3s; */
}

.featureBox:hover .iconboxB {
    border: 1px solid rgb(255, 161, 9);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxC {
    border: 1px solid rgb(244, 33, 33);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxD {
    border: 1px solid rgb(25, 170, 14);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxE {
    border: 1px solid rgb(200, 16, 127);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxF {
    border: 1px solid rgb(10, 169, 124);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxG {
    border: 1px solid rgb(193, 210, 37);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxH {
    border: 1px solid rgb(203, 95, 27);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxI {
    border: 1px solid rgb(22, 97, 7);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxJ {
    border: 1px solid rgb(164, 20, 171);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxK {
    border: 1px solid rgb(236, 66, 40);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxL {
    border: 1px solid rgb(215, 186, 22);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxM {
    border: 1px solid rgb(14, 190, 176);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxN {
    border: 1px solid rgb(231, 54, 83);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxO {
    border: 1px solid rgb(67, 124, 6);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxP {
    border: 1px solid rgb(142, 4, 87);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxQ {
    border: 1px solid rgb(198, 121, 19);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxR {
    border: 1px solid rgb(27, 32, 198);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxS {
    border: 1px solid rgba(137, 170, 19, 0.886);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxT {
    border: 1px solid rgb(233, 66, 24);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxU {
    border: 1px solid rgb(11, 143, 92);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxV {
    border: 1px solid rgb(235, 184, 0);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxW {
    border: 1px solid rgb(145, 10, 138);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxX {
    border: 1px solid rgb(55, 117, 14);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxY {
    border: 1px solid rgb(169, 86, 14);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxZ {
    border: 1px solid rgb(25, 50, 157);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxA1 {
    border: 1px solid rgb(208, 40, 40);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxB1 {
    border: 1px solid rgb(13, 145, 32);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxC1 {
    border: 1px solid rgb(222, 133, 1);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxD1 {
    border: 1px solid rgb(16, 93, 105);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxE1 {
    border: 1px solid rgb(173, 17, 142);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxF1 {
    border: 1px solid rgb(148, 148, 6);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxG1 {
    border: 1px solid rgb(205, 38, 66);
     background-color: rgb(255, 255, 255);
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxA i {
    color: rgb(16, 16, 187) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxB i {
    color: rgb(255, 161, 9) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxC i {
    color: rgb(244, 33, 33) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxD i {
    color: rgb(25, 170, 14) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxE i {
    color: rgb(200, 16, 127) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxF i {
    color: rgb(10, 169, 124) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxG i {
    color: rgb(193, 210, 37) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxH i {
    color: rgb(203, 95, 27) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxI i {
    color: rgb(22, 97, 7) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxJ i {
    color: rgb(164, 20, 171) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxK i {
    color: rgb(236, 66, 40) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxL i {
    color: rgb(215, 186, 22) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxM i {
    color: rgb(14, 190, 176) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxN i {
    color: rgb(231, 54, 83) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxO i {
    color: rgb(67, 124, 6) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxP i {
    color: rgb(142, 4, 87) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxQ i {
    color: rgb(198, 121, 19) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxR i {
    color: rgb(27, 32, 198) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxS i {
    color: rgba(137, 170, 19, 0.886) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxT i {
    color: rgb(233, 66, 24) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxU i {
    color: rgb(11, 143, 92) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxV i {
    color: rgb(235, 184, 0) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxW i {
    color: rgb(145, 10, 138) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxX i {
    color: rgb(55, 117, 14) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxY i {
    color: rgb(169, 86, 14) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxZ i {
    color: rgb(25, 50, 157) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxA1 i {
    color: rgb(208, 40, 40) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxB1 i {
    color: rgb(13, 145, 32) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxC1 i {
    color: rgb(222, 133, 1) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxD1 i {
    color: rgb(16, 93, 105) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxE1 i {
    color: rgb(173, 17, 142) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxF1 i {
    color: rgb(148, 148, 6) !important;
    transition: all ease-in-out 0.3s;
}

.featureBox:hover .iconboxG1 i {
    color: rgb(205, 38, 66) !important;
    transition: all ease-in-out 0.3s;
}


/* .icon-circle{
    width:20px;
    height: 20px;
    border-radius: 50%;
} */

.iconStyle {
    margin-top: 30px;
}

.commonBox {
    text-align: center;
    margin-top: 50px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: 20px;
    padding-top: 8px;
}

.iconboxA {
    border: 1px solid rgb(16, 16, 187);
    background-color: rgb(16, 16, 187);
}

.iconboxB {
    border: 1px solid rgb(255, 161, 9);
    background-color: rgb(255, 161, 9);
}

.iconboxC {
    border: 1px solid rgb(244, 33, 33);
    background-color: rgb(244, 33, 33);
}

.iconboxD {
    border: 1px solid rgb(25, 170, 14);
    background-color: rgb(25, 170, 14);
}

.iconboxE {
    border: 1px solid rgb(200, 16, 127);
    background-color: rgb(200, 16, 127);
}

.iconboxF {
    border: 1px solid rgb(10, 169, 124);
    background-color: rgb(10, 169, 124);
}

.iconboxG {
    border: 1px solid rgb(193, 210, 37);
    background-color: rgb(193, 210, 37);
}

.iconboxH {
    border: 1px solid rgb(203, 95, 27);
    background-color: rgb(203, 95, 27);
}

.iconboxI {
    border: 1px solid rgb(22, 97, 7);
    background-color: rgb(22, 97, 7);
}

.iconboxJ {
    border: 1px solid rgb(164, 20, 171);
    background-color: rgb(164, 20, 171);
}

.iconboxK {
    border: 1px solid rgb(236, 66, 40);
    background-color: rgb(236, 66, 40);
}

.iconboxL {
    border: 1px solid rgb(215, 186, 22);
    background-color: rgb(215, 186, 22);
}

.iconboxM {
    border: 1px solid rgb(14, 190, 176);
    background-color: rgb(14, 190, 176);
}

.iconboxN {
    border: 1px solid rgb(231, 54, 83);
    background-color: rgb(231, 54, 83);
}

.iconboxO {
    border: 1px solid rgb(67, 124, 6);
    background-color: rgb(67, 124, 6);
}

.iconboxP {
    border: 1px solid rgb(142, 4, 87);
    background-color: rgb(142, 4, 87);
}

.iconboxQ {
    border: 1px solid rgb(198, 121, 19);
    background-color: rgb(198, 121, 19);
}

.iconboxR {
    border: 1px solid rgb(27, 32, 198);
    background-color: rgb(27, 32, 198);
}

.iconboxS {
    border: 1px solid rgba(137, 170, 19, 0.886);
    background-color: rgba(137, 170, 19, 0.886);
}

.iconboxT {
    border: 1px solid rgb(233, 66, 24);
    background-color: rgb(233, 66, 24);
}

.iconboxU {
    border: 1px solid rgb(11, 143, 92);
    background-color: rgb(11, 143, 92);
}

.iconboxV {
    border: 1px solid rgb(235, 184, 0);
    background-color: rgb(235, 184, 0);
}

.iconboxW {
    border: 1px solid rgb(145, 10, 138);
    background-color: rgb(145, 10, 138);
}

.iconboxX {
    border: 1px solid rgb(55, 117, 14);
    background-color: rgb(55, 117, 14);
}

.iconboxY {
    border: 1px solid rgb(169, 86, 14);
    background-color: rgb(169, 86, 14);
}

.iconboxZ {
    border: 1px solid rgb(25, 50, 157);
    background-color: rgb(25, 50, 157);
}

.iconboxA1 {
    border: 1px solid rgb(208, 40, 40);
    background-color: rgb(208, 40, 40);
}

.iconboxB1 {
    border: 1px solid rgb(13, 145, 32);
    background-color: rgb(13, 145, 32);
}

.iconboxC1 {
    border: 1px solid rgb(222, 133, 1);
    background-color: rgb(222, 133, 1);
}

.iconboxD1 {
    border: 1px solid rgb(16, 93, 105);
    background-color: rgb(16, 93, 105);
}

.iconboxE1 {
    border: 1px solid rgb(173, 17, 142);
    background-color: rgb(173, 17, 142);
}

.iconboxF1 {
    border: 1px solid rgb(148, 148, 6);
    background-color: rgb(148, 148, 6);
}

.iconboxG1 {
    border: 1px solid rgb(205, 38, 66);
    background-color: rgb(205, 38, 66);
}


/* .iconBox:hover{
    border: 1px solid blue;
    background-color: rgb(255, 255, 255);
} */

.contentBox {
    text-align: left;
    margin-top: 40px;
    padding: 0px 10px 0px 10px;
}

.feature .featureBox .iconboxA i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxB i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxC i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxD i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxE i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxF i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxG i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxH i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxI i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxJ i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxK i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxL i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxM i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxN i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxO i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxP i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxQ i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxR i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxS i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxT i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxU i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxV i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxW i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxX i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxY i {
    padding-top: 8px;
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxZ i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxA1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxB1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxC1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxD1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxE1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxF1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}

.feature .featureBox .iconboxG1 i {
    font-size: 42px;
    color: rgb(255, 255, 255);
}


/* .feature .featureBox .contentBox p{
    text-align: left;
    margin-top: 15px;
}
.feature .featureBox .contentBox p{
    text-align: left;
    margin-top: 15px;
} */

.feature .featureBox:hover .contentBox .hoverColA {
    color: rgb(16, 16, 187);
}

.feature .featureBox:hover .contentBox .hoverColB {
    color: rgb(255, 161, 9);
}

.feature .featureBox:hover .contentBox .hoverColC {
    color: rgb(244, 33, 33);
}

.feature .featureBox:hover .contentBox .hoverColD {
    color: rgb(25, 170, 14);
}

.feature .featureBox:hover .contentBox .hoverColE {
    color: rgb(200, 16, 127);
}

.feature .featureBox:hover .contentBox .hoverColF {
    color: rgb(10, 169, 124);
}

.feature .featureBox:hover .contentBox .hoverColG {
    color: rgb(193, 210, 37);
}

.feature .featureBox:hover .contentBox .hoverColH {
    color: rgb(203, 95, 27);
}

.feature .featureBox:hover .contentBox .hoverColI {
    color: rgb(22, 97, 7);
}

.feature .featureBox:hover .contentBox .hoverColJ {
    color: rgb(164, 20, 171);
}

.feature .featureBox:hover .contentBox .hoverColK {
    color: rgb(236, 66, 40);
}

.feature .featureBox:hover .contentBox .hoverColL {
    color: rgb(215, 186, 22);
}

.feature .featureBox:hover .contentBox .hoverColM {
    color: rgb(14, 190, 176);
}

.feature .featureBox:hover .contentBox .hoverColN {
    color: rgb(231, 54, 83);
}

.feature .featureBox:hover .contentBox .hoverColO {
    color: rgb(67, 124, 6);
}

.feature .featureBox:hover .contentBox .hoverColP {
    color: rgb(142, 4, 87);
}

.feature .featureBox:hover .contentBox .hoverColQ {
    color: rgb(198, 121, 19);
}

.feature .featureBox:hover .contentBox .hoverColR {
    color: rgb(27, 32, 198);
}

.feature .featureBox:hover .contentBox .hoverColS {
    color: rgba(137, 170, 19, 0.886);
}

.feature .featureBox:hover .contentBox .hoverColT {
    color: rgb(233, 66, 24);
}

.feature .featureBox:hover .contentBox .hoverColU {
    color: rgb(11, 143, 92);
}

.feature .featureBox:hover .contentBox .hoverColV {
    color: rgb(235, 184, 0);
}

.feature .featureBox:hover .contentBox .hoverColW {
    color: rgb(145, 10, 138);
}

.feature .featureBox:hover .contentBox .hoverColX {
    color: rgb(55, 117, 14);
}

.feature .featureBox:hover .contentBox .hoverColY {
    color: rgb(169, 86, 14);
}

.feature .featureBox:hover .contentBox .hoverColZ {
    color: rgb(25, 50, 157);
}

.feature .featureBox:hover .contentBox .hoverColA1 {
    color: rgb(208, 40, 40);
}

.feature .featureBox:hover .contentBox .hoverColB1 {
    color: rgb(13, 145, 32);
}

.feature .featureBox:hover .contentBox .hoverColC1 {
    color: rgb(222, 133, 1);
}

.feature .featureBox:hover .contentBox .hoverColD1 {
    color: rgb(16, 93, 105);
}

.feature .featureBox:hover .contentBox .hoverColE1 {
    color: rgb(173, 17, 142);
}

.feature .featureBox:hover .contentBox .hoverColF1 {
    color: rgb(148, 148, 6);
}

.feature .featureBox:hover .contentBox .hoverColG1 {
    color: rgb(205, 38, 66);
}

@media screen and (max-width: 960) {
    .commonBox {
        margin-right: 10px;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    
    padding: 40px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #2C8EB1;
    border: 2px solid #2C8EB1;
}
.cta-image{
    position: relative;
}
.cta-content{
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 50px;
    margin: auto;
    width: 100%;
    align-items: center;
}
.cta-content-details{
    padding-right: 50px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #09162a;
    margin-bottom: 5px;
    border: 1px solid #1f346200;
    background: #087fe814;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #0880e8;
    border: 1px solid #0880e8;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #191919;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #4c4c4c;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #333333;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #2C8EB1;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #2C8EB1;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #2C8EB1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2C8EB1;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(25, 25, 25, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing{
    background: #fafafa;
    padding: 100px 0;
}
.pricing-card{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    margin: 15px;
    position: relative;
}
.pricing .shape-triangle-fill {
    position: absolute;
    top: -25px;
    left: -40px;
    width: 300px;
    opacity: 0.3 !important;
}
.pricing .shape-triangle-fill-two {
    position: absolute;
    bottom: -25px;
    right: -40px;
    width: 300px;
    transform: rotate(180deg);
    opacity: 0.3;
}
.pricing .box {
    padding: 40px;
    background: #f9f9f9;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.pricing h3{
    font-weight: 600;
    font-size: 18px;
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px 0 0 0;
    margin-bottom: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #191919;
}

.pricing .box h4 {
    font-size: 42px;
    color: #09162a;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #0880e8;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #191919;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul li span {
    vertical-align: middle;
    font-size: 16px;
}

.pricing .box ul li svg {
    margin-right: 4px;
    vertical-align: middle;
}

.pricing .box ul li .bx-check {
    color: #93F67B;
}

.pricing .box ul li .bx-x {
    color: #FF6262;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    background: #56a5c1;
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 8px;
}

.pricing .featured {
    background: #2C8EB1;
    box-shadow: none;
    color: #fff;
}

.pricing .featured h4{
    color: #09162a;
    border-bottom: 1px solid #dbdbdb;
}
.pricing .featured h3,
.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul .na {
    color: #fff;
}
.pricing h5{
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.pricing .featured h4 span {
    color: rgba(255, 255, 255, 0.58);
}

.pricing .featured .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .featured .btn-buy {
    background: #56a5c1;
}
.pricing .btn-buy:hover {
    background: #09162a;
    color: #fff;
}
.pricing .featured .btn-buy:hover {
    background: #fff;
    color: #445e6d;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact{
    padding: 100px 0;
    position: relative;
}
.contact .info-box {
    color: #444444;
    display: flex;
    align-items: center;
    /* text-align: center; */
    /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */
}
.contact-form-section{
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 40px 20px;
    border-radius: 20px;
    background: #fff;
}
.contact-form-section-main{
    position: relative;
}
.contact .info-box i {
    font-size: 30px;
    color: #2C8EB1;
    background: #2c8eb11c;
    border-radius: 50%;
    padding: 20px;
    margin-right: 15px;
}

.contact .info-box h3 {
    font-size: 14px;
    color: #2C8EB1;
    font-weight: 400;
    margin: 6px 0;
}

.contact .info-box p, .contact .info-box p a {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
    color: #1F3462;
    font-weight: 500;
}
.contact .form-control,.contact .form-select{
    border: 0px;
    border-radius: 0px;
    padding-left: 0px;
    padding-right: 0px;
    box-shadow: none;
    transition: 1s;
    border-bottom: 2px solid #ced4da;
}
.contact .form-control:hover,
.contact .form-select:hover,
.contact .form-control:focus,
.contact .form-select:focus{
    border-color: #0880e8;
}
.contact button {
    width: 100%;
    padding: 10px;
    border: 0px;
    background-image: linear-gradient(to right, #35abd3 , #2c8eb1);
    border-radius: 4px;
    color: #fff;
}
.contact button:hover{
    background-image: linear-gradient(to right, #2c8eb1, #35abd3);
}

.contact .shape-triangle {
    position: absolute;
    top: -25px;
    z-index: -1;
    right: -20px;
    opacity: 0.5;
    width: 200px;
    transform: rotate(90deg);
}

.contact .shape-triangle-fill {
    position: absolute;
    width: 200px;
    z-index: -1;
    opacity: 0.5;
    left: -30px;
    bottom: -20px;
    transform: rotate(270deg);
    border-radius: 30px 0 0px 0px;
}

#buynowmodal .php-email-form {
    padding: 20px;
}

#buynowmodal .php-email-form .error-message {
    display: none;
    color: #fff;
    background: black;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#buynowmodal .php-email-form .error-message br+br {
    margin-top: 25px;
}

#buynowmodal .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#buynowmodal .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#buynowmodal .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#buynowmodal .php-email-form input,
#buynowmodal .php-email-form textarea,
#buynowmodal .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#buynowmodal .php-email-form input::focus,
#buynowmodal .php-email-form textarea::focus {
    background-color: #2C8EB1;
}

#buynowmodal .php-email-form input {
    padding: 10px 15px;
}

#buynowmodal .php-email-form textarea {
    padding: 12px 15px;
}

#buynowmodal .php-email-form button[type=submit] {
    background: black;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

#buynowmodal .php-email-form button[type=submit]:hover {
    background: black;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.imagestyle {
    width: 180px;
    height: 130px;
    padding-top: 30px;
}

/* .clientlist {
    margin-top: 10px;
    padding: 0px 200px 30px 200px;
} */

.heading {
    background-color: rgb(252, 172, 142);
    width: 100%;
    height: 155px;
    padding-top: 15px;
}

.port {
    color: white;
    text-align: center;
    font-family: Helvetica;
    font-weight: bold;
    padding-top: 20px;
}

.item {
    color: white;
}

.nav {
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.footContent {
    text-align: justify;
}

.breadcrumbs {
    padding: 15px 0;
    background: #efefef;
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 600;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #333333;
    content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #09162a;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #0c1b32;
    color: #fff;
    border-top: 4px solid #2C8EB1;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 36px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #09162a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #2C8EB1;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #2C8EB1;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #2C8EB1;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #2C8EB1;
    color: #fff;
    transition: 0.3s;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #2C8EB1;
}

#footer .copyright {
    border-top: 1px solid #112b52;
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #2C8EB1;
}

.shape img {
    position: absolute;
    top: -55px;
    z-index: -69;
    left: -40px;
    width: 40%;
    transform: rotate(180deg);
}
.shape-contact{
    position: absolute;
    bottom: -50px;
    z-index: -69;
    left: -175px;
    width: 40%;
    transform: rotate(90deg);
}

img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}


@media screen and (max-width: 1000px) {
    .about-bg {
        height: 25%;
        width: 100%;
    }
    .tabcontent-image{
        margin-bottom: 40px;
    }
    .tabcontent .tabcontent-image img{
        width: 100%;
    }
    .about-two img{
        padding-left: 0px;
        margin: 30px 0;
    }
    .tabcontent-mobile{
        display: block;
      }
    .services .tab,.tabcontent{
        flex-direction: column;
        gap: 20px;
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cta-content{
        padding: 15px;
        left: 0;
        right: 0;
    }
    .cta p{
        padding: 20px;
    }
    .cta img{
        height: 70vh;
        border-radius: 30px;
    }
    .cta-content-details{
        padding: 0px;
    }
    .about-highlights{
        display: grid;
        justify-items: center;
        text-align: center;
    }
    .pricing .box h4{
        font-size: 30px;
    }
    .pricing .box, .pricing .box ul{
        text-align: center;
    }
    .about-two .about-highlights p{
        text-align: center;
    }
    .about-two-image img{
        padding: 25px;
    }
    .shape img {
        top: -11px;
        width: 60%;
    }
    .pricing .shape-triangle-fill {
        top: -20px;
        left: -30px;
        width: 250px;
    }
    .pricing .shape-triangle-fill-two {
        bottom: -20px;
        right: -30px;
        width: 280px;
    }
    .contact-form-section-main {
        padding: 20px;
    }
    .contact .shape-triangle{
        top: 0px;
        right: 0px;
    }
    .contact .shape-triangle-fill{
        left: -3px;
        bottom: 15px;
    }
    .pricing .box h3{
        padding-bottom: 10px;
    }
    .about-bg {
        height: 20%;
        width: 100%;
    }
    .contentBox{
        margin-left: 10px;
    }
    .tabcontent-mobile img {
        border-radius: 10px;
    }
    img.service-dotted-circle-two{
        width: 200px;
    }
}



