/*-----------------------------------------------------------------------------------
CSS INDEX
-----------------------------------------------------------------------------------*/


/* All Plugin CSS */

@import url('bootstrap.min.css');
@import url('bootstrap-icons.min.css');
@import url('slick.css');
@import url('sm-simple.css');
@import url('sm-core-css.css');

/* All Plugin CSS */


/* **********************************
Reset CSS
************************************** */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/********************************
 Typography Style
******************************** */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
}

a {
    text-decoration: none;
    font-size: 14px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}


/***************************
loader
*****************************/

.loaders {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 161, 204, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* HTML: <div class="loader"></div> */

.loader {
    width: 40px;
    height: 40px;
    --c: no-repeat linear-gradient(#fff 0 0);
    --d: no-repeat linear-gradient(#00A1CC 0 0);
    background: var(--d), var(--c), var(--d), var(--c);
    background-size: 21px 21px;
    -webkit-animation: l5 .6s infinite cubic-bezier(0.6, 1, 0, 1);
    animation: l5 0.6s infinite cubic-bezier(0.6, 1, 0, 1);
}

@-webkit-keyframes l5 {
    0% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%
    }
    33% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%;
        width: 60px;
        height: 60px
    }
    66% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0;
        width: 60px;
        height: 60px
    }
    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0
    }
}

@keyframes l5 {
    0% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%
    }
    33% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%;
        width: 60px;
        height: 60px
    }
    66% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0;
        width: 60px;
        height: 60px
    }
    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0
    }
}

.scrolltotop {
    color: #fff;
    background-color: #00A1CC;
    padding: 8px;
    position: fixed;
    line-height: 1;
    right: 15px;
    bottom: 10px;
    text-decoration: none;
    display: none;
    font-size: 24px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
}

.scrolltotop:hover {
    color: #fff;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/***************************************
header-area
*************************************/

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-area.header2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
    background: #003B49;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-area.shadows {
    background: #003B49;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gettouch a {
    background: #00A1CC;
    border: 2px solid #00A1CC;
    padding: 10px 35px;
    color: #fff;
    border-radius: 30px;
    line-height: 1.3;
    font-size: 18px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.gettouch a:hover {
    background: #00A1CC;
    border: 2px solid #00A1CC;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home2 .gettouch a {
    background: #00A1CC;
    border: 2px solid #00A1CC;
}

.navigation a.cusbtn {
    display: none;
}

.navbar-brand {
    padding-top: 5px;
    margin-top: 0;
    padding-bottom: 6px;
    margin-right: 0;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-brand img {
    height: 30px;
}

.me-auto {
    margin-left: 100px;
}

.sm-simple {
    background: transparent;
}

.sm-simple a.highlighted,
.sm-simple a:active,
.sm-simple a:focus,
.sm-simple a:hover {
    background: transparent;
}

.sm-simple a,
.sm-simple a.highlighted,
.sm-simple a:active,
.sm-simple a:focus,
.sm-simple a:hover {
    padding: 10px 20px;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.sm-simple {
    border: none;
    background: transparent;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.sm-simple>li {
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}

.sm-simple ul a,
.sm-simple ul a:active,
.sm-simple ul a:focus,
.sm-simple ul a:hover {
    font-size: 14px;
    border-left: 0px solid transparent;
    color: #000;
}

.sm-simple li {
    border-top: none;
}

.sm-simple ul {
    width: 12em;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #fff;
}

.sm-simple ul>li {
    border: none;
}

.margintop {
    margin-top: 77px;
}


/* Mega menus */


/* make mega menus take the full width of .main-nav */

#main-menu,
#main-menu>.has-mega-menu {
    position: static !important;
}

#main-menu .mega-menu {
    margin-left: -1px !important;
    margin-right: -1px !important;
    right: 15% !important;
    left: 15% !important;
    width: 70% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    border-radius: 20px;
    background: #F8F8F8;
    padding: 15px;
    margin: 0 auto;
}

#main-menu>.has-mega-menu .scroll-up,
#main-menu>.has-mega-menu .scroll-down {
    margin-left: 0 !important;
}


/* clear any floats inside the mega menus */

#main-menu .mega-menu>li {
    overflow: auto;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* reset mega menu list/link styles (which are inherited from the SmartMenus core/theme styles) */

#main-menu .mega-menu ul {
    position: static;
    display: block;
    margin: 0.83em 0;
    border: 0;
    padding: 0 0 0 0;
    width: auto;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#main-menu .mega-menu ul li {
    display: list-item;
    list-style-type: disc;
    border: 0;
}

#main-menu .mega-menu a {
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    white-space: normal;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
}

#main-menu .mega-menu a:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: rgba(0, 161, 204, 0.10);
}


/* simple columns inside the mega menus */

@media (min-width: 1200px) {
    #main-menu .mega-menu .mega-grid {
        float: left;
        width: 33.33%;
    }
}

.mega-grid h4 {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
}

.mega-grid p {
    color: #747474;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.mega-grid img {
    margin-top: 5px;
    height: 30px;
}


/* **********************************
hero-video
******************************** */

.hero-video {
    position: relative;
    z-index: 2;
}

.home2.hero-video::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 26, 32, 0.60);
}

.hero-sliders .items img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.hero-sliders .items {
    position: relative;
}

.hero-sliders .items::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.tagline {
    position: absolute;
    top: 55%;
    left: 9%;
    -webkit-transform: translate(9%, -55%);
    -ms-transform: translate(9%, -55%);
    transform: translate(9%, -55%);
    z-index: 3;
    max-width: 900px;
    width: 80%;
    padding: 0 10px;
}

.tagline h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.tagline h3 {
    color: #FFF;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.tagline h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.tagline p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.tagline img {
    height: 60px !important;
    width: auto !important;
    margin-bottom: 25px;
}

.tagline a.cusbtn {
    color: #fff;
    background: #00A1CC;
    padding: 15px 50px;
    font-size: 18px;
}

.hero-sliders .prev {
    font-size: 32px;
    left: 25px;
    color: #fff;
}

.hero-sliders .next {
    font-size: 32px;
    right: 25px;
    color: #fff;
}

.videos {
    width: 100%;
    height: 100%;
    position: relative;
}

#background {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}

.heading {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    max-width: 960px;
    text-align: center;
    -webkit-transform: translate(0%, -55%);
    -ms-transform: translate(0%, -55%);
    transform: translate(0%, -55%);
    z-index: 9;
    margin: 0 auto;
}

.home2 .heading {
    position: absolute;
    top: 55%;
    left: 13%;
    right: 0;
    max-width: 960px;
    text-align: left;
    -webkit-transform: translate(0%, -55%);
    -ms-transform: translate(0%, -55%);
    transform: translate(0%, -55%);
    z-index: 9;
    margin: 0;
}

.home2 .heading h1 span {
    background: #00A1CC;
    padding: 0 10px;
}

.heading h1 {
    color: #FFF;
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.heading p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.service-patner {
    margin-top: 30px;
}

p.bar {
    display: inline-block;
    width: 265px;
    border-top: 1px solid #fff;
    margin: 25px 0;
}

.heading a.cusbtn {
    color: #fff;
    border: 2px solid #fff;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}


/* ******************************
solutions-area
********************************* */

.solutions-area {
    background: #00181E;
    padding: 80px 0;
}

.home2.solutions-area {
    background: #fff;
    padding: 80px 0 50px 0;
}

.title {
    margin-bottom: 30px
}

.title h2 {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
}

.home2 .title h2 {
    color: #333333;
}

.title h2 span {
    color: #00A1CC;
}

.microimg {
    margin: 45px 0;
}

a.solutions {
    position: relative;
    padding: 40px;
    display: block;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.solutions:hover {
    background: url(../img/response/solutions.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home2 a.solutions:hover {
    background: url(../img/response/solutions2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.solutions:hover .seelink {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.seelink {
    color: #fff;
    display: block;
    text-align: end;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 40px;
}

.home2 .seelink {
    color: #3E3E3E;
}

.icons svg {
    height: 60px;
}

.icons svg path {
    fill: #00A1CC;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.solutions:hover .icons svg path {
    fill: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home2 a.solutions:hover .icons svg path {
    fill: #00A1CC;
}

a.solutions h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 56px;
    margin-bottom: 5px;
}

a.solutions p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.home2 .solutions h4 {
    color: #3E3E3E;
}

.home2 a.solutions p {
    color: #3E3E3E;
}

.icons {
    margin-bottom: 35px;
    height: 60px;
}

.home2 p.learmone {
    color: #00A1CC !important;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.5;
}


/* ****************************
banner-slider
****************************** */

.sliders {
    border-radius: 41px;
    background: #FFF;
    margin-top: -200px;
    padding: 40px;
    position: relative;
}

.home2 .sliders {
    border-radius: 20px;
    margin-top: -80px;
    z-index: 2;
    padding: 0;
    padding-bottom: 50px;
    background: #F8F8F8;
}

.home2.banner-slider {
    background: #F8F8F8;
}

.newhome.banner-slider {
    background: #00181E;
    position: relative;
    margin-bottom: -1px;
}

.newhome .sliders {
    position: relative;
    border-radius: 20px;
    margin-top: -80px;
    z-index: 2;
    background: #FFF;
    padding: 40px;
}

.sliders .item img {
    border-radius: 20px;
}

.prev {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #00A1CC;
    cursor: pointer;
    z-index: 9;
}

.next {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #00A1CC;
    cursor: pointer;
    z-index: 9;
}


/* *****************************
home-about
****************************** */

.home-about {
    padding: 60px 0;
}

.home2.home-about {
    padding: 60px 0;
    background: #F8F8F8;
}

.about-con h5 {
    color: #00A1CC;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.about-con h2 {
    color: #333;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-con p {
    color: #3E3E3E;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

a.cusbtn {
    display: inline-block;
    padding: 10px 30px;
    color: #00A1CC;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 30px;
    border: 2px solid #00A1CC;
    margin: 15px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

a.cusbtn:hover {
    color: #fff;
    background: #00A1CC;
    border: 2px solid #00A1CC;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.counts {
    margin: 25px 0;
}

.count {
    color: #003B49;
    font-size: 75px;
    font-weight: 600;
    line-height: 1.2;
}

.counts p {
    color: #3E3E3E;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.handshake img {
    width: 100%;
}


/* *******************************
our-client
*************************** */

.our-client {
    padding-top: 50px;
    background: #F2F5F6;
}

.our-client.home2 {
    background: #F8F8F8;
}

.our-client.whitebg {
    background: #fff;
}

.our-client.servic {
    padding-top: 50px;
    background: transparent;
}

.ourclients {
    border-radius: 20px 20px 0px 0px;
    border: 2px solid #00A1CC;
    background: #fff;
    padding: 40px 30px;
}

.partner .item {
    border-radius: 100px;
    background: #FFF;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* the slides */

.partner .slick-slide {
    margin: 15px;
}


/* the parent */

.partner .slick-list {
    margin: -15px;
}

.partner-title h3 {
    color: #3E3E3E;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}


/* ******************************
footer-area
******************************* */

.footer-area {
    background: #002832;
    padding: 50px 0 15px 0;
}

.footergrid {
    margin-bottom: 15px;
}

.footergrid ul {
    margin-bottom: 35px;
}

.fologo {
    margin-bottom: 40px;
}

.fologo img {
    height: 32px;
}

ul.socile li {
    display: inline-block;
}

ul.socile li a {
    display: inline-block;
    border-radius: 8px;
    background: #00181E;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    line-height: 1;
    margin-right: 5px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.footergrid li {
    display: block;
}

.footergrid li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.footergrid h4 {
    color: #00A1CC;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footerbottom {
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    padding: 15px 0;
}

.footerbottom p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

footerbottom {
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    padding: 15px 0;
}

.footerbottom p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}


/* ****************************
banner-area
****************************** */

.banner-area {
    position: relative;
    background: url(../img/response/topbanner1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 668px;
    padding-top: 160px;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; */
    z-index: 1;
}

.cspbanner {
    background: url(../img/response/cspbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.businessser {
    background: url(../img/response/businessser.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.itbanner {
    background: url(../img/response/itbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.copilotser {
    background: url(../img/response/copilotser.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mordernser {
    background: url(../img/response/mordernsers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contactbg {
    background: url(../img/response/contactbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.supportbg {
    background: url(../img/response/supportbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.industriesbg {
    background: url(../img/response/industriesbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cyberbg {
    background: url(../img/response/cyberbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.energybg {
    background: url(../img/response/Energybg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.OilGasbg {
    background: url(../img/response/OilGasbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.healthcarebg {
    background: url(../img/response/healthcarebg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.manufacturingbg {
    background: url(../img/response/manufacturingbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.landingbg {
    background: url(../img/response/landing.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.responsebg {
    background: url(../img/response/responsebg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-area::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 35, 0.70);
    z-index: -1;
}

.banner-con {
    text-align: left;
}

.banner-con h1 {
    color: #FFF;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.banner-con p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.banner-con h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
    text-align: left;
}

.banner-con h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
    text-align: left;
}

.banner-con a.cusbtn {
    color: #fff;
    font-size: 18px;
    background: #00A1CC;
    border: 2px solid #00A1CC;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.banner-con img {
    display: block;
    margin: 15px 0;
    height: 50px;
}


/* *****************************
short-service
******************************** */

.short-service {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.short-service::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00181E;
    z-index: -2;
}

.short-service.shortwhite::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F2F5F6;
    z-index: -2;
}

.shortservice {
    position: relative;
    margin-top: -80px;
    padding: 40px 20px;
    background: #005871;
    -webkit-clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    border-radius: 14px 14px 30px 30px;
    z-index: 1;
}

.shorttext {
    padding: 0 30px;
}

.shorttext h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.shorttext p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

.shorttext a.cusbtn {
    width: 100%;
    color: #fff;
    background: #00A1CC;
    border: 2px solid #00A1CC;
}

.cspservices .shortservice::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/response/Vector1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    height: 100px;
    width: 100%;
}

.cspservices .shortservice {
    -webkit-clip-path: none;
    clip-path: none;
    border-radius: 14px;
}


/* *************************
services-area
*************************** */

.services-area {
    background: #00181E;
    padding: 50px 0 200px 0;
}

a.serviceslist {
    position: relative;
    display: block;
    text-align: center;
    padding: 50px 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
}

a.serviceslist:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: -o-linear-gradient(bottom, rgba(0, 51, 65, 0.00) 0%, rgba(0, 161, 204, 0.50) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 51, 65, 0.00)), to(rgba(0, 161, 204, 0.50)));
    background: linear-gradient(0deg, rgba(0, 51, 65, 0.00) 0%, rgba(0, 161, 204, 0.50) 100%);
}

a.serviceslist:hover .icons svg path {
    fill: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.serviceslist h4 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

a.serviceslist p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

a.serviceslist:hover .arrowhover i {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.serviceslist:hover .seelink {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arrowhover i {
    color: #fff;
    font-size: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services-area .col-md-6 {
    padding: 0;
}
.services-area .border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50)!important;
}

.services-area .border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50) !important;
}

.services-area .border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50)!important;
}


/* *****************************
serviceslider
*********************** */

.serviceslider.banner-slider {
    background: #F2F5F6;
    padding-bottom: 50px;
}

.serviceslider .sliders {
    border-radius: 41px;
    background: #FFF;
    margin-top: -100px;
    padding: 40px;
}


/* ****************************
organizations
******************************* */

.generation {
    padding: 80px 0;
    background: #F2F5F6;
    position: relative;
    z-index: 2;
}

.generation.generation2 {
    background: #fff;
}

.generation.generation4 {
    background: #fff;
}

.generation.whitebg {
    background: #fff;
}

.generation2::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: #F2F5F6;
    z-index: -2;
}

.generation3::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: #F2F5F6;
    z-index: -2;
}

.generation.fulltop::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: #F2F5F6;
    z-index: -2;
}

.generation.fullbottom::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 0;
    top: 15%;
    left: 0;
    width: 100%;
    height: 85%;
    background: #F2F5F6;
    z-index: -2;
}

.dfex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.generation-con {
    padding: 0 5%;
}

.generation-con .title h2 {
    color: #383838;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.generation-con .title p {
    color: #3E3E3E;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.generation-con h4 {
    color: #3E3E3E;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.generation-con p {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
}

.generation-con li {
    color: #092342;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    list-style: disc;
    margin-left: 20px;
}

.generation-img img {
    width: 100%;
}

.generation-con h5 {
    color: #00A4EF;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}


/* **********************************
organizations
********************************* */

.organizations {
    position: relative;
    padding: 50px 0;
    z-index: 1;
}

.organizations::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #F2F5F6;
    z-index: -1;
}

.org-title h2 {
    color: #383838;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.org-title img {
    display: block;
    margin: 15px auto;
}

.orgcon {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    margin-bottom: 30px;
}

.orgcon p {
    color: #373737;
    font-size: 25px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.4px;
    margin-bottom: 35px;
}

.orgcon i {
    color: #00A1CC;
    font-size: 70px;
    position: absolute;
    top: -52px;
}

.orgcon.down {
    margin-top: 50px;
}

.orgname h5 {
    color: #2B2B2B;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.orgname h5 strong {
    font-weight: 700;
}

.orgname p {
    color: #787878;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.orgimg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}


/* ********************************
request-area
********************************* */

.request-area {
    padding: 50px 0;
    background: #F2F5F6;
}

.request-area.whitebg {
    background: #fff;
}

.request {
    text-align: center;
}

.request p {
    color: #383838;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.4px;
    margin-bottom: 15px;
}

.request h2 {
    color: #3E3E3E;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}


/* *******************************
blog
******************************* */

.banner-area.blog {
    position: relative;
    background: url(../img/response/blogbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 668px;
    padding-top: 160px;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start; */
    z-index: 1;
}

.banner-area.blog .banner-con {
    text-align: start;
}

.banner-area.blog .banner-con p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-area.blog .banner-con p strong {
    font-weight: 700;
    margin: 0 10px;
    display: inline-block;
}

.banner-area.blog .banner-con p img {
    margin-left: 15px;
}

.tags {
    margin-bottom: 10px;
}

.tags li {
    display: inline-block;
}

.tags li a {
    display: inline-block;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.20);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 8px 12px;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tags li a:hover {
    color: #fff;
    background: #00A1CC;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* ********************************
blog-area
************************************ */

.blog-area {
    padding: 50px 0;
    background: #F2F5F6;
}

.blog-tag {
    margin-bottom: 30px;
}

.blog-tag li {
    display: inline-block;
}

.blog-tag li a {
    display: inline-block;
    color: #383838;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 25px;
    border: 1px solid #383838;
    padding: 12px 30px;
    margin-bottom: 10px;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-tag li a:hover {
    color: #fff;
    background: #00A1CC;
    border: 1px solid #00A1CC;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogs.trnspa {
    padding: 0;
    background: transparent;
}

.blogs {
    margin-bottom: 35px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}

.blogs a {
    display: block;
}

.blogs a.blogimg {
    display: block;
    height: 170px;
    background-size: 100% !important;
    margin-bottom: 15px;
}

.blogs a img {
    width: 100%;
    margin-bottom: 15px;
}

.blogs p {
    color: #383838;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blogs p strong {
    font-weight: 500;
}

a.blogtitle {
    color: #383838;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 62px;
    margin-bottom: 10px;
}

.blog-title h3 {
    color: #383838;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

a.redmore {
    display: inline-block;
    color: #00A1CC;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.redmore:hover {
    color: #383838;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* *************************
breadcrumb-area 
*************************** */

.breadcrumb-area {
    padding: 15px 0;
    background: #E7E7E7;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #3E3E3E;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}


/* ********************************
blog-details
****************************** */

.blog-details {
    padding: 50px 0;
    background: #F0F0F0;
}

.blog-title h1 {
    color: #3E3E3E;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.blog-title p {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
}

.blog-title p strong {
    font-weight: 700;
}

.blog-title p img {
    margin-left: 10px;
}

ul.socile.blogs li a {
    display: inline-block;
    border-radius: 8px;
    background: rgba(177, 177, 177, 0.20);
    color: #3E3E3E;
    font-size: 20px;
    padding: 10px;
    line-height: 1;
    margin-right: 5px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.blog-con {
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 15px;
}

.blog-con img {
    margin-bottom: 25px;
}

.blog-con h3 {
    color: #3E3E3E;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-con p {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-con p a {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-con li {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-con li a {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-con li a:hover {
    color: #00A1CC;
}

.blog-con p a:hover {
    color: #00A1CC;
}

.note-video-clip {
    margin: 20px auto;
    display: block;
    width: 100% !important;
    height: 500px !important;
}

.blog-con iframe {
    height: 500px !important;
    width: 100% !important;
}

.blog-con h4 {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.detailstag li {
    display: inline-block;
}

.detailstag li a {
    display: inline-block;
    color: #3E3E3E;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    border-radius: 4px;
    background: rgba(175, 175, 175, 0.20);
    padding: 10px 16px;
    margin-right: 10px;
}

.recnt-blog {
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 15px;
}

.recnt-blog li a {
    display: block;
    margin-bottom: 25px;
}

.recnt-blog li a img {
    height: 80px;
    width: 80px;
    -o-object-fit: contain;
    object-fit: contain;
}

.recnt-blog li a p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #747474;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.recnt-blog li a p img {
    height: 16px;
    margin-right: 5px;
}

.recnt-blog li a p span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.recnt-blog li a h4 {
    color: #3E3E3E;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.legal h1 {
    color: #00181E;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 35px;
}

.blog-con.legal ul {
    margin-bottom: 25px;
}

.blog-con.legal li {
    color: #00181E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 25px;
}

.blog-con.legal li a {
    font-size: 16px;
    word-wrap: break-word;
}

.blog-con.legal p {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

.blog-con.legal p a {
    font-size: 16px;
    font-weight: 500;
}

.blog-con.legal h3 {
    font-size: 22px;
}

.blog-con.legal h2 {
    color: #3E3E3E;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

b {
    font-weight: 700;
}

.blog-con.legal ol {
    list-style: lower-alpha;
}

.blog-con.legal ol ol {
    list-style: lower-roman;
    margin-left: 25px;
}


/* ***************************
faq-area
**************************** */

.faq-area {
    padding: 50px 0;
    background: #F8F8F8;
}

.faqtitle {
    margin-bottom: 25px;
}

.faqtitle h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #3F3F3F;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.3;
}

.faqtitle h2 img {
    margin-left: 15px;
    -o-object-fit: contain;
    object-fit: contain;
}

.accordion-button:not(.collapsed) {
    color: #3F3F3F;
    background-color: transparent;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    color: #3F3F3F;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px solid #D4D4D4;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-body {
    padding: 15px 0;
}

.accordion-body p {
    color: #3F3F3F;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: auto;
    content: "\F4FE";
    font-family: "bootstrap-icons";
    background-image: none;
    color: #00A1CC;
    border: 1px solid #00A1CC;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
}

.accordion-button:not(.collapsed)::after {
    content: "\F2EA";
    font-family: "bootstrap-icons";
    background-image: none;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    color: #00A1CC;
}


/* *****************************
licensing-area
****************************** */

.licensing-area {
    padding: 50px 0 0 0;
    background: #00181E;
}

.licensing-area .title p {
    margin: 15px 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.accordion2 {
    padding-bottom: 50px;
}

.title h3 {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.licensing-img {
    text-align: center;
    display: block;
    margin: 0 auto;
    border-radius: 20px 20px 0px 0px;
    background: rgba(0, 161, 204, 0.10);
}

.licensing-img img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.subtitle {
    margin-bottom: 15px;
}

.subtitle h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.accordion2 .accordion-button {
    color: #00A1CC;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.accordion2 .accordion-body p {
    color: #E9E9E9;
}


/* *****************************
experties-area
****************************** */

.experties-area {
    padding: 50px 0;
    background: #F2F5F6;
}

.experties-area.whitebg {
    background: #fff;
}

.experties-area {
    padding: 50px 0;
    background: #F2F5F6;
}

.experties-area .title h2 {
    color: #00181E;
}

.extends img {
    height: 80px;
    width: 80px;
}

.extends {
    padding: 15px;
    margin-bottom: 25px;
}

.extends h4 {
    color: #00181E;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.extends p {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.itser.organizations::after {
    height: 50%;
}

.subtitle h5 {
    color: #3E3E3E;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.experties-area .border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) rgba(187, 187, 187, 0.50) !important;
}

.experties-area .border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) rgba(187, 187, 187, 0.50) !important;
}

.experties-area .border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) rgba(187, 187, 187, 0.50) !important;
}

.experties-area .border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) rgba(187, 187, 187, 0.50) !important;
}


/* *************************
copliot
******************************* */

.copliot {
    background: #00181E;
}

.copliot .title h2 {
    color: #fff;
}

.copliot .extends h4 {
    color: #fff;
}

.copliot .extends p {
    color: #fff;
}

.copliot .border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50) !important;
}

.copliot .border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50) !important;
}

.copliot .border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.50) !important;
}

.copliot .extends li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    list-style: disc;
    margin-left: 17px;
    margin-top: 5px;
}

.mdrdeatails {
    background: #002832;
    padding: 80px 0;
}

.copliot2 {
    padding-bottom: 200px;
}

.copilot-area {
    margin-top: -120px;
    padding-bottom: 100px;
}


/* *******************************
shortbaner
********************************* */

.shortbaner {
    height: 600px;
}

.shortbaner .banner-con p {
    margin-bottom: 0;
}

.contact-area {
    padding-bottom: 80px;
    background: #F2F5F6;
}

.bgbox {
    position: relative;
    margin-top: -100px;
    padding: 50px;
    border-radius: 20px;
    background: #002832;
    z-index: 2;
}

.bgbox.careers {
    position: relative;
    margin-top: -100px;
    padding: 50px;
    border-radius: 20px;
    background: #F2F5F6;
    z-index: 2;
    -webkit-box-shadow: var(--bs-box-shadow) !important;
    box-shadow: var(--bs-box-shadow) !important;
}

.contactus,
.contactdetails {
    padding: 50px;
}

.contactus .form-control {
    display: block;
    width: 100%;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.03);
}

.form-control:focus {
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: 1px solid #fff;
}

.contactus ::-webkit-input-placeholder {
    color: #ddd;
    opacity: 1;
    /* Firefox */
}

.contactus ::-moz-placeholder {
    color: #ddd;
    opacity: 1;
    /* Firefox */
}

.contactus :-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
    /* Firefox */
}

.contactus ::-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
    /* Firefox */
}

.contactus ::placeholder {
    color: #ddd;
    opacity: 1;
    /* Firefox */
}

.contactus :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ddd;
}

.contactus ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ddd;
}

.submit {
    border: none;
    border-radius: 50px;
    background: #05A1EC;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.4px;
    padding: 15px;
    width: 100%;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.contactdetails i {
    color: #00A1CC;
    font-size: 26px
}

.contactdetails p {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.contactdetails a {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
}

.contactdetails h4 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
}

.contactdetails .d-flex {
    margin-bottom: 35px;
}


/* ***************************
supportcon
***************************** */

.supportcon {
    padding: 30px;
}

.supportcon h2 {
    color: #FFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.supportcon p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
}

.supportcon h3 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.supportcon h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.supportcon a.cusbtn {
    color: #fff;
    background: #00A1CC;
    border: 2px solid #00A1CC;
    width: 90%;
}


/* **************************
career
**************************** */

.career {
    padding: 10px;
}

.career p {
    display: inline-block;
    border-radius: 8px;
    background: #7FBB01;
    padding: 10px 15px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.career li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #00181E;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    border-top: 1px solid#ccc;
    padding: 10px 0;
}

.career li a.cusbtn {
    color: #fff;
    background: #00A1CC;
    border: 2px solid #00A1CC;
    padding: 10px 50px;
}


/* *******************************
industries-post
******************************* */

.industries-post {
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.industries-area {
    background: #00181E;
    padding-bottom: 80px;
}

.industries {
    margin-bottom: 50px;
}

.industries a {
    display: block;
}

.industries img {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 25px;
}

.industries h2 {
    color: #00181E;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.industries h4 {
    color: #00181E;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.industries p {
    color: #00181E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.industries ul {
    margin-bottom: 25px;
}

.industries li {
    color: #00181E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
    list-style: disc;
    margin-left: 17px;
}

.industries a.cusbtn {
    display: inline-block;
    width: auto;
    color: #fff;
    background: #00A1CC;
    border: 2px solid #00A1CC;
}

.industries-post .industries h2 {
    color: #FFF;
}

.industries-post .industries h4 {
    color: #FFF;
}

.industries-post .industries p {
    color: #FFF;
}

.industries-post .industries li {
    color: #FFF;
}


/* ***************************
three-phases
***************************** */

.three-phases {
    padding: 50px 0;
    overflow: hidden;
}

.three-phases .title h2 {
    color: #092342;
}

.phases {
    padding: 30px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.phases:hover {
    background: #F2F5F6;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.phasesnum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.phasesnum h4 {
    color: #092342;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 25px;
}

.phasesnum h4 span {
    display: block;
    color: #00A4EF;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-filter: contrast(1);
    filter: contrast(1);
}

.phasesnum img {
    padding: 0 25px;
}

.steps {
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
}

.steps img {
    width: 100%;
}

.phases h3 {
    color: #092342;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 0 25px;
}

.phases h4 {
    color: #092342;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 0 25px;
}

.phases p {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 25px;
    margin-bottom: 25px;
}

.phases li {
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
    list-style: disc;
    margin-left: 47px;
}


/* *****************************
solutions-stage
******************************* */

.solutions-stage {
    padding: 80px 0;
    background: #00181E;
}

.solutions-stage .title {
    margin-bottom: 50px;
}

.solutions-stage .title p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 15px;
}

.solutionlist {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(217, 217, 217, 0.05);
    height: 100%;
}

.solutionlist img {
    margin-bottom: 25px;
}

.solutionlist h3 {
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
}

.solutionlist p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}


/* ********************************
video-area
********************************** */

.video-area {
    padding: 50px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.video-area::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: #F2F5F6;
    z-index: -1;
}

.video-area iframe {
    height: 450px;
    border-radius: 12px;
}


/* ******************************
pen-testing
********************************* */

.pen-testing {
    padding: 50px 0;
    background: #F2F5F6
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent;
    border-bottom: 4px solid transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent;
    border-bottom: 4px solid #092342;
    color: #092342;
    font-weight: 600;
}

.nav-tabs .nav-link {
    display: block;
    padding: 15px 0;
    color: #092342;
    font-size: 24px;
    font-weight: 400;
    margin-right: 30px;
}

.tab-pane {
    padding: 30px 0;
}

.tab-pane .title h2 {
    color: #092342;
    margin-bottom: 15px;
}

.tab-pane .title p {
    font-size: 18px;
    color: #092342;
}

.subtitle h2 {
    color: #092342;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle p {
    color: #092342;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}


/* ********************************
hightlight-services
********************************** */

.hightlight-services {
    padding-top: 80px;
    background: #00181E;
}

.organizations.blackbg {
    background: #00181E;
}

.hightlight {
    position: relative;
    z-index: 1;
}

.hightlight img {
    width: 100%;
}

.hightlight a {
    padding: 15px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    left: auto;
    right: auto;
    width: 100%;
}

.hightlight p {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hightlight span i {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}


/* ********************************
subbox
******************************* */

.subbox {
    border-radius: 15px;
    background: #002832;
    padding: 15px;
    position: relative;
    width: 120%;
    z-index: -1;
}

.subbox p {
    color: #fff;
    padding-right: 18%;
}


/* *******************************
acdvaced-area
****************************** */

.acdvaced-area {
    padding-bottom: 50px;
    background: #F2F5F6;
}

.advaced-img img {
    width: 100%;
    margin-bottom: 15px;
}

.advaced-text {
    padding-top: 50px;
}

.advaced-text h5 {
    color: #092342;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.advaced-text p {
    color: #092342;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.advaced-text p a {
    color: #092342;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}


/* ****************************
summary-area
******************************** */

.summary-area {
    padding: 50px 0;
    background: url(../img/response/summary.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.summary-area::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: -1;
}

.summry {
    text-align: center;
    padding: 15px;
}

.summry h3 {
    color: #FFF;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
}

.summry p {
    color: #FFF;
    font-size: 16px;
    line-height: 1.5;
}

.summary-area .border-end {
    border-right: 1px solid #00A4EF !important;
}


/* **************************
Modal
***************************** */

.modal-title {
    margin-bottom: 0;
    color: #092342;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-close:focus {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.forms .form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #092342;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 6px;
}

.forms small {
    display: block;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.3;
}

.modal-body .submit {
    font-weight: 600;
    padding: 12px;
}

.marbtm {
    margin-bottom: 100px;
}


/* **********************************
testimonials
********************************* */

.testimonials {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.testimonials .prev {
    left: -30px;
}

.testimonials .next {
    right: -30px;
}

.testimonials .orgcon p {
    font-size: 18px;
}

.testimonials .orgcon {
    margin-bottom: 10px;
}

.testimonials .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slick-dots {
    margin: 0 auto;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.slick-dots li.slick-active {
    background: #00A1CC;
}

.slick-dots li button {
    display: none;
}


/* ******************************
map-area
****************************** */

.map {
    height: 500px;
    width: 100%;
}

.map iframe {
    height: 100%;
    width: 100%;
}


/* **************************
landing-page
***************************** */

.landing-page {
    background: #F2F5F6;
    padding: 60px 0;
}

.response h3 {
    color: #00A1CC;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.landing p {
    color: #3E3E3E;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.landing img {
    margin: 15px 0;
}

.footerss {
    background: #002832;
    text-align: center;
    padding: 15px 0;
}

.footerss p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}


/* *****************************
landing page
******************************** */

.response-banner {
    font-family: "Inter", sans-serif;
    background: url('../img/response/responsebanner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logoo {
    position: absolute;
    top: 50px;
    left: auto;
}

.restext {
    text-align: center;
}

.restext h1 {
    color: #FFF;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.restext h4 {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.restext a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
}

.btns {
    margin-top: 15px;
}

.btns a {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 15px;
    border: 1px solid #000;
    background: #000024;
    padding: 12px 35px;
    margin: 8px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btns a:last-child {
    display: inline-block;
    color: #000024;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 15px;
    border: 1px solid #fff;
    background: #fff;
    padding: 12px 35px;
}

.btns a:last-child:hover {
    color: #FFF;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #00A4EF;
    border: 1px solid #00A4EF;
}

.response-contents {
    font-family: "Inter", sans-serif;
    padding: 50px 0;
    background: #000024;
    position: relative;
    z-index: 1;
}

.response-contents::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 30%;
    right: 0;
    height: 50%;
    width: 550px;
    background: url('../img/response/resshape.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.resimg img {
    width: 100%;
    margin-bottom: 15px;
}

.resimg {
    margin-bottom: 50px;
}

.rescon {
    margin-bottom: 50px;
}

.rescon h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.rescon h3 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 35px;
    margin-bottom: 15px;
}

.rescon p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.rescon ul {
    margin-bottom: 15px;
}

.rescon li img {
    height: 24px;
    position: absolute;
    top: 4px;
    left: 0;
}

.rescon li {
    position: relative;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    vertical-align: middle;
    padding-left: 35px;
}

.response-contents .title h2 {
    text-align: center;
    font-size: 32px;
}

.reslist {
    margin: 50px 0;
    text-align: center;
}

.resicon {
    display: inline-block;
    height: 84px;
    width: 84px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
    background: #00A0DD;
}

.reslist h4 {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.reslist p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.plan-area {
    padding: 50px 0px 80px;
    background-color: #000024;
    background-image: url('../img/response/planshape.png');
    background-repeat: no-repeat;
    background-size: 100% 348px;
    background-position: center;
}

.plan-area .title h2 {
    text-align: center;
    font-size: 32px;
}

.plan-area .col-lg-6 {
    margin-bottom: 25px;
}

.plans {
    height: 100%;
}

.plan {
    position: relative;
    background: #fff;
    border-radius: 27px;
    padding: 30px 50px 50px 50px;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan:hover {
    background: #00A0DD;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan h2 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan ul {
    margin-bottom: 15px;
}

.plan li {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan:hover h2 {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan:hover li {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan li::before {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 8px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2095F4;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan:hover ::before {
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hide {
    opacity: 0;
}

.plans h6 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

a.gets {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    width: 150px;
    background: #2095F4;
    padding: 12px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plan:hover a.gets {
    color: #2095F4;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.clientssays {
    background: #000024;
    padding: 50px 0;
}

.clientssays .title h2 {
    font-size: 32px;
}

.clients .items {
    position: relative;
    border-radius: 45px;
    border: 1px solid #FFF;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    min-height: 148px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clients .slick-slide {
    margin: 50px;
}

.clients .items h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 80px;
}

.clients .items img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    height: 120px;
    width: 120px;
    border-radius: 60px;
    margin: auto 0;
}

.highlights {
    padding: 30px 0;
    background: #2095F4;
    text-align: center;
}

.highlights .title {
    margin-bottom: 0;
}

.footers {
    background: #000024;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fologoo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.fologoo img {
    height: 40px;
}

.socils li {
    display: inline;
}

.socils li a {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-right: 15px;
    margin-bottom: 12px;
}

.socils li a i {
    margin-right: 6px;
}

.socils {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.mobileview {
    display: none;
}

.newsletter h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-right: 8px;
}

.newsletter .form-control {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #000024;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.subscribe {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    border: var(--bs-border-width) solid #00A0DD;
    border-radius: var(--bs-border-radius);
    background: #00A0DD;
}


/* *************************
newsletter css
*************************** */
.newsletter {
    overflow: hidden;
}


.newsletter .outer {
     width: 100% !important;
}

.newsletter .outer tr th {
    padding: 0 !important;
}
.newsletter .columnContainer {
    width: 400px !important;
    height: 0px;
    max-width: 600px;

}


.newsletter .marketingForm p {
    margin: 0px;
    padding: 0px;
    line-height: 125%;
    line-height: 1.25;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #fff !important;
}

.newsletter .textFormFieldBlock label {

    color: #fff !important;
}


.newsletter .textFormFieldBlock {
padding: 0 !important;

}

.newsletter  div[data-editorblocktype="SubmitButton"] {
    padding: 6px 0 !important;

}


.newsletter .marketingForm p span {
    font-size: 10px;
    line-height: 14px;
    color: #fff;
}
