:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --dark: #15233C;
    --logo:#2a5380;
    --header:#0ca59d;
    --blue: #007bff;
    --red: #973232;
    --white: #fff;
    /* Secondary colors */
    --color-secondary: #61768b;
    --color-secondary-light: #778da3;
    --color-secondary-dark: #4e6377;
  
    --color-secondary-rgb: 97, 118, 139;
    --color-secondary-light-rgb: 119, 141, 163;
    --color-secondary-dark-rgb: 78, 99, 119;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 
  }
  

  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    overflow-x: hidden;
  }
  
  a {
    color: #106eea;
    text-decoration: none;
  }
  
  a:hover {
    color: #3b8af2;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Roboto", sans-serif;
  }
  

  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 75px;
    z-index: 996;
    background: var(--logo);
    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: var(--logo);
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
  #topbar {
    background: var(--dark);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
  }
  
  #topbar .contact-info i {
    font-style: normal;
    color: #fff;
  }
  
  #topbar .contact-info i a,
  #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
  }
  
  #topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
  }
  
  #topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  #topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
  }
  
  #topbar .social-links a:hover {
    color: white;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header.fixed-top {
    height: 70px;
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
  }
  
  #header .logo a {
    color: #222222;
  }
  
  #header .logo a span {
    color: var(--logo);
  }
  
  #header .logo img {
    max-height: 150px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }
  
  /*--------------------------------------------------------------
  # 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 28px;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    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: var(--logo);
    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: var(--logo);
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 12px 25px;
    margin-left: 30px;
    color: #fff;
    line-height: 1;
    text-decoration: none;
  background: var(--logo);
  border: 2px solid white;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: 0.5s all;
          transition: 0.5s all;
  box-shadow: 0px 0px 60px 0px rgba(22, 71, 86, 0.6);
  outline: none !important;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    background: #748ec6;
    color: #fff;
    text-decoration: none;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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-weight: 400;
  }
  
  .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: var(--logo);
  }
  
  .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: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @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(9, 9, 9, 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: #222222;
  }
  
  .navbar-mobile>ul>li {
    padding: 0;
  }
  
  .navbar-mobile a:hover:before,
  .navbar-mobile li:hover>a:before,
  .navbar-mobile .active:before {
    visibility: hidden;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: var(--logo);
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 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: #106eea;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }


  /**
  * Mobile Bottom Navigation 
  */

  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    
    z-index: 1000;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: flex;
    padding: 5px 0;
    box-shadow: 0 -2px 5px -2px #333;
    background-color: #fff;
    }
    
    .mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    }
    .mobile-bottom-nav__item a{
    color:#000 !important;
    font-size: 11px;
    }
    .mobile-bottom-nav__item--active {
    color: #159517;
    }
    .h300 img{
    height: 300px;
  }
    .mobile-bottom-nav__item-content a i {
      font-size: 22px;
      color: #2A56A5;
      display: block;
      margin-bottom: 3px;
  
    }
    
    .mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
    }

  /**
  * Modal Popup
  */

  .pdn{
    padding: 10px 10px !important;
    width: 180px;
  }
  .mod_head{
    background: linear-gradient(to right,#2a5380, #1E8DCC );
  }
  .modal-title{
    color: #fff;
  }
  .vrt{
    vertical-align: middle;
  }
  .btn-close{
    background-image:  url('../img/png/cl.png') ;
    opacity: 1;
  }
  .bgh{
    background: linear-gradient(to right,#2a5380, #1E8DCC );
  }
 
  .h45{
    height: 45px !important;
  }
  .contact-forms .form-group {
    margin-bottom: 31px;
}
.ltp{
  padding: 20px !important;
    letter-spacing: 1px;
}
  
  
  
  /*========================================
            Buttons Style
  ========================================*/
  .btn-blue {
    background: var(--logo);
    padding: 10px 28px;
    border: 2px solid white;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    -webkit-transition: 0.5s all;
            transition: 0.5s all;
    box-shadow: 0px 0px 60px 0px rgba(22, 71, 86, 0.6);
    outline: none !important; }
  
  .btn-blue:hover,
  .btn-blue:focus,
  .btn-blue:active {
    background: var(--logo);
    color: white; }
  
    .btn-red {
      background: white;
      padding: 10px 28px;
      border: 2px solid var(--red);
      color: var(--red);
      border-radius: 20px;
      font-weight: 700;
      letter-spacing: 0.08em;
      -webkit-transition: 0.5s all;
              transition: 0.5s all;
      box-shadow: 0px 0px 60px 0px var(--red);
      outline: none !important; }
    
    .btn-red:hover,
    .btn-red:focus,
    .btn-red:active {
      background: var(--red);
      color: white; }
  
  .btn-transparent {
    background: transparent;
    padding: 10px 28px;
    color: #fff;
    border: 2px solid var(--red);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.08em;
    -webkit-transition: 0.5s all;
            transition: 0.5s all;
    outline: none !important; }
  
  .btn-transparent:hover,
  .btn-transparent:focus,
  .btn-transparent:active {
    background: #fff;
    color: #496174; }
  
  .btn-white {
    background: #fff;
    padding: 10px 28px;
    color: #496174;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.08em;
    -webkit-transition: 0.5s all;
            transition: 0.5s all;
    outline: none !important; }
  
  .btn-white:hover,
  .btn-white:focus,
  .btn-white:active {
    background: transparent;
    color: #fff; }
  
  
  /*** Button ***/
  .btn {
    transition: .5s;
  }
  
  .btn.btn-primary,
  .btn.btn-outline-primary:hover,
  .btn.btn-secondary,
  .btn.btn-outline-secondary:hover {
    color: #FFFFFF;
  }
  
  .btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
  }
  
  .btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
  }
  
  .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;
  }
  .whats-app {
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  font-size: 45px;
  box-shadow: 5px 5px 3px var(--logo);
  text-decoration: none;
  
  }
  
  .whats-app1 {
  text-decoration: none;
  }
  




  #home {
    position: relative;
    padding: 60px 0px 40px 0px;
  
    background: linear-gradient(rgba(1, 94, 201, 0.579), rgba(221, 50, 136, 0.546)), url(../img/home/main.png) center right no-repeat;
  
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    #home .caption {
      padding: 60px 0; }
      #home .caption h2 {
        color: #fff; }
      #home .caption p {
        font-size: 18px;
        margin-top: 25px;
        color: #fff; }
      #home .caption .btn {
        margin-top: 25px; }
      #home .caption .btn-blue {
        margin-left: 15px; }
        #home .caption .btn-blue i {
          position: relative;
          top: 5px;
          margin-right: 10px; }
    #home .signup-form {
      background-color: #fff;
      padding: 45px;
      border-radius: 5px; }
      #home .signup-form input {
        border: 1px solid #eee;
        height: 38px;
        box-shadow: none !important; }
      #home .signup-form input:focus {
        border-color: #44c5ee; }
      #home .signup-form .form-control {
        font-size: 16px;
        padding: 10px 15px;
        color: #555;
        background-color: #fff;
        border-radius: 3px; }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; }
  
    @media (max-width: 992px) {
        #home .container {
          text-align: center; }
          #home .container h1 {
            font-size: 36px; }
          #home .container h2 {
            font-size: 26px; }
      
        section .col-md-4 {
          margin-bottom: 40px; }
      
        #newsletter .form-container .form-inline .btn {
          position: relative;
          right: 143px; } }
      @media (max-width: 767px) {
        #home .container {
          text-align: center; }
          #home .container h1 {
            font-size: 34px; }
          #home .container h2 {
            font-size: 24px; }
          }
  
          .booking-form {
    
            background: #ffffff;
            padding: 20px 20px 20px 20px;
            border-radius: 10px;
        }
        .booking-form h3 {
            color: #19191a;
            margin-bottom: 22px;
        }
        .booking-form form .check-date {
            position: relative;
            margin-bottom: 15px;
        }
        .booking-form form .check-date label {
            font-size: 14px;
            color: #707079;
            display: block;
            margin-bottom: 10px;
        }
        .booking-form form .check-date input {
            width: 100%;
            height: 50px;
            border: 2px solid #ebebeb;
            border-radius: 1px;
            font-size: 14px;
            color: #707079;
            padding-left: 20px;
        }
        .booking-form form .check-date i {
            color: #dfa974;
            position: absolute;
            right: 18px;
            bottom: 17px;
        }
        .booking-form form .select-option {
            margin-bottom: 15px;
        }
        .booking-form form .select-option label {
            font-size: 14px;
            color: #707079;
            display: block;
            margin-bottom: 10px;
        }
        .booking-form form .select-option .nice-select {
            border-radius: 2px;
            border: 1px solid #ebebeb;
            height: 50px;
            line-height: 50px;
            outline: none;
            padding-left: 20px;
            width: 100%;
            float: none;
        }
        .booking-form form .select-option .nice-select:after {
            border-bottom: 2px solid #dfa974;
            border-right: 2px solid #dfa974;
            height: 10px;
            margin-top: 0;
            right: 20px;
            width: 10px;
            top: 36%;
        }
        .booking-form form .select-option .nice-select span {
            font-size: 16px;
            color: #19191a;
            text-transform: uppercase;
            font-weight: 500;
        }
        .booking-form form .select-option .nice-select .list {
            margin-top: 0;
            width: 100%;
        }
        .booking-form form button {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            border: 1px solid #dfa974;
            border-radius: 2px;
            color: #dfa974;
            font-weight: 500;
            background: transparent;
            width: 100%;
            height: 46px;
            margin-top: 30px;
        }
  
        .ftco-section {
            padding: 7em 0;
            position: relative;
        
        }
            @media (max-width: 767.98px) {
              .ftco-section {
                padding: 6em 0; } }
        
  /*========================================
            Section Tittle Style
  ========================================*/
  
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #e7f1fd;
    color: var(--logo);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
  }
  
  .section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
  }
  
  .section-title h3 span {
    color: var(--logo);
  }
  
  .section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
  }
  
  @media (min-width: 1024px) {
    .section-title p {
      width: 50%;
    }
  }
  
  /*========================================
            Managed IT Services
  ========================================*/
  
  .ftco-section-bg-1 {
    position: absolute;
    top: 150px;
    right: 17%;
  }
  
  @media (max-width: 767px) {
    .ftco-section-bg-1 {
      display: none;
    }
  }
  
  .ftco-section-bg-2 {
    position: absolute;
    top: 610px;
    left: 40px;
  }
  
  @media (max-width: 767px) {
    .ftco-section-bg-2 {
      display: none;
    }
  }
  
  .ftco-section-bg-3 {
    position: absolute;
    top: 1020px;
    right: 0%;
  }
  
  @media (max-width: 767px) {
    .ftco-section-bg-3 {
      display: none;
    }
  }
  
  
       
  /*========================================
            IT Services
  ========================================*/      
  
                
  .services-2 {
    padding: 20px; }
    @media (min-width: 768px) {
      .services-2 {
        margin-top: 30px; } }
    .services-2 .icon {
      position: relative;
      z-index: 0;
      width: 70px;
      height: 70px;
      margin: 0 auto;
      margin-bottom: 10px; }
      .services-2 .icon:after, .services-2 .icon:before {
        position: absolute;
        content: '';
        z-index: -1;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1); }
      .services-2 .icon:after {
        bottom: 0;
        left: 5px;
        width: 40px;
        height: 40px; }
      .services-2 .icon:before {
        top: 0;
        right: 0;
        width: 20px;
        height: 20px; }
      .services-2 .icon span {
        line-height: 0;
        font-size: 60px;
        color: #848484; }
    .services-2 .text h3 {
      font-size: 20px;
      font-weight: 600; }
      .services-2 .text p i {
        line-height: 0;
        background: #ecf3ff;
        padding: 4px;
        margin-right: 10px;
        font-size: 12px;
        border-radius: 3px;
        transition: 0.3s; 
    }
  
    .services-2 .text p i:hover {
        background: #4154f1;
        color: #fff;
    }
  
  
    /*--------------------------------------------------------------
  # Values
  --------------------------------------------------------------*/
  .values .box {
    background-color: #f7fbff;
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
  }
  
  .values .box img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
  }
  
  .values .box h3 {
    font-size: 24px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .values .box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  }
  
  .values .box:hover img {
    transform: scale(1);
  }
  
  
  
  /*--------------------------------------------------------------
  # Index Page
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about1 .content {
    background-color: #f6f9ff;
    padding: 40px;
  }
  
  
  .about1 p {
    margin: 15px 0 30px 0;
    line-height: 24px;
  }
  
  .about1 img {
  width:400px;
  }
  
  .about1 .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #4154f1;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
  }
  
  .about1 .btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .about1 .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .about1 .btn-read-more:hover i {
    transform: translateX(5px);
  }
  
  
  
  /*--------------------------------------------------------------
  # Featured Services
  --------------------------------------------------------------*/
  .featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }
  
  .featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #cbe0fb;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .featured-services .icon-box:hover::before {
    background: var(--logo);
    top: 0;
    border-radius: 0px;
  }
  
  .featured-services .icon-box:hover img {
   background: white;
   border-radius: 50px;
   padding: 10px;
  }
  
  
  
  
  .featured-services .icon {
    margin-bottom: 15px;
  }
  
  .featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: var(--logo);
    transition: all 0.3s ease-in-out;
  }
  
  .featured-services .icon img {
   height: 100px;
   width: 100px;
    line-height: 1;
    color: var(--logo);
    transition: all 0.3s ease-in-out;
  }
  
  .featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
   
  }
  
  .featured-services .title a {
    /* color: #111; */
    color: var(--logo);
  }
  
  .featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  
  .featured-services .icon-box:hover .title a,
  .featured-services .icon-box:hover .description {
    color: #fff;
  }
  
  .featured-services .icon-box:hover .icon i {
    color: #fff;
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features3 {
    padding-top: 20px;
  }
  
  .features3 .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: ease-in-out 0.3s;
    box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  }
  
  .features3 .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
  }
  
  .features3 .icon-box img {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    height: 50px;
  }
  
  .features3 .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 18px;
  }
  
  .features3 .icon-box h3 a {
    color: #493c3e;
    transition: ease-in-out 0.3s;
  }
  
  .features3 .icon-box:hover a {
    /* color: #e43c5c; */
    transform: scale(1.1);
  }
  
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .cta {
    padding: 0;
    margin-bottom: 60px;
  }
  
  .cta .container {
    padding: 80px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: 15px;
  }
  
  @media (max-width: 992px) {
    .cta .container {
      padding: 60px;
    }
  }
  
  .cta .content h3 {
    color: var(--color-secondary);
    /* font-size: 48px; */
    font-weight: 700;
  }
  
  .cta .content h3 em {
    font-style: normal;
    position: relative;
  }
  
  .cta .content h3 em:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    background: rgba(var(--color-primary-rgb), 0.5);
    z-index: -1;
  }
  
  .cta .content p {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 18px;
  }
  
  .cta .content .cta-btn {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    background: rgba(var(--logo), 0.9);
  }
  
  .cta .content .cta-btn:hover {
    background: var(--logo);
  }
  
  .cta .img {
    position: relative;
  }
  
  .cta .img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.5);
    border-radius: 15px;
    transform: rotate(12deg);
  }
  
  .cta .img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.9);
    border-radius: 15px;
    transform: rotate(6deg);
  }
  
  .cta .img img {
    position: relative;
    z-index: 3;
    border-radius: 15px;
  }
  
  
  
  
  
       
  /*========================================
            Animation 
  ========================================*/  
  
  
  
    .left-right-animation {
      animation: left_right 3s ease-in infinite alternate-reverse;
    }
    
    @-webkit-keyframes left_right {
      0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
      }
      100% {
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);
      }
    }
    
    @keyframes left_right {
      0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
      }
      100% {
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);
      }
    }
    
    .up-down-animation {
      animation: up_down 3s ease-in infinite alternate-reverse;
    }
    
    @-webkit-keyframes up_down {
      0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
      }
      100% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
      }
    }
    
    @keyframes up_down {
      0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
      }
      100% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
      }
    }
    
    .up-down-animation1 {
      animation: up_down1 2s ease-in infinite alternate-reverse;
    }
    
    @-webkit-keyframes up_down1 {
      0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
      }
      100% {
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
      }
    }
    
    @keyframes up_down1 {
      0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
      }
      100% {
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
                
      }
    }
    
    .rotation-animation {
      -webkit-animation: rotation 4s infinite linear;
    }
    
    @-webkit-keyframes rotation {
      0% {
        -webkit-transform: rotate(0deg);
      }
      25% {
        -webkit-transform: rotate(3deg);
      }
      50% {
        -webkit-transform: rotate(0deg);
      }
      75% {
        -webkit-transform: rotate(-3deg);
      }
      100% {
        -webkit-transform: rotate(0deg);
      }
    }
    
    .hero-bg-5 {
      position: absolute;
      top: 80px;
      right: 17%;
    }
    
    @media (max-width: 767px) {
      .hero-bg-5 {
        display: none;
      }
    }
    
    .hero-bg-3 {
      position: absolute;
      top: 80px;
      left: 30%;
    }
    
    @media (max-width: 767px) {
      .hero-bg-3 {
        display: none;
      }
    }
    
    .hero-bg-1 {
    position: absolute;
    left: 30px;
    top: 550px;
    }
    
    @media (max-width: 767px) {
      .hero-bg-1 {
        display: none;
      }
    }
    
    .ftco-section-bg-1 {
      position: absolute;
      top: 150px;
      right: 17%;
    }
    
    @media (max-width: 767px) {
      .ftco-section-bg-1 {
        display: none;
      }
    }
    
    .ftco-section-bg-2 {
      position: absolute;
      top: 610px;
      left: 40px;
    }
    
    @media (max-width: 767px) {
      .ftco-section-bg-2 {
        display: none;
      }
    }
    
    .ftco-section-bg-3 {
      position: absolute;
      top: 1020px;
      right: 0%;
    }
    
    @media (max-width: 767px) {
      .ftco-section-bg-3 {
        display: none;
      }
    }
    
    
    .features1-bg-1 {
      position: absolute;
      top: 150px;
      right: 17%;
    }
    
    @media (max-width: 767px) {
      .features1-bg-1 {
        display: none;
      }
    }
    
    .features1-bg-2 {
      position: absolute;
      top: 400px;
      right: 0%;
    }
    
    @media (max-width: 767px) {
      .features1-bg-2 {
        display: none;
      }
    }
    
    
    .service-bg{
      position: absolute;
      top: 10px;
      right: 17%;
    }
    
    @media (max-width: 767px) {
      .service-bg {
        display: none;
      }
    }
    
    
    
    @media (max-width: 767px) {
      .service-bg-shape-1 {
        display: none;
      }
    }
    
    
    @media (max-width: 767px) {
      .service-bg-shape-2 {
        display: none;
      }
    }
    
  
     
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features1 .feature-box {
    padding: 24px 20px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
  }
  
  .features1 .feature-box h3 {
    font-size: 18px;
    color: var(--logo);
    font-weight: 700;
    margin: 0;
  }
  
  .features1 .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .features1 .feature-box:hover i {
    background: var(--logo);
    color: #fff;
  }
  
  .features1 .feture-tabs {
    margin-top: 120px;
  }
  
  .features1 .feture-tabs h3 {
    color: var(--logo);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .features1 .feture-tabs h3 {
      font-size: 28px;
    }
  }
  
  .features1 .feture-tabs .nav-pills {
    border-bottom: 1px solid #eee;
  }
  
  .features1 .feture-tabs .nav-link {
    background: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    padding: 12px 0;
    margin-right: 25px;
    margin-bottom: -2px;
    border-radius: 0;
  }
  
  @media (max-width: 768px) {
    .features1 .feature-icons h3 {
      font-size: 28px;
    }
  }
  
  .features1 .icon-box {
    display: flex;
  }
  
  .features1 .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--logo);
  }
  
  .features1 .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: var(--logo);
    margin-right: 15px;
  }
  
  .features1 .icon-box p {
    font-size: 15px;
    color: #848484;
  }
  
  
  
  /* 
  ---------------------------------------------
  About Us Style
  --------------------------------------------- 
  */
  
  #services {
    margin-top: 120px;
  }
  
  .about-us {
    background-image: url(../img/home/Group\ 9.png);
    background-color: var(--logo);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .about-us .left-image img {
    /* margin-right: 45px; */
    width: 300px;
  }
  
  .about-us .services .item {
    margin-bottom: 30px;
    display: flex;
  }
  
  .about-us .services .item .icon {
    float: left;
    margin-right: 25px;
    background-color: white;
    border-radius: 50px;
    width: 80px;
    height: 80px;
  }
  
  .about-us .services .item .icon img {
    max-width: 70px;
   
  }
  
  .about-us .services .item h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .about-us .services .item p {
    color: #fff;
  }
  
  
  
  /*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
  .counts {
    padding: 70px 0 60px;
  }
  
  .counts .count-box {
    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 10px;
    transition: 0.3s;
  }
  
  .counts .count-box:hover {
    transform: scale(1.1);
  }
  
  
  
  
  .counts .count-box img {
    /* font-size: 42px; */
    width: 40px;
    line-height: 0;
    margin-right: 20px;
    color: var(--logo);
  }
  
  .counts .count-box span {
    font-size: 20px;
    display: block;
    font-weight: 600;
    color: var(--logo);
  }
  
  .counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  
  
  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients .clients-slider .swiper-slide img {
    /* opacity: 0.5; */
    transition: 0.3s;
  }
  
  .clients .clients-slider .swiper-slide img:hover {
    opacity: 1;
  }
  
  .clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--logo);
  }
  
  .clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--logo);
  }
  
  
  /*** Appointment ***/
  .appointment {
    background: linear-gradient(#2a5380, #2a54805c), url(../img/home/1-1.png) center center no-repeat;
    background-size: cover;
  }
  
  
  
  
  




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/home/main.png") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
  height: 300px;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(26, 46, 64, 0.85);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top img{
width: 280px;
height: 130px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #fdc134;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #fcb102;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #284864;
  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: #fcb102;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #1a2e40;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
  float: center;
}

#footer .credits {
  float: center;
  text-align: center;
  font-size: 16px;
}

#footer .credits a:hover{
color: var(--red);
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    padding: 5px;
    float: none;
    text-align: ceneter;
  }
}