
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    background-color: #EEEDED;
    color: #0E427E;
    border: none;
}

.btn.btn-primary:hover {
    background: #3A8BD8;
    color: white;
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      font-size: 15px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: #0E427E;
      border-bottom: 2px solid #0E427E;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: white;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: #3A8BD8;
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: white;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: #0E427E;
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, .5); */
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}
/*** Carousel Hero Header End ***/



/*============== Section1 =============*/


.counter-item{
    background-color: #f2f5f9;
    color:#0E427E;
    text-align: center;
}
.counter-item:hover{
    background-color: #3A8BD8;
    color:white;
    text-align: center;
}


/*============== Section4 =============*/



.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .marquee {
    display: flex;
    animation: marquee-animation 20s linear infinite;
  }

  .marquee img {
    margin-right: 20px; /* space between images */
    height: 84px; /* Adjust image size */
    width: 250px;
    overflow: visible;

  }

  @keyframes marquee-animation {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }



  /*================ SECTION 5===============*/




/* .inbox13{
    background-color: gray;
    height: 200px;
    margin: 15px 0px;
  } */
  *,
  *:after,
  *:before {
      margin: 0;
      padding: 0;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
      /* -webkit-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      -moz-user-select: none;
      user-select: none; */
      cursor: hand pointer;
  }
  
  /* html {
      width: 100%;
      height: auto;
  } */
  
  /* body {
      width: 100%;
      height: auto;
      font-size: 16px;
      font-family: Dubai-Light;
          background: rgba(30,30,30);
  } */
  .testim {
          width: 100%;
          /* position: absolute; */
          /* top: 50%; */
      margin-top: 180px;
          -webkit-transform: translatey(-50%);
          -moz-transform: translatey(-50%);
          -ms-transform: translatey(-50%);
          -o-transform: translatey(-50%);
          transform: translatey(-50%);
  }
  
  .testim .wrap {
      position: relative;
      width: 100%;
      max-width: 1020px;
      padding: 40px 20px;
      margin: auto;
  }
  
  .testim .arrow {
      display: block;
      position: absolute;
      color: #eee;
      cursor: pointer;
      font-size: 2em;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%);
      -webkit-transition: all .3s ease-in-out;    
      -ms-transition: all .3s ease-in-out;    
      -moz-transition: all .3s ease-in-out;    
      -o-transition: all .3s ease-in-out;    
      transition: all .3s ease-in-out;
      padding: 5px;
      z-index: 22222222;
  }
  
  .testim .arrow:before {
          cursor: pointer;
          color: #0E427E;
  }
  
  .testim .arrow:hover {
      color: #0E427E;
  }
      
  
  .testim .arrow.left {
      left: 10px;
  }
  
  .testim .arrow.right {
      right: 10px;
  }
  
  .testim .dots {
      text-align: center;
      position: absolute;
      width: 100%;
      bottom: 60px;
      left: 0;
      display: block;
      z-index: 3333;
          height: 12px;
  }
  
  .testim .dots .dot {
      list-style-type: none;
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid #3A8BD8;;
      margin: 0 10px;
      cursor: pointer;
      -webkit-transition: all .5s ease-in-out;    
      -ms-transition: all .5s ease-in-out;    
      -moz-transition: all .5s ease-in-out;    
      -o-transition: all .5s ease-in-out;    
      transition: all .5s ease-in-out;
          position: relative;
  }
  
  .testim .dots .dot.active,
  .testim .dots .dot:hover {
      background: #0E427E;
      border-color: #0E427E;
  }
  
  .testim .dots .dot.active {
      -webkit-animation: testim-scale .5s ease-in-out forwards;   
      -moz-animation: testim-scale .5s ease-in-out forwards;   
      -ms-animation: testim-scale .5s ease-in-out forwards;   
      -o-animation: testim-scale .5s ease-in-out forwards;   
      animation: testim-scale .5s ease-in-out forwards;   
  }
      
  .testim .cont {
      position: relative;
          overflow: hidden;
  }
  
  .testim .cont > div {
      text-align: center;
      position: absolute;
      top: 0;
      left: 0;
      padding: 0 0 70px 0;
      opacity: 0;
  }
  
  .testim .cont > div.inactive {
      opacity: 1;
  }
      
  
  .testim .cont > div.active {
      position: relative;
      opacity: 1;
  }
      
  
  .testim .cont div .img img {
      display: block;
      width: 100px;
      height: 100px;
      margin: auto;
      border-radius: 50%;
  }
  
  .testim .cont div h2 {
      /* color: #ea830e; */
      font-size: 18px;
      font-family: 'myfont2';
      margin: 15px 0;
  }
  
  .testim .cont div p {
    font-family: 'myfont1';
      /* font-size: 1.15em; */
      /* color: #eee; */
      width: 80%;
      margin: auto;
  }
  
  .testim .cont div.active .img img {
      -webkit-animation: testim-show .5s ease-in-out forwards;            
      -moz-animation: testim-show .5s ease-in-out forwards;            
      -ms-animation: testim-show .5s ease-in-out forwards;            
      -o-animation: testim-show .5s ease-in-out forwards;            
      animation: testim-show .5s ease-in-out forwards;            
  }
  
  .testim .cont div.active h2 {
      -webkit-animation: testim-content-in .4s ease-in-out forwards;    
      -moz-animation: testim-content-in .4s ease-in-out forwards;    
      -ms-animation: testim-content-in .4s ease-in-out forwards;    
      -o-animation: testim-content-in .4s ease-in-out forwards;    
      animation: testim-content-in .4s ease-in-out forwards;    
  }
  
  .testim .cont div.active p {
      -webkit-animation: testim-content-in .5s ease-in-out forwards;    
      -moz-animation: testim-content-in .5s ease-in-out forwards;    
      -ms-animation: testim-content-in .5s ease-in-out forwards;    
      -o-animation: testim-content-in .5s ease-in-out forwards;    
      animation: testim-content-in .5s ease-in-out forwards;    
  }
  
  .testim .cont div.inactive .img img {
      -webkit-animation: testim-hide .5s ease-in-out forwards;            
      -moz-animation: testim-hide .5s ease-in-out forwards;            
      -ms-animation: testim-hide .5s ease-in-out forwards;            
      -o-animation: testim-hide .5s ease-in-out forwards;            
      animation: testim-hide .5s ease-in-out forwards;            
  }
  
  .testim .cont div.inactive h2 {
      -webkit-animation: testim-content-out .4s ease-in-out forwards;        
      -moz-animation: testim-content-out .4s ease-in-out forwards;        
      -ms-animation: testim-content-out .4s ease-in-out forwards;        
      -o-animation: testim-content-out .4s ease-in-out forwards;        
      animation: testim-content-out .4s ease-in-out forwards;        
  }
  
  .testim .cont div.inactive p {
      -webkit-animation: testim-content-out .5s ease-in-out forwards;    
      -moz-animation: testim-content-out .5s ease-in-out forwards;    
      -ms-animation: testim-content-out .5s ease-in-out forwards;    
      -o-animation: testim-content-out .5s ease-in-out forwards;    
      animation: testim-content-out .5s ease-in-out forwards;    
  }
  
  @-webkit-keyframes testim-scale {
      0% {
          -webkit-box-shadow: 0px 0px 0px 0px #eee;
          box-shadow: 0px 0px 0px 0px #eee;
      }
  
      35% {
          -webkit-box-shadow: 0px 0px 10px 5px #eee;        
          box-shadow: 0px 0px 10px 5px #eee;        
      }
  
      70% {
          -webkit-box-shadow: 0px 0px 10px 5px #3A8BD8;        
          box-shadow: 0px 0px 10px 5px #3A8BD8;        
      }
  
      100% {
          -webkit-box-shadow: 0px 0px 0px 0px #3A8BD8;       
          box-shadow: 0px 0px 0px 0px #3A8BD8;       
      }
  }
  
  @-moz-keyframes testim-scale {
      0% {
          -moz-box-shadow: 0px 0px 0px 0px #eee;
          box-shadow: 0px 0px 0px 0px #eee;
      }
  
      35% {
          -moz-box-shadow: 0px 0px 10px 5px #eee;        
          box-shadow: 0px 0px 10px 5px #eee;        
      }
  
      70% {
          -moz-box-shadow: 0px 0px 10px 5px #3A8BD8;        
          box-shadow: 0px 0px 10px 5px #3A8BD8;        
      }
  
      100% {
          -moz-box-shadow: 0px 0px 0px 0px #3A8BD8;        
          box-shadow: 0px 0px 0px 0px #3A8BD8;        
      }
  }
  
  @-ms-keyframes testim-scale {
      0% {
          -ms-box-shadow: 0px 0px 0px 0px #eee;
          box-shadow: 0px 0px 0px 0px #eee;
      }
  
      35% {
          -ms-box-shadow: 0px 0px 10px 5px #eee;        
          box-shadow: 0px 0px 10px 5px #eee;        
      }
  
      70% {
          -ms-box-shadow: 0px 0px 10px 5px #3A8BD8;        
          box-shadow: 0px 0px 10px 5px #3A8BD8;       
      }
  
      100% {
          -ms-box-shadow: 0px 0px 0px 0px #3A8BD8;        
          box-shadow: 0px 0px 0px 0px #3A8BD8;       
      }
  }
  
  @-o-keyframes testim-scale {
      0% {
          -o-box-shadow: 0px 0px 0px 0px #eee;
          box-shadow: 0px 0px 0px 0px #eee;
      }
  
      35% {
          -o-box-shadow: 0px 0px 10px 5px #eee;        
          box-shadow: 0px 0px 10px 5px #eee;        
      }
  
      70% {
          -o-box-shadow: 0px 0px 10px 5px #3A8BD8;        
          box-shadow: 0px 0px 10px 5px #3A8BD8;        
      }
  
      100% {
          -o-box-shadow: 0px 0px 0px 0px #3A8BD8;        
          box-shadow: 0px 0px 0px 0px #3A8BD8;        
      }
  }
  
  @keyframes testim-scale {
      0% {
          box-shadow: 0px 0px 0px 0px #eee;
      }
  
      35% {
          box-shadow: 0px 0px 10px 5px #eee;        
      }
  
      70% {
          box-shadow: 0px 0px 10px 5px #3A8BD8;       
      }
  
      100% {
          box-shadow: 0px 0px 0px 0px #3A8BD8;       
      }
  }
  
  @-webkit-keyframes testim-content-in {
      from {
          opacity: 0;
          -webkit-transform: translateY(100%);
          transform: translateY(100%);
      }
      
      to {
          opacity: 1;
          -webkit-transform: translateY(0);        
          transform: translateY(0);        
      }
  }
  
  @-moz-keyframes testim-content-in {
      from {
          opacity: 0;
          -moz-transform: translateY(100%);
          transform: translateY(100%);
      }
      
      to {
          opacity: 1;
          -moz-transform: translateY(0);        
          transform: translateY(0);        
      }
  }
  
  @-ms-keyframes testim-content-in {
      from {
          opacity: 0;
          -ms-transform: translateY(100%);
          transform: translateY(100%);
      }
      
      to {
          opacity: 1;
          -ms-transform: translateY(0);        
          transform: translateY(0);        
      }
  }
  
  @-o-keyframes testim-content-in {
      from {
          opacity: 0;
          -o-transform: translateY(100%);
          transform: translateY(100%);
      }
      
      to {
          opacity: 1;
          -o-transform: translateY(0);        
          transform: translateY(0);        
      }
  }
  
  @keyframes testim-content-in {
      from {
          opacity: 0;
          transform: translateY(100%);
      }
      
      to {
          opacity: 1;
          transform: translateY(0);        
      }
  }
  
  @-webkit-keyframes testim-content-out {
      from {
          opacity: 1;
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }
      
      to {
          opacity: 0;
          -webkit-transform: translateY(-100%);        
          transform: translateY(-100%);        
      }
  }
  
  @-moz-keyframes testim-content-out {
      from {
          opacity: 1;
          -moz-transform: translateY(0);
          transform: translateY(0);
      }
      
      to {
          opacity: 0;
          -moz-transform: translateY(-100%);        
          transform: translateY(-100%);        
      }
  }
  
  @-ms-keyframes testim-content-out {
      from {
          opacity: 1;
          -ms-transform: translateY(0);
          transform: translateY(0);
      }
      
      to {
          opacity: 0;
          -ms-transform: translateY(-100%);        
          transform: translateY(-100%);        
      }
  }
  
  @-o-keyframes testim-content-out {
      from {
          opacity: 1;
          -o-transform: translateY(0);
          transform: translateY(0);
      }
      
      to {
          opacity: 0;
          transform: translateY(-100%);        
          transform: translateY(-100%);        
      }
  }
  
  @keyframes testim-content-out {
      from {
          opacity: 1;
          transform: translateY(0);
      }
      
      to {
          opacity: 0;
          transform: translateY(-100%);        
      }
  }
  
  @-webkit-keyframes testim-show {
      from {
          opacity: 0;
          -webkit-transform: scale(0);
          transform: scale(0);
      }
      
      to {
          opacity: 1;
          -webkit-transform: scale(1);       
          transform: scale(1);       
      }
  }
  
  @-moz-keyframes testim-show {
      from {
          opacity: 0;
          -moz-transform: scale(0);
          transform: scale(0);
      }
      
      to {
          opacity: 1;
          -moz-transform: scale(1);       
          transform: scale(1);       
      }
  }
  
  @-ms-keyframes testim-show {
      from {
          opacity: 0;
          -ms-transform: scale(0);
          transform: scale(0);
      }
      
      to {
          opacity: 1;
          -ms-transform: scale(1);       
          transform: scale(1);       
      }
  }
  
  @-o-keyframes testim-show {
      from {
          opacity: 0;
          -o-transform: scale(0);
          transform: scale(0);
      }
      
      to {
          opacity: 1;
          -o-transform: scale(1);       
          transform: scale(1);       
      }
  }
  
  @keyframes testim-show {
      from {
          opacity: 0;
          transform: scale(0);
      }
      
      to {
          opacity: 1;
          transform: scale(1);       
      }
  }
  
  @-webkit-keyframes testim-hide {
      from {
          opacity: 1;
          -webkit-transform: scale(1);       
          transform: scale(1);       
      }
      
      to {
          opacity: 0;
          -webkit-transform: scale(0);
          transform: scale(0);
      }
  }
  
  @-moz-keyframes testim-hide {
      from {
          opacity: 1;
          -moz-transform: scale(1);       
          transform: scale(1);       
      }
      
      to {
          opacity: 0;
          -moz-transform: scale(0);
          transform: scale(0);
      }
  }
  
  @-ms-keyframes testim-hide {
      from {
          opacity: 1;
          -ms-transform: scale(1);       
          transform: scale(1);       
      }
      
      to {
          opacity: 0;
          -ms-transform: scale(0);
          transform: scale(0);
      }
  }
  
  @-o-keyframes testim-hide {
      from {
          opacity: 1;
          -o-transform: scale(1);       
          transform: scale(1);       
      }
      
      to {
          opacity: 0;
          -o-transform: scale(0);
          transform: scale(0);
      }
  }
  
  @keyframes testim-hide {
      from {
          opacity: 1;
          transform: scale(1);       
      }
      
      to {
          opacity: 0;
          transform: scale(0);
      }
  }
  
  @media all and (max-width: 500px) {
      .testim .arrow {
          font-size: 1.5em;
      }
      
      .testim .cont div p {
          line-height: 25px;
      }
  
  }

 


  /*========== About Page ======================*/



    /*** Single Page Hero Header Start ***/

    .bg-breadcrumb {
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgb(2 35 72 / 90%), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }

    .bg-breadcrumb .breadcrumb {
        position: relative;
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

    /*** Single Page Hero Header End ***/


    /**** About sec1 Start *****/

    .feature .feature-item {
        border-radius: 10px;
        background: var(--bs-white);
        transition: 0.5s;
    }
    
    .feature .feature-item:hover {
        background: #3A8BD8;
    }
    
    .feature .feature-item .feature-icon {
        position: relative;
        width: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        /* background: var(--bs-light); */
    }
    
    .feature .feature-item:hover .feature-icon i {
        z-index: 9;
    }
    
    .feature .feature-item .feature-icon::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        /* background: var(--bs-dark); */
        transition: 0.5s;
        z-index: 1;
    }
    
    .feature .feature-item:hover .feature-icon::after {
        height: 100%;
    }
    
    .feature .feature-item .feature-icon {
        color: #3A8BD8;
    }
    .feature .feature-item .feature-icon,
    .feature .feature-item h3{
        transition: 0.5s;
        color: #3A8BD8;
    }
    .feature .feature-item .feature-icon,
    .feature .feature-item h3,
    .feature .feature-item p {
        transition: 0.5s;
    }
    
    .feature .feature-item:hover .feature-icon {
        color: var(--bs-white);
    }
    .feature .feature-item:hover h3,
    .feature .feature-item:hover p {
        color: var(--bs-white);
    }
    
    .feature .feature-item:hover a.btn {
        background: var(--bs-white);
        color: #3A8BD8;
    }
    
    .feature .feature-item:hover a.btn:hover {
        background: var(--bs-dark);
        color: var(--bs-white);
    }

    /**** About sec1 Ends *****/


    /*** Accordian Start ***/
    .accordion .accordion-item .accordion-header .accordion-button {
        color: var(--bs-white);
        background: #3A8BD8;
        font-size: 18px;
    }

    .accordion .accordion-item .accordion-header .accordion-button.collapsed {
        color: Black;
        background:white;
        box-shadow: 1px 1px 1px 1px lightgrey;
    }
    .accordion-body {
        border: 1px solid lightgray;
    }
    /*** Accordian End ***/




















  /*** Footer Start ***/
.footer {
    background: #0E427E;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

.footlink{
    color: white;
}
.footlink:hover{
    color: #015fc9;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #0E427E;
    border-top: 1px solid white;
}
/*** copyright end ***/




  /* =====pre-footer====== */
 .pre-footer{
    background: url(../img/bg_2.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  table-layout: fixed;
  padding:200px 0 100px;
  height: 50px;
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
.pre-footer h2{
    color: #ffff;
    line-height: 51px; 
    font-size: 28px; 
    letter-spacing: 13px; 
    margin-top: -247px;
}
.pre-footer .pre-blank{
    color: #ffff;
    line-height: 51px; 
    font-size: 28px; 
    letter-spacing: 13px; 
    margin-top: -150px;
}





/**** About sec1 Start *****/

.feature .feature-item1 {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    height: 250px;
}

.feature .feature-item1:hover {
    background: #3A8BD8;
}

.feature .feature-item1 .feature-icon1 {
    position: relative;
    /* width: 100px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background: var(--bs-light); */
}

.feature .feature-item1:hover .feature-icon1 i {
    z-index: 9;
}

.feature .feature-item1 .feature-icon1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background: var(--bs-dark); */
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item1:hover .feature-icon1::after {
    height: 100%;
}

.feature .feature-item1 .feature-icon1 {
    color: #3A8BD8;
}
.feature .feature-item1 .feature-icon1,
.feature .feature-item1 h4{
    transition: 0.5s;
    color: #3A8BD8;
}
.feature .feature-item1 .feature-icon1,
.feature .feature-item1 h4,
.feature .feature-item1 p {
    transition: 0.5s;
}
.feature .feature-item1 p {
    transition: 0.5s;
    color: black;
    font-size: 15px;
}
.feature .feature-item1:hover .feature-icon1 {
    color: var(--bs-white);
}
.feature .feature-item1:hover h4,
.feature .feature-item1:hover p {
    color: var(--bs-white);
}

.feature .feature-item1:hover a.btn {
    background: var(--bs-white);
    color: #3A8BD8;
}

.feature .feature-item1:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/**** About sec1 Ends *****/




/* :: 15.0 Blog Area CSS */
.single-blog-post {
    position: relative;
    z-index: 10; 
}
.single-blog-post .blog-post-thumb {
    position: relative;
    z-index: 1; 
}
.single-blog-post .post-content {
    position: relative;
    z-index: 1;
    width: 80%;
    border: 2px solid #abbe59;
    padding: 50px 40px 30px;
    left: 10%;
    text-align: center;
    margin-top: -145px;
    background-color: #ffffff; 
}
      
.single-blog-post .post-content p{
    font-size: 16px;
}
.images-dtl h1{
    color: black;
    line-height: 1.3;
    font-weight: 400;
}
@media only screen and (max-width: 767px) {
.single-blog-post .post-content {
    width: 90%;
    left: 5%;
    margin-top: -25px;
    padding: 40px 30px 20px; 
    } 
}
.single-blog-post .post-content .post-date {
    position: absolute;
    left: 50%;
    top: -26.5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); 
}
.single-blog-post .post-content .post-title {
    font-size: 30px;
    display: block;
    margin-bottom: 10px; 
}
    /*.single-blog-post .post-content .post-title:hover, .single-blog-post .post-content .post-title:focus {
        color: #abbe59; }*/
.single-blog-post h1 {
    color: black;
    text-align: justify;
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .single-blog-post .post-content .post-title {
    font-size: 20px;
    margin-bottom: 15px; 
    } 
}
.single-blog-post .post-content .post-meta {
    position: relative;
    z-index: 1;
    margin-bottom: 30px; 
}
.single-blog-post .post-content .post-meta a {
    font-size: 12px;
    color: #363636;
    position: relative;
    z-index: 2; 
}
.single-blog-post .post-content .post-meta a:first-child {
    margin-right: 30px; 
}
.single-blog-post .post-content .post-meta a:first-child::after {
    position: absolute;
    top: -2px;
    right: -18px;
    content: '|';
    z-index: 10; 
}
  
  

.block-27 ul {
    padding: 0;
    margin: 0;
}
.block-27 ul li {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400;
}
.block-27 ul li a, .block-27 ul li span {
    font-size: 12px;
    color: #0E427E;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #0E427E;
}
.block-27 ul li.active a, .block-27 ul li.active span {
    background: #0E427E;
    color: white;
    border: 1px solid transparent;
}
.block-27 ul li a:hover {
    background: #0E427E;
    color: white;
    border: 1px solid transparent;
}



.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px !important;
    padding: 5px;
    user-select: none;
    -webkit-user-select: none;
  }
  