/* Body Css */
@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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    overflow-x: hidden;
}
body * {
    font-family: "Poppins", sans-serif;
}
@font-face {
    font-family: Helvetica;
    src: url(../fonts/Helvetica.ttf);
}
@font-face {
    font-family: Helvetica-Bold;
    src: url(../fonts/Helvetica-Bold.ttf);
}
@font-face {
    font-family: Helvetica-Extra;
    src: url(../fonts/HelveticaNeue-Heavy.otf);
}
h1, h2, h3, h4, h5, h6 {
    font-family: Helvetica-Extra;
}
img {
    width: 100%;
}
ul, ol {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: unset;
}
.w-sec h3 {
    font-size: 19px;
    text-transform: uppercase;
    color: #11103d;
    margin-bottom: 20px;
    line-height: 25px;
}
.w-sec h2 {
    font-size: 45px;
    color: #222;
    line-height: 50px;
    margin-bottom: 20px;
}
.w-sec p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-bottom: 20px;
}
.w-sec ul li {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    display: flex;
    margin-bottom: 5px;
}
.w-sec ul li:before {
    content: "\f192";
    font-family: 'Font Awesome 5 Free';
    color: #110d3c;
    margin-right: 5px;
}
/* Topbar Css */
.topbar-row {
    padding: 10px 0 20px;
}
.topbar-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-sec img {
    width: 100%;
    height: 43px;
    object-fit: scale-down;
}
.topbar-sec .number-btn {
    display: flex;
    align-items: center;
}
.topbar-sec .number-btn svg {
    width: 23px;
    height: 23px;
    position: relative;
    margin-right: 4px;
}
.topbar-sec .number-btn .text h5 {
    font-size: 14px;
    font-family: Helvetica-Bold;
    margin-bottom: 0;
}
.topbar-sec .number-btn .text a {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}
/* Header Css */
header.header-row {
    position: absolute;
    width: 100%;
    z-index: 11;
}
.header-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-right: 32px;
    font-size: 15px;
    color: #fff;
}
.w-btn {
    border: 1px solid #131141;
    background: transparent;
    padding: 9px 30px;
    border-radius: 3px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.4s linear;
}
.header-sec .w-btn {
    color: #fff;
    border-color: #fff;
}
.w-btn:hover {
    background: #78cfa9;
    color: #000;
    border-color: #78cfa9;
}
.navbar-expand-lg .navbar-nav .dropdown:after {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    top: -4px;
    left: 70px;
    color: #fff;
    font-size: 21px;
}
.navbar-expand-lg .navbar-nav .dropdown {
    position: relative;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .nav-item {
    list-style: none;
    position: relative;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .nav-link {
    color: #000;
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu {
    background: #fff;
    border: 1px solid #ccc;
    position: absolute;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .inner-dropdown ul.submenu {
    border: 0;
    left: 199px;
    opacity: 0;
    top: -1px;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .nav-link:hover {
    background: #78d0ab;
}
.navbar-expand-lg .navbar-nav .dropdown:hover ul.submenu {
    opacity: 1;
    visibility: visible;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .inner-dropdown:hover ul.submenu {
    opacity: 1;
    visibility: visible;
}
.navbar-expand-lg .navbar-nav .dropdown ul.submenu .inner-dropdown:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 9px;
}
/* Banner Css */
section.banner-row {
    background-image: url(../images/banner-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 150px 150px;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
section.banner-row:before {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.type-container span {
    font-size: 19px;
    color: #78cfa9;
    font-family: 'Helvetica-Extra';
    text-transform: uppercase;
    padding: 10px 10px 10px 0px;
    margin: 0;
    font-style: italic;
}
.banner-sec h1 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    width: 85%;
    margin-bottom: 20px;
}
.clr-btn {
    background: #0d0e37;
    font-weight: 500;
}
.btns .clr-btn {
    margin-right: 20px;
}
.banner-sec .btns {
    margin-bottom: 50px;
}
.banner-sec ul li {
    display: inline-block;
    margin-right: 100px;
    margin-bottom: 50px;
}
.banner-sec ul li img {
    height: 70px;
    object-fit: scale-down;
    width: 100%;
}
.banner-lft-sec img {
    width: 90%;
}
.banner-shape-bottom {
    transform: rotate(180deg);
    position: relative;
    bottom: -12px;
}
.banner-shape-bottom svg {
    height: 138px;
    z-index: -1;
    position: absolute;
    bottom: 0;
}
.banner-shape-bottom svg .elementor-shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}
/* Brands Css */
section.brands-row {
    padding: 35px 0 50px;
}
.brands-sec img {
    height: 43px;
    object-fit: scale-down;
}
/* Services Css */
section.services-row {
    padding: 0 0 50px;
}
.services-head {
    margin-bottom: 40px;
}
.services-head h2 {
    color: #78d0ab;
}
.services-sec {
    text-align: center;
    margin-bottom: 50px;
}
.services-sec img {
    width: 72px;
    margin: 0 auto 20px;
    display: table;
    height: 72px;
}
.services-sec h3 {
    font-size: 25px;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}
.services-sec p {
    font-size: 15px;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    color: #7a7a7a;
}
/* About Css */
section.about-row {
    padding-bottom: 100px;
}
/* Approch Css */
section.approch-row {
    background: #000;
    padding: 100px 150px 130px;
    position: relative;
}
.approch-head {
    text-align: center;
    margin-bottom: 50px;
}
.approch-head h2 {
    font-size: 40px;
    color: #78d0ab;
    line-height: 45px;
    margin-bottom: 15px;
}
.approch-head p {
    color: #fff;
    font-size: 16px;
    width: 85%;
    margin: auto;
}
section.approch-row .col {
    width: 20%;
    flex: auto;
}
.approch-sec {
    border: 1px solid #78d0ab;
    padding: 40px 25px 10px;
    text-align: center;
    margin-bottom: 20px;
    height: 360px;
    transition: transform 0.2s ease-out;
}
.approch-sec img {
    width: 81px;
    margin: 0 auto 13px;
    display: table;
}
.approch-sec h3 {
    color: #78d0ab;
    font-family: 'Helvetica';
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 10px;
    min-height: 40px;
}
.approch-sec p {
    font-size: 14px;
    color: #fff;
}
.approch-shape-sec {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
}
.approch-shape-sec svg {
    width: 100%;
    height: 102px;
}
.approch-shape-sec svg path.elementor-shape-fill {
    fill: #fff;
    transform: rotateY(180deg);
    transform-origin: center;
}
/* Packages Css */
section.packages-row {
    padding: 120px 0;
}
.packages-head {
    text-align: center;
    margin-bottom: 50px;
}
.packages-head h2 {
    font-size: 40px;
    color: #222222;
    line-height: 50px;
    margin-bottom: 0;
}
.packages-sec {
    height: 700px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}
.packages-inner-sec {
    background: #f9f9f9;
}
.pkg-name-box {
    padding: 27px 20px;
}
.packages-sec i {
    text-align: center;
    display: block;
    font-size: 35px;
    color: #78d1ad;
    margin-bottom: 12px;
}
.packages-sec h3 {
    color: #2d2d2d;
    font-size: 26px;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 0;
}
.price-box {
    text-align: center;
    background-color: #000000;
    padding: 40px 20px 30px 20px;
    margin-bottom: 20px;
}
.pkg-price {
    display: flex;
    justify-content: center;
}
.pkg-price h2 {
    font-size: 65px;
    font-weight: 500;
    font-family: 'Poppins';
    line-height: 0.9;
    color: #78d1ad;
    margin-bottom: 0;
}
.pkg-price del {
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    color: #78d1ad;
}
.pkg-price b {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #78d1ad;
}
.price-box p {
    color: #78d1ad;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}
.packages-sec .clr-btn {
    display: table;
    margin: 0 auto 10px;
}
.packages-sec ul {
    background: #EDEDED;
}
.packages-sec ul li {
    padding: 15px 15px 15px 30px;
    color: #54595f;
    position: relative;
    font-size: 15px;
}
.packages-sec ul li:after {
    content: "";
    border-bottom-color: #d6d6d6;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    max-width: 45%;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.packages-sec ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #78d1ad;
    position: absolute;
    left: 10px;
}
.packages-sec span {
    color: #a5a5a5;
    text-align: center;
    display: block;
    padding: 5px 50px 30px;
    font-size: 14px;
    line-height: 1.3;
}
/* Statistics Css */
section.statistics-row {
    padding-bottom: 100px;
}
.statistics-sec h3 {
    font-size: 19px;
    text-transform: uppercase;
    color: #11103d;
    line-height: 25px;
    margin-bottom: 20px;
}
.statistics-sec h2 {
    font-size: 40px;
    color: #222;
    line-height: 45px;
    margin-bottom: 20px;
}
.statistics-sec p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-bottom: 20px;
}
.statistics-sec ul li {
    text-align: center;
    font-size: 16px;
    color: #54595f;
    margin-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    display: inline-block;
    width: 33%;
    margin-right: 20px;
    padding-bottom: 10px;
}
.statistics-sec ul li:before {
    display: none;
}
.statistics-sec ul li h3 {
    font-size: 60px;
    color: #11103d;
    line-height: 50px;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 200;
}
.statistics-sec ul li h3:after {
    content: "+";
}
.statistics-sec ul li:nth-child(2) h3:after {
    content: "k";
}
.statistics-sec ul li:last-child h3:after {
    content: "%";
}
.statistics-sec ul li:nth-child(3), .statistics-sec ul li:last-child {
    border: 0;
}
/* Portfolio Css */
section.portfolio-row {
    background: #121212;
    padding: 50px 0;
}
.portfolio-head {
    text-align: center;
    margin-bottom: 30px;
}
.portfolio-head h2 {
    color: #fff;
    font-size: 40px;
    line-height: 45px;
    margin: 0;
}
/* Testimonials Css */
section.testimonials-row {
    padding: 100px 0;
}
.testi-head {
    text-align: center;
    margin-bottom: 50px;
}
.testi-head h2 {
    font-size: 40px;
    color: #110d3c;
    line-height: 45px;
    margin-bottom: 20px;
}
.testi-head p {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    margin: 0;
}
.testimonials-sec {
    text-align: center;
}
.testimonials-sec ul {
    margin-bottom: 20px;
}
.testimonials-sec ul li {
    display: inline-block;
}
.testimonials-sec ul li i {
    color: #FFB700;
}
.testimonials-sec ul li:last-child i {
    color: #000;
}
.testimonials-sec p {
    color: #626672;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.2px;
    width: 85%;
    margin: 0 auto 30px;
}
.testimonials-sec img {
    width: 65px !important;
    margin: 0 auto 10px;
}
.testimonials-sec h4 {
    color: #222222;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}
.owl-carousel .owl-nav .owl-next svg, .owl-carousel .owl-nav .owl-prev svg {
    fill: #EB0046;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    width: 16px;
}
.owl-carousel .owl-nav .owl-next svg {
    transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    bottom: 17%;
    left: 30px;
}
.owl-carousel .owl-nav .owl-next {
    right: 30px;
    left: auto;
}
/* Footer Css */
footer.footer-row {
    background-image: url(../images/footer-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
}
footer.footer-row:before {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
footer.footer-row .container {
    border-top: 1px solid #2B2E38;
    padding: 50px 100px 0;
}
.footer-cont img {
    width: 80%;
    margin-bottom: 20px;
}
.footer-cont p {
    font-size: 14px;
    font-weight: 400;
    color: #ECECEC;
    margin-bottom: 15px;
}
.footer-cont ul li {
    display: flex;
    margin-bottom: 5px;
}
.footer-cont ul li:before {
    content: "\f095";
    font-family: 'FontAwesome';
    color: #fff;
    margin-right: 5px;
}
.footer-cont ul li:last-child:before {
    content: "\f0e0";
}
footer.footer-row h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #78d2af;
    line-height: 20px;
    margin-bottom: 15px;
}
footer.footer-row ul li {
    list-style: none;
    color: #e7e7e7;
    font-size: 15px;
    margin-bottom: 10px;
}
footer.footer-row ul li a {
    color: #ECECEC;
}
.footer-details ul {
    margin-bottom: 20px;
}
.footer-details ul li:before {
    content: "\f017";
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
}
.footer-details p {
    font-size: 14px;
    font-weight: 400;
    color: #ECECEC;
    margin-bottom: 15px;
}
footer.footer-row .footer-social-icons ul li {
    display: inline-block;
    margin: 0 2px 0;
}
footer.footer-row .footer-social-icons ul {
    margin-bottom: 50px;
}
footer.footer-row .footer-social-icons ul li i {
    background: #000;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    font-size: 22px;
}
/* Copyright Css */
.copyright-sec p {
    color: #78d2af;
    font-size: 15px;
    line-height: 26px;
    width: 95%;
    margin: 10px auto 0;
}
/* Inner Pages Css */
/* ----------------------------------- */
/* About Page Css */
section.inner-banner-row {
    background-image: url(../images/inner-banner-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0;
    position: relative;
    z-index: 1;
}
section.inner-banner-row:before {
    content: "";
    background-color: #242424;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.inner-banner-sec {
    text-align: center;
}
.inner-banner-sec h1 {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    line-height: 60px;
    margin: 0;
}
.inner-banner-shape-bottom {
    transform: rotate(180deg);
    position: absolute;
    bottom: -1px;
    width: 100%;
}
.inner-banner-shape-bottom svg {
    height: 57px;
    width: 100%;
}
.inner-banner-shape-bottom svg path.elementor-shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}
section.about-page-row {
    padding: 100px 0;
}
section.about-statistics-row {
    background-image: url(../images/statistic-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
section.about-statistics-row:before {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.about-statistics-head {
    margin-bottom: 30px;
}
.about-statistics-head h2 {
    color: #78d0ab;
}
.about-statistics-head p {
    color: #fff;
    width: 85%;
    margin: auto;
}
.about-statistics-sec {
    text-align: center;
}
.about-statistics-sec h3 {
    font-size: 60px;
    color: #78d0ab;
    line-height: 50px;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 200;
}
.about-statistics-sec h3:after {
    content: "+";
}
section.about-statistics-row .row .col-lg-3:nth-child(2) .about-statistics-sec h3:after {
    content: "k";
}
section.about-statistics-row .row .col-lg-3:last-child .about-statistics-sec h3:after {
    content: "%";
}
.about-statistics-sec p {
    color: #CBCBCB;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}
section.overview-row {
    padding: 100px 0;
}
.overview-sec h2 {
    font-size: 30px;
    line-height: 40px;
}
.overview-lft-sec img {
    width: 95%;
    border-radius: 20px;
}
section.process-row {
    background-color: #F6F8F9;
    padding: 100px 0;
}
.process-head {
    margin-bottom: 50px;
}
.process-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 34px;
}
.process-sec {
    display: flex;
    width: 48%;
    position: relative;
}
.time-sec {
    padding: 5px 10px 5px 10px;
    width: 200px;
    top: 40px;
    position: relative;
    margin: 0 auto;
    margin-left: 40px;
}
.time-sec h4 {
    font-size: 14px;
    font-weight: 500;
    color: #78d0ab;
    margin: 0;
}
.process-head h2 {
    color: #78d0ab;
}
.time-sec h5 {
    color: #666666;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Poppins';
}
.process-sec .process-text {
    background-color: #FFF;
    box-shadow: 0px 0px 10px 1px rgba(147.00000000000003, 147.00000000000003, 147.00000000000003, 0.1);
    padding: 20px 25px;
    margin-right: 45px;
    position: relative;
}
.process-sec .process-text h3 {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #78d0ab;
}
.process-sec .process-text p {
    color: #666666;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}
.process-sec .icon-sec {
    position: absolute;
    left: calc(101%);
    /* left: 0; */
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    top: 30%;
    transform: translate(-50%, -50%);
    height: 43px;
    width: 43px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #D6D6D6;
    border: 1px solid #D6D6D6;
    border-radius: 50px;
    background: #fff;
}
.process-sec .icon-sec svg {
    fill: #D6D6D6;
    width: 16px;
    height: 16px;
}
.process-box.right-box {
    flex-direction: row;
}
.process-box.right-box .process-sec .icon-sec {
    right: calc(100%);
    left: auto;
}
.process-box.right-box .time-sec {
    margin: 0 auto;
    margin-right: 70px;
    text-align: right;
    top: 49px;
}
.process-timeline-sec .middle-line {
    background-color: #D6D6D6;
    width: 2px;
    transform: translate(-50%) !important;
    height: 750px;
    position: absolute;
    left: -34px;
    right: 0;
    margin: auto;
    top: 38px;
}
.process-timeline-sec {
    position: relative;
}
.process-timeline-sec .process-box.right-box:last-child .time-sec {
    top: 31px;
}
.process-sec .process-text:after {
    content: "";
    border-width: 11px;
    top: 30%;
    border-left-color: #78d0ab;
    position: absolute;
    right: -23px;
    border-style: solid;
    transform: translateY(-50%);
    border-color: transparent;
    border-left-color: #78d0ab;
}
.process-box.right-box .process-sec .process-text:after {
    display: none;
}
.process-box.right-box .process-sec .process-text:before {
    content: "";
    border-width: 11px;
    top: 30%;
    border-left-color: #78d0ab;
    position: absolute;
    left: -22px;
    border-style: solid;
    transform: translateY(-50%);
    border-color: transparent;
    border-right-color: #78d0ab;
}
section.contact-row {
    margin-top: 100px;
    background-image: url(../images/contact-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
section.contact-row:before {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.contact-lft-sec h2 {
    font-size: 40px;
    color: #fff;
    width: 85%;
}
.contact-sec h3 {
    color: #78d0ab;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 20px;
}
.contact-sec ul {
    margin-bottom: 30px;
}
.contact-sec ul li {
    display: flex;
    margin-bottom: 5px;
    font-size: 15px;
    color: #fff;
}
.contact-sec ul li:before {
    content: "\f095";
    font-family: 'FontAwesome';
    color: #fff;
    margin-right: 5px;
}
.contact-sec ul li:last-child:before {
    content: "\f0e0";
}
.contact-sec ul li a {
    color: #FFF7F7;
}
.contact-sec .form-group {
    margin-bottom: 10px;
}
.contact-sec .form-group label {
    color: #fff;
}
.contact-sec .form-group input {
    height: 50px;
    padding-left: 16px;
    border: 1px solid #69727d;
    border-radius: 3px;
    font-size: 15px;
    color: #7a7a7a;
}
.contact-sec .form-group input::placeholder {
    color: #7a7a7a;
    opacity: 1;
}
.contact-sec .clr-btn {
    background: #78d0ab;
    width: 100%;
    color: #000;
    border: 0;
}
/* Services Page Css */
.services-banner-sec {
    text-align: left;
}
.services-banner-sec h1 {
    color: #78d0ab;
    font-size: 42px;
    text-transform: unset;
    width: 85%;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
}
.services-banner-sec h2 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 19px;
    font-weight: 600;
    font-style: italic;
    line-height: 26px;
    margin-bottom: 20px;
}
.services-banner-sec p {
    color: #78d0ab;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    width: 88%;
}
.services-banner-sec ul li {
    display: inline-block;
    margin-right: 20px;
}
.services-banner-sec ul li img {
    height: 91px;
    object-fit: scale-down;
    width: 140px;
}
section.cta-row {
    background-image: url(../images/services-cta-bg.webp);
    padding: 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}
section.cta-row:before {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.cta-sec h2 {
    color: #fff;
    font-family: 'Roboto';
    font-weight: 600;
}
.cta-sec .clr-btn {
    padding: 9px 70px;
    background: #78d0ab;
    color: #000;
}
section.services-choose-row {
    background: #EBD2C3;
    padding: 100px 0;
}
.services-choose-sec ul li {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}
.services-choose-sec ul li:before {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 22px;
    content: "\f192";
    border-radius: 50px;
}
.services-choose-sec ul {
    position: relative;
    z-index: 1;
}
.services-choose-sec ul:before {
    content: "";
    background: #000;
    width: 2px;
    height: 155px;
    position: absolute;
    left: 10px;
    top: 12px;
    z-index: -1;
    display: none;
}
.services-choose-sec ul li strong {
    display: block;
    color: #222222;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2px;
}
.services-choose-sec img {
    width: 90%;
    margin: auto;
    display: table;
    margin-right: 0;
    border-radius: 300px;
}
.faq-sec h2 {
    font-size: 40px;
    text-transform: capitalize;
    line-height: 45px;
    margin: 0;
}
.faq-sec h2:first-child:after {
    content: "";
    width: 31%;
    height: 3px;
    background: #78d1ad;
    display: block;
    margin: 10px 0 20px;
}
.faq-sec h2.accordion-header:after {
    display: none;
}
.faq-sec h2.accordion-header {
    line-height: normal;
    margin: 0;
}
.faq-sec .accordion-button {
    font-family: 'Helvetica-Bold';
    font-size: 16px;
    padding: 20px;
    border-radius: 4px !important;
    border-color: #EAEAEA;
}
.faq-sec .accordion-item {
    border: 0;
}
.faq-sec .accordion-button:not(.collapsed) {
    box-shadow: unset;
    background: #78d2af;
    color: #000;
}
.accordion-body {
    padding: 16px 20px;
}
.accordion-body p {
    margin: 0;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}
.ser-process-head {
    margin-bottom: 50px;
}
section.services-process-row {
    padding: 0 200px;
}
section.services-process-row .row {
    justify-content: center;
    flex-wrap: wrap;
}
section.services-process-row .row .col {
    flex: 0 0 20%;
    width: 20%;
}
.ser-process-sec img {
    height: 93px;
    width: 93px;
    margin: 0 auto 20px;
    display: table;
}
.ser-process-sec {
    text-align: center;
    margin-bottom: 25px;
}
.ser-process-sec h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #222222;
    line-height: 26px;
    margin: 0;
    min-height: 60px;
}
.ser-process-sec p {
    font-size: 15px;
    color: #666666;
    line-height: 24px;
    margin: 0;
}
section.build-brand-row {
    padding: 100px 0;
}
.build-brand-sec h2 {
    color: #78d1ad;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}
.brand-list-sec {
    position: relative;
}
.brand-list-sec:before {
    width: 2px;
    content: "";
    height: 100%;
    background: #EB0045;
    position: absolute;
    left: 40px;
    z-index: -1;
}
.list-inners-sec {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
.list-inners-sec .icon {
    width: 78px;
    height: 78px;
    background-color: #FFB700;
    text-align: center;
    line-height: 80px;
    border-radius: 5px;
    margin-right: 20px;
}
.list-inners-sec .icon i {
    font-size: 26px;
    color: #fff;
}
.list-inners-sec .text h3 {
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}
.list-inners-sec .text p {
    font-family: 'Roboto';
    font-size: 16px;
    color: #6E6B6B;
    margin: 0;
}
.brand-list-sec .list-inners-sec:nth-child(2) .icon {
    background: #966CE6;
}
.services-choose-sec.without-circle img {
    border-radius: 0;
    width: 100%;
}
section.writing-category-row {
    padding: 100px 0 80px;
}
.writing-head {
    margin-bottom: 30px;
}
.writing-head h2 {
    font-size: 40px;
    color: #78d0ab;
    margin: 0;
}
section.writing-category-row .row {
    flex-wrap: wrap;
}
section.writing-category-row .row .col {
    flex: 0 0 20%;
    width: 20%;
}
.writing-category-sec {
    border: 3px solid #000;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.writing-category-sec img {
    width: 60px;
    margin-bottom: 10px;
}
.writing-category-sec h3 {
    font-size: 18px;
    color: #222222;
    text-transform: uppercase;
    line-height: 20px;
    width: 85%;
    margin: auto;
}
/* Contact Page Css */
section.contact-page-row {
    padding: 100px 0;
}
.contact-page-lft-sec img {
    width: 90%;
}
.contact-page-sec {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(219, 219, 219, 0.5);
    padding: 30px 50px;
}
.contact-page-sec h2 {
    color: #78cfa9;
    font-size: 28px;
    font-family: 'Roboto';
    font-weight: 600;
    width: 90%;
    margin-bottom: 20px;
}
.contact-page-sec h3 {
    font-size: 22px;
    color: #222222;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 20px;
}
.contact-page-sec ul {
    margin-bottom: 30px;
}
.contact-page-sec ul li {
    display: flex;
    margin-bottom: 5px;
    font-size: 15px;
    color: #666666;
}
.contact-page-sec ul li:before {
    content: "\f095";
    font-family: 'FontAwesome';
    color: #78d0ab;
    margin-right: 5px;
}
.contact-page-sec ul li:last-child:before {
    content: "\f0e0";
}
.contact-page-sec ul li a {
    color: #666666;
}
.contact-page-sec .form-group {
    margin-bottom: 10px;
}
.contact-page-sec .form-group label {
    color: #000;
}
.contact-page-sec .form-group input {
    height: 50px;
    padding-left: 16px;
    border: 1px solid #69727d;
    border-radius: 3px;
    font-size: 15px;
    color: #7a7a7a;
}
.contact-page-sec .form-group input::placeholder {
    color: #7a7a7a;
    opacity: 1;
}
.contact-page-sec .clr-btn {
    background: #78d0ab;
    width: 100%;
    color: #000;
    border: 0;
}
.contact-page-sec .checkbox-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}
.contact-page-sec .checkbox-container input#agree {
    margin-right: 5px;
}
.contact-page-sec .checkbox-container label {
    color: #000;
    font-size: 15px;
}
/* Polices Pages Css */
.policy-sec h2 {
    font-size: 30px;
    font-family: 'Roboto';
    color: #000;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}
.policy-sec p {
    color: #000;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 26px;
    margin-bottom: 20px;
}
.policy-sec ul {
    margin-bottom: 15px;
    margin-left: 30px;
}
.policy-sec ul li {
    font-family: 'Roboto';
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5px;
}
.policy-sec ul li strong {
    font-family: 'Roboto';
    color: #000;
}
.policy-sec a {
    color: #11103d;
    font-weight: 600;
    text-decoration: underline;
}
/* Popup Css */
div#balti_popup {
    width: 450px;
    border-radius: 23px;
    padding: 30px;
    border-bottom: 5px solid #0d0e37;
    background: #fff;
    font-family: Poppins, sans-serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
div#balti_popup h3 {
    font-size: 28px;
    color: #0d0e37;
    padding-left: 15px;
    border-left: 6px solid #0d0e37;
    margin-bottom: 12px;
    line-height: 35px;
}
div#balti_popup p {
    line-height: 19px;
    font-size: 14px;
    margin-bottom: 12px;
}
.balti_popup ul li {
    text-align: left;
    position: relative;
    width: 100%;
    margin: 8px 0;
    list-style: none;
}
.balti_popup ul li i {
    position: absolute;
    top: 15px;
    left: 14px;
    color: #0d0e37;
}
.balti_popup ul li input[type=email], .balti_popup ul li input[type=number], .balti_popup ul li input[type=text], .balti_popup ul li textarea {
    background: #fff;
    border: 2px solid #dedede;
    padding: 10px 10px 10px 34px;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    box-shadow: none !important;
    outline: 0 !important;
}
.balti_popup ul li textarea {
    height: 80px;
}
.balti_popup ul li input[type=submit] {
    color: #fff;
    font-size: 18px;
    border: 2px solid;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 0px;
    letter-spacing: 1px;
    outline: 0;
    border-radius: 50px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: .1s linear;
    background: #0d0e37;
    border-color: #0d0e37;
}
.balti_popup .fancybox-close-small {
    position: absolute;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 3px solid #0d0e37;
    border-radius: 72px;
    background: #fff;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    box-shadow: #000 0 0 10px;
    right: -14px;
    top: -13px;
    overflow: visible;
    outline: 0 !important;
}
.balti_popup .fancybox-close-small:after {
    position: absolute;
    top: 4px;
    width: 30px;
    height: 30px;
    font: 300 25px / 30px Arial, Helvetica Neue, Helvetica, sans-serif;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    transition: .1s linear;
    box-sizing: border-box;
    z-index: 2;
    content: "x";
    color: #4a171e;
    right: 6px;
}
.balti_popup .fancybox-close-small:hover {
    background: #0d0e37;
}
.balti_popup .fancybox-close-small:hover:after {
    color: #fff;
}
.iti {
    width: 100%;
}
.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
}
.error {
    color: red !important;
    font-size: 14px;
    font-weight: 500;
}