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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
}


/***** Font Files *****/

@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font: normal normal bold Poppins;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #101010;
    padding: 0;
    font-size: 20px;
    text-transform: capitalize;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #00AEEF;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

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

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/* Header End */


/* Banner Section */

.menuSection {
    padding: 70px 0 0;
}

.menuSection .row {
    align-items: center;
}

.header-logo img {
    width: 100%;
}

.header-btn {
    text-align: end;
}

.header-btn {}

.btn {
    font-size: 20px;
    text-transform: capitalize;
    background: #00AEEF;
    border-radius: 50px;
    padding: 12px 33px;
    color: #fff;
}

.hero_banner {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero_banner .row {
    align-items: center;
}

.hero_content h1 {
    font: normal normal bold 84px/95px Poppins;
    color: #121212;
    margin-bottom: 20px;
}

.theme-span {
    color: #00AEEF;
}

.hero_content {
    width: 105%;
}

p {
    font: normal normal normal 16px/29px Poppins;
    color: #000000;
}

.hero-baner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.hero-baner-btn a {
    width: 274px;
    height: 88px;
    border-radius: 70px;
    overflow: hidden;
}

.hero-banner-imag img {
    width: 300px;
    height: 600px;
    z-index: 3;
    position: relative;
}

img.hero-abs1 {
    width: 26%;
    height: auto;
    z-index: 9;
    margin: 0 12px 0 0;
}

.hero-abs-imag img {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.hero-abs2 {
    width: 720px;
    height: 720px;
    right: -200px;
    bottom: -200px;
    z-index: 1;
}

img.hero-abs3 {
    width: 618px;
    height: 949px;
    z-index: 4;
    right: -160px;
    bottom: -110px;
}

.hero-banner-imag {
    text-align: center;
    margin-left: -170px;
}


/* Banner Section */


/* App Feature Section */

.app-feature-sec {
    position: relative;
    z-index: 2;
    background-image: url(../images/feature-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    background-attachment: fixed;
}

.sec-head h2 {
    color: #fff;
    font: normal normal bold 79px/119px Poppins;
    text-transform: capitalize;
}

.app-feature-sec .sec-head {
    margin-bottom: 50px;
}

.fearture-cotent h3 {
    font-size: 49px;
    color: #fff;
}

.fearture-cotent p {
    color: #fff;
    font-size: 16px;
}

ul.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 18px;
}

ul.feature-list li {
    width: 48%;
}

.featured-card {
    background: transparent linear-gradient(135deg, #00AEEF 0%, #FFFFFF 23%, #FFFFFF00 62%, #00AEEF 100%) 0% 0% no-repeat padding-box;
    background: #fff;
    border: 1px solid #00AEEF;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}

.feature-text h4 {
    font: normal normal 600 20px/25px Poppins;
}

.feature-text p {
    font: normal normal normal 14px/22px Poppins;
    margin: 0;
}

.featr-icon {
    width: 82px;
    height: 82px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.featr-icon img {
    width: 100%;
}


/* App Feature Section */


/* About Section */

.about-sec {
    position: relative;
    z-index: 1;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    background-attachment: fixed;
}

.about-sec .row {
    align-items: flex-end;
}

.about-content h3 {
    font: normal normal 600 48px/72px Poppins;
    color: #FFFFFF;
    text-transform: capitalize;
}

.about-content p {
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 0.16px;
    color: #FFFFFF;
}

.theme-btn2 {
    position: relative;
    z-index: 1;
    background: #fff;
    color: #000;
}

.theme-btn2::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    transform: matrix(1, 0.07, -0.07, 1, 0, 0);
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.about-content {
    padding: 233px 0 100px;
    width: 75%;
}

.feature-list-content {
    margin-bottom: -275px;
    z-index: 1;
    position: relative;
}

.about-image img {
    width: 85%;
}

.about-image {
    overflow: hidden;
}


/* About Section */


/* Screens Section */

section.screen-sec {
    background: #00AEEF linear-gradient(180deg, #000000 46%, #05050594 78%, #00AEEF 100%) 58% 59% no-repeat padding-box;
    padding: 60px 0 30px;
}

.sec-head p {
    color: #fff;
}

.sec-head {
    margin-bottom: 60px;
}

.screen-image img {
    width: 100%;
}

.screen-slider .slick-center .screen-image img {
    transform: scale(1.2);
}

.screen-slider .slick-slide {
    opacity: 1;
    margin: 50px 25px;
}


/* Screens Section */


/* Footer Section */

footer {
    background: #010101;
}

.contact-input input {
    width: 100%;
    height: 55px;
    border: 1px solid #FFFFFF;
    border-radius: 46px;
    opacity: 1;
    padding: 0 30px;
    background: transparent;
    color: #fff;
    margin: 10px 0;
}

.contact-input input::placeholder {
    color: #fff;
    font-size: 14px;
}

.contact-footer {
    padding: 60px 0;
}

.contact-footer form .row {
    align-items: center;
}

.contact-form-btn button {
    padding: 15px 60px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.contact-form-btn button::before {
    position: absolute;
    content: '';
    transform: matrix(1, 0.09, -0.09, 1, 0, 0);
    /* UI Properties */
    border: 1px solid #FFFFFF;
    border-radius: 46px;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.contact-footer .sec-head {
    margin-bottom: 0;
}

.footer-logo {
    width: 80%;
}

.footer-logo p {
    color: #fff;
    margin: 20px 0;
}

ul.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

ul.footer-social i {
    border: 1px solid #fff;
    width: 35px;
    font-size: 20px;
    height: 35px;
    display: grid;
    place-content: center;
    border-radius: 50px;
    color: #fff;
}

.footer-links h4 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
}

.footer-links ul li a {
    font: normal normal normal 16px/20px Poppins;
    color: #fff;
    margin: 10px 0 0;
}

.foter-nav p {
    margin: 0;
    color: #fff;
    text-align: end;
}

.foter-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.foter-nav ul li a {
    font: normal normal normal 16px/22px Poppins;
    letter-spacing: 0px;
    color: #00AEEF;
}

.foter-nav {
    padding: 20px 0;
}


/* Footer Section */


/* Privacy Policy Content */

.privacy-policy-sec {
    position: relative;
    padding: 80px 0;
}

.privacy-policy-content h2 {
    font-size: 50px;
    color: #000;
    margin-bottom: 30px;
}

.privacy-policy-content ul {
    list-style: disc;
    margin-left: 20px;
}

.privacy-policy-content ul li {
    margin: 10px 0;
}


/* Privacy Policy Content */