/*---------------------------------------------------------------
    Template Name: Gaiety Multipage Portfolio Website
    Description: Gaiety Multipage Portfolio Website
    Author: Lucid Solutions
    Author URL: https://www.templatemonster.com/store/lucid_solutions/
    Version: 1.0.0
  -----------------------------------------------------------------
      CSS INDEX
      ==================
      1.  BASIC STYLES
      2.  HOMEPAGE STYLES
      3.  ABOUT US PAGE STYLES
      4.  SERVICE PAGE STYLES
      5.  PORTFOLIO PAGE STYLES
      6.  BLOG PAGE STYLES
      7.  BLOG DETAIL PAGE STYLES
      8.  SERVICE DETAIL PAGE STYLES
      9.  PORTFOLIO DETAIL PAGE STYLES


----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

  /* ==================
    1. BASIC STYLES 
  ================== */
  :root{  
      /* colors */
      --PrimaryColor:           rgba(45, 160, 168, 1);
      --SecondaryColor:         rgba(238, 248, 249, 1);
      --SecondaryColor2:        rgb(221, 249, 255); 
      --DangerColor:            rgb(106, 6, 6);
      --SuccessColor:           rgba(88, 210, 144, 1);
      --LightColor:             rgba(95, 95, 95, 1);
      --DarkColor:              rgba(29, 29, 29, 1);
      --WhiteColor:             rgb(255, 255, 255);
      --WarningColor:           rgb(253, 224, 71);
      --PrimaryRgb:             45, 160, 168;
      --SecondaryRgb:           31, 138, 146;
      --DangerRgb:              106, 6, 6;
      --SuccessRgb:             88, 210, 144;
      --LightRgb:               95, 95, 95;
      --DarkRgb:                29, 29, 29;
      --WhiteRgb:               255, 255, 255;
      --WarningRgb:             253, 224, 71;


      /* fonts */
      --PrimaryFont :           "Raleway", sans-serif;
  }



/* necessário para submenu  - sub menu */
.dropdown-submenu {
  position: relative;
}

/* submenu lateral */
.dropdown-submenu > .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
}

/*topo menu */
.dropdown-item.dropdown-toggle::after {
    float: right;
    margin-top: 6px;
}

/*texto justificado*/
.text-justify-force {
    text-align: justify !important;
}

/***************************/

/* exibir ao hover */
.dropdown-submenu:hover > .submenu {
  display: block;
}
  /* background colors */
  .bg-primary{
    background-color: var(--PrimaryColor) !important;
  }
  .bg-secondary{
    background-color: var(--SecondaryColor) !important;
  }
  .bg-secondary2{
    background-color: var(--SecondaryColor2) !important;
  }
  .bg-success{
  background-color: var(--SuccessColor) !important;
  }
  .bg-danger{
  background-color: var(--DangerColor) !important;
  }
  .bg-light{
  background-color: var(--LightColor) !important;
  }
  .bg-dark{
  background-color: var(--DarkColor) !important;
  }
  .bg-white{
  background-color: var(--WhiteColor) !important;
  }

  /* border colors */

  .border-primary{
    border-color: var(--PrimaryColor) !important;
  }
  .border-secondary{
    border-color: var(--SecondaryColor) !important;
  }
  .border-success{
  border-color: var(--SuccessColor) !important;
  }
  .border-danger{
  border-color: var(--DangerColor) !important;
  }
  .border-light{
  border-color: var(--LightColor) !important;
  }
  .border-dark{
  border-color: var(--DarkColor) !important;
  }
  .border-white{
  border-color: var(--WhiteColor) !important;
  }

  /* border colors */

  /* background colors shade */

  .bg-primary-shade{
    background-color: var(--PrimaryRgb) !important;
  }
  .bg-secondary-shade{
    background-color: var(--SecondaryRgb) !important;
  }
  .bg-success-shade{
  background-color: var(--SuccessRgb) !important;
  }
  .bg-danger-shade{
  background-color: var(--DangerRgb) !important;
  }
  .bg-light-shade{
  background-color: var(--LightRgb) !important;
  }
  .bg-dark-shade{
  background-color:  rgb(0 0 0 / 95%) !important;
  }
  .bg-white-shade{
  background-color: var(--BgWhiteRgb) !important;
  }
  .bg-white2-shade{
    background-color: var(--BgWhiteRgb) !important;
  }

  /* background colors opacity */

  /* buttons */

  .primary-btn{
    background-color: var(--PrimaryColor) !important;
    border-color: var(--PrimaryColor) !important ;
    color: var(--WhiteColor);
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .primary-btn:hover{
    background-color: #1d787e !important;
    border-color: #1d787e !important;
    color: var(--WhiteColor) !important;
  }
  .primary-outline-btn{
    background-color: unset !important;
    border-color: var(--PrimaryColor) !important ;
    color: var(--PrimaryColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .primary-outline-btn:hover{
    background-color: #1d787e !important;
    border-color: #1d787e !important;
    color: var(--WhiteColor) !important;
  }
  .secondary-btn{
    background-color: var(--SecondaryColor) !important;
    border-color: var(--SecondaryColor) !important;
    color: var(--DarkColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .secondary-btn:hover{
    background-color: rgb(143, 192, 197) !important;
    border-color: rgb(143, 192, 197) !important;
    color: var(--WhiteColor) !important;
  }
  .secondary-outline-btn{
    background-color: unset !important;
    border-color: var(--SecondaryColor) !important;
    color: var(--SecondaryColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .secondary-outline-btn:hover{
    background-color: #388f61 !important;
    border-color: #388f61 !important;
    color: var(--WhiteColor) !important;
  }
  .light-btn{
    background-color: var(--LightColor) !important;
    border-color: var(--LightColor) !important;
    color: var(--WhiteColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .light-btn:hover{
    background-color: rgb(134, 134, 134) !important;
    border-color: rgb(134, 134, 134) !important;
    color: var(--WhiteColor) !important;
  }
  .light-outline-btn{
    background-color: unset !important;
    border-color: var(--LightColor) !important;
    color: var(--LightColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .light-outline-btn:hover{
    background-color: var(--LightColor) !important;
    border-color: var(--LightColor) !important;
    color: var(--WhiteColor) !important;
  }
  .danger-btn{
    background-color: var(--DangerColor) !important;
    border-color: var(--DangerColor) !important;
    color: var(--WhiteColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .danger-btn:hover{
    background-color: rgb(68, 6, 6) !important;
    border-color: rgb(68, 6, 6) !important;
    color: var(--WhiteColor) !important;
  }
  .danger-outline-btn{
    background-color: unset !important;
    border-color: var(--DangerColor) !important;
    color: var(--DangerColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .danger-outline-btn:hover{
    background-color: var(--DangerColor) !important;
    border-color: var(--DangerColor) !important;
    color: var(--WhiteColor) !important;
  }
  .success-btn{
    background-color: var(--SuccessColor) !important;
    border-color: var(--SuccessColor) !important;
    color: var(--WhiteColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .success-btn:hover{
    background-color: rgb(64, 167, 112) !important;
    border-color: rgb(54, 150, 98) !important;
    color: var(--WhiteColor) !important;
  }
  .success-outline-btn{
    background-color: unset !important;
    border-color: var(--SuccessColor) !important;
    color: var(--SuccessColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .success-outline-btn:hover{
    background-color: var(--SuccessColor) !important;
    border-color: var(--SuccessColor) !important;
    color: var(--WhiteColor) !important;
  }
  .dark-btn{
    background-color: var(--DarkColor) !important;
    border-color: var(--DarkColor) !important;
    color: var(--WhiteColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .dark-btn:hover{
    background-color: rgb(36, 36, 36) !important;
    border-color: rgb(36, 36, 36) !important;
    color: var(--WhiteColor) !important;
  }
  .dark-outline-btn{
    background-color: unset !important;
    border-color: var(--DarkColor) !important;
    color: var(--DarkColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .dark-outline-btn:hover{
    background-color: var(--DarkColor) !important;
    border-color: var(--DarkColor) !important;
    color: var(--WhiteColor) !important;
  }
  .white-btn{
    background-color: var(--WhiteColor) !important;
    border-color: var(--WhiteColor) !important;
    color: var(--DarkColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .white-btn:hover{
    background-color: rgb(229, 229, 229) !important;
    border-color: rgb(229, 229, 229) !important;
    color: var(--DarkColor) !important;
  }
  .white-outline-btn{
    background-color: unset !important;
    border-color: var(--WhiteColor) !important;
    color: var(--WhiteColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .white-outline-btn:hover{
    background-color: var(--WhiteColor) !important;
    border-color: var(--WhiteColor) !important;
    color: var(--DarkColor) !important;
  }
  .warning-btn{
    background-color: var(--WarningColor) !important;
    border-color: var(--WarningColor) !important;
    color: var(--DarkColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .warning-btn:hover{
    background-color: rgb(197, 173, 51) !important;
    border-color: rgb(197, 173, 51) !important;
    color: var(--DarkColor) !important;
  }
  .warning-outline-btn{
    background-color: unset !important;
    border-color: var(--WarningColor) !important;
    color: var(--DarkColor) !important;
    min-width: 100px;
    padding: 30px;
    line-height: 1.5px;
  }
  .warning-outline-btn:hover{
    background-color: var(--WarningColor) !important;
    border-color: var(--WarningColor) !important;
    color: var(--DarkColor) !important;
  }
  

/* buttons */

/* text-color */

  .text-primary{
    color: var(--PrimaryColor) !important;
  }
  .text-secondary{
    color: var(--SecondaryColor) !important;
  }
  .text-dark{
    color: var(--DarkColor) !important;
  }
  .text-light{
    color: var(--LightColor) !important;
  }
  .text-success{
    color: var(--SuccessColor) !important;
  }
  .text-danger{
    color: var(--DangerColor) !important;
  }
  .text-white{
    color: var(--WhiteColor) !important;
  }

  /* other css */
  *{
    box-sizing: border-box;
    font-family: var(--PrimaryFont);
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  a:hover{
    color: inherit;
    text-decoration: none;
  }
  .subheading{
    font-size: 26px;
    font-weight: 500;
    color: var(--PrimaryColor);
    text-transform: uppercase;
  }
  .heading{
    font-size: 19px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--DarkColor);
  }
  @media(max-width:768px){
    .subheading{
      font-size: 18px;
    }
    .heading{
      font-size: 35px;
    }
    .btn{
      padding: 25px;
    }
  }
  @media(max-width:576px){
    .heading{
      font-size: 28px;
    }
    .btn{
      padding: 25px;
    }
  }
  .description{
    font-size: 18px;
    color: var(--LightColor);
    font-weight: 500;
  }
  body {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
  }
  .follower{
    display: none;
  }
  @media(min-width:1200px){
    .follower {
      display: block;
      width: 15px;
      height: 15px;
      background-color: var(--PrimaryColor); /* Coral color */
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none; /* Ensure follower does not interfere with mouse events */
      z-index: 9999;
    }
  }
  .mw-65{
    width: 650px;
    min-width: 65%;
    max-width: 100%;
  }
  .fs-1{
    font-size:3.5rem !important;
  }
  .page-banner{
    background-color: rgb(0 0 0) !important;
    min-height: 362px;
  }
  .page-banner-content{
    width: 50%;
    max-width: 100%;
    margin: auto;
  }
  @media(max-width:768px){
    .page-banner-content{
      width: 75%;
    }
  }
  .banner-title{
    font-size: 36px;
    font-weight: 600;
    color: var(--WhiteColor);
    text-transform: capitalize;
  }
  .underline{
    background-color: var(--PrimaryColor);
    padding: 1.5px;
    width: 135px;
  }
  .banner-content{
    color: var(--WhiteColor) !important;
    font-size: 18px;
  }
  .breadcrumb{
    color: var(--WhiteColor);
    text-transform: capitalize;
    display: flex;
    gap: 5px;
    font-weight: 500;
  }
  .breadcrumb .active{
    color: var(--PrimaryColor);
    text-transform: capitalize;

  }

  /* BACK TO TOP STYLES */
  #backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #backtotop:hover {
    cursor: pointer;
  }
  #backtotop.show {
    opacity: 1;
    visibility: visible;
  }
  .social-outer{
    border-radius: 50%;
    border: 1px solid var(--PrimaryColor);
    color: var(--PrimaryColor);
    width: 25px;
    height: 25px;
    text-align: center;
  }
  .social-outer:hover{
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
  }
  .social-outer.bg-white:hover{
    color: var(--DarkColor);
  }
  .social-outer.big{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dropdown-box{
    width: 350px;
    padding: 15px;
    border-radius: 15px;
    position: absolute;
    z-index: 999;
    background-color: var(--WhiteColor);
    display: none;
    box-shadow: 0px 4px 14px 2px #69858757;
    border: 0px;
  }
  .dropdown-link:hover{
    color: var(--PrimaryColor);
  }
  .error{
    color: red;
  }
  .required-asterisk{
    position: relative;
  }
  .required-asterisk::after{
    content: '\2a';
    font-family: 'fontawesome';
    font-size: 10px;
    color: red;
    position: absolute;
    top: -4px;
    left: 4px;
  }
  input:focus, textarea:focus{
    box-shadow: unset !important;
    border-color:var(--PrimaryColor) !important;
  }
  #newsletter .error:not(.form-control){
    position: absolute;
    bottom: -30px;
  }
  /* ================================================================

    HOMEPAGE STYLES

   ================================================================ */


  /* HEADER & BANNER STYLES */
  .nav-item .nav-link{
    color: var(--DarkColor) !important;
  }
  .nav-item .nav-link.active, .nav-item .nav-link:hover, .offcanvas-item .offcanvas-link:focus, .offcanvas-item .offcanvas-link.active, .offcanvas-item .offcanvas-link:hover, .offcanvas-item .offcanvas-link:focus, .dropdown-link:hover, .dropdown-link.active{
    color: var(--PrimaryColor) !important;
  }
  .bg-main{
    min-height: 600px;
  }
  .bg-main1{
    background: linear-gradient(0deg, #03020e96, #03020e96), url(../../assets/images/topo/1.jpg)no-repeat;
    background-size: cover;
  }
  .bg-main2{
    background: linear-gradient(0deg, #03020e96, #03020e96), url(../../assets/images/topo/2.jpg)no-repeat;
    background-size: cover;
  }
  .bg-main3{
    background: linear-gradient(0deg, #03020e96, #03020e96), url(../../assets/images/topo/3.jpg)no-repeat;
    background-size: cover;
  }
  .bg-main4{
    background: linear-gradient(0deg, #03020e96, #03020e96), url(../../assets/images/topo/4.jpg)no-repeat;
    background-size: cover;
  }
  @media(min-width:1200px){
    .bg-main{
   /*   height: 100vh;*/
      min-height: 650px;
    }
  }
  @media(max-width:576px){
    .bg-main{
      height: unset;
      min-height: 600px;
    }
  }
  .w-unset{
    width: unset !important;
    min-width: unset !important;
    max-width: unset !important;
  }

  /* about us */
  
  .checklist-icon{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(var(--PrimaryRgb), 0.3);
  }
  .side-image{
    max-width: 550px;
  }
  @media(max-width:992px){
    .abt-image-main img{
      max-height:400px;
      object-fit: contain;
    }
  }

  /* SERVICE STYLES */

   .service-card{
    background-color: var(--WhiteColor);
    padding: 15px;
    border-radius: 15px;
    border: 0px;
    box-shadow: 0px 4px 14px 2px #2da0a815;
    transition: 0.45s ease-in-out;
    max-width: 400px;
   }
   .service-card:hover{
    background-color: var(--PrimaryColor);
    color:var(--WhiteColor) !important;
   }
   .card-img{
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--SecondaryColor);
   }

  /* TESTIMONIALS STYLES */
  .large-container {
    position: relative;
    max-width: 1720px;
    padding: 0px 30px;
    margin: 0 auto;
  }

  .testimonial-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 210px;
    overflow: hidden;
  }
  .testimonial-section:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(../../assets/images/testslider1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
  }
  .testimonial-section .sec-title {
    position: relative;
    margin-bottom: 115px;
  }
  .testimonial-section .sec-title .title {
    margin-bottom: 20px;
  }
  .testimonial-section .testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 -50px;
  }

  .testimonial-block {
    position: relative;
    padding: 50px;
  }
  .testimonial-block .inner-box {
    padding: 80px 105px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }
  .testimonial-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
  }
  .testimonial-block .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
  }
  .testimonial-block .info-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 82px;
    width: 82px;
  }
  .testimonial-block .info-box .thumb img {
    border: 6px solid #e5e6fa;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: 100%;
    box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
  }
  .testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 1.2em;
    color: #382c4d;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Niramit", sans-serif;
  }
  .testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #8053f7;
    font-weight: 400;
    font-family: "Muli", sans-serif;
  }

  .testimonial-carousel .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
  }
  .testimonial-carousel .owl-next, .testimonial-carousel .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50% !important;
    background-color: #ffffff;
    transition: all 300ms ease;
  }
  .testimonial-carousel .owl-next:hover, .testimonial-carousel .owl-prev:hover {
    background-color: var(--PrimaryColor) !important;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
  }

  .arrow-right, .arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
  }

  .arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
  }

  .testimonial-section .thumb-layer {
    position: absolute;
    right: 0;
    top: 0;
  }
  .testimonial-section .thumb-layer .image {
    position: relative;
    margin-right: 0;
  }
  .testimonial-section .thumb-layer .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
  }
  @media only screen and (max-width: 650px) {
      .testimonial-carousel .owl-nav {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 20px;
      text-align: center;
    }
    .testimonial-section .testimonial-carousel {
      margin: 0px;
    }
    .testimonial-block .inner-box {
      padding: 25px 40px;
    }
    .testimonial-block .info-box {
      padding-top: 10px;
      padding: 95px 0 10px 10px;
    }
  }
  @media only screen and (max-width: 767px) {
    .testimonial-section .sec-title {
      margin-bottom: 50px;
    }

    .testimonial-block {
      padding: 0;
    }
    .testimonial-block .inner-box {
      box-shadow: none;
      border: 2px solid #f1f1f1;
    }
    .testimonial-carousel .owl-next, .testimonial-carousel .owl-prev {
      border: 2px solid #f1f1f1;
    }
  }
  @media only screen and (max-width: 1366px) {
    .large-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .testimonial-section .owl-dots{
    display: none;
  }

  /* PORTFOLIO STYLES */

  .portfolio-bg .item img{
    height: 650px;
    object-fit: cover;
    object-position: center;
  }
  .portfolio-main .owl-nav{
    font-size: 18px;
  }
  .portfolio-main .owl-nav{
    display: flex;
    justify-content: space-between;
    font-size: 65px;
    position: absolute;
    width: 100%;
    top: 40%;
    color: var(--WhiteColor);
  }
  @media(max-width:992px){
    .portfolio-bg .item img{
      max-height: 400px;
      object-fit: cover;
    }
  }
  .portfolio-img{
    position: relative;
  }
  .portfolio-img-link{
    content: "view detail";
    color: var(--WhiteColor);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #1d787e8f;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
  }
  .portfolio-img-link:hover{
    opacity: 1;
  }
  /* footer */

  .trustedpartner-main .client-testimonial img{
    max-height: 150px;
    object-fit: contain;
  }




  /* ================================================================

    ABOUT US PAGE STYLES

   ================================================================ */

  
  /* WHAT WE DO STYLES */
  
  .abt-navs .nav-link, .abt-navs .nav-link.active{
  background-color: var(--PrimaryColor) !important;
  color: var(--WhiteColor) !important;
  border-radius: 0;
  }
  .abt-navs .nav-link:hover{
  background-color: #1d787e !important;
  color: var(--WhiteColor) !important;
  }
  .whatwedo-main .nav-link.active, .whatwedo-main .nav-link:hover {
    background-color: #1d787e !important;
    color: var(--WhiteColor) !important;
  }

  /* CARE CARD STYLES */

  .care-card{
    background-color: var(--WhiteColor);
    padding: 15px 5px;
    border-radius: 15px;
    border: 2px solid var(--PrimaryColor);
    box-shadow: 0px 4px 14px 2px #2da0a815;
    transition: 0.45s ease-in-out;
    }
    @media(min-width:576px){
      .care-card{
        min-height: 270px;
      }
    }
    .care-card:hover{
    background-color: var(--PrimaryColor);
    color:var(--WhiteColor) !important;
    }

  /* TEAM CARD STYLES */
  .team-card{
  background-color: var(--WhiteColor);
  border: 0px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 14px 2px #2da0a815;
  transition: 0.45s ease-in-out;
  max-width: 400px;
  min-height: 270px;
  }
  .team-card .card-body{
  min-height: 100px;
  position: relative;
  margin-top: -20px;
  background-color: white;
  border-radius: 12px;
  }

  /* FAQ STYLES */

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--SecondaryColor);
    box-shadow:unset !important;
  }
  .accordion-button{
    box-shadow: unset !important;
    background-color: var(--SecondaryColor) !important;
    border-radius: 5px !important;
  }
  .accordion-item{
    border: 1px solid var(--SecondaryColor);
    background-color: var(--SecondaryColor) !important;
    margin-bottom: 25px;
  }
  .accordion-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--DarkColor);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .accordion-button::after {
    background-image: unset !important;
    content: '\f054';
    font-family: 'fontawesome';
    color: var(--DarkColor);
  }
  .accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
    color: var(--PrimaryColor);
  }
  .accordion-button:not(.collapsed){
    color: var(--PrimaryColor) !important;
  }
  .accordion-button:not(.collapsed) .accordion-icon{
    border: 1px solid var(--PrimaryColor);
  }
  /* ================================================================

    SERVICE PAGE STYLES

   ================================================================ */

  /* PROGRESS BAR */

  .progress-container {
    max-width: 500px;
    background: var(--WhiteColor);
    }

    .progress-bar {
    margin: 0 0 25px;
    overflow: hidden;
    padding-right: 24px; /* Separate bars from container */
    text-align: start;
    }

    .progress-title {
    z-index: 100;
    }

    .progress-number-wrapper {
    width: 100% !important;
    position: relative;
    }

    .progress-number-mark {
    margin-bottom: 4px;
    border-radius: 7px;
    background-color: var(--PrimaryColor);
    padding: 0 8px;
    position: absolute;
    bottom: 0;   
    left: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%); 
    
    } 

    .progress-number-wrapper,
    .progress-number-mark {
        font-family: Open Sans, sans-serif;
        font-size: 16px;
        /* line-height: 24px; */
        /* height: 24px; */
        letter-spacing: 0px;
        font-weight: 600;
        font-style: normal;
        text-transform: none;
        color: var(--WhiteColor);
        /* margin-top: 20px; */
        padding: 5px;
    }

    .down-arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--PrimaryColor);
    position: absolute;
    left: 50%;
    top: 100%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);  
    }

    .progress-content-outter {
    height: 20px;
    background-color: var(--SecondaryColor);
    border-radius: 30px;
    }

    .progress-content {
    height: 20px;
    background-color: var(--PrimaryColor);
    width: 0%; /* Initial value */
    border-radius: 30px;
    }
  

  /* ================================================================

    PORTFOLIO PAGE STYLES

   ================================================================ */

   .gallery-tabs .nav-link{
      background-color: unset !important;
      border: 1px solid var(--PrimaryColor) !important ;
      border-radius: 50px;
      color: var(--PrimaryColor) !important;
      min-width: 100px;
      padding: 20px;
      line-height: 1.5px;
      text-transform: capitalize;
    }
    .gallery-tabs .nav-link:hover, .gallery-tabs .nav-link.active{
      background-color: #1d787e !important;
      border-color: #1d787e !important;
      color: var(--WhiteColor) !important;
    }

    /* ================================================================

    BLOG PAGE STYLES

   ================================================================ */

  .blog-main .card-image img{
    min-height: 250px;
    max-height: 250px;
  }
  .sidebar-search{
    max-width: 350px;
  }
  .heading-bar::before{
    content:"|";
    font-weight: 800;
    color: var(--PrimaryColor);
    font-size: 40px;
    vertical-align: sub;
  }

  .blog-search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    background-image: url(../../assets/images/cross.png);
    background-size: 10px 10px;
  }

  /* pagination */

  .cust_pagination{
    box-shadow: 1px 2px 10px 0px lightgray;
    width: fit-content;
    border-radius: 5px;
    margin: auto;
  }
  .cust_pagination .page-item .page-link{
    color: var(--LightColor);
    border: unset !important;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cust_pagination .page-item .page-link:active, .cust_pagination .page-item .page-link:hover, .cust_pagination .page-item .page-link:focus{
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
    border: 0;
    box-shadow: unset;
  }
  
  /* ================================================================

    BLOG DETAIL PAGE STYLES

   ================================================================ */

   .blogs-detail-content .card-image img{
    height: 450px;
    object-fit: cover;
  }  

  :root {
    --dark: #373349;
    --gap: 15px;
    --width: 110px;
    --height: var(--width);
  }
  
  .grid-container > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    overflow: hidden;
  }
  
  .grid-container > a::after {
    content: "";
    background: linear-gradient(transparent,black);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%);
    transition-duration: .75s;
  }
  
  .grid-container > a:hover::after {
    transform: translateY(50%);
  }
  
  .grid-container > a > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 1s;
  }
  
  .grid-container > a:hover > img {
    transform: scale(1.05);
  }
  
  .grid-container {
    display: grid;
    grid-gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(var(--width), 1fr));
    grid-auto-rows: var(--height);
    grid-auto-flow: dense;
  }
  
  .horizontal {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .vertical {
    grid-column: span 3;
    grid-row: span 4;
  }
  
  .big {
    grid-column: span 2;
    grid-row: span 2;
  }
  .reply-comment{
    padding-left: 80px;
  }

    /* ================================================================

    SERVICE DETAIL PAGE STYLES

   ================================================================ */

  .servd-img-main img{
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
  }
  .service-btn{
    background-color: var(--WhiteColor) !important;
    color: var(--DarkColor) !important;
  }
  .service-btn:hover{
    background-color: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
  }
  @media(max-width:600px){
    .servd-img-main img{
      max-height: 300px;
      object-fit: contain;
    }
  }
/* ================================================================

    PORTFOLIO DETAIL PAGE STYLES

   ================================================================ */
  .side-img-portfolio{
    max-height: 450px;
    object-fit: cover;
  }