@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,500;0,600;0,700;1,400&amp;display=swap');
body {
    font-family: 'Nunito', sans-serif;
    color: #000;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
}

a {
    color: #237aba;
    text-decoration: none;
}

a:hover {
    color: #74c92d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #237aba;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6fc02c;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
    box-shadow: 0px 0 5px rgb(112 171 62 / 10%);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 68px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #237aba;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 12px;
    border-radius: 4px;
    color: #000;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    border: 2px solid #237aba;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #237aba;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 22px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #2a2a2a;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #237aba;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #237aba;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #237aba;
}

.navbar-mobile>ul>li {
    white-space: nowrap;
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #237aba;
    padding-left: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #237aba;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.8);
    overflow: hidden;
    padding: 0;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.3;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero h2 span {
    color: #237aba;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #237aba;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    text-transform: uppercase;
    border: 2px solid #237aba;
    background: #237aba;
}

#hero .btn-get-started:hover {
    background: #6ab82a;
    border-color: #6ab82a;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    font-weight: 600;
    font-size: 34px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #237aba;
}

.section-title p {
    margin-bottom: 0;
}

.section-title h3 {
    font-weight: 600;
    font-size: 34px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content {
    padding: 30px 0;
}

.about .content h3 {
    font-weight: 600;
    font-size: 34px;
}

.about .content p {
    margin-bottom: 0;
}

.about .content .icon-box {
    margin-top: 25px;
}

.about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #237aba;
}

.about .content .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.about .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about .image {
        text-align: center;
    }
    .about .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding: 60px 0 30px 0;
    background: url(../img/static.jpg) center center no-repeat;
    background-size: cover;
}

.counts .count-box {
    padding: 30px;
    width: 100%;
}

.counts .count-box i {
    display: block;
    font-size: 44px;
    color: #fff;
    float: left;
    line-height: 0;
}

.counts .count-box span {
    font-size: 48px;
    line-height: 40px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-left: 60px;
}

.counts .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 60px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #fff;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #505050;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #777777;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding: 60px 0;
    text-align: center;
}

.clients img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    margin: 20px 20px !important;
}

.clients img:hover {
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.services .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: #237aba;
    overflow: hidden;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
    font-size: 36px;
    line-height: 0;
}

.services:hover .icon {
    box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}

.services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services .title a {
    color: #444444;
    transition: 0.3s;
}

.services .title a:hover {
    color: #237aba;
}

.services .title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #237aba;
    bottom: 0;
    left: calc(50% - 25px);
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .box {
    padding: 50px 30px;
    transition: all ease-in-out 0.3s;
    background: #237aba;
    color: #fff;
    height: 100%;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 15px 0;
    color: #fff;
}

.why-us .box p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.why-us .box.whtwedo {
    padding: 39px 30px;
}

.why-us .box img {
    border: 1px solid #e2e2e2;
}

.why-us .box.howwedo {
    padding: 27px 30px;
}

.why-us .box.img {
    background: transparent;
}

.why-us .box.img.text-right {
    text-align: right;
}

/*--Benefits of AGT-*/
.ngo_head h4 {
    text-align: center;
}
.card.add_ngos {
    border: none;
    background: #f1f1f1;
    padding: 50px 12px;
    height: 75vh;
}
.ngo_text p {
    text-align: left;
}
.card_img {
       width: 75%;
    margin: 0 40px;
}
.card_img.img_ngos_2 {
    margin: -45px 40px;
}
.ngo_head {
    margin: 40px 0 0 0;
}
.ngo_head.ngos_h {
    margin: 25px 0 0 0 !important;
}
.ngo_head.ngos_h3 {
    margin: 18px 0 0 0 !important;
}
/*.part_img {*/
/*    width: 90%;*/
/*}*/
.part_text {
    margin: 10% 0;
}
.ngo_logo {
    margin: -15% 0;
}
section.Partner {
    background: #f1f1f1;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #237aba;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(42, 42, 42, 0.7);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #237aba;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #237aba;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #237aba;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
}

.team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.team .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
}

.team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    color: #237aba;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: #f7f7f7;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
}

.pricing .box h4 {
    font-size: 42px;
    color: #237aba;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #2a2a2a;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #237aba;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 4px;
    border: 2px solid #237aba;
    color: #237aba;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .box .btn-buy:hover {
    background: #237aba;
    color: #fff;
}

.pricing .recommended {
    background: #237aba;
}

.pricing .recommended h3,
.pricing .recommended h4,
.pricing .recommended h4 span,
.pricing .recommended ul,
.pricing .recommended ul .na {
    color: #fff;
}

.pricing .recommended .btn-buy {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.pricing .recommended .btn-buy:hover {
    background: #fff;
    border-color: #fff;
    color: #237aba;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #9cdc66;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #237aba;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

.contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #237aba;
}

.contact .contact-info address,
.contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

.contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

.contact .contact-info a {
    color: #000;
}

.contact .contact-info a:hover {
    color: #237aba;
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
    margin-bottom: 20px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    padding: 10px 15px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #237aba;
}

.contact .php-email-form button[type=submit] {
    background: #237aba;
    border: 0;
    padding: 10px 30px 12px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #6ab82a;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 20px 0;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    min-height: 40px;
    margin-top: 80px;
}

.breadcrumbs h2 {
    font-size: 46px;
    font-weight: 700;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #444444;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #111111;
    padding: 0 0 10px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #111111;
    border-bottom: 1px solid #383838;
    padding: 30px 0 0px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #237aba;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #237aba;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #81d33d;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #237aba;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #6ab82a;
}

#footer .copyright {
    text-align: center;
    padding-top: 10px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#videoSection .video {
    height: 100vh;
    position: relative;
}

#videoSection .video .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

#videoSection .video .text h1 {
    font-size: 60px;
}

#videoSection .video .text p {
    font-size: 40px;
}

.footer-info .logo {
    width: 195px;
}

.footer-info .logo img {
    border-radius: 6px;
    background: #ffffff;
}

.footer-info .about-text {
    margin-top: 20px;
}

.footer-info .repo {
    margin-top: 20px;
}

.footer-info i {
    color: #237aba;
}

.social .bx {
    font-size: 22px;
    border: 1px solid;
    border-radius: 50px;
    padding: 5px;
    margin-right: 10px;
}

.hero-btn {
    background: #237aba;
    border: 0;
    padding: 10px 30px 12px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-top: 28px;
}

.hero-btn.mr-2 {
    margin-right: 26px;
}

.about .content p {
    margin-bottom: 15px;
}

.why-choose-us {
    background-color: #F1F1F1;
}

.why-box {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.why-box:hover {
    border-bottom: 4px solid #6fc02c;
}

.why-box .title {
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
}

.why-box p {
    margin-bottom: 5px;
}

.slick-prev:before,
.slick-next:before {
    color: #237aba !important;
}

.service-sec {
    box-shadow: 0px 0 10px rgb(112 171 62 / 80%);
}

.service-title {
    padding: 20px;
    display: inline-block;
}

.service-title .icon {
    float: left;
}

.service-title h4 {
    font-weight: 800;
    float: left;
    margin: 25px;
    font-size: 26px;
}

.service-para {
    padding: 0 20px;
}

.text-right {
    text-align: right;
}

.breadcrumbs h2 span {
    width: 60px;
    height: 2px;
    background: #237aba;
    display: block;
    margin: 10px auto;
}

.box-content .ttl i {
    float: left;
    font-size: 40px;
    color: #237aba;
}

.box-content .ttl h3 {
    float: left;
    margin-left: 10px;
    margin-top: 3px;
}

.box-content .wrap-shift {
    float: left;
    margin-left: 50px;
}

.our-process {
    background: #fafafa;
}

.our-process .process-wrap .line {
    height: 2px;
    background: #dbdbdb;
    position: absolute;
    width: 900px;
    margin-left: 120px;
    margin-top: 37px;
    z-index: 0;
}

.our-process .process-wrap .process-step {
    z-index: 1;
    position: relative;
    float: left;
    width: 20%;
    padding: 0 20px;
    text-align: center;
}

.our-process .process-wrap .process-step .icon-wrap {
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    width: 73px;
    height: 73px;
    margin: 0 auto;
}

.our-process .process-wrap .process-step .icon-wrap .icons {
    background: #237aba;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    text-align: center;
    color: #fff;
    padding-top: 15px;
}

.our-process .process-wrap .process-step .icon-wrap .icons i {
    font-size: 40px;
}

.our-process .process-wrap .process-step h4 {
    margin-top: 20px;
}

@media screen and (max-width: 538px) {
    .our-process .process-wrap .process-step {
        width: 100%;
    }
}

@media (min-width: 539px) and (max-width: 768px) {
    .our-process .process-wrap .process-step {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .our-process .process-wrap .process-step {
        width: 33%;
    }
}

@media screen and (max-width: 992px) {
    .our-process .process-wrap .line {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .our-process .process-wrap .line {
        width: 800px;
        margin-left: 64px;
    }
}

.b-about {
    background: url(../img/static.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-approach {
    background: url(../img/approach.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-contact {
    background: url(../img/contact-us.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-web-app {
    background: url(../img/services/img/webdesign.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-mobile-app {
    background: url(../img/services/img/mobiledev.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-qa {
    background: url(../img/services/img/testing.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-dm {
    background: url(../img/services/img/dm.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-ds {
    background: url(../img/services/img/datascience.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-cs {
    background: url(../img/services/img/cloud.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-ui {
    background: url(../img/services/img/uiux.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-bpo {
    background: url(../img/services/img/bpo.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-staff {
    background: url(../img/services/img/staff.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.b-contact h2,
.b-mobile-app h2,
.b-cs h2 {
    color: #000;
}

.b-dm h2,
.b-bpo h2 {
    visibility: hidden;
}

.work-img {
    box-shadow: 0px 0 10px rgb(112 171 62 / 80%);
}

h4.work-title {
    font-size: 20px;
}

.card-1 .card-header {
    background-color: #237aba;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

.contact-page .footer-info {
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 6px;
}

.c-form {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    padding: 0 20px;
    border-radius: 6px;
}

.bxs-phone-call:before {
    content: "\ee67";
    font-size: 20px;
    position: relative;
    top: 4px;
}

.bxs-envelope:before {
    content: "\ed9f";
    font-size: 20px;
    position: relative;
    top: 4px;
}

.service-contents .service-box {
    border: 2px solid #237aba;
    border-radius: 6px;
    padding: 30px 15px;
    margin-bottom: 25px;
}

.service-contents .service-box-mid {
    border-radius: 6px;
    padding: 30px 15px;
    margin-bottom: 25px;
    background-color: #237aba;
    color: #fff;
}

.mob-dev .service-box {
    padding: 30px 25px;
}
.dm .service-box, .dm .service-box-mid {
    height: 250px;
}

.data-s .service-box,
.data-s .service-box-mid {
    height: 218px;
}

.service-contents .service-box:hover,
.service-contents .service-box-mid:hover {
    box-shadow: 0px 0 12px rgb(112 171 62 / 70%);
    cursor: pointer;
}

.service-contents .service-box img {
    border-radius: 6px;
}

.font-700 {
    font-weight: 700;
}

.services-icon i::before {
    font-size: 40px;
    color: #237aba;
}

.service-box-mid .services-icon i::before {
    font-size: 40px;
    color: #fff;
}

.bpo h3 {
    font-size: 22px;
    font-weight: 700;
}

.why-choose-apts .service-box {
    border: 2px solid #237aba;
    padding: 30px 15px;
    margin-bottom: 25px;
    height: 174px !important;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.why-choose-apts .service-box2 {
    border: 2px solid #237aba;
    padding: 30px 15px;
    margin-bottom: 25px;
    height: 174px !important;
    background-color: #237aba;
    color: #fff;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
.why-choose-apts .service-box2 .services-icon i::before {
    color: #fff;
}
.why-choose-apts .why-us-img {
    min-height: 372px;
    object-fit: cover;
}
.hero-btn:hover{
    background-color:#0C54A0;
    color:white;
}
.text.container {
    background-color: #00000094;
    padding: 2%;
}
.back-to-top{
    background: #0453A1 !important;
    color: #fff;
}
p.animate__animated.animate__fadeInUp.main-p-mob.ai-content-para{
    font-size: 18px !important;
    text-align: justify !important;
}
h1.wow.animated.animate__animated.animate__fadeInDown.main-h1-Mob.ai-content-head {
    font-size: 42px !important;
}
/*.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {*/
/*    top: 13% !important;*/
/*}*/
/*#videoSection .video {*/
/*    height: 60vh !important;*/
/*    position: relative;*/
/*}*/
@media only screen and (max-width:320px){
    
.text.container {
    margin-top: 7% !important;
    font-size:14px;
}
.main-h1-Mob{
    font-size: 28px !important;
}
.main-p-mob{
    font-size: 11px !important;
}
#videoSection .video {
    height: 222px;
    position: relative;
}
.hero-btn{
    margin-top: 0%;
    font-size: 12px;
}
.hero-btn:hover{
    background-color:orange;
    color:white;
}
i.bi.mobile-nav-toggle.bi-list {
    color: black;
}
.about .image {
    min-height: 193px;
}
.rounded-4 {
    border-radius:none !important;
}
.content.d-flex.flex-column.justify-content-center {
    margin-left: 3%;
}
.slick-next {
    right: -13px !important;
}
.vidbg-overlay {
    margin-bottom: 2% !important;
}
section#about {
    margin-top: -5% !important;
}
img.img-fluid.border.card-img {
    margin-top: -8% !important;
}
.box.howwedo.card-img-2 {
    margin-top: -7% !important;
}
.vidbg-overlay {
    margin-bottom: 7% !important;
}
#header .logo img {
    max-height: 54px !important;
}
.aptsol-img-logo-2{
    display:none;
}
p.animate__animated.animate__fadeInUp.main-p-mob.ai-content-para {
    font-size: 7px !important;
}
h1.wow.animated.animate__animated.animate__fadeInDown.main-h1-Mob.ai-content-head {
    font-size: 14px !important;
}
a.hero-btn.mr-2.animate__animated.animate__fadeInUp {
    font-size: 9px !important;
}
.hero-btn {
    margin-top: 0%;
    font-size: 9px !important;
}
}
@media only screen and (min-width:321px) and (max-width:768px){
.text.container {
    margin-top: 5% !important;
    font-size:14px;
    
}
.about .image {
    
    min-height: 191px !important;
    height: 129% !important;
}
.main-h1-Mob{
    font-size: 28px !important;
}
.main-p-mob{
    font-size: 11px !important;
}
#videoSection .video {
    height: 222px;
    position: relative;
}
.hero-btn{
    margin-top: 0%;
    font-size: 12px;
}
.hero-btn:hover{
    background-color:orange;
    color:white;
}
i.bi.mobile-nav-toggle.bi-list {
    color: black;
}
.about .image {
    min-height: 193px;
}
.rounded-4 {
    border-radius:none !important;
}
.content.d-flex.flex-column.justify-content-center {
    margin-left: 3%;
}
.slick-next {
    right: -13px !important;
}
.vidbg-overlay {
    margin-bottom: 2% !important;
}
section#about {
    margin-top: -5% !important;
}
img.img-fluid.border.card-img {
    margin-top: -8% !important;
}
.box.howwedo.card-img-2 {
    margin-top: -7% !important;
}
#header .logo img {
    max-height: 54px !important;
}
p.animate__animated.animate__fadeInUp.main-p-mob.ai-content-para {
    font-size: 7px !important;
}
h1.wow.animated.animate__animated.animate__fadeInDown.main-h1-Mob.ai-content-head {
    font-size: 14px !important;
}
a.hero-btn.mr-2.animate__animated.animate__fadeInUp {
    font-size: 9px !important;
}
.hero-btn {
    margin-top: 0%;
    font-size: 9px !important;
}
}
@media only screen and (min-width:1024px) and (max-width:1440px){
#header .logo img {
    max-height: 68px;
    margin-left: -5% !important;
}
.image.col-xl-5.d-flex.align-items-stretch.justify-content-center.justify-content-lg-start.rounded-4.animate__animated.animate__slideInLeft.some {
    margin-top: 7% !important;
}
.container.d-flex.align-items-center.justify-content-between {
    margin-left: 0% !important;
}
nav#navbar {
    margin-right: -9% !important;
}
.aptsol-img-logo-1{
    display:none;
}
.image.col-xl-5.d-flex.align-items-stretch.justify-content-center.justify-content-lg-start.rounded-4.animate__animated.animate__slideInLeft.some {
    margin-top: -10% !important;
}
}
@media only screen and (max-width:768px){
   img.img-fluid.border {
    width: 100vw !important;
    height: 75% !important;
} 
}

@media only screen and (min-width:320px) and (max-width:769px){
    .aptsol-img-logo-2{
    display:none;
}
.image.col-xl-5.d-flex.align-items-stretch.justify-content-center.justify-content-lg-start.rounded-4.animate__animated.animate__slideInLeft.some {
    margin-top: 7% !important;
}
}
@media only screen and (min-width:1441px) and (max-width:2560px){
.aptsol-img-logo-1{
    display:none;
}
.image.col-xl-5.d-flex.align-items-stretch.justify-content-center.justify-content-lg-start.rounded-4.animate__animated.animate__slideInLeft.some {
    margin-top: 9% !important;
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
    top: 13% !important;
}
#videoSection .video {
    height: 60vh !important;
    position: relative;
}
}

 .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: transparent;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }




/*---Accessibility css starts----*/


html{
    scroll-behavior: smooth;
}
.loader{
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 4s ease;
    
}
.loader_ball{
    width: 25px;
    height: 25px;
    background-color:#237aba;
    margin-inline: 5px;
    border-radius: 50%;
    animation:bounce 450ms alternate infinite;
}
.loader_ball:nth-child(2){
    animation-delay:150ms;
}
.loader_ball:nth-child(3){
    animation-delay:300ms ;
}
@keyframes bounce {
    from{
        transform:scaleX(1.25);
    }
    to{
        transform: translateY(-50px) scaleX(1);
    }
}
.loader_ball-hidden {
    opacity: 0;
    pointer-events: none;
  }
/*---banner starts---*/

.accordion-button.collapsed:active .accordion-button::after{
transform: rotate(45deg)
}
.access
{
    background: linear-gradient(90deg, rgba(0,0,0,0.7736344537815126) 100%, rgba(0,212,255,1) 100%),url('../images/accessbg.jpg') no-repeat;
    background-size: cover;
    background-position: 0 50%;
    background-attachment: fixed;
    background-blend-mode:darken;
    width:100%;
    height: 55vh;
}
h2.access-head {
    font-size: 50px;
    margin: 0px 0px 50px 0px;
}
.content-access {
    margin-top: 6%;
}
.head-access {
    margin-top: 5%;
    color: #237aba;
}
p.access-text {
    font-size: 15px;
}
button.btn.btn-success.Artificial {
    width: 15%;
    padding: 10px 18px;
    margin-left: 65%;
    font-weight: 500;
    background: #237aba;
    border: 1px solid #237aba;
}
img.img-fluid.icon-open {
    width: 20px;
    height: 20px;
    margin: -3px 0px 0px 0px;
}
/*---banner ends---*/
/*---Accessbility imp-- starts---*/
h2.head-access {
    margin: 35px 0px 35px 0px;
}
p.tex {
    margin: 0px 0px 30px 0px;
}
.card.aces {
    width: 100%;
    height: 100%;
    border: 0px;
    align-items: center;
    justify-items: center;
    background-color: #F1F7FB;
    padding: 40px;
    border-radius: 60px 0px 60px 0px;
}
.card-image.eq {
    width: 70%;
    }
.card-image.com {
    width: 65%;
}
.card-image.ux {
    width: 90%;
}
h3.head-text {
    font-size: 20px;
    color: #237aba;
    margin-top: 8%;
}
p.text-subtext {
    font-size: 16px;
    text-align: left;
}
/*---Accessbility imp-- Ends---*/
/*---Resulting starts--*/
.image_con_re {
    width: 150%;
}
.card-content {
    background: #f1f7fb;
    padding: 15px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 0px 60px 0px 60px;
    border: 2px solid #237aba;
    width: 100%;
    height: 100%;
   
}

h3.con-texthe {
    font-size: 18px;
    color: #237aba;
}

p.text-rese {
    font-size: 14px;
}
.card_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
   
}
.image-flow {
    width: 100%;
    margin-top: 16%;
}
/*---Resulting Ends--*/

/*----Organisation starts---*/
section.accord {
    background-color: #f1f7fb;
    width: 100%;
    padding: 50px;
    height: 100%;
}
.card {
    width: 100%;
    height: 100%;
}
.image-card {
    width: 300%;
    transform: translateY(15%);
    
}
.card-conn {
    display: flex;
    flex-wrap: nowrap;
}
h3.card-h {
    font-size: 18px;
    color: #237aba;
}
.card {
    padding: 10px;
    
}
p.govt_text {
    font-size: 14px;
}
.card.wrap {
    background-color: #237aba;
    color: #fff;
    border-radius: 0px 50px 0px 50px;
    padding: 15px;
    width: 100%;
    height: 90% !important;
}


.card.wrapodd {
    border-radius: 0px 50px 0px 50px;
    border: 2px solid #237aba;
    padding: 15px;
    width: 100%;
    height: 90% !important;
}
h3.card-h.wrapcon {color: #000000c4;}
/*----Organisation ends---*/
/*--------Benefits starts--*/
.card.disability {
    border: none;
    align-items: center;
    justify-content: center;
}
ul.list_group {
    list-style: none;
}
li.list-item.links {
    margin-bottom: -10%;
    position: relative;
    cursor: pointer;
    font-size: 15px;
}
li.list-item.links::before{
    position: absolute;
    content:"\f105";
    font-family: "fontAwesome";
    left: -20px;
    top: 0px;
    color: #237aba;
}
h3.h.text-center.mt-4 {
    color: #237aba;
    font-size: 20px;
}
i.fa-solid.fa-eye,
i.fa-solid.fa-ear-deaf,
i.fa-brands.fa-accessible-icon {
    font-size: 70px;
    font-weight: bold;
    color: #fff;

}

img.img-fluid.icon-img {
    width: 50%;
    margin: 0px 0px 0px 40px;
    border-radius: 50%;
}
span.icon-item {
    /*width: 55%;*/
    /*height: 55%;*/
    background: #237aba;
    border-radius: 50%;
    padding: 5%;
    
}
span.icon-item2
{
    /*width: 55%;*/
    /*height: 55%;*/
    background: #0a569b;
    border-radius: 50%;
    padding: 5%;
    margin: -60px 0 0 0 !important;
     
}
span.icon-item3{
    /*width: 55%;*/
    /*height: 55%;*/
    background: #c07918;
    border-radius: 50%;
    padding: 5%;
    margin: -60px 0 0 0;
     
}
.dis_image {
       margin: -92px 0px 0px 0px;

}
.cog.dis_image {
       margin: 125px 0px 0px 0px;
}
.neu.dis_image {
    margin: 33px 0px 0px 0px;
}
ul.list_group.benefits {
    margin: 0 0 0 20px;
}

/*--------Benefits ends--*/
/*-----OurServices starts---*/
section.bg-services {
    background-color: #f1f7fb;
    padding: 40px;
}
.card.ser.bg {
    background-color: #237aba;
    color: #fff;
    border: 2px solid #237aba;
}
p.webtext {
    font-size: 17px;
    text-align: center;
    justify-items: center;
    font-weight: 500;
}
.card.ser {
    border: 2px solid #237aba;
    border-radius: 0px 40px 0px 40px;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
.card-serimg {
    width: 50%;
    
}
.service-content {
    margin-top: 40px;
    text-align: justify;
}
.text-acco {
    padding: 15px;
}
.btn-services {
    text-align: right;
}
p.text-services {
    position: relative;
    margin: 0px 0px 15px 25px;
}

p.text-services::before {
    position: absolute;
    content: "\f101";
    font-family: 'fontAwesome';
    left: -24px;
    top: 0;
    color: #237aba;
}
button.btn.btn-success.btn-service {
    background: #237aba;
    border: #237aba;
    font-weight: 700;
    padding: 8px 28px 8px 10px;
    position: relative;
}
button.btn.btn-success.btn-service::after {
    font-family: 'fontAwesome';
    content: '\f061';
    position: absolute;
    right: 8px;
    top: 9px;
    
}
button.btn.btn-success.btn-service:hover .button.btn.btn-success.btn-service::after
{
    visibility: visible;
}
p.Onboard-Request {
    color: #237aba;
    font-weight: 400;
    font-size: 14px;
}

/*-----OurServices ends---*/


/*---Choosing aptsol Starts---*/
.accordion {
    
    --bs-accordion-bg: none !important;
}
.accordion-body {
    justify-content: center;
    width: 100%;
    height: 50vh;
    padding: 0;
    margin: -50px 0 0 0;
}
.img-acco {
    width: 50%;
    transform: translateX(50%);

}
/* .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: rotate(-90deg) !important;
} */
.card.flag {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #f1f7fb;
    text-align: center;
    border:none;
}
.flag-head {
    margin-top: 18px;
}
/*.accordion-item{*/
/*    border:none !important;*/
/*    background-color: #ffffff8f;*/
/*}*/
li.nav-item-pills {
    margin-bottom: 5%;
    width: 100%;
}
h5.acc-head {
    text-align: left;
}
.link-btn {
    width: 100%;
    position: relative;
}

/* .link-btn::before{
    content: "\f107";
    position: absolute;
    right: 0;
    font-family: 'fontAwesome';
    font-size: 16px;
    transition: ease-in;
    
} */
.nav-pills .nav-link.active .link-btn::before{
    
    color: red;
   
 } 
 .nav-pills .nav-link.active .fa-angle-down {
    transform: rotate(-90deg);
}
.fa-angle-down{
    transition:  0.5s;
   
}
span.icon-arrow {
    float: right;
}
.nav-pills .nav-link.active,
 .nav-pills .show>.nav-link {
 
    background: none !important;
    color:  #237aba!important;
    
}


/*---Choosing aptsol ends---*/


h3.flag-link {color: #237aba;}
section{
    position: relative;
}


.flag-img {
    width: 40%;
    transform: translateX(75%);
}
img.card-img.flags {
    border-radius: 50%;
}



/*---Accessibility Media Queries Ends----*/
/*---media queries Accessibility---*/
@media only screen and (max-width:320px){
    h2.access-head {
        font-size: 25px;
            margin-top: 10% !important;
    }
    p.access-text {
        font-size: 12px;
        text-align: justify;
        line-height: 20px;
        margin-top: -8%;
    }
    button.btn.btn-success.Artificial {
        width: 50%;
        padding: 8px 8px;
        margin: -33% 0% 0% 50%;
        font-size: 12px;
        font-weight: 500;
    }
    
    .card-content {
        height: 80vh;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 5px;
        width: 100%;
    }
    .card-content.res-md {
        height: 70vh;
    }
    .card-content.res-md-2 {
        height: 66vh;
    }
    .image_con_re {
        width: 100%;
    }
    h3.con-texthe,
    h3.head-text{
        font-size: 20px;
    }
    p.text-rese{
        font-size: 15px;
    }
    .image-flow {
        width: 100%;
        margin-top: 16%;
        display: none;
    }
    .image-card{
        width: 100%;
        transform: translateY(0);
    }
    .card-conn {
        flex-direction: column;
        display: flex;
        flex-wrap: nowrap;
    }
    .accordion-item.mbl-none {
        display: none;
    }
    .img-acco{
        display: none;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        border-radius: 0;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 10% !important;
    }
    h5.acc-head {
        font-size: 15px;
    }
    .accordion-button::after {
        flex-shrink: 0;
        width: var(--bs-accordion-btn-icon-width);
        height: var(--bs-accordion-btn-icon-width);
        content: "";
        background-image: var(--bs-accordion-btn-icon);
        background-repeat: no-repeat;
        background-size: 15px !important;
        transition: var(--bs-accordion-btn-icon-transition);
        margin: -15px auto 0px 0 !important;
    }
    .accordion-body{
        padding: 0px !important;
        width: 100%;
        height: auto;
    }
    .text-acco{
        padding: 0px !important;
        margin-top: 60px !important;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon);
        transform: rotate(-180deg) !important;
    }
    span.icon-item {
        
        background: #237aba;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    span.icon-item2{
     
        background:  #0a569b;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    span.icon-item3{
       
        background:   #c07918;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    img.img-fluid.icon-img {
        width: 35%;
        margin: -25px 0px 0px 90px;
        border-radius: 50%;
    }
    .card.wrapodd {
        border-radius: 0px 50px 0px 50px;
        border: 2px solid #237aba;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    .card.wrap {
        background-color: #237aba;
        color: #fff;
        border-radius: 0px 50px 0px 50px;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    p.text-services {
        position: relative;
        margin: 0px 0px 15px 25px;
        text-align: left;
    }
    i.fa-solid.fa-angle-down {
        transform: rotate(180deg);
    }
    .nav-pills .nav-link.active .fa-angle-down {
        transform: rotate(0deg);
    }
    .dis_image{
        margin:0px !important;
    }
  
}



@media only screen and (min-width:321px) and (max-width:380px){
    h2.access-head {
        font-size: 25px;
    }
    p.access-text {
        font-size: 12px;
        text-align: justify;
        line-height: 20px;
        margin-top: -8%;
    }
    button.btn.btn-success.Artificial {
        width: 35%;
        padding: 7px 15px;
        margin: -25% 0% 0% 65%;
        font-weight: 500;
        font-size: 12px;
    }
    .image-flow {
        width: 100%;
        margin-top: 16%;
        display: none;
    }
    .card-content {
        height: 80vh;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 5px;
        width: 100%;
    }
    .image_con_re {
        width: 100%;
    }
    .card-content.res-md {
        height: 75vh;
    }
    .card-content.res-md-2 {
        height: 64vh;
    }
    .card-content.rep {
        height: 85vh;
    }
    .accordion-item.mbl-none {
        display: none;
    }
    .img-acco{
        display: none;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        border-radius: 0;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 10% !important;
    }
    h5.acc-head {
        font-size: 15px;
    }
    .accordion-button::after {
        flex-shrink: 0;
        width: var(--bs-accordion-btn-icon-width);
        height: var(--bs-accordion-btn-icon-width);
        content: "";
        background-image: var(--bs-accordion-btn-icon);
        background-repeat: no-repeat;
        background-size: 15px !important;
        transition: var(--bs-accordion-btn-icon-transition);
        margin: -15px auto 0px 0 !important;
    }
    .accordion-body{
        padding: 0px !important;
        width: 100%;
        height: auto;
    }
    .text-acco{
        padding: 0px !important;
        margin-top: 22% !important;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon);
        transform: rotate(-180deg) !important;
    }
    
    span.icon-item {
       
        background: #237aba;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    
    span.icon-item2{
       
        background:  #0a569b;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    span.icon-item3{
       
        background:   #c07918;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    img.img-fluid.icon-img {
        width: 30%;
        margin: -25px 0px 0px 114px;
        border-radius: 50%;
    }
    .card.wrapodd {
        border-radius: 0px 50px 0px 50px;
        border: 2px solid #237aba;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    .card.wrap {
        background-color: #237aba;
        color: #fff;
        border-radius: 0px 50px 0px 50px;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    p.text-services {
        position: relative;
        margin: 0px 0px 15px 25px;
        text-align: left;
    }
    i.fa-solid.fa-angle-down {
        transform: rotate(180deg);
    }
    .nav-pills .nav-link.active .fa-angle-down {
        transform: rotate(0deg);
    }
   
   .dis_image{
       margin:0px !important;
   }
}
@media only screen and (min-width:410px) and (max-width:767px){
    .card-content {
        height: 87vh;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 5px;
        width: 100%;
    }
    .image_con_re {
        width: 100%;
    }
    h3.con-texthe,
    h3.head-text{
        font-size: 20px;
    }
    p.text-rese{
        font-size: 15px;
    }
    .image-flow {
        width: 100%;
        margin-top: 16%;
        display: none;
    }
    button.btn.btn-success.Artificial {
        width: 35%;
        padding: 10px 18px;
        /* margin-left: 65%; */
        font-weight: 500;
        margin: -15% 0% 0% 65%;
        font-size: 15px;
    }
    .image-card{
        width: 100%;
        transform: translateY(0);
    }
    .card-conn {
        flex-direction: column;
        display: flex;
        flex-wrap: nowrap;
    }
    h2.access-head {
        font-size: 25px;
    }
    p.access-text {
        font-size: 14px;
        text-align: justify;
        line-height: 20px;
        margin-top: -6%;
    }
    .card-content.res-md {
        height: 80vh;
    }
    .card-content.res-md-2 {
        height: 72vh;
    }
    .accordion-item.mbl-none {
        display: none;
    }
    .img-acco{
        display: none;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        border-radius: 0;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 10% !important;
    }
    h5.acc-head {
        font-size: 18px;
    
    }
    .accordion-button::after {
        flex-shrink: 0;
        width: var(--bs-accordion-btn-icon-width);
        height: var(--bs-accordion-btn-icon-width);
        content: "";
        background-image: var(--bs-accordion-btn-icon);
        background-repeat: no-repeat;
        background-size: 15px !important;
        transition: var(--bs-accordion-btn-icon-transition);
        
    }
    .accordion-body{
        padding: 0px !important;
        width: 100%;
        height: auto;
    }
    .text-acco{
        padding: 0px !important;
        margin-top: 20% !important;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon);
        transform: rotate(-180deg) !important;
    }
    span.icon-item {
       
        background: #237aba;
        border-radius: 50%;
        padding: 15px;
        margin-top: -10%;
    }
    
    span.icon-item2{
     
        background:  #0a569b;
        border-radius: 50%;
        padding: 15px;
        margin-top: -10%;
    }
    span.icon-item3{
      
        background:   #c07918;
        border-radius: 50%;
        padding: 15px;
        margin-top: -10%;
    }
    img.img-fluid.icon-img {
        width: 30%;
        margin: -25px 0px 0px 132px;
        border-radius: 50%;
    }
    i.fa-solid.fa-eye, i.fa-solid.fa-ear-deaf, i.fa-brands.fa-accessible-icon {
        font-size: 75px;
        font-weight: bold;
        color: #fff;
    }
    .card.wrapodd {
        border-radius: 0px 50px 0px 50px;
        border: 2px solid #237aba;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    .card.wrap {
        background-color: #237aba;
        color: #fff;
        border-radius: 0px 50px 0px 50px;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    p.text-services {
        position: relative;
        margin: 0px 0px 15px 25px;
        text-align: left;
    }
    i.fa-solid.fa-angle-down {
        transform: rotate(180deg);
    }
    .nav-pills .nav-link.active .fa-angle-down {
        transform: rotate(0deg);
    }
    .dis_image{
       margin:0px !important;
   }
}

@media only screen and (min-width:768px) and (max-width:1023px){
    .card-content {
        border-radius: 0px 40px 0px 40px;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 5px;
    }
    .image_con_re {
        width: 100%;
    }
    h3.con-texthe,
    h3.head-text{
        font-size: 20px;
    }
    p.text-rese{
        font-size: 15px;
    }
    h2.access-head {
        font-size: 33px;
        margin: 0px 0px 35px 0px;
    }
    .accordion-body{
        padding: 0px !important;
    }
    .text-acco {
        padding: 15px;
        margin: -20px 0px 0px 30px;}
    .mbl-show{
        display: none;
    }
    h5.acc-head {
        font-size: 16px;
    }
    .accordion-button::after {
        margin: -15px -50px 0px 0px !important;
    }
    span.icon-item {
       
        background: #237aba;
        border-radius: 50%;
        padding: 10px;
        margin-top: -10%;
    }
    span.icon-item2{
       
        background:  #0a569b;
        border-radius: 50%;
        padding: 10px;
        margin-top: -80%;
    }
    span.icon-item3{
      
        background:   #c07918;
        border-radius: 50%;
        padding: 10px;
        margin-top: -25%;
    }
    .dis_image {
    margin: -50px 0px 0px 0px;
    }
    .cog.dis_image {
    margin: 30px 0px 0px 0px;
    }
    .neu.dis_image {
    margin: -45px 0px 0px 0px;
    }
    img.img-fluid.icon-img {
        width: 100%;
        margin: -15px 0px 0px 0px;
        border-radius: 50%;
    }
    i.fa-solid.fa-eye, i.fa-solid.fa-ear-deaf, i.fa-brands.fa-accessible-icon {
        font-size: 60px;
        font-weight: bold;
        color: #fff;
    }
    li.list-item.links {
        margin-bottom: 3%;
        position: relative;
        cursor: pointer;
        font-size: 15px;
    }
    button.btn.btn-success.Artificial {
        width: 25%;
        padding: 5px 13px;
        margin-left: 65%;
        margin: -8% 0% 0% 65%;
        font-weight: 500;
        background: #237aba;
        border: 1px solid #237aba;
        font-size: 17px;
    }
    .card.wrapodd {
        border-radius: 0px 50px 0px 50px;
        border: 2px solid #237aba;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    .card.wrap {
        background-color: #237aba;
        color: #fff;
        border-radius: 0px 50px 0px 50px;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }

}
@media only screen and (min-width:1024px) and (max-width:1439px){
    h2.access-head {
        font-size: 40px;
        margin: 0px 0px 25px 0px;
    }
    .accordion-body{
        padding: 0px !important;
        margin: -50px 0 0 0;
    }
    .text-acco {
        padding: 15px;
        margin: -20px 0px 0px 30px;}
    
    h5.acc-head {
        font-size: 18px;
    }
    .card.wrapodd {
        border-radius: 0px 50px 0px 50px;
        border: 2px solid #237aba;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    .card.wrap {
        background-color: #237aba;
        color: #fff;
        border-radius: 0px 50px 0px 50px;
        padding: 15px;
        width: 100%;
        height: 96% !important;
    }
    i.fa-solid.fa-eye, i.fa-solid.fa-ear-deaf, i.fa-brands.fa-accessible-icon {
        font-size: 45px;
        font-weight: bold;
        color: #fff;
    }
    span.icon-item {
        /* width: 55%; */
        /* height: 55%; */
        background: #237aba;
        border-radius: 50%;
        padding: 5%;
    }
   
 
}

@media only screen and (max-width:1024px){
    .card-conn {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .image-card{
        width: 100%;
        transform: translateY(0);;
    }
}
@media only screen and (min-width:768px) and (max-width:1024px){

    button.btn.btn-success.Artificial {
        width: 22%;
        padding: 6px 18px;
        margin: -7% 0% 0% 65%;
        font-weight: 500;
        background: #237aba;
        border: 1px solid #237aba;
    }
}
@Media only screen and (max-width:767px){
    .moble-none{
        display: none;
    }
}
@media only screen and (min-width:768px){
    .mobile-view{
        display: none;
    }
}


/*----ItSupport and Services css----*/
:root{
    --aptsol-green : #237aba;
    --aptsol-blue : #007aff;
}

.top{
    height: 40vh;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.6934173327534139) 0%, rgba(0,0,0,0.8054621506805848) 0%),url(../images/support_access.jpg);
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    margin-top:6%;

}
h1.head_it {
    color:  var(--aptsol-green);
}
.top h1{
    margin-top: 6vh;
}
.overview h1{
    color: var(--aptsol-green);
}
.overview{
    margin-top: 5%;
   
}

.content-overview{
    margin-top: 9vh;
}
.heading-vision{
    color : var(--aptsol-green);
}

.cardVision-1.card{
    background-color: var(--aptsol-blue);
    margin-right: 2%;
    color: white;
} 
.cardVision-2.card{
    background-color: var(--aptsol-green);
    margin-left: 2%;
    color: white;
} 

.cardVision-1:hover{
    background-color: var(--aptsol-green);
    transition: 0.5s ease-in;
}
.cardVision-2:hover{
    background-color: var(--aptsol-blue) ;
    transition: 0.5s ease-in;
    
}

.links{
    margin-left: 10rem;
    margin-top: 4rem;
    
}
.links a{
    list-style: circle;
    text-decoration: none;
    color: black;

}
.links.container.row.col-md-4.card{
    height: 17vh !important;
    
}

.why-us{
    margin-top: 2rem;
    font-family: Arial, Helvetica, sans-serif !important;
}
.why-img{
    border-radius: 50%;
}
.heading-us{
    color: var(--aptsol-green);
    margin-bottom: 35px;
}

.chooseUs {
    margin-top: 5rem;
  }

  .paraside {
    position: relative;
    margin: 0px 0px 14px 30px;
    font-size: 17px;
    text-align: left;
    line-height: 25px;
  }

.paraside::before {
    position: absolute;
    content: "\f0da";
    left: -20px;
    font-family: "fontAwesome";
    color: green;
    font-size: 19px;
  }
.card-body-readmore{
    height:15rem;
    text-align: center;
    padding:20px;

}
.readmore{
    margin-top:20px;
    width: 7rem;

}
.links-img {
    width: 50px;
    position: absolute;
    left: 45vh;
    border-radius: 50%;

}
.links{
    position: relative;
    margin-top: 2rem;
    margin-left: 1px;
}
#img-1,#img-2,#img-3,#img-4,#img-5,#img-6 {
    height: 150px;
    width: 150px;
}

.middleCards{
    height: 15rem !important;
    border: none !important;
    
}
.level-2{
    margin-top: 2%;
}

.middleCards:hover{
    background-color: var(--aptsol-green);
    color: white;
    transition: 0.3s ease-in;
}
section.vision {
    margin-top: 5%;
}

.flipCard{
    perspective: 1000px;
    margin: 6rem 0 0 0; 
}
.flipCard-inside{
    transition: transform 2s;
    transform-style: preserve-3d;
}

.flipCard:hover .flipCard-inside{
    transform: rotateY(180deg);
}
.flipCard-front, .flipCard-back{
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flipCard-front{
    color: white;
    background-color: var(--aptsol-blue);
}
.flipCard-back{
    color: white;
    background-color: var(--aptsol-green);
    transform: rotateY(180deg);
}



.carousel-slider{
    margin-top: 2rem;
    margin-left: 2rem;
}
.img-carousel{
    width:200px;   /*260px;*/
    height:115px;   /*150px;*/
    /* margin-top: 40px; ---------------------------------Added margin Top on Dec 19 */
}
/*.splide__slide {
    width: 35% !important; 
}*/

.reach-us{
    margin-top: 5%;
}
.sub-card{
    background-color: white;
    color: black !important;
    font-weight: 300;
    margin-top: 5rem;
    height: auto;
    padding: 28px;
      
}



.testimonials{
    background-color: var(--aptsol-green);
    height: 75vh;
}
.card.testimonials-card{
    height: 225px;
    padding: 15px;
    text-align: justify;
}
.tagname{
    padding: 0 15px 15px 0;
    text-align: center;
}

.card.testimonials-card:hover {
    /* height: 180px; */
    background: var(--aptsol-blue);
    color: white;
  }
  #slider-1 {
    height: 200px;
  }


  /* Padding to card --> Vision and Mission */
  .cardText{
    padding:40px;
    font-size:18px;
  }

.choose-us-main{
    margin: 85px 0 0 0;
}
.image-vision{
    margin: 1rem 0 0 4rem;
}

/* Class = "list_padding" added near splide__slide class in section.testimonials */
.list_padding{
    padding:  15px !important;/* 15px */
}


.contact-form{

    height: 25rem;
    width: 100%;
    overflow:scroll;
}

.form-img{
    position: relative;
    margin: 0 0 0 40px;
    max-width: 80%;
   
}
.reach-us{
    margin-top: 1rem;
}
.chooseUs{
    margin-top: 2rem;
}

.splide__arrows{
    display: none !important;
}

.iconNew{
    color: var(--aptsol-green);
}
/*----Media Query css---*/
@media only screen and (max-width:426px){
    .img-carousel{
        width:60px;
        height:40px;
    }
}
@media only screen and (min-width:427px) and (max-width:500px){
    .img-carousel{
        width:60px;
        height:40px;
    }
}
@media only screen and (min-width:501px) and (max-width:768px){
    .img-carousel{
        width:90%;
        height:70%;
    }
}
@media only screen and (max-width:767px){
    img.image-vision {
        display: none;
    }
    .card.text-center.middleCards {
        margin-top: 100%;
    }
}


@media only screen and (max-width:320px){

    .card.testimonials-card {
       
        padding: 2px !important;
        width: 102px !important;
        font-size: 8px;
    }

    .links{
        margin-top: 25rem !important;
    }

    .middleCards{
        margin: 40px 0 0 0 !important;
    }
    .content h4{
        font-size: calc(1.275rem + -1.7vw);
    }

    
    .splide__arrows{
        display: none !important;
    }
    #slider-1 {
        height: 100px !important;
    }
    .client_slide{
        margin-top: 3rem !important;
    }
    .flipCard {
       
        margin: 2rem 0 0 0 !important;
    }
    .formContact {
        margin-top: 4rem;
    }
    .carouselOne-ul li{
        width: 107px !important;
    }
   

}





@media only screen and (min-width:321px) and (max-width:376px){
    
    .card.testimonials-card {
       
        padding: 2px !important;
        width: 115px;
        font-size: 9px;
    }
    .links{
        margin-top: 25rem !important;
        
    }

    .middleCards{
        margin: 40px 0 0 0 !important;
    }
    .content h4{
        font-size: calc(1.275rem + -1.7vw);
    }

    
    .splide__arrows{
        display: none !important;
    }
    #slider-1 {
        height: 100px !important;
    }
    .client_slide{
        margin-top: 3rem !important;
    }
    .flipCard {
       
        margin: 2rem 0 0 0 !important;
    }
    .formContact {
        margin-top: 4rem;
    }
    .carouselOne-ul li{
        width: 130px !important;
    }
   

}

@media only screen and (min-width:376px) and (max-width:426px){
    
    .card.testimonials-card {
       
        padding: 2px !important;
        width: 132px;
        font-size: 10px;
    }

    .links{
        margin-top: 25rem !important;
        
    }

    .middleCards{
        margin: 40px 0 0 0 !important;
    }
    .content h4{
        font-size: calc(16px + 4px);
    }

    
    .splide__arrows{
        display: none !important;
    }
    #slider-1 {
        height: 100px !important;
    }
    .client_slide{
        margin-top: 3rem !important;
    }
    .flipCard {
       
        margin: 2rem 0 0 0 !important;
    }
    .formContact {
        margin-top: 4rem;
    }
    .carouselOne-ul li{
        width: 150px !important;
    }
   
}

@media only screen and  (min-width:426px) and (max-width:769px){
    
        .card.testimonials-card {
           
            padding: 2px !important;
            width: 232px;
            font-size: 13px;
            
            
        }
        .sub-card{
            margin-top: 2rem !important;
        }

        .form-img {
            margin-top: 55px !important;
            
        }
        .links {
            margin-top: 10rem !important;
        }
        
        .middleCards{
            margin: 40px 0 0 0 !important;
        }
        .content h4{
            font-size: calc(16px + 2px);
        }
    
        
        .splide__arrows{
            display: none !important;
        }
        #slider-1 {
            height: 100px !important;
        }
        .client_slide{
            margin-top: 3rem !important;
        }
        .flipCard {
           
            margin: 2rem 0 0 0 !important;
        }
        .formContact {
            margin-top: 4rem;
        }
        .why-img {
            
            margin: 40vh 0 0 0 !important;
        }
        .img-carousel{
            width:117px !important;   /*260px;*/
            height:80px !important;   /*150px;*/
            /* margin-top: 40px; ---------------------------------Added margin Top on Dec 19 */
        }
        .carouselOne-ul li{
            width: 167px !important;
        }
    
    
}
@media only screen and  (min-width:769px) and (max-width:1025px){
    
    .card.testimonials-card {
       
        padding: 2px !important;
        width: calc(232px + 69px);
        font-size: 13px;
        
    }
    .formContact {
        margin-top: 4rem;
    }
    .form-img {
        margin-top: 55px !important;
        
    }
    .why-img {
            
        margin: 25vh 0 0 0 !important;
    }
    .sub-card{
        margin: 4rem 0 0 0 !important;
    }
    .img-carousel{
        width:150px !important;   /*260px;*/
        height:95px !important;   /*150px;*/
        /* margin-top: 40px; ---------------------------------Added margin Top on Dec 19 */
    }
    .carouselOne-ul li{
        width: 260px !important;
    }


}

@media only screen and  (min-width:1025px) and (max-width:1441px){

    /* Style.CSS Defaults */
    .carouselOne-ul li{
        width: 308px !important;
    }

}
@media only screen and  (min-width:1441pxx) {

    /* Style.CSS Defaults */
    .carouselOne-ul li{
        width: 305px !important;
    }

}





