@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

* {
    margin: 0;
    padding: 0;
    /* font-family: sans-serif; */
    font-family: "Roboto Slab", sans-serif;
    /* overflow: hidden; */
    
}



a {
    cursor: pointer !important;
    font-size: 12px;
    text-transform: uppercase;
}

.navbar:after {
    content: '';
    clear: both;
    display: block;
}

.navbar ul {
    list-style: none;
    margin: 0;
}

.navbar>ul>li {
    /* float: left; */
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    padding: 15px 10px;
    display: block;
}

.navbar ul ul {
    position: absolute;
    padding: 0;
    min-width: 160px;
    display: none;
    top: 100%;
    left: 0;
}

.navbar ul li:hover>ul {
    display: block;
}

.navbar ul ul li {
    position: relative;
    color: #000;
    background-color: #fff;
}

.navbar ul ul ul {
    top: 0;
    left: 100%;
}

.navbar ul ul ul li {
    background-color: #fff;
    color: #000;
}


/* 



*/


/* loading page */

.flex {
    display: flex;
}

#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /* op */
    background-image: linear-gradient(to right, var(--darkblue), var(--blue));
}

.preloader p {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -45px;
    width: 120px;
    height: 90px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    z-index: 3;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 3;
    border: 3px solid #Fff;
    border-radius: 10%;
    top: 40%;
    left: 50%;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 30%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@-webkit-keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/* loading page */

:root {
    --darkblue: #014280;
    --blue: #3386ca;
}

body {
    /* font-family: "Open Sans", sans-serif; */
    color: #ede0e0;
    background-image: linear-gradient(to right, var(--darkblue), var(--blue));
}

a {
    text-decoration: none;
    color: #fff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Montserrat", sans-serif; */
}


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

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 40px;
    bottom: 5%;
    z-index: 996;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
}

.back-to-top i {
    display: flex;
    font-size: 28px;
    color: #000;
    line-height: 0;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.back-to-top:hover {
    font-family: 20px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

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


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

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


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

#header {
    height: 75px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    /* background: rgba(191, 191, 201, 0.4); */
    background-color: #fff;
    /* box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5); */
    box-shadow: 0 2px 10px rgb(27 117 153 / 36%);
    border: solid 1px rgba(27, 117, 153, 0.356);
    border-radius: 5px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
    position: absolute;
    left: 20px;
    top: 10px;
    width:200px;

}

@media (max-width: 992px) {
    #header {
        height: 75px;
    }

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

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

@media (max-width: 992px) {
    .scrolled-offset {
        margin-top: 90px;
    }
}


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


/**
* Desktop Navigation 
*/

.navbar .payment-button {
    display: flex;
    position: absolute;
    left: 720px;
    padding-top:8px;
}

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
    cursor: pointer;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 5px;
    margin: 0px 10px 0px 0px;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
}

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

/* .navbar a:hover,   UPDATED*/  
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #000;
    /* font-size: 20px; */
    /* text-shadow: 1px 1px seashell; */
    
}

#nav-scroll2:hover{
    color:#000;
    font-size: 20px;
}
.navbar a:hover{   
    font-weight: bold; 
    color: #000;
    
}

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

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 260px;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    font-size: 20px;
    box-shadow: none;
}

.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: #151515;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #100e0e;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    .navbar .payment-button {
        display: flex;
        position: absolute;
        bottom: 60px;
        left: 20px;
    }
}

.navbar-mobile {
    width: 234px;
    position: fixed;
    overflow: hidden;
    padding-bottom: 10px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /* backdrop-filter: blur(10px); */
    transition: 0.3s;
    z-index: 999;
    border-radius: 0px 40px 40px 0px;
}

.navbar-mobile:hover {
    color: #000;
}

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

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

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    font-size: 20px;
    box-shadow: 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;
    backdrop-filter: blur(5px);
    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;
}

.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: #000;
}

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


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

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles>li {
    background-color: transparent;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    z-index: -1;
    top: -20px;
    position: absolute;
    color: #000;
    width: 90%;
}

path {
    fill: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    stroke-linejoin: round;
}

path:hover {
    stroke: lightskyblue;
}

.circles li img {
    position: relative;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    background-color: transparent;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    background-color: transparent;
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    background-color: transparent;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    background-color: transparent;
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    font-weight: 900;
    text-align: center;
    background-color: transparent;
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    background-color: transparent;
    left: 50%;
    width: 125px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    background-color: transparent;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 19s;
}

.circles li:nth-child(11) {
    left: 8%;
    background-color: transparent;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translatey(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 70%;
    }
}

#hero .hero-container {
    background-image: linear-gradient(to left, var(--darkblue), var(--blue));
    width: 100%;
    height: 100vh;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero .hero-logo {
    margin-bottom: 30px;
}

#hero h1 {
    margin: 0 0 30px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #aeaeae;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid #fff;
    margin: 10px;
    border-radius: 40px;
    color: #fff;
    background: transparent;
    box-shadow: 7px 5px 6px 2px #2f2f2f;
}

#hero .btn-get-started:hover {
    transition: 0.5s;
    border: 1px solid #fff;
    background: transparent;
    color: whitesmoke;
    box-shadow: inset 9px 9px 9px #2f2f2f;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        line-height: 22px;
    }
}


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

section {
    padding: 0;
    overflow: hidden;
}

.phonenum {
    font-size: 17px;
    text-align: right;
    padding: 10px 0px 0px 0px;
    margin: -55px 0px 0px 0px;
}

.phonenum a {
    font-size: 20px;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #413d3d;
}
.section-title h2::after{
    content:""
    width:20%;
    background:#000;
}
.content h3{
    font-size: 30px;
    font-weight: 500;
    font-family: monospace;
}
.section-title p {
    font-size:30px;
    margin-bottom: 0;
    color: #aeaeae;
}
.section-title .abt-para {
    font-size:20px;
    margin-bottom: 0;
    color: #aeaeae;
}


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

.call-cloud-img {
    height: 200px;
    /* background-image: url("http://reinventingeducation.in/images/slider/home3/slider2.jpg"); */
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
}

.about .image {
    padding: 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

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

.about .content ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.about .content ul i {
    font-size: 24px;
    padding: 0px 20px 0 0;
    font-weight: 800;
    text-shadow: 1px 1px #000;
    color: var(--darkblue);
}

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


/*--------------------------------------------------------------
# Solutions
--------------------------------------------------------------*/

.Solutions .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.Solutions .icon-box i {
    font-size: 48px;
    float: left;
    text-shadow: 1px 1px #000;
    color: var(--darkblue);
}

.Solutions .icon-box p {
    font-size: 15px;
    color: #959595;
    margin-left: 60px;
}

.Solutions .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}


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

.why-us {
    background: whitesmoke;
    padding: 0;
}

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

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #959595;
}

.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: #7cc576;
    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: #7cc576;
}

.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(#7cc576 50%, rgba(124, 197, 118, 0.4) 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 rgba(124, 197, 118, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid #7cc576;
    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;
    }
}


/* -------------------------------------------------------------
# Products_cards
---------------------------------------------------------------- */

.products-container {
    /* background-color: #f7f8fc; */
    background-color: #fff;
    color: #000;
}

#call-row {
    color: #000;
    /* background-color: #f7f8fc; */
    padding: 20px 80px;
}

.call-para {
    color: #919197;
    font-weight: 500;
    font-size: 18px;
}

.call-header {
    font-family: Dosis, sans-serif;
    letter-spacing: 1px;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-img-fluid {
    margin-top: 110px;
    width: 100%;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--darkblue) !important;
    color: #fff;
}

#lebal {
    background-color: var(--darkblue);
}

.card-bg {
    background-color: #f7f8fc;
}

.maincontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    border-radius: 5px;
    width: 20%;
    min-width: 200px;
    height: auto;
    margin: 30px 15px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(27, 117, 153, 0.356);
    border: solid 1px rgba(27, 117, 153, 0.356);
    transition: 0.5s;
}

.product-card a {
    text-decoration: none;
    color: #fff;
}

.product-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.product-card .img img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 30vh;
    box-shadow: 0 2px 10px rgb(0 0 0 / 11%);
}

.product-card .details h2 {
    display: flex;
    justify-content: center;
    padding: 10px 0px;
    text-align: center;
    color: #000;
    font-family: 'Dosis';
    font-weight: 400;
    font-size: 24px;
    align-items: center;
}
.container .row .image-remote{
    width:500px;
    height:500px;
}
.image-remote .remote-link{
    display:flex;
    align-items:center;
    justify-content:center;
}
.image-remote .remote-link a span {
    color: #000;
    font-weight: 700;
    background-color: #18d26e;
    padding: 9px 13px;
    border-radius: 4px;
    transition: 0.5s;
    text-transform: none;
}
.image-remote .remote-link a span:hover {
color:#fff;
box-shadow: 3px 1px 3px 0px #ccc;
}
.image-remote .remote-link a img{
    width: 183px;
}

/*  */
.popup {
    box-shadow: 0 2px 10px rgba(27, 117, 153, 0.356);
    border: solid 1px rgba(27, 117, 153, 0.356);
    color: #000;
    position: fixed;
    padding: 10px;
    max-width: 500px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s, visibility 0s linear 0.5s;
    transition: opacity 0.5s, visibility 0s linear 0.5s;
    z-index: 1;
}

.popup:target {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.popup-close {
    position: absolute;
    padding: 10px;
    max-width: 500px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
}

.popup .close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px;
    color: #000;
    border-radius: 50%;
    padding: 5px;
    transition: color 0.3s;
    font-size: 2em;
    line-height: 0.6em;
    font-weight: bold;
}

.popup .close:hover {
    text-shadow: 0 2px 10px rgba(27, 117, 153, 0.356);
}

.close-popup {
    background: rgba(0, 0, 0, 0.7);
    cursor: default;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s linear 0.5s;
    transition: opacity 0.5s, visibility 0s linear 0.5s;
}

.popup:target+.close-popup {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.card-icone {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    word-spacing: 12em;
}

.card-icone .bi {
    cursor: pointer;
    font-size: 19px;
    padding: 3px 20px 0px;
}

.card-icone #card-btn {
    font-size: 19px;
    padding: 3px 8px;
    color: #fff;
    border: 1px solid #000;
    border-radius: 20em;
    background-color: #000;
    margin: 0px 30px 0px;
}

.card-icone #card-btn:hover {
    color: #000;
    background-color: #fff;
}


/* IVR Table Solutions  */

.ivr-table tr td {
    text-align: center;
    padding: 5px;
    border: 1px solid #000;
}


/* IVR Table Solutions  */

/* products content */

.content-header h4{
    font-size: 25px;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 20px;
}

.content-para{
    font-size: 20px;
    font-weight: 400;
}
.content-points ul{
    font-size: 17px;
}

@keyframes shine {
        0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
}

/*  */

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

.clients {
    background: whitesmoke;
    padding: 15px 0;
    text-align: center;
}

.clients img {
    width: 50%;
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
}

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

@media (max-width: 768px) {
    .clients img {
        width: 40%;
    }
}

@media (max-width: 575px) {
    .clients img {
        width: 50%;
    }
}


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


/*  */

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

.portfolio #portfolio-flters {
    padding: 0;
    margin: 25px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgb(27 117 153 / 36%);
    border: solid 1px rgba(27, 117, 153, 0.356);
    padding: 10px 10px 5px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    /* border-radius: 10px; */
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #272829;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: linear-gradient(to left, #0563bb, #18d26e);
    -webkit-background-clip: text;
    color: #fff;
    border-radius: 10px;
}

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

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(69, 80, 91, 0.8);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #d7dce1;
    border-left: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #d7dce1;
    border-right: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #45505b;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #45505b;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: linear-gradient(to left, #0563bb, #18d26e);
    -webkit-background-clip: text;
    color: transparent;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

.project-btn .btn-po {
    border: none;
    border-radius: 5px;
    padding: 0px 8px;
}


/*  */


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

#Contact-map{
    border:0;
    margin-left:0%;
    width:54vw;
    height:40vh ;
    border-radius: 1rem;
}

@media screen and (max-width: 767px){
    #Contact-map{
        border:0;
        margin:2%;
        width:80vw;
        height:30vh;
    }

}



.contact .info {
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(208, 220, 225, 0.36);
}

.contact .info i {
    font-size: 20px;
    color: #014280;
    float: left;
    width: 34px;
    height: 34px;
    background: #eaf6e9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
}

.contact .info h1 {
    padding: 0 0 0 61px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.contact .info p {
    letter-spacing: 2px;
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--darkblue);
    border: 1px solid #fff;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: transparent;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    /* box-shadow: 0px 4px 8px #2d2d2d, -5px 0px 13px #2d2d2d; */
    box-shadow: 0 2px 10px rgba(208, 220, 225, 0.36);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

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

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

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

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

.contact .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;
}

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

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--darkblue);
    border: none;
    font-size: 15px;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: transparent;
    border: 1px solid #fff;
    font-size: 18px;
}

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

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


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

#footer {
    background: url("../img/footer-bg.jpg") center center no-repeat;
    color: #fff;
    font-size: 14px;
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

#footer .footer-top .footer-logo img {
    height: 80px;
}

#footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 30px 0 0 0;
    margin-bottom: 0;
}

#footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    font-size: 16px;
    transition: 0.5s;
    padding: 0 20px;
    background: var(--darkblue);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    border: 1px solid var(--darkblue);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
}

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

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

#footer .footer-top .social-links a:hover {
    background: transparent;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    z-index: 2;
    position: relative;
    padding-bottom: 40px;
}

#footer .copyright {
    text-align: center;
}

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

.imageContainer {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  
.imageContainer img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}
 


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap');

.demobtn{

font-family: Nunito;
font-weight: 100;
font-size: 19px;
color: #fff;
background-color: #0066CC;
padding: 3px 21px;
border: solid #2371ec 2px;
box-shadow: rgb(0, 0, 0) 7px 4px 9px 1px;
border-radius: 5px;
//transition : 1000ms;
//transform: translateY(0);
display: flex;
flex-direction: row;
align-items: center;
cursor: pointer;
text-transform: uppercase;
}

.demobtn:hover{

//transition : 1000ms;
//padding: 10px 30px;
//transform : translateY(-0px);
background-color: #fff;
color: #0066cc;
border: solid 2px #0066cc;
}

