:root {
    /**
     * colors
     */
  
    --st-patricks-blue: hsl(236, 57%, 28%);
    --amaranth-purple: hsl(335, 88%, 38%);
    --royal-blue-dark: hsl(231, 68%, 21%);
    --chrome-yellow: hsl(39, 100%, 52%);
    --space-cadet-1: hsl(230, 41%, 25%);
    --space-cadet-2: hsl(230, 59%, 16%);
    --winter-sky_50: hsla(335, 87%, 53%, 0.5);
    --purple-navy: hsl(236, 26%, 43%);
    --ksu-purple: hsl(275, 54%, 33%);
    --winter-sky: hsl(335, 87%, 53%);
    --razzmatazz: hsl(335, 87%, 51%);
    --platinum: hsl(0, 0%, 90%);
    --black_70: hsla(0, 0%, 0%, 0.7);
    --rajah: hsl(29, 99%, 67%);
    --white: hsl(0, 0%, 100%);
  
    --gradient-1: linear-gradient(to right, #f8340c, #f8ab1d);
    --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));
  
    /**
     * typography
     */
  
    --ff-source-sans-pro: "Source Sans Pro", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
  
    --fs-1: 4.2rem;
    --fs-2: 3.8rem;
    --fs-3: 3.2rem;
    --fs-4: 2.5rem;
    --fs-5: 2.4rem;
    --fs-6: 2rem;
    --fs-7: 1.8rem;
    --fs-8: 1.5rem;
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
  
    /**
     * border radius
     */
  
    --radius-4: 4px;
    --radius-12: 12px;
  
    /**
     * spacing
     */
  
    --section-padding: 40px;
	
	--section-padding-footer: 19px;
  
    /**
     * transition
     */
  
    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
  
    /**
     * shadow
     */
  
    --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
  }
  
  /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon {
    display: block;
  }
  
  button,
  input {
    background: none;
    border: none;
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  input {
    width: 100%;
  }
   
  img {
    height: auto;
  }
  
  address {
    font-style: normal;
  }
  
  html {
    font-family: var(--ff-poppins);
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    color: var(--purple-navy);
    font-size: 18px;
    font-family: serif;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Solway', serif;
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
     font-size: 18px;
    font-family: serif;
}
p{
	color: #000 !important;
}

 .container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x, .75rem);
 padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}
 
.about-text p {
  font-size: 18px; /* Font size for testimonial text */
  font-style:  serif;
  padding: 10px;
  margin-bottom: 10px;
  line-height: 10px;
  color: #000 !important;
}
  
  
.text-white{
	color: #fff !important;
}  
.pt-10{
	padding-top: 10px;
}  
.mt-5{
	margin-top: 5rem;
}  
.pt-5{
  padding-top: 5rem;
}
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 95%);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
  }
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  .container {
    padding-inline: 15px;
  }
  
  .h2,
  .h3 {
    font-family: var(--ff-source-sans-pro);
  }
  
  .btn {
    background-image: var(--gradient-2);
    background-size: 200%;
    color: var(--white);
    padding: 12px 35px;
    font-size: var(--fs-8);
    font-weight: var(--fw-500);
    border-radius: 0 25px;
    transition: var(--transition-2);
  }
  
  .btn:is(:hover, :focus) {
    background-position: right;
  }
  
  .w-100 {
    width: 100%;
  }
  
  .banner-animation {
    animation: waveAnim 2s linear infinite alternate;
  }
  
  @keyframes waveAnim {
    0% {
      transform: translate(0, 0) rotate(0);
    }
    100% {
      transform: translate(2px, 2px) rotate(1deg);
    }
  }
  
  .section {
    padding-block: var(--section-padding);
  }
  
  .section-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-3);
    margin-block-end: 60px;
    max-width: max-content;
    margin-inline: auto;
    font-family: 'sarif';
  }
  
  
  a:focus, a:hover {
    color: #ff0000;
    text-decoration: none !important;
}
  
  .underline {
    position: relative;
  }
  
  .underline::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background-image: var(--gradient-2);
    border-radius: 10px;
  }
  
  :is(.service-card, .features-card) .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
  }
  
  :is(.service-card, .features-card, .blog-card) .text {
    font-size: var(--fs-8);
  }
  
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bg-blue{
      background-color: #b4cedf33 !important;
  }

  .bg-gray{
      background-color:hsl(0, 0%, 80%) !important;
  }
  
  /* Slider Banner */ 
   
  /* Ends Slider Banner */
  
  
  /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/
  
  .header .btn {
    display: none;
  }
  
  .header {
    --color: var(--white);
  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 14px;
    z-index: 4;
    transition: var(--transition-1);
  }
  
  .header.active {
    --color: var(--st-patricks-blue);
  
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  .logo {
    color: var(--color);
    font-family: var(--ff-source-sans-pro);
    font-size: var(--fs-3);
  }
  
  .nav-open-btn {
    color: hsl(5.31deg 100% 55.69%);
    font-size: 32px;
    padding: 4px;
  }
  
  .navbar {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: -280px;
    width: 100%;
    max-width: 280px;
    min-height: 100%;
    padding: 20px;
    visibility: hidden;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
  }
  
  .navbar.active {
    transform: translateX(280px);
    visibility: visible;
    transition: 0.5s var(--cubic-out);
  }
  
  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px 30px;
  }
  
  .navbar-top .logo {
    color: var(--st-patricks-blue);
    font-size: 4.2rem;
    font-weight: var(--fw-700);
  }
  
  .nav-close-btn {
    color: #ff3146;
    font-size: 2.8rem;
    padding: 4px;
  }
  
  .navbar-item:not(:last-child) {
    border-bottom: 1px solid var(--platinum);
  }
  
  .navbar-link {
    color: var(--space-cadet-1);
    font-size: 20px;
    font-weight: var(--fw-600);
    padding-block: 12px;
  }

  .navbar-link a:hover {

    background-color:#0f5ac9;
    padding: 20px;
    transition: 0.2s ease-in-out;

  }
  
  .overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black_70);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .burger{
  display: block;
  width: 28px;
  height: 28px;
  margin-top: 14px;
  }
  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  
  .hero {
    background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg-bottom.png"),
      url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg.png"), var(--gradient-1);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: -280px bottom, center, center;
    background-size: cover, cover, auto;
    padding-block-start: 120px;
    padding-block-end: var(--section-padding);
  }
  
  .hero-content {
    margin-block-end: 50px;
  }
  
  .hero-subtitle {
    color: var(--chrome-yellow);
    font-family: var(--ff-source-sans-pro);
    font-size: var(--fs-7);
    margin-block-end: 15px;
  }
  
  .hero-title {
    color: var(--white);
    font-size: var(--fs-1);
    margin-block-end: 20px;
  }
  
  .hero-text {
    color: var(--white);
    font-size: var(--fs-8);
    margin-block-end: 30px;
  }
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .about-banner {
    margin-block-end: 30px;
  }
  
  .about .section-title {
    margin-inline: 0;
    font-family: serif;
  }
  
  .about .underline::before {
    left: 0;
    transform: translateX(0);
  }
  
  .stats-list {
    display: grid;
    gap: 30px;
  }
  
  .stats-card {
    text-align: center;
    padding: 15px;
    box-shadow: 0 5px 20px 9px hsla(220, 63%, 33%, 0.1);
    border-radius: var(--radius-12);
  }
  
  .stats-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
  }
  
  .stats-text {
    font-size: var(--fs-8);
  }
  
  /*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/
  
  .service-list {
    display: grid;
    gap: 30px;
  }
  
  .service-card {
    padding: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
  }
  
  .service-card .card-icon {
    display: block;
    border-radius: 7px 7px 0 0;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
  }

  

  .service1:hover {
    background: #b4cedf33; 
    transform: scale(1.05);
  }
  
  .service1:hover i {
    color: #fff;
  }
  
  .service-card:hover .card-icon {
    background-color: var(--winter-sky);
  }
  
  
  .service-card:hover .card-icon ion-icon {
    color: var(--white);
    align-items: center;
    place-content: center;
  }
  
  .service-card .title {
    text-align: center;
    margin-block-end: 15px;
  }
  
  .service-card .text {
    text-align: center;
    margin-block-end: 20px;
  }
  
  .service-card .card-btn {
    margin-inline: auto;
    padding: 15px;
    border: 1px solid var(--winter-sky);
    border-radius: 50%;
    color: var(--winter-sky);
    transition: var(--transition-1);
  }
  
  .service-card .card-btn:is(:hover, :focus) {
    color: var(--white);
    background-color: var(--winter-sky);
  }
  
  /*-----------------------------------*\
    #FEATURE
  \*-----------------------------------*/
  
  .features-list > li:first-child {
    margin-block-end: 30px;
  }
  
  .features-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .features-card .icon {
    background-image: var(--gradient-1);
    background-size: 200%;
    color: var(--white);
    min-width: max-content;
    max-width: max-content;
    font-size: 22px;
    padding: 11px;
    border-radius: 50%;
  }
   
  
  .features-card .title {
    margin-block-end: 10px;
  }
  
  .features-banner {
    margin-block: 40px;
  }
  
  .features-banner > img {
    max-width: max-content;
    margin-inline: auto;
  }
  
  /*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/
  
  .blog {
    padding-block-end: 120px;
  }
  
  .blog-list {
    display: grid;
    gap: 30px;
  }
  
  .blog-card {
    padding: 20px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
  }
  
  .blog-card .banner {
    border-radius: var(--radius-12);
    overflow: hidden;
    margin-block-end: 15px;
  }
  
  .blog-card .banner img {
    transition: var(--transition-2);
  }
  
  .blog-card .banner a:is(:hover, :focus) img {
    transform: scale(1.1);
  }
  
  .blog-card .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-6);
    line-height: 1.2;
    margin-block-end: 15px;
  }
  
  .blog-card .title > a {
    color: inherit;
  }
  
  .blog-card .title > a:is(:hover, :focus) {
    color: var(--razzmatazz);
  }
  
  .blog-card .text {
    margin-block-end: 15px;
  }
  
  .blog-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: var(--fs-8);
    color: var(--purple-navy);
    font-weight: var(--fw-500);
    padding-block-end: 10px;
  }
  
  .blog-card .meta ion-icon {
    color: var(--winter-sky);
    font-size: 22px;
    --ionicon-stroke-width: 35px;
  }
  
  .publish-date,
  .comment {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .comment {
    color: inherit;
    margin-inline-start: auto;
  }
  
  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  
  .footer {
    font-size: var(--fs-8);
    font-family: 'sarif';
  }
  
  .footer a {
    color: inherit;
  }
  
  .footer-top {
    background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/footer-bg.png"), var(--gradient-1);
    background-repeat: no-repeat; 
    background-position: center, center;
    color: var(--white);
  }
  
  .footer-brand {
    margin-block-end: 30px;
  }
  
  .footer-brand .logo {
    font-weight: var(--fw-700);
    margin-block-end: 15px;
  }
  
  .footer-brand .text {
    font-size: 18px;
    margin-block-end: 20px;
  }
  
   
  
  .social-icons{
    display: flex;
    padding:30px; 
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
  }
  .social-icons a{
    color:#fff;
    line-height:30px;
    font-size:30px;
    margin: 0 5px;
    text-decoration:none;
    
  }
  .social-icons a i{
    line-height:30px;
    font-size:30px;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
  }
  .social-icons a:hover i{
    box-shadow: 0px 0px 150px #000000;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(1.5);
  }


  .footer-top .social-link {
    background-color: var(--white);
    color: var(--winter-sky);
    font-size: 18px;
    padding: 18px;
    border-radius: 50%;
  }
  
  .footer-top .social-link:is(:hover, :focus) {
    background-image: var(--gradient-2);
    color: var(--white);
  }
  
  .footer-list:not(:last-child) {
    margin-block-end: 25px;
  }
  
  .footer-list-title {
    font-family: var(--ff-source-sans-pro);
    font-size: var(--fs-5);
    font-weight: var(--fw-700);
    margin-block-end: 15px;
  }
  
  .footer-link {
    padding-block: 5px;
    font-family: 'sarif';
    font-size: 17px;
  }
  
  :is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) {
    text-decoration: none;
  }
  
  .footer-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
  }
  
  .footer-item-icon {
    background-image: var(--gradient-2);
    padding: 13px;
    border-radius: 50%;
  }
  
  .footer-bottom {
    background-color: #a94442;
    padding: 20px;
    text-align: center;
    color: var(--white);
  }
  
  .copyright-link {
    display: inline-block;
    text-decoration: none;
  }
  
  .copyright-link:is(:hover, :focus) {
    text-decoration: none;
  }
  
  /*-----------------------------------*\
    #GO TO TOP
  \*-----------------------------------*/
  
  .go-top {
    position: fixed;
    bottom: 0;
    right: 15px;
    background-color: var(--winter-sky);
    color: var(--white);
    font-size: 2rem;
    padding: 8px;
    border-radius: var(--radius-4);
    box-shadow: -3px 3px 15px var(--winter-sky_50);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-1);
  }
  
  .go-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-15px);
  }
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 550px screen
   */
  
  @media (min-width: 550px) {
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 550px;
      margin-inline: auto;
    }
  
    .section-title {
      --fs-3: 3.6rem;
    }
  
    /**
     * HEADER
     */
  
    .header .btn {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-inline-start: auto;
    }
  
    /**
     * ABOUT
     */
  
    .stats-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    /**
     * BLOG
     */
  
    .blog-card {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
      gap: 20px;
      padding: 30px;
    }
  
    .blog-card .banner {
      margin-block-end: 0;
    }
  
    .blog-card .banner a {
      height: 100%;
    }
  
    /**
     * FOOTER
     */
  
    .footer-brand,
    .footer-list:not(:last-child) {
      margin-block-end: 0;
    }
  
  }
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 720px;
    }
  
    /**
     * HERO
     */
  
    .hero {
      min-height: 600px;
      display: grid;
      place-items: center;
    }
  
    .hero-content {
      margin-block-end: 0;
    }
  
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 30px;
    }
  
    /**
     * SERVICE
     */
  
    .service-list {
      grid-template-columns: 1fr 1fr;
    }
  
    /**
     * FEATURES
     */
  
    .features-list > li:first-child {
      margin-block-end: 0;
    }
  
    .features-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }
  
    /**
     * FOOTER
     */
  
  }
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
      /**
       * typography
       */
  
      --fs-1: 5.4rem;
    }
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 950px;
    }
  
    /**
     * HEADER
     */
  
    .header {
      padding-block: 10px;
	  background-color: rgb(235 235 235 / 27%);
    }
  
    .overlay,
    .nav-open-btn,
    .navbar-top {
      display: none;
    }
  
    .navbar,
    .navbar.active {
      all: unset;
      margin-inline-start: auto;
    }
  
    .header .btn {
      margin-inline-start: 0;
    }
  
    .navbar-list {
      display: flex;
      gap: 25px;
    }
  
    .navbar-item:not(:last-child) {
      border-bottom: none;
    }
  
    .navbar-link {
      color: hsl(5.31deg 100% 55.69%);
    }
  
    /**
     * HERO
     */
  
    .hero {
      min-height: 700px;
    }
  
    /**
     * ABOUT
     */
  
    .about .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  
    /**
     * SERVICE
     */
  
    .service-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    /**
     * FEATURES
     */
  
    .features-list {
      grid-template-columns: 1fr;
    }
  
    .features .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  
    .features .section-title {
      grid-column: 1 / 4;
    }
  
    .features-banner {
      margin-block: 0;
      display: grid;
      place-items: center;
    }
  
    /**
     * FOOTER
     */
  
  
    .footer-brand {
      grid-column: 1 / 5;
    }
  
    .footer-brand .text {
      max-width: 45ch;
    }
  }
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    .container {
      max-width: 1200px;
    }
  
    .section-title {
      --fs-3: 4.6rem;
    }
  
    /**
     * HERO
     */
  
    .hero {
      min-height: 800px;
    }
  
    /**
     * BLOG
     */
  
    .blog-list {
      grid-template-columns: 1fr 1fr;
    }
  
    .blog-card {
      height: 100%;
    }
  
    .blog-card .content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  
    /**
     * FOOTER
     */
  
  
    .footer-brand {
      grid-column: auto;
    }
  }
  



  /* slider css */
  .banner-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 550px;
    background: url('..//img/banner.jpg') center/cover no-repeat;
    position: relative;
    animation: fadeIn 2s ease-in-out;
    z-index: 1;
}
  /* end slider css */

  /* Counter Section */
  span.num {
    color: #2c2470; 
    place-items: center;
    font-weight: 600;
    font-size: 2em;
  }
  /* End Counter Section */


  /* Services Area */

  .bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #00a01d;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: #00a01d none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: #00a01d none repeat scroll 0 0;
  border-color: #00a01d;
}

.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid #00a01d;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.we-offer-area.text-center .item {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 21px 21px 21px;
}

.we-offer-area  .item img {  
  height: auto; 
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 15px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid #00a01d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
  background: #00a01d none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
  color: #ffffff;
}

.we-offer-area .item i {
  color: #00a01d;
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 600;
  text-transform: capitalize;
  color: #ff3146 ;
}

.we-offer-area .item p {
  margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
  background: var(--gradient-1);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
  border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
  background-color: #ffffff !important;
  color: #00a01d !important;
}

.we-offer-area.text-left .item i {
  background: #00a01d none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid #00a01d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}
/* Services Area */


.banner-slide {
	height: 100%;
	min-width: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
}


