/* COLORS */
:root {
  --blue: #00a9f4;
  --dark-blue: #08216a;
  --black: #212121;
  --white: #ffffff;
  --light-grey: #f4f6f8;
  --basefont: 'Lato', sans-serif;
  --headingfont: 'Futura Std';
  --transition: all 0.5s ease;
  --anchorcolor: var(--dark-blue);
  --anchorhover: var(--blue);
}

/* FONT FAMILY */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-Light.eot');
    src: url('../font/FuturaStd-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-Light.woff2') format('woff2'),
        url('../font/FuturaStd-Light.woff') format('woff'),
        url('../font/FuturaStd-Light.ttf') format('truetype'),
        url('../font/FuturaStd-Light.svg#FuturaStd-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-Book.eot');
    src: url('../font/FuturaStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-Book.woff2') format('woff2'),
        url('../font/FuturaStd-Book.woff') format('woff'),
        url('../font/FuturaStd-Book.ttf') format('truetype'),
        url('../font/FuturaStd-Book.svg#FuturaStd-Book') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-Medium.eot');
    src: url('../font/FuturaStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-Medium.woff2') format('woff2'),
        url('../font/FuturaStd-Medium.woff') format('woff'),
        url('../font/FuturaStd-Medium.ttf') format('truetype'),
        url('../font/FuturaStd-Medium.svg#FuturaStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-Heavy.eot');
    src: url('../font/FuturaStd-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-Heavy.woff2') format('woff2'),
        url('../font/FuturaStd-Heavy.woff') format('woff'),
        url('../font/FuturaStd-Heavy.ttf') format('truetype'),
        url('../font/FuturaStd-Heavy.svg#FuturaStd-Heavy') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-Bold.eot');
    src: url('../font/FuturaStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-Bold.woff2') format('woff2'),
        url('../font/FuturaStd-Bold.woff') format('woff'),
        url('../font/FuturaStd-Bold.ttf') format('truetype'),
        url('../font/FuturaStd-Bold.svg#FuturaStd-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Std';
    src: url('../font/FuturaStd-ExtraBold.eot');
    src: url('../font/FuturaStd-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../font/FuturaStd-ExtraBold.woff2') format('woff2'),
        url('../font/FuturaStd-ExtraBold.woff') format('woff'),
        url('../font/FuturaStd-ExtraBold.ttf') format('truetype'),
        url('../font/FuturaStd-ExtraBold.svg#FuturaStd-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}





*{ box-sizing: border-box; }
*:focus { outline:none; }
::-moz-focus-inner { border:0; }

body { margin:0px; font-family: var(--basefont); font-weight:400; color:var(--black); font-size:17px; line-height:1.3em; overflow-x: hidden !important; }
strong { font-weight:700; }
a { text-decoration:none; color: var(--anchorcolor); transition: var(--transition); }
a:hover, a:focus { text-decoration:none; color: var(--anchorhover); transition: var(--transition); }

::-webkit-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #999999; }
::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder { color: #999999; }
:-ms-input-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #999999; }
:-moz-placeholder, input:-moz-placeholder, textarea:-moz-placeholder { color: #999999; }

p {margin:0 0 15px 0; }
p:last-child {margin:0; }

h1,h2,h3,h4,h5,h6 {margin-top:0px; font-weight:600; color:var(--dark-blue); margin-bottom:10px; font-family:var(--headingfont); line-height: 1.2em; }
h1 { font-size:60px; }
h2 { font-size:40px; }
h3 { font-size:36px; }
h4 { font-size:30px; }
h5 { font-size:24px; }
h6 { font-size:20px; }

.container { margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; float: none; box-sizing: border-box; }
.container:after { clear: both; content: ""; display: table; }

.text-center { text-align:center; }
.text-left { text-align:left; }
.text-right { text-align:right; }
.text-uppercase { text-transform:uppercase; }

img { height:auto; max-width:100%; }
.lazy-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.bg-attechment { background-attachment: fixed; }


/* Default Form Code */
.default-form .form-group .form-control { background: transparent; font-family: var(--basefont); border-radius:0; color:var(--black); border:none; padding:12px 20px; margin:0 0 15px 0; font-size:16px; font-weight:400; width: 100%; border-bottom: 1px solid rgb(8 33 106 / 30%); }
.default-form .form-check input[type="checkbox"] { opacity: 0; display: none; }
.default-form .form-check input[type="checkbox"] + label { position: relative; padding: 0; padding-left: 24px; font-size: 14px; display: inline-block; color: var(--white); cursor: pointer; }
.default-form .form-check input[type="checkbox"] + label:before { content: "\f00c"; height: 15px; width: 15px; position: absolute; background: transparent; border: 1px solid var(--white); border-radius: 3px; color: var(--white); left: 0; top: 3px; font-family: 'FontAwesome'; display: flex; align-items: center; justify-content: center; font-size: 0; }
.default-form .form-check input[type="checkbox"]:checked + label:before { font-size: 11px; }

.default-form button { background: var(--dark-blue); border: none; font-size: 16px; margin-top: 15px; position: relative; min-width: 188px; display: inline-block; vertical-align: top; text-align: center; color: var(--white); padding: 17px 20px; border-radius: 5px; text-transform: uppercase; font-family: var(--headingfont); font-weight: 600; letter-spacing: 1px; z-index: 0; overflow: hidden; cursor: pointer; }
.default-form button:after { position: absolute; left: 50%; right: 50%; top: 0; bottom: 0; background: var(--blue); z-index: -1; content: ''; opacity: 0; visibility: hidden; transition: all 0.5s ease-in-out; }
.default-form button:hover:after { left: 0; right: 0; opacity: 1; visibility: visible; }

/* Slick css */
.slick-slider .slick-arrow { background:none; border:none; z-index:9; position:absolute; top:50%; left:-50px; transform: translateY(-50%); padding: 0; font-size:0px; color:var(--blue); transition: var(--transition); cursor:pointer; }
.slick-slider .slick-arrow:hover { color: var(--dark-blue); }
.slick-slider .slick-arrow.slick-prev:after { content:'\f104'; font-size:60px; line-height:30px; font-family: FontAwesome; }
.slick-slider .slick-arrow.slick-next:after { content:'\f105'; font-size:60px; line-height:30px; font-family: FontAwesome; }
.slick-slider .slick-arrow.slick-next { left:auto; right:-50px; }

.slick-slider .slick-dots { text-align: center; padding: 30px 0 0; margin: 0; }
.slick-slider .slick-dots li { display: inline-block; margin: 0 5px; }
.slick-slider .slick-dots li button { width: 30px; height: 10px; border-radius: 5px; background-color: transparent; border: 1px solid var(--white); padding: 0; text-indent: -9999px; cursor: pointer; transition: var(--transition); }
.slick-slider .slick-dots li.slick-active button { background-color: var(--blue); border-color: var(--blue); }


/* HEADER MENU */
.nav-toggle { background: transparent; border: 0 none; cursor: pointer; padding: 10px 0; position: absolute; right: 0; top: -52px; width: 43px; }
.nav-toggle .icon-bar { margin:auto; background-color:#fff; border-radius:1px; display:block; height:3px; position:relative; width:22px; transition: var(--transition); }
.nav-toggle .icon-bar + .icon-bar { margin-top:4px; }
.nav-toggle .icon-bar:nth-child(1), .nav-toggle .icon-bar:nth-child(3) { top:0;  transform:rotate(0deg); }
.nav-toggle.nav-menuopen .icon-bar:nth-child(1) { top:7px; transform:rotate(45deg); }
.nav-toggle.nav-menuopen .icon-bar:nth-child(2) { opacity:0; }
.nav-toggle.nav-menuopen .icon-bar:nth-child(3) { top:-7px; transform:rotate(-45deg); }
.mainmenu .mobile-menu span.mobile-toggle { width:36px; height:36px; position:absolute; right:0px; top:2px; background-color:#ededed; transition: var(--transition); }
.mainmenu .mobile-menu span.mobile-toggle:after,.mainmenu .mobile-menu span.mobile-toggle:before { content:""; background-color:#000; height:16px; width:2px; position:absolute; left:17px; top:10px; transition: var(--transition); }
.mainmenu .mobile-menu span.mobile-toggle:before { transform:rotate(90deg); transition: var(--transition); }
.mainmenu .mobile-menu span.mobile-toggle.nav-subopen:after { transform:rotate(90deg)}; }
.mainmenu .mobile-menu span.mobile-toggle.nav-subopen:before { opacity:0; background-color:#fff; transform:rotate(180deg); }
.mainmenu ul { padding:0; margin:0; list-style:none; text-align:left; }
.mainmenu ul li a { padding:5px 0; display:block; color:var(--white); font-family:var(--headingfont); font-size:16px; text-transform:uppercase; font-weight:600; letter-spacing: 1px; }
.mainmenu > ul { text-align:right; }
.mainmenu > ul > li { display:inline-block; vertical-align:middle; }
.mainmenu > ul > li:not(:first-child) { margin-left:50px; }
.mainmenu > ul > li > a { max-width:none; width:auto; position: relative; }
.mainmenu > ul > li { position:relative; }
.mainmenu > ul > li ul { background-color:#fff; padding:8px 0; min-width:250px; border-radius: 5px; left:0; top:100%; opacity:0; position:absolute; visibility:hidden; z-index:10;  transform:translateY(20px); transition: var(--transition); box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); }
.mainmenu > ul > li ul li a { color:var(--black); padding:7px 10px; font-size: 14px; letter-spacing: 0.5px; }
.mainmenu > ul > li.resources ul { min-width: 180px; }

.flex { display:flex }
.align-center { align-items:center; }
.align-top { align-items:flex-start; }
.align-bottom { align-items:flex-bottom; }
.space-between { justify-content:space-between; }
.space-around { justify-content:space-around; }
.justify-center { justify-content:center; }
.justify-right { justify-content:flex-end; }
.justify-left { justify-content:flex-start; }
.row-wrap { flex-flow:row wrap; }
.row-reverse { flex-flow:row-reverse; }
.o-hidden { overflow: hidden; }
ul, ol { list-style:none; padding:0; margin:0; }


.bg-btn a { background: var(--blue); position: relative; min-width: 188px; display: inline-block; vertical-align: top; text-align: center; color: var(--white); font-size: 16px; padding: 16px 20px; border-radius: 5px; text-transform: uppercase; font-family: var(--headingfont); font-weight: 600; letter-spacing: 1px; z-index: 0; overflow: hidden; }
.bg-btn a:after { position: absolute; left: 50%; right: 50%; top: 0; bottom: 0; background: var(--dark-blue); z-index: -1; content: ''; opacity: 0; visibility: hidden; transition: all 0.5s ease-in-out; }
.bg-btn a:hover:after { left: 0; right: 0; opacity: 1; visibility: visible; }

.bg-btn.dark-blue-btn a { background: var(--dark-blue); }
.bg-btn.dark-blue-btn a:after { background: var(--blue); }

.readmore-btn a { position: relative; color: #b0b8c1; text-transform: uppercase; font-family: var(--headingfont); font-weight: 700; font-size: 15px; padding-right: 20px; }
.readmore-btn a:before { position: absolute; content: '\f105'; font-size: 21px; font-family: FontAwesome; right: 0; top: 50%; transform: translateY(-50%); }
.readmore-btn a:hover { color: var(--dark-blue); }

.grey-bg { background: #ecf0f3; }
.dark-blue-bg { background: var(--dark-blue); }
.w-100 { display: inline-block; vertical-align: top; width: 100%; }

.title { width: 100%; max-width: 1060px; margin: 0 auto 60px; font-size: 20px; line-height: 1.4em; }
.title.blue-title h3 { color: var(--blue); }
.title h3 { font-weight: 700; margin-bottom: 0; }
.title h6 { margin-top: 20px; color: var(--black); font-size: 22px; line-height: 32px; }
.title .content { margin-top: 20px; }
.title .bg-btn { margin-top: 40px; }

.title.white-title { color: var(--white); }
.title.white-title h3 { color: var(--white); }

.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }

.font-500 { font-weight: 500 !important; }
.font-600 { font-weight: 600 !important; }
.font-700 { font-weight: 700 !important; }

.check-ul ul li { position: relative; padding-left: 35px; margin-bottom: 30px; }
.check-ul ul li:last-child { margin-bottom: 0; }
.check-ul ul li:before { position: absolute; content: ""; background: url(../image/check-icon.png) no-repeat center / cover; width: 20px; height: 15px; top: 7px; left: 0; }

/* CARD LIST */
.card-list { margin: 0 -15px; }
.card-list .card-box { width: calc(100% / 3 - 30px); background: #ecf0f3; margin: 0 15px 30px; border: 1px solid #c5c5c5; border-radius: 5px; transition: var(--transition); }
.card-list .card-box a { padding: 40px 30px; }
.card-list .card-box .icon { line-height: 0; }
.card-list .card-box .icon svg { width: 60px; transition: var(--transition); }
.card-list .card-box h5 { margin: 20px 0; color: var(--black); font-weight: 800; font-family: var(--basefont); transition: var(--transition); }
.card-list .card-box .content { font-size: 16px; line-height: 1.5em; color: var(--black); }
.card-list .card-box:hover { background: #fff; box-shadow: 0 10px 20px 0 rgb(0 0 0 / 5%); border-color: var(--white); }
.card-list .card-box:hover .icon svg { fill: var(--blue); }
.card-list .card-box:hover h5 { color: var(--blue); }

.card-list.card-list-two { margin: 95px 15px -65px; }
.card-list.card-list-two .card-box { background: var(--white); border: none; box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%); margin-bottom: 65px; position: relative; text-align: left; }
.card-list.card-list-two .card-box a { padding: 65px 30px 30px; }
.card-list.card-list-two .card-box .icon { background: var(--white); position: absolute; top: -35px; left: 30px; width: 70px; height: 70px; border-radius: 100%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%); transition: var(--transition); }
.card-list.card-list-two .card-box .icon svg { fill: var(--dark-blue); width: 42px; }
.card-list.card-list-two .card-box h5 { margin-top: 0; }
.card-list.card-list-two .card-box:hover { box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%); }
.card-list.card-list-two .card-box:hover .icon { background: var(--dark-blue); box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%); }
.card-list.card-list-two .card-box:hover .icon svg { fill: var(--white); }

.service-section .card-list.card-list-two .card-box a { padding: 40px 20px; text-align: center; }
.service-section .card-list.card-list-two .card-box .icon { display: none; }
.service-section .card-list.card-list-two .card-box h5 { font-size: 20px; }


/* BG BOX LIST */
.bg-box-list { margin: 0 -15px; }
.bg-box-list .bg-box { width: calc(100% / 3 - 30px); margin: 0 15px 30px; padding: 20px; border-radius: 5px; transition: var(--transition); }
.bg-box-list .bg-box .image { margin-bottom: 20px; }
.bg-box-list .bg-box .image img { border-radius: 5px; height: 280px; object-fit: cover; width: 100%; }
.bg-box-list .bg-box .tag { margin-bottom: 7px; }
.bg-box-list .bg-box .tag a { font-weight: 600; color: var(--black); }
.bg-box-list .bg-box .tag a:hover { color: var(--blue); }
.bg-box-list .bg-box h6 { margin-bottom: 20px; font-weight: 700; }
.bg-box-list .bg-box h6 a { color: var(--dark-blue); }
.bg-box-list .bg-box .content { line-height: 1.5; margin: 20px 0; }
.bg-box-list .bg-box:hover { background: var(--light-grey); }
.bg-box-list .bg-box:hover h6 a { color: var(--blue); }
.bg-box-list .bg-box:hover .readmore-btn a { color: var(--dark-blue); }




/* CSS start from here */

/* HEADER */
header { position: absolute; top: 0; left: 0; right: 0; z-index: 1; padding:30px 0; transition: var(--transition); }
header.headerfixed { background: var(--dark-blue); position: fixed; padding: 10px 0; z-index: 999; box-shadow: 0 5px 20px 0 rgb(0 168 243 / 15%); }
header.headerfixed ul li a { font-size: 14px; }
header.headerfixed .bg-btn a { padding: 13px 15px; font-size: 14px; min-width: 150px; }
header.headerfixed .logo img { max-width: 130px; }
header .logo img { max-width: 142px; }
header .bg-btn a { min-width: 168px; }
header .bg-btn a:after { background: var(--white); }
header .bg-btn a:hover { color: var(--blue); }
header .header-btn { margin-left: 50px; }

header.header-inner { position: relative; }
header.header-inner.headerfixed { position: fixed; background: var(--white); top: 0; }
header.header-inner .mainmenu > ul > li > a { color: var(--anchorcolor); }
header.header-inner .mainmenu > ul > li:hover > a, header.header-inner .mainmenu > ul > li.active > a { color: var(--anchorhover); }
header.header-inner.headerfixed .mainmenu > ul > li:hover > a,
header.header-inner.headerfixed .mainmenu > ul > li.active > a { color: var(--blue); }
header.header-inner .bg-btgn a:after { background: var(--dark-blue); }
header.header-inner .bg-btn a:after { background: var(--dark-blue); }
header.header-inner .bg-btn a:hover { color: #fff; }



/* BANNER SECTION */
.banner-section { padding: 220px 0; position: relative; }
.banner-section:after { position: absolute; content: ""; left: 0; right: 0; bottom: 0; height: 142px; background-image: url(../image/shape-1.png); background-repeat: no-repeat; background-size: 100% 100%; background-position: bottom center; }
.banner-section:before { position: absolute; content: ""; background: url(../image/dots-image.png) no-repeat center / cover; width: 1346px; height: 546px; right: -130px; bottom: -235px; pointer-events: none; }
.banner-section .banner-inner { width: 100%; max-width: 860px; }
.banner-section .banner-inner h1 { color: var(--white); letter-spacing: 2px; }
.banner-section .banner-inner .caption-wrp { min-height: 156px; margin-bottom: 30px; }
.banner-section .banner-inner .caption-wrp span { font-family: var(--headingfont); font-size: 60px; color: var(--blue); letter-spacing: 2px; font-weight: 600; line-height: 1.3em; }
.banner-section .banner-inner h5 { color: var(--white); text-transform: uppercase; margin-bottom: 30px; }
.banner-section .banner-inner .platform-logo .logo-img img { max-height: 50px; margin-right: 30px; }


/* SERVICE SECTION */
.service-section .bg-btn { margin-top: 30px; }


/* SOLUTION SECTION */
.solution-section .solution-tab-slider { width: 100%; max-width: 1280px; margin: 0 auto; }
.solution-section .solution-tab-slider .solution-nav { padding: 0 50px; }
.solution-section .solution-tab-slider .solution-nav .tab-title { background: #ffffff; text-align: center; padding: 20px 5px; border-radius: 5px 5px 0 0; margin: 10px 10px 0; transition: var(--transition); cursor: pointer; }
.solution-section .solution-tab-slider .solution-nav .slick-current .tab-title, .solution-section .solution-tab-slider .solution-nav .tab-title:hover { background: var(--dark-blue); }
.solution-section .solution-tab-slider .solution-nav .tab-title h6 { margin: 0; font-weight: 700; font-size: 16px; color: var(--blue); }
.solution-section .solution-tab-slider .solution-nav .slick-current .tab-title h6, .solution-section .solution-tab-slider .solution-nav .tab-title:hover h6 { color: var(--white); }

.solution-section .solution-tab-slider .solution-for { background: #fff; border-radius: 8px; box-shadow: 0 0px 27px 0 rgb(8 33 106 / 11%); }
.solution-section .solution-tab-slider .solution-for .slick-track { line-height: 0; }
.solution-section .solution-tab-slider .solution-for .tab-content .image { width: 380px; min-height: 400px; border-radius: 8px; }
.solution-section .solution-tab-slider .solution-for .tab-content .right { width: calc(100% - 380px); padding: 40px; }

.solution-section .solution-tab-slider .solution-for .tab-content .right h5 { font-weight: 700; line-height: 1.4; margin-bottom: 30px; }
.solution-section .solution-tab-slider .solution-for .tab-content .right .content { line-height: 32px; }


/* COUNTER SECTION */
.counter-section .list { margin: 0 -15px; }
.counter-section .box { width: calc(100% / 4 - 30px); margin: 0 15px; }
.counter-section .box .icon { font-size: 60px; color: var(--dark-blue); }
.counter-section .box .icon .fa-code { font-weight: bold; }
.counter-section .box .counter h2 { margin: 30px 0 15px; font-weight: 700; color: var(--black); }
.counter-section .box .content { font-size: 24px; line-height: 1.2; font-weight: 500; }


/* TESTIMONIAL SECTION */
.testimonial-section { margin-top: 100px; }
.testimonial-section .tellus-form { width: 570px; background: var(--blue); padding: 20px 40px 40px; position: relative; }
.testimonial-section .tellus-form .title { margin-bottom: 40px; }
.testimonial-section .tellus-form:before { position: absolute; content: ""; background-image: url(../image/form-shape.png); background-repeat: no-repeat; background-position: center; background-size: 100% 100%; height: 100px; top: -100px; left: 0; right: 0; }

.testimonial-section .default-form .form-group input::-webkit-input-placeholder, 
.testimonial-section .default-form .form-group textarea::-webkit-input-placeholder { color: var(--white); }
.testimonial-section .default-form .form-group input::-moz-placeholder, 
.testimonial-section .default-form .form-group textarea::-moz-placeholder { color: var(--white); }
.testimonial-section .default-form .form-group input:-ms-input-placeholder, 
.testimonial-section .default-form .form-group textarea:-ms-input-placeholder { color: var(--white); }
.testimonial-section .default-form .form-group input:-moz-placeholder, 
.testimonial-section .default-form .form-group textarea:-moz-placeholder { color: var(--white); }

.testimonial-section .default-form button { margin-top: 30px; }
.testimonial-section .default-form button:after { background: var(--white); }
.testimonial-section .default-form button:hover { color: var(--dark-blue); }

.testimonial-section .testimonial-slider { width: calc(100% - 570px); padding: 70px 0 70px 30px; color: var(--white); max-width: 545px; margin: 0 auto; }
.testimonial-slider .box { font-size: 18px; line-height: 30px; }
.testimonial-slider .box .image img {margin: 0 auto;border-radius: 100%;max-width: 140px;}
.testimonial-slider .box .icon { font-size: 40px; margin: 25px 0; }
.testimonial-slider .box h5 { color: var(--white); font-weight: 700; margin-bottom: 20px; }
.testimonial-slider .box .auhor-details span { display: inline-block; vertical-align: top; width: 100%; }
.testimonial-slider .box .contnet { margin: 20px 0; }


/* COMPANY LOGO SECTION */
.company-slider .box { background: var(--white); margin: 0 15px; height: 120px; padding: 15px; display: flex; align-items: center; justify-content: center; }
.company-slider .box .image img { width: 100%; margin: 0 auto; object-fit: contain; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); filter: grayscale(100%); height: 100px; transition: var(--transition); }
.company-slider .box:hover .image img { -webkit-filter: grayscale(0); -moz-filter: grayscale(0); filter: grayscale(0); }


/* SUBSCRIBE SECTION */
.subscribe-section { position: relative; z-index: 2; }
.subscribe-section .title h3 { line-height: 1.5em; }
.subscribe-section .default-form { width: 100%; max-width: 700px; margin: 0 auto; }


/* FOOTER */
footer { padding:100px 0 0; margin-top: 50px; color: var(--white); position: relative; }
footer:after { position: absolute; content: ""; left: 0; right: 0; top: -140px; height: 142px; background-image: url(../image/shape-2.png); background-repeat: no-repeat; background-size: 100% 100%; background-position: bottom center; }
footer:before { position: absolute; content: ""; background: url(../image/dots-image-2.png) no-repeat center / cover; width: 1130px; height: 546px; right: 0; top: -377px; z-index: 1; pointer-events: none; }
footer ul li a { color: var(--white); }
footer ul li a: hover; { color: var(--blue); }

footer .footer-top { margin: 0 -15px; }
footer .footer-top > div { width: calc(100% / 4 - 30px); margin: 0 15px; }

footer .f-about .logo img { max-height: 75px; }
footer .f-about .content { margin: 30px 0; line-height: 1.5; }

footer .f-social ul { display: flex; }
footer .f-social ul li a { font-size: 24px; margin-right: 25px; }
footer .f-social ul li:last-child a { margin-right: 0; }

footer .f-menu h5 { color: var(--white); margin-bottom: 20px; }
footer .f-menu ul li { margin-bottom: 11px; }
footer .f-menu ul li:last-child { margin-bottom: 0; }
footer .f-menu ul li a { position: relative; padding-left: 15px; font-size: 16px; }
footer .f-menu ul li a:before { position: absolute; content: '\f105'; font-family: FontAwesome; left: 0; top: 50%; transform: translateY(-50%); }

footer .f-address .box { margin-bottom: 40px; min-height: 108px; }
footer .f-address .box:last-child { margin-bottom: 0; }
footer .f-address .box h6 { color: var(--white); font-size: 18px; }
footer .f-address .box h6 i { margin-right: 10px; }
footer .f-address .box .content { margin-left: 20px; letter-spacing: 0.5px; line-height: 1.5; }

footer .footer-bottom { border-top: 1px solid var(--white); padding: 25px 0; margin-top: 60px; }
footer .footer-bottom .bottom-menu ul { display: flex; }
footer .footer-bottom .bottom-menu ul li { position: relative; margin-right: 25px; }
footer .footer-bottom .bottom-menu ul li:last-child { margin-right: 0; }
footer .footer-bottom .bottom-menu ul li:before { position: absolute; content: "|"; right: -15px; }
footer .footer-bottom .bottom-menu ul li:last-child:before { display: none; }


/* INNER BANNER */
.inner-banner { padding: 55px 0; background: #001d5f; background: -moz-linear-gradient(top, #001d5f 0%, #014d87 50%, #0182b9 100%); background: -webkit-linear-gradient(top, #001d5f 0%, #014d87 50%, #0182b9 100%); background: linear-gradient(to bottom, #001d5f 0%, #014d87 50%, #0182b9 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001d5f', endColorstr='#0182b9', GradientType=0);}
.inner-banner h3 { color: var(--white); font-weight: 700; margin: 0; text-transform: capitalize; }
.inner-banner .right ol { display: flex; color: var(--white); font-size: 16px; font-weight: 500;line-height:2.2em; }
.inner-banner .right ol li a { color: var(--white); position: relative; margin-right: 25px; }
.inner-banner .right ol li a:hover { color: var(--blue); }
.inner-banner .right ol li a:before { position: absolute; content: ""; width: 6px; height: 6px; background: var(--white); border-radius: 100%; top: 6px; right: -15px; }


/* INNER BOX SECTION */
.inner-services.p-100 { padding-bottom: 70px; }
.inner-box-section .title h3 { line-height: 1.4; }


/* LEFT RIGHT SECTION */
.left-right-section .inner { margin: 0 -15px; }
.left-right-section .inner > div { width: calc(100% / 2 - 30px); margin: 0 15px; }
.left-right-section .inner .right .content { line-height: 30px; }
.left-right-section .inner .right .content b { color: var(--dark-blue); text-decoration: underline; }


/* history section */
.history-section .left .image img { height: 450px; width: 100%; object-fit: cover; border-radius: 5px; }


/* TEAM SECTION */
.team-section.p-100 { padding-bottom: 70px; }
.team-section .list { margin: 0 -15px; }
.team-section .box { width: calc(100% / 4 - 30px); background: var(--white); margin: 0 15px 30px; border: 1px solid #c5c5c5; border-radius: 5px; overflow: hidden; text-align: center; }
.team-section .box .image { line-height: 0; }
.team-section .box .image img { width: 100%; height: 300px; object-fit: cover; }
.team-section .box .bottom-content { padding: 25px 20px; }
.team-section .box .bottom-content h5 { color: var(--black); }


/* INNER SERVICE */
.service-section.inner-services .card-list .card-box { background: #fff; }
.service-section.inner-services .card-list .card-box:hover { box-shadow: 0 0px 30px 0 rgb(0 0 0 / 10%); }


/* DEVELOPMENT SECTION */
.development-section .container { width: 100%; max-width: 1300px; }
.development-section .box { padding-bottom: 60px; margin-bottom: 60px; border-bottom: 1px solid #959595; }
.development-section .box:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.development-section .box .left { width: 450px; text-align: center; }
.development-section .box .right { width: calc(100% - 450px); padding-left: 40px; }
.development-section .box.row-reverse .right { padding: 0 40px 0 0; }
.development-section .box .right .title { margin-bottom: 0; }


/* CUSTOMER SECTION */
.customer-section .inner > div { width: calc(100% / 2 - 30px); margin: 0 15px; }
.customer-section .inner { margin: 0 -15px; }
.customer-section .inner .left .image img { border-radius: 8px; }
.customer-section .inner .right .title { margin-bottom: 40px; }
.customer-section .inner .right .check-ul h5 { color: var(--black); font-family: var(--basefont); font-weight: 600; }
.customer-section .inner .right .check-ul .content { line-height: 1.5em; }


/* CASE STUDY SECTION */
.case-study-section .tab-section .tab-list ul { display: flex; align-items: center; justify-content: center; flex-flow: row wrap; padding-bottom:60px; }
.case-study-section .tab-section .tab-list ul li { background: #ffffff; text-align: center; font-family: var(--headingfont); padding: 15px 30px; border-radius: 5px; margin: 5px 10px 0; font-weight: 700; font-size: 16px; color: var(--blue); transition: var(--transition); cursor: pointer; }
.case-study-section .tab-section .tab-list ul li.active, .case-study-section .tab-section .tab-list ul li:hover { color: var(--white); background: var(--dark-blue); }


/* CASE STUDY FORM SECTION */
.casestudy-form-section { overflow: hidden; }
.casestudy-form-section .inner { margin: 0 -15px; }
.casestudy-form-section .inner > div { width: 50%; margin: 0 15px; }
.casestudy-form-section .left .image img { width: 100%; margin-bottom: 30px; }
.casestudy-form-section .right { background: var(--blue); padding: 30px; color: var(--white); }
.casestudy-form-section .default-form h3 { color: var(--white-color); font-size: 24px; margin-bottom: 20px; }
.casestudy-form-section .default-form .form-group .form-control { border-bottom: 1px solid rgb(8 33 106 / 30%); color: var(--white); }
.casestudy-form-section .default-form .form-group .form-control option { color: var(--black); }
.casestudy-form-section .default-form input[type='submit'] { background: var(--white); color: var(--dark-blue); }

.casestudy-form-section .default-form .form-group input::-webkit-input-placeholder, 
.casestudy-form-section .default-form .form-group textarea::-webkit-input-placeholder { color: var(--white); }
.casestudy-form-section .default-form .form-group input::-moz-placeholder, 
.casestudy-form-section .default-form .form-group textarea::-moz-placeholder { color: var(--white); }
.casestudy-form-section .default-form .form-group input:-ms-input-placeholder, 
.casestudy-form-section .default-form .form-group textarea:-ms-input-placeholder { color: var(--white); }
.casestudy-form-section .default-form .form-group input:-moz-placeholder, 
.casestudy-form-section .default-form .form-group textarea:-moz-placeholder { color: var(--white); }




/* TESTIMONIAL BOX */
.testimonial-box .card-box { width: calc(100% / 2 - 30px); background: #fff; padding: 30px; font-size: 18px; line-height: 30px; }
.testimonial-box .card-box .image img { max-width: 140px; width: 100%; border-radius: 100%; }
.testimonial-box .card-box .icon { margin: 30px 0 15px; font-size: 40px; color: var(--dark-blue); }
.testimonial-box .card-box h5 { font-weight: 700; font-family: var(--headingfont); margin-bottom: 15px; }
.testimonial-box .card-box .auhor-details span { display: inline-block; vertical-align: top; width: 100%; }
.testimonial-box .card-box:hover { box-shadow: 0 5px 20px 0 rgb(0 0 0 / 15%); }


/* GALLRY SECTION */
.gallery-section .card-box { border: none; overflow: hidden; }
.gallery-section .card-box .image img { height: 260px; width: 100%; object-fit: cover; }
.gallery-section .card-box .image { line-height: 0; }


/* BENEFITS SECTION */
.benefits-section .card-list .card-box .icon svg {width: 32px;}
.benefits-section .card-list .card-box:hover .icon svg path { color: #fff; }
.benefits-section .card-list .card-box h5 { margin-bottom: 0; }


/* CURRENT VACANCY */
.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-list .faq-box { margin-bottom: 20px; }
.faq-list .faq-box:last-child { margin-bottom: 0; }
.faq-list .faq-box .faq-title h5 { position: relative; padding: 20px 50px 20px 20px; background: var(--white); margin: 0; color: var(--black); cursor: pointer; font-size: 20px; transition: var(--transition); }
.faq-list .faq-box .faq-title h5:after { content: "\f078"; font-family: 'FontAwesome'; position: absolute; top: 50%; transform: translateY(-50%); right: 20px; font-size: 16px; font-weight: 100; transition: var(--transition); }
.faq-list .faq-box .faq-title.active h5, .faq-list .faq-box .faq-title h5:hover { color: var(--blue); }
.faq-list .faq-box .faq-title.active h5:after { content: "\f077"; }
.faq-list .faq-box .faq-content { background: #fff; padding: 20px; margin-top: 3px; }
.faq-list .faq-box .faq-content ul li:before { width: 16px; height: 12px; top: 10px; }
.faq-list .faq-box .faq-content ul li { margin-bottom: 15px; line-height: 28px; font-size: 18px; padding-left: 30px; }
.faq-list .faq-box .faq-content .bg-btn { margin-top: 30px; }
.faq-list .faq-box .faq-content .bg-btn a { padding: 13px 15px; font-size: 14px; min-width: 150px; }


/* CAREER SECTION */
.career-section .career-box .content { max-width: 1000px; margin: 0 auto; font: 18px; line-height: 30px; }
.career-section .career-box .content h4 { color: var(--black); margin-bottom: 30px; }
.career-section .career-box .career-step ul { display: flex; max-width: 800px; margin: 50px auto 0; }
.career-section .career-box .career-step ul li .icon img { max-width: 50px; }
.career-section .career-box .career-step ul li { width: 33.33%; position: relative; z-index: 1; padding: 0 20px; }
.career-section .career-box .career-step ul li .icon { background: var(--blue); width: 100px; height: 100px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; border-radius: 10px; position: relative; }
.career-section .career-box .career-step ul li:after { position: absolute; content: ""; width: 100%; height: 3px; background: var(--blue); top: 50px; z-index: -1; }
.career-section .career-box .career-step ul li:last-child:after { display: none; }

.career-section .career-box .career-step ul li:nth-child(2):before { background: #f5f5f5; }
.career-section .career-box .career-step ul li:nth-child(2):after { background: #e1e0e0; }
.career-section .career-box .career-step ul li:last-child .icon { background: #e1e0e0; }
.career-section .career-box .career-step ul li h5 { font-size: 20px; color: var(--black); }

.career-section .career-form { padding-top: 70px; }
.career-section .career-form .form-title h4 { margin-bottom: 20px; font-weight: 700; }
.career-section .career-form .default-form { max-width: 800px; margin: 50px auto 0; }


/* CONTACT SERVICE */
.contact-service.p-100 { overflow: hidden; padding-bottom: 70px; }
.contact-service .list { margin: 0 -15px; }
.contact-service .list .box { width: calc(100% / 4 - 30px); margin: 0 15px 30px; border: 1px solid #c5c5c5; border-radius: 5px; padding: 40px 30px; }
.contact-service .list .box .icon img { width: 100%; max-width: 32px; }
.contact-service .list .box .icon { margin-bottom: 20px; }
.contact-service .list .box h5 { color: var(--black); }
.contact-service .list .box .content { margin-top: 20px; }


/* CONTACT FORM SECTION */
.contact-form-section .map-box { border: 1px solid #c5c5c5; border-radius: 10px; overflow: hidden; line-height: 0; margin-top: 50px; }
.contact-form-section .default-form { max-width: 800px; margin: 0 auto; }
.contact-form-section .default-form .form-check input[type="checkbox"] + label { color: var(--black); }
.contact-form-section .default-form .form-check input[type="checkbox"] + label:before { border-color: var(--black); color: var(--black); }
.contact-form-section .map-box iframe { width: 100%; height: 400px; }


/* CONTACT DETAILS */
.contact-details { overflow: hidden; }
.contact-details .list .box { width: 33.33%; padding: 0 15px; }
.contact-details .list { margin: 0 -15px; }
.contact-details .list .box .c-title h5 { font-weight: 700; margin-bottom: 20px; }
.contact-details .list .box ul li { display: flex; margin-bottom: 20px; }
.contact-details .list .box ul li:last-child { margin-bottom: 0; }
.contact-details .list .box ul li .icon { width: 22px; font-size: 22px; text-align: center; }
.contact-details .list .box ul li .content { width: calc(100% - 22px); padding-left: 10px; }
.contact-details .list .box ul li .content p { margin-bottom: 5px; line-height: 26px; }


/* BEST COMPANY */
.best-company .best-com-slider { max-width: 1000px; margin: 0 auto; }
.best-company .best-com-slider .box .image { border-radius: 6px; overflow: hidden }
.best-company .best-com-slider .box .image img { width: 100%; }
.best-company .best-com-slider.slick-slider .slick-dots li button { border-color: #c5c5c5; }
.best-company .best-com-slider.slick-slider .slick-dots li.slick-active button { border-color: var(--blue); }




/* FORM ERROR */
.wpcf7 form .wpcf7-response-output { margin: 20px 0 0; background: red !important; border-color: red !important; color: #fff; padding: 6px; text-align: center; font-size: 16px; }


/* PAGINATION */
.softvan-post-pagination { display: flex; align-items: center; justify-content: center; padding-top: 30px; }
.softvan-post-pagination .page-numbers { width: 40px; height: 40px; border-radius: 5px; display: flex; align-items: center; justify-content: center; background: #f5f5f5; margin: 0 5px; padding: 5px; }
.softvan-post-pagination a.next,
.softvan-post-pagination a.prev { width: auto; padding: 5px 15px; }
.softvan-post-pagination .page-numbers.current { background: var(--dark-blue); color: var(--white); font-weight: 700; }


/* BLOG INNER PAGE */
.blog-section .title { text-align: left; max-width: 100%; margin-bottom: 30px; }
.blog-section .cms-content-section blockquote { background: #f5f5f5; font-style: italic; padding: 20px; margin: 20px 0; font-weight: 600; }
.blog-section .cms-content-section h3 { font-size: 24px; font-weight: 700; margin: 25px 0; }

/* IDEA SECTION */
.idea-section { position: relative; z-index: 1; }
.idea-section:before { position: absolute; content: ""; top: 0; left: 0; right: 0; bottom: 0; background: #000; z-index: -1; opacity: 0.4; }





/* CSS end  here */

@media (min-width:768px) { .container, .row-fluid .container[class*="span"]{width:750px;} }
@media (min-width:992px) { .container, .row-fluid .container[class*="span"]{width:970px;} }
@media (min-width:1200px) { .container, .row-fluid .container[class*="span"]{width:1170px;} }
@media (min-width:1430px) { .container, .row-fluid .container[class*="span"]{width:1300px;} }

@media (min-width:992px) { /*hover event for desktops*/
    .mainmenu ul li:hover > a,
    .mainmenu ul li.active > a { color:var(--anchorhover); }
    .mainmenu > ul > li:hover ul { opacity:1; visibility:visible; transform:translateY(0); }
    .mainmenu > ul > li span.mobile-toggle, .nav-toggle { display:none; }
    /* .mainmenu > ul > li ul li:hover a, .mainmenu > ul > li ul li.active a { color:var(--white); background: var(--blue); } */

    .mainmenu > ul > li > a:after { position: absolute; content: ""; width: 23px; height: 3px; border-radius: 1.5px; background: var(--blue); left: 0; right: 0; bottom: 0; margin: 0 auto; opacity: 0; visibility: hidden; transition: var(--transition); }
    .mainmenu > ul > li:hover > a:after, .mainmenu > ul > li.active > a:after { opacity: 1; visibility: visible; }

    .p-100 { padding: 100px 0; }
}

@media (max-width:1629px){
    h1 { font-size: 48px; }
    .title { margin-bottom: 40px; }

    .banner-section { padding: 180px 0 150px; }
    .banner-section .banner-inner .caption-wrp span { font-size: 48px; }
    .banner-section .banner-inner .caption-wrp { min-height: 125px; }
    .banner-section .banner-inner { max-width: 700px; }
    .banner-section:before { background-size: 80%; right: -15%; }
    
    footer:before { background-size: 80%; top: -340px; right: 0; background-position: right; }

    .case-study-section .tab-section .tab-list ul { padding-bottom: 40px; }
}

@media (max-width:1429px){
    header { padding: 20px 0; }
    .mainmenu > ul > li:not(:first-child), header .header-btn { margin-left: 25px; }
    .check-ul ul li { margin-bottom: 20px; }

    .slick-slider .slick-arrow.slick-next { right: -25px; }
    .slick-slider .slick-arrow { left: -25px; }

    .banner-section:after { height: 100px; }

    .solution-section .solution-tab-slider .solution-nav { padding: 0; }
    .solution-section .solution-tab-slider .solution-nav .tab-title { padding: 20px 5px; }
    .solution-section .solution-tab-slider .solution-for .tab-content .image { width: 350px; }
    .solution-section .solution-tab-slider .solution-for .tab-content .right { width: calc(100% - 350px); padding: 30px; }
    .solution-section .solution-tab-slider .solution-for .tab-content .right h5 { margin-bottom: 20px; }

    .bg-box-list .bg-box .image img { height: 210px; }

    footer:after { height: 100px; top: -98px; }

    .inner-box-section .title h3 { font-size: 30px; }
    
    .history-section .left .image img { height: 350px; }
    
    .team-section .box .image img { height: 250px; }
    .team-section .box .bottom-content { padding: 20px; }

    .card-list.card-list-two .card-box h5 { font-size: 20px; }
    
    .development-section .container { max-width: 1140px; }
    .development-section .box .right .content br { display: none; }
    
}

@media (max-width:1199px){
    h3 { font-size: 30px; }
    .p-70 { padding: 70px 0; }
    .bg-btn a { font-size: 14px; min-width: 150px; padding: 15px 10px; }
    .title .bg-btn { margin-top: 30px; }
    .default-form .form-check input[type="checkbox"] + label { font-size: 14px; }

    .banner-section:before { right: -45%; }
    
    .card-list .card-box a { padding: 20px; }
    
    .solution-section .solution-tab-slider .solution-nav .tab-title { min-height: 69px; display: flex; align-items: center; justify-content: center; padding: 15px 5px; }
    
    .counter-section .box .counter h2 { font-size: 32px; margin-top: 25px; }
    .counter-section .box .icon { font-size: 50px; }
    .counter-section .box .content { font-size: 20px; }
    
    .bg-box-list .bg-box { padding: 10px; }
    .bg-box-list .bg-box .image { margin-bottom: 15px; }
    .bg-box-list .bg-box .image img { height: 180px; }
    .bg-box-list .bg-box h6 { margin-bottom: 15px; }
    .bg-box-list .bg-box .content { margin: 15px 0; }
    
    .testimonial-section .tellus-form { width: 450px; padding: 10px 20px 30px; }
    .testimonial-section .testimonial-slider { width: calc(100% - 450px); padding: 50px 0 50px 30px; }
    .testimonial-section .tellus-form:before { height: 70px; top: -69px; }
    .testimonial-section { margin-top: 80px; }
    .testimonial-section .tellus-form .title { margin-bottom: 20px; }
    
    .testimonial-section .default-form button { margin-top: 20px; }

    footer .footer-top > div { width: calc(100% / 2 - 30px); }
    footer .footer-top .f-address { margin-top: 50px; }
    footer .f-address .box { min-height: 83px; }

    .inner-box-section .title h3 { font-size: 26px; }
    
    .left-right-section .inner .right .content { line-height: 24px; }
    .left-right-section .inner .right .title { font-size: 16px; }
    
    .team-section .box { width: calc(100% / 3 - 30px); }

    .team-section.p-70 { padding-bottom: 40px; }

    .inner-services.p-70 { padding-bottom: 40px; }

    .card-list.card-list-two .card-box a { padding: 65px 20px 20px; }
    
    .development-section .container { max-width: 940px; }
    .development-section .box .left { width: 350px; }
    .development-section .box .right { width: calc(100% - 350px); }

    .case-study-section .tab-section .tab-list ul li { padding: 15px; margin: 5px 5px 0; }

    .gallery-section .card-box .image img { height: 220px; }

    .contact-service .list .box { width: calc(100% / 2 - 30px); }

}

@media (max-width:991px){
    .mainmenu ul li a { color:var(--blue); ; padding:10px 15px; }
    .mainmenu > ul { background-color:#fff; display:none; border-radius: 5px; left:0; margin:0; position:absolute; text-align:left; top:0; width:100%; padding:10px 0 0; box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); }
    .mainmenu > ul > li { display:block; }
    .mainmenu > ul > li:not(:first-child) { margin-left:0; }
    .mainmenu > ul > li ul { background-color: rgb(0 169 244 / 10%); position:static; opacity:1; visibility:visible; display:none; border-radius: 0; width:100%; transform:translateY(0); transition:none !important; box-shadow: none; }
    .mainmenu > ul > li ul li a { padding:6px 15px 6px 30px; }
    .title { font-size: 18px; }

    header { padding: 15px 0; }
    header .header-content .flex { display: block; }
    header .header-content { position: relative; }
    header .header-btn { margin: 5px 0 0; }
    header .header-btn .bg-btn a { width: 100%; border-radius: 0 0 5px 5px; }
    header.header-inner .nav-toggle .icon-bar { background: var(--dark-blue); }

    .banner-section:before { right: 0; width: 500px; height: 250px; background-size: cover; bottom: -80px; }
    
    .card-list .card-box { width: calc(100% / 2 - 30px); }
    
    .service-section .bg-btn { margin-top: 0; }
    
    .solution-section .solution-tab-slider .solution-for .tab-content .inner { display: block; }
    .solution-section .solution-tab-slider .solution-for .tab-content .image { width: 100%; min-height: 250px; }
    /*.solution-section .solution-tab-slider .solution-for .tab-content .left .image img { min-height: inherit; height: 300px; width: 100%; border-radius: 8px 8px 0 0; }*/
    .solution-section .solution-tab-slider .solution-for .tab-content .right { width: 100%; text-align: center; padding: 20px; }
    .solution-section .solution-tab-slider .solution-for .tab-content .right .content { line-height: 1.5; font-size: 16px; }
    .solution-section .solution-tab-slider .solution-nav .tab-title { min-height: 54px; }
    .counter-section .box .icon { font-size: 40px; }
    
    .counter-section .box .counter h2 { font-size: 30px; }
    .counter-section .box .content { font-size: 18px; }
    
    .bg-box-list .bg-box { width: calc(100% / 2 - 30px); }

    .testimonial-section { margin-top: 40px; }
    .testimonial-section .inner { display: block; }
    .testimonial-section .tellus-form { width: 100%; }
    .testimonial-section .testimonial-slider { width: 100%; padding: 60px 0; max-width: 100%; }

    .team-section .box .bottom-content { padding: 15px; }
    .team-section .box .bottom-content h5 { font-size: 20px; }

    .subscribe-section .title h3 { line-height: 1.3em; }

    .development-section .container { max-width: 750px; }
    .development-section .box { display: block; padding-bottom: 40px; margin-bottom: 40px; }
    .development-section .box .left { width: 100%; max-width: 400px; margin: 0 auto; }
    .development-section .box .right { width: 100%; text-align: center; padding: 40px 0 0; }
    .development-section .box.row-reverse .right { padding: 40px 0 0; }
    
    .customer-section .inner { margin: 0; display: block; }
    .customer-section .inner > div { width: 100%; margin: 0; }
    .customer-section .inner .left .image img { width: 100%; max-width: 450px; margin-bottom: 30px; }

    .testimonial-box .card-box { font-size: 16px; line-height: 24px; }
    .testimonial-box .card-box h5 { font-size: 20px; margin-top: 15px; }
    .testimonial-box .card-box .icon { margin: 20px 0 10px; }
    .testimonial-box .card-box .image img { max-width: 120px; }

    .contact-form-section .map-box iframe { height: 350px; }
    
}

@media (max-width:767px){
    .flex { display: block; }
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 26px; }
    h5 { font-size: 20px; }
    .title .content { margin-top: 15px; }
    body { font-size: 16px; }

    header.headerfixed .logo img { max-width: 110px; }
    header.headerfixed .nav-toggle { top: -45px; }
    header.headerfixed, header.header-inner.headerfixed { position: relative; }
    
    .banner-section .banner-inner { max-width: 100%; text-align: center; }
    .banner-section.lazy-bg { background-position: left; padding: 150px 0 100px; }
    .banner-section .banner-inner .caption-wrp span { font-size: 36px; }
    .banner-section:before { display: none; }
    .banner-section:after { height: 40px; }
    .banner-section .platform-logo { display: flex; justify-content: center; align-items: center; }
    
    .card-list { margin: 0; }
    .card-list .card-box { width: 100%; margin: 0 0 30px; }
    
    /*.solution-section .solution-tab-slider .solution-for .tab-content .left .image img { height: 250px; }*/
    
    .counter-section.p-70 { padding-bottom: 40px; }
    .counter-section .list { display: flex; }
    .counter-section .box { width: calc(100% / 2 - 30px); margin-bottom: 30px; }
    .counter-section .box .counter h2 { margin: 15px 0; }
    
    .bg-box-list { margin: 0; }
    .bg-box-list .bg-box { width: 100%; margin: 0 0 30px; }

    footer { padding-top: 40px; margin-top: 20px; }
    footer:before { display: none; }
    footer:after { height: 40px; top: -39px; }
    footer .footer-top { margin: 0; }
    footer .footer-top > div { width: 100%; margin: 0 0 40px; }
    footer .f-about .content { margin: 15px 0 20px; }
    footer .f-address .box { min-height: auto; margin-bottom: 20px; }
    footer .footer-top .f-address { margin: 0 0 20px; }
    footer .footer-bottom { text-align: center; padding: 15px 0; margin-top: 40px; }
    footer .footer-bottom .bottom-menu ul { justify-content: center; margin-top: 20px; }

    .inner-banner { padding: 50px 0; text-align: center; }
    .inner-banner .right ol { display: none; justify-content: center; font-size: 18px; margin-top: 10px; }
    .inner-banner .right ol li a:before { top: 10px; width: 5px; height: 5px; }
    
    .left-right-section .inner > div { width: 100%; margin: 0; }
    .left-right-section .inner { margin: 0; }
    .left-right-section .inner .right { text-align: center; padding-top: 30px; }
        
    .team-section .list { display: flex; }
    .team-section .box { width: 100%; margin: 0 15px 30px; max-width: 300px; }

    .card-list.card-list-two { margin-top: 75px; }
    .card-list.card-list-two .card-box a { padding-top: 55px; }
    .card-list.card-list-two .card-box { text-align: center; }
    .card-list.card-list-two .card-box .icon { right: 0; left: 0; margin: 0 auto; }

    .gallery-section .card-box .image img { height: 320px; }

    .faq-list .faq-box .faq-content ul li { font-size: 16px; line-height: 24px; }
    .faq-list .faq-box .faq-content ul li:before { width: 14px; height: 10px; top: 9px; }
    .faq-list .faq-box .faq-title h5 { font-size: 18px; }

    .contact-service .list { display: flex; }
    .contact-service .list .box { width: 100%; max-width: 350px; }

    .contact-form-section .map-box iframe { height: 300px; }
    
    .contact-details .list { margin: 0; }
    .contact-details .list .box { width: 100%; padding: 0; margin-bottom: 30px; text-align: ce; }
    .contact-details .list .box:last-child { margin-bottom: 0; }

    .casestudy-form-section .inner { margin: 0; }
    .casestudy-form-section .inner > div { width: 100%; margin: 0; }
    .casestudy-form-section .left { margin-bottom: 40px; }
    .casestudy-form-section .right { padding: 30px; }
    .sub-menu .menu-item-has-children > .sub-menu {position: static!important;}
}

@media (max-width: 480px) {
    .counter-section .list { display: block; margin: 0; }
    .counter-section .box { width: 100%; margin: 0 0 40px; }

    .history-section .left .image img { height: 210px; } 

    .gallery-section .card-box .image img { height: 210px; }
}

/* Allow second-level dropdown */
.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Position nested submenu */
.sub-menu .menu-item-has-children {
    position: relative;
}

.sub-menu .menu-item-has-children > .sub-menu {
    display: none;
    left: 100%;
    top: 0;
    /* background: #00a8e8;  */
    min-width: 260px;
    z-index: 9999;
}

/* Show nested submenu on hover */
.sub-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

