/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

body {
    font-size: 1.02rem;
    line-height: 1.6;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ee3824;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.pst-content {
  padding-left: 10px;
}

#portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 8px 24px;
  font-size: 12px;
  line-height: 20px;
  color: #555;
  border-radius: 50px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #444;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  border-color: #3EC1D5;
  background: #3EC1D5;
  color: #fff;
}

#portfolio-flters li:last-child {
  margin-right: 0;
}

.single-awesome-portfolio {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 25%;
  position: relative;
}

.single-awesome-project {
  overflow: hidden;
  margin-bottom: 30px;
}

.first-item {
  margin-bottom: 30px;
}

.awesome-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.awesome-img>a {
  display: block;
  position: relative;
}

.single-awesome-project:hover .awesome-img>a::after {
  opacity: 1;
}

.single-awesome-project:hover .add-actions {
  opacity: 1;
  bottom: 0;
}

.awesome-img>a::after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: 0.4s;
}

.add-actions {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  bottom: 30px;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px 15px;
  position: absolute;
  transition: all 0.4s ease 0s;
  width: 100%;
}

.project-dec {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec a {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec h4 {
  margin-bottom: 5px;
}

.project-dec h4:hover {
  color: #fff;
}

.project-dec h4 {
  color: #ddd;
  font-size: 24px;
  margin-top: -45px;
  padding-top: 50%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.project-dec span {
  color: #ddd;
  font-size: 13px;
}

.project-action-btn {
  display: block;
  height: 100%;
  text-align: center;
  transition: all 1s ease 0s;
  width: 100%;
}

.project-action-btn li {
  display: block;
  height: 100%;
  width: 100%;
}

.project-action-btn li a {
  display: block;
  height: 100%;
  width: 100%;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
    height: 100%;
}

.service-item:hover {
    margin-top: -10px;
    background: #1f69b3;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}


.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.navbar-brand img {
  height: 85%;
  margin-bottom:10px;
}

.back-to-top {
    background: #ee3824;
    border-color: #ee3824;
}

.back-to-top:hover {
  color: #fff;
  background-color: #1f69b3;
  border-color: #1f69b3;
}

.back-to-top .bi-arrow-up {
    color:#fff !important;
}

.display-3 {
  font-size: 3rem;
}

.text-primary.text-uppercase.mb-3.animated.slideInDown {
    color: #1f69b3 !important;
    font-size:24px;
}

.bannerBtn {
    background: #ee3824;
    border-color: #ee3824;
    border-radius: 25px;
padding-top: 10px !important;
padding-bottom: 10px !important;
padding-right: 35px !important;
padding-left: 35px !important;
}

.bannerBtn:hover {
  color: #fff;
  background-color: #1f69b3;
  border-color: #1f69b3;
}

.header-carousel .owl-nav .owl-prev:hover, .header-carousel .owl-nav .owl-next:hover {
  background: #ee3824;
  border-color: #1f69b3;
}

.futureLink {
  color: #ee3824 !important;
}

.contactPg .text-primary {
    color: #ee3824 !important;
}

.contactPg a {
    color: #52565b;
}

.contactPg a:hover {
   color: #ee3824; 
}

.contactPg .bg-primary {
    background: #ee3824 !important;
}

.futureLink:hover{
  color: #1f69b3 !important;
}

.contactLink a {
    color: #fff !important;
}

.contactPg .btn-primary {
    background: #1f69b3 !important;
    border-color: #1f69b3 !important;
    border-radius: 20px;
}

.contactPg .btn-primary:hover {
    background: #ee3824 !important;
    border-color: #ee3824 !important;
    
}

.contactLink a:hover, .btn.btn-link:hover {
     color: #ee3824 !important;
}

.readMoreAbout {
    background: #ee3824;
    border-color: #ee3824;
    border-radius: 25px;
padding-top: 10px !important;
padding-bottom: 10px !important;
padding-right: 20px !important;
padding-left: 20px !important;
}

.readMoreAbout:hover {
    background: #1f69b3;
    border-color: #1f69b3;
}

/*.homeOptions .text-primary {*/
/*    color: #ee3824 !important;*/
/*}*/

.bg-white.text-center.position-absolute.bottom-0.end-0.py-2.px-3 {
  background: #ee3824 !important;
  color:#fff;
  right: 100px !important;
margin-bottom: 20px !important;
border-radius: 10px;
}

.serviceHead {
    font-size:14px;
    color: #fff;
}

.visionSection h6 {
    margin-bottom:10px;
}

.visionSection a {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px !important;
width: 100%;
float: left;
}

.bg-dark {
  /*background-color: #1f69b3 !important;*/
}

.container-xxl.py-5.homeOptions {
  margin: 0 !important;
  max-width: 100%;
}


.container-xxl.py-5.serviceOuter {
  padding-top: 5px !important;
  padding-bottom: 25px !important;
}
.serviceOuter .img-fluid.w-100 {
  max-height: 350px !important;
}
.breadcrumb-item.text-white.active {
    color: #ee3824 !important;
}
.text-primary {
  color: #1f69b3 !important;
}
.section-title::before, .section-title::after {
    background: #1f69b3 !important;
}

.contact_map {
    margin-top:40px;
}

.contact_map iframe {
  height: 350px;
  width: 100%;
  margin-bottom: -5px;
}

label.error {
  color: red;
  font-weight: 400;
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  font-size: 15px;
}

.form-control:focus {
    box-shadow: none !important;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
    box-shadow: none !important;
}

.owl-item img {
    width: 100%;
    height: 768px;
    object-fit: cover;
    object-position: center;
}

.page-link {
    color: #1f69b3;
}

.page-item.active .page-link {
  background-color: #1f69b3;
  border-color:  #1f69b3;
  color: #fff;
}

.page-link:hover {
  color: #fff;
  background-color: #ee3824;
  border-color: #ee3824;
}

.text-center.p-4.pb-0.projectName {
  min-height: 100px;
}

/*.container-xxl.py-5.projectOuter {*/
/*  padding-top: 0px !important;*/
/*}*/

.projectOuter .col-lg-4.col-md-6.wow.fadeInUp {
  padding-top: 10px;
}

.projectOuter .flex-shrink-0.btn.btn-sm.btn-primary.px-3 {
  background: #ee3824;
   border-color: #ee3824;
   padding: 8px;
}

.projectOuter .flex-shrink-0.btn.btn-sm.btn-primary.px-3: hover {
  background: #1f69b3;
   border-color: #1f69b3;
}

.projectOuter .flex-shrink-0.btn.btn-sm.btn-primary.px-3.border-end.viewProjDet {
    background: #1f69b3;
  border-color: #1f69b3;
}

.flex-shrink-0.btn.btn-sm.btn-primary.px-3.border-end.viewProjDet:hover {
  background: #ee3824;
  border-color: #ee3824;
}

.flex-shrink-0.btn.btn-sm.btn-primary.px-3.border-end:hover, .flex-shrink-0.btn.btn-sm.btn-primary.px-3:hover, .flex-shrink-0.btn.btn-sm.btn-primary.px-3:hover {
    background: #1f69b3;
    color: #fff;
    border-color: #1f69b3;
}

.flex-shrink-0.btn.btn-sm.btn-primary.px-3.viewProjDet {
    background: #1f69b3;
  border-color: #1f69b3;
}

.flex-shrink-0.btn.btn-sm.btn-primary.px-3.viewProjDet:hover {
  background: #ee3824;
  border-color: #ee3824;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #ee3824;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

.blog-details .d-flex.align-items-center i {
  color: #ee3824;
}

.detgallery .imgMain {
  max-width: 100%;
  /*max-height: 477px;*/
}

/*.categories .sidebar-title {*/
/*    color: #ee3824;*/
/*}*/

  .galOuterCont .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0;
padding-left: 12px;
  }

  .card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #000;
    border-radius: 2px;
  }

    .card-image {
      background: #fff;
      display: block;
      padding-top: 70%;
      position: relative;
      width: 100%;
  }

    .card-image  img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

.container1.columns1.gallery {
  width: 100%;
  float: left;
  padding: 0;
}

.card_image a:hover img {
  transform: scale(1.1);
}

.galOuterCont h4 {
  font-size: 20px;
  margin-top: 10px;
}

.card-image:hover {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

/******* Portfolio ***/
.template-btn {
  color: white;
  /*text-transform: uppercase;*/
  font-weight: 500;
  /*padding: 12px 20px;*/
  padding:6px 18px;
  border-radius: 20px;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.template-btn:hover {
  color: white;
  background: #f28500;
}
.portfolio-section {
  /*padding-top: 30px;*/
  transition: 1.3s;
  box-sizing: border-box;
  height: auto;
}

.portfolio-tab ul {
  text-align: center;
  margin-top: 50px;
}
.portfolio-tab ul li {
  color: #000;
  background: transparent;
  display: inline;
  font-weight: 500;
  /*text-transform: uppercase;*/
  /*padding: 12px 16px;*/
  border-radius: 20px;
  padding: 10px 14px;;
  border: 2px solid #ee3824;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 575.98px) {
  .portfolio-tab ul li {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}
.portfolio-tab ul li:hover {
  background: #ee3824;
  color: #fff
}
.portfolio-tab ul .active {
  background: #ee3824;
  color: #fff
}
.clearfix:after {
  display: table;
  content: " ";
  clear: both;
}
.portfolio-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768.1px) and (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }		
  }
.portfolio-grid .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	display:none;
	overflow:hidden;
}
.portfolio-wrapper {
  overflow:hidden;
  position: relative !important;
  cursor:pointer;
}
.portfolio-bg {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
  transform: scale(1)
}
.portfolio:hover .portfolio-bg{
  transform: scale(1.2)
}
/*.first .portfolio-bg{*/
/*  background-image: url('https://images.pexels.com/photos/267350/pexels-photo-267350.jpeg?cs=srgb&dl=accounts-applications-apps-267350.jpg&fm=jpg');*/
  
/*}*/
/*.second .portfolio-bg{*/
/*  background-image: url('https://images.pexels.com/photos/1053687/pexels-photo-1053687.jpeg?cs=srgb&dl=art-art-materials-artwork-1053687.jpg&fm=jpg');*/
/*}*/
/*.third .portfolio-bg{*/
/*  background-image: url('https://images.pexels.com/photos/6224/hands-people-woman-working.jpg?cs=srgb&dl=brainstorming-campaign-collaborate-6224.jpg&fm=jpg');*/
  
/*}*/
.portfolio .label {
  position: absolute;
  width: 100%;
  height:100%;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden
}

.portfolio .label-bg {
  background: #232323;
  opacity: 0.7;
  width: 100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  transition: 1px;
}
.portfolio .label-text {
  color:#fff;
  position: relative;
  z-index:500;
  padding:50px 20px;
  text-align: center;
}
.portfolio:hover .label {
  opacity: 1;
  visibility: visible;
}
.portfolio .text-category {
  display:block;
}
.portfolio .template-btn {
  background: #ee3824;
  border: 1px solid #ee3824;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 500
}

.projectOuter .row.g-4 {
  padding: 0 !important;
  margin-left: 0;
}

.projectOuter .portfolio-section {
  padding: 0;
}

.portfolio {
  padding-right: 5px;
}

.projectOuter .label-text h4{
    color: #fff;
    font-size: 22px;
}

.projStat {
/*margin-bottom: 155px !important;*/
margin-bottom: 62px !important;
justify-content: center;
}

.projStat h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    /*color: #fff;*/
    display: inline-block;
    /*background-color: #1f69b3;*/
    border-radius: 15px;
    /*text-transform: uppercase;*/
    background-color:#fff;
    color:#ee3824;

}

.dropdown-item:hover, .dropdown-item:focus {
  color: #fff;
  background-color: #ee3824;
}

.container-xxl.py-5.projectOuter {
  padding: 0px !important;
}

.homeServices .img-fluid {
  max-width: 100%;
  min-height: 235px !important;
  max-height: 235px;
}

.footerLogoOuter {
  width: 100%;
  margin-bottom: 17px;
  height: 85px;
}

.footerLogo {
  height: 100%;
}

.footer-out {
  height: 75px;
  padding: 10px;
  width: 78%;
  background: #fff;
  text-align: center;
  border-radius: 10px;
}


.top_header_area {
  background: #181d38;
}

.top_header_area .social_nav {
  margin: 0;
  padding-top: 12px;
}

.top_header_area .top_nav li a {
  color: #fff;
  padding: 0;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
}

/*.top_header_area .top_nav li:first-child a {*/
/*  padding: 0;*/
/*}*/

.nav.navbar-nav.top_nav {
  margin-top: 10px;
}

.top_header_area .top_nav li a i {
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}
.top_header_area .top_nav li a:hover {
  color: #ee3824;
}

.navbar-nav.top_nav {
    flex-direction: row-reverse !important;
}

.top_header_area .navbar-nav {
  padding-top: 10px;
}
.top_header_area .navbar-nav.top_nav: before {
  display: table;
  content: " ";
}

/*** Fun facts ***/
.ftco-section {
  padding: 4em 0;
  position: relative;
  width: 100%;
}

#section-counter {
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.img, .blog-img, .user-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#section-counter .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  z-index: -1;
  opacity: 0.3;
  background: #000000;
  background: #ce4be8;
  background: -moz-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #ce4be8), color-stop(100%, #207ce5));
  background: -webkit-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
  background: -o-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
  background: -ms-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
  background: -webkit-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
  background: -o-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
  background: linear-gradient(135deg, #585758 0%, #585758 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ce4be8', endColorstr='#207ce5', GradientType=1 );
}

/*.ftco-animate {*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*}*/

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.ftco-counter .icon {
  width: 70px;
  /*height: 70px;*/
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-top: -7px;

}

.ftco-counter .icon span {
  color: #fff;
  font-size: 48px;
}

.ftco-counter .text strong.number {
  font-weight: 700;
  font-size: 40px;
  color: #ee3824;
}

.ftco-counter .text span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.col-md-3.d-flex.counter-wrap.ftco-animate.fadeInUp.ftco-animated.addRow {
  padding-top: 80px;
}

.ftco-counter .icon .fa {
    color:#fff;
    font-size: 40px;
}

.col-md-3.d-flex.counter-wrap.ftco-animate.fadeInUp.ftco-animated {
  background: #181d38;
  opacity: 0.7;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {

    .galOuterCont .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
    
    .homeServices .img-fluid {
  max-width: 100%;
  min-height: 235px !important;
}
}

@media (max-width: 360px) {
    .navbar-brand img {
      height: 59%;
      margin-bottom: 10px;
    }
    
    .col-4 {
        width:100%;
    }
    
    .projStat {
  margin-bottom: 58px !important;
}

.homeServices .img-fluid {
  max-width: 100%;
  min-height: 190px !important;
  max-height: 235px;
}
}

  @media (max-width: 414px) {
.top_header_area .top_nav li {
  display: inline-block;
  text-align: center;
  width: 100%;
}
}

  @media (max-width: 767px) {
.top_header_area .container {
  width: 94% !important;
  max-width: 94% !important;
  padding: 0 !important;
}
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
    
    .homeServices .img-fluid {
  max-width: 100%;
  min-height: 235px !important;
}

.navbar-nav.top_nav {
  /*float: left;*/
  margin: 0;
}

.navbar-nav.top_nav > li {
  float: left;
}
.nav.top_nav > li {
  position: relative;
  display: block;
}
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

  @media (min-width: 1200px) {
    .top_header_area .container {
      width: 1260px;
    }

    .top_header_area .container::before {
        display: table;
        content: " ";
    }
}


