@font-face {
    font-family: "Moderustic";
    src: url("../fonts/Moderustic-Medium.eot");
    src: url("../fonts/Moderustic-Medium.eot?#iefix") format("embedded-opentype"),
      url("../fonts/Moderustic-Medium.woff2") format("woff2"),
      url("../fonts/Moderustic-Medium.woff") format("woff"),
      url("../fonts/Moderustic-Medium.ttf") format("truetype"),
      url("../fonts/Moderustic-Medium.svg#Moderustic-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Moderustic";
    src: url("../fonts/Moderustic-Regular.eot");
    src: url("../fonts/Moderustic-Regular.eot?#iefix") format("embedded-opentype"),
      url("../fonts/Moderustic-Regular.woff2") format("woff2"),
      url("../fonts/Moderustic-Regular.woff") format("woff"),
      url("../fonts/Moderustic-Regular.ttf") format("truetype"),
      url("../fonts/Moderustic-Regular.svg#Moderustic-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Moderustic";
    src: url("../fonts/Moderustic-Light.eot");
    src: url("../fonts/Moderustic-Light.eot?#iefix") format("embedded-opentype"),
      url("../fonts/Moderustic-Light.woff2") format("woff2"),
      url("../fonts/Moderustic-Light.woff") format("woff"),
      url("../fonts/Moderustic-Light.ttf") format("truetype"),
      url("../fonts/Moderustic-Light.svg#Moderustic-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Moderustic";
    src: url("../fonts/Moderustic-SemiBold.eot");
    src: url("../fonts/Moderustic-SemiBold.eot?#iefix")
        format("embedded-opentype"),
      url("../fonts/Moderustic-SemiBold.woff2") format("woff2"),
      url("../fonts/Moderustic-SemiBold.woff") format("woff"),
      url("../fonts/Moderustic-SemiBold.ttf") format("truetype"),
      url("../fonts/Moderustic-SemiBold.svg#Moderustic-SemiBold") format("svg");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  * {
    margin: 0;
    padding: 0;
    font-family: "Moderustic" !important;
  }
  :root {
      --blue: #2b3990;
      --drak-blue: #030e27;
      --sky: #40b2d5;
      --light-sky:#E2F3F9;
      --white: #ffffff;
      --black: #000000;
      --gray-500:#4D4D4D;
      --gray-400:#818181;
    }
  ::selection{
    color: var(--white);
    background-color: var(--sky);
  }
  img{
   max-width:100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
  }
  a,a:active,a:visited {
    text-decoration: none !important;
  }
  /* a:active,a:visited {
    color: var(--white);
  } */
  /* button start */
  .blue-button {
    height: 56px;
    background: var(--blue);
    padding: 0 30px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 4px;
    transition: 0.5s;
  }
  
  .blue-button:hover {
    background: var(--sky);
    color: var(--white);
  }
  .sku-border-button {
    height: 56px;
    background: transparent;
    border: 1px solid var(--sky);
    padding: 0 30px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    outline: none;
    box-shadow: none;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 56px;
  }
  .sku-border-button:hover {
    background: var(--sky);
    color: var(--white);
  }
  /* button end */
  .banner-header-area {
    padding-top: 40px;
    position: relative var(--white) 100%;
    /* overflow: hidden; */
    background: url(../images/bg2.png) center center no-repeat var(--drak-blue);
    background-size: cover;
  }
  .banner-header-area:after {
    width: 100%;
    height: 12px;
    background: var(--sky);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 1;
  }
  .header-area {
    width: 100%;
    margin-bottom: 60px;
    position: relative;
  }
  .header-area:after {
    width: 50%;
    height: 100%;
    background: var(--white);
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    z-index: 1;
  }
  .header-area .navbar-brand {
    width: 250px;
    margin-right: 80px;
    position: relative;
    z-index: 2;
  }
  .header-area .navbar-brand img {
    width: 100%;
  }
  .header-area .navbar {
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .header-area .navbar-collapse {
    background: var(--white);
    border-radius: 10px 0 0 10px;
    padding: 10px 0 10px 10px;
  }
  .header-area .navbar-nav {
    gap: 60px;
    margin: 0 auto;
  }
  .header-area .nav-item {
    font-size: 18px;
    font-weight: 500;
  }
  .header-area .nav-link {
    padding: 0 !important;
    color: var(--black);
  }
  .header-area .nav-link:hover,
  .header-area .nav-link.active {
    color: var(--sky);
  }
  .header-area .dropdown-item:focus, .dropdown-item{
    font-size: 18px;
  }
  .header-area .dropdown-item:focus, .dropdown-item:hover{
   background: var(--blue);
   color: var(--white);
  }
  
  .banner-area-right {
    background: url(../images/bg1.png) left top no-repeat;
    padding: 80px 0 0 80px;
    background-size: 100%;
  }
  .banner-area {
    padding-bottom: 100px;
  }
  .banner-button-area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 80px;
  }
  .banner-area-txt h1 {
    color: var(--white);
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .banner-area-txt h1 span {
    color: var(--sky);
  }
  .banner-area-txt p {
    color: var(--white);
    font-weight: 300;
    font-size: 18px;
  }
  .wrapper-last-post .latest-blog:last-child {
      margin-bottom: 0;
  }
  .banner-area-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
  }
  .banner-area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .white-area {
    padding: 100px 0;
    background-color: var(--white);
  }
  .center-heading
  {
    position: relative;
    padding: 0 0 50px 0;
    margin-bottom: 40px;
  }
  .center-heading::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    background: url(../images/divider1.png) center bottom no-repeat;
    width: 200px;
    height: 30px;
    background-size: 100%;
    content: "";
  }
  .page-template-template-blog .center-heading::after{
  display:none;
  }
  .center-heading h2 {
    color: var(--black);
    font-size: 45px;
    font-weight: 500;
    text-align: center;
  }
  .services-area {
    background: url(../images/bg3.png) left bottom no-repeat;
    background-size: 70%;
    overflow: hidden;
  }
  .services-box-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: self-end;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--blue);
    transition: 0.5s;
    background: var(--white);
    height:100%;
  }
  .services-box-item:hover {
    background: var(--blue);
  }
  .services-box-item:hover .services-box-item-top h3,
  .services-box-item:hover p {
    color: var(--white);
  }
  .services-box-item:hover .services-box-item-top .icon img,
  .services-box-item:hover a img {
    filter: brightness(0) invert(1);
  }
  .services-box-area {
    /*display: grid;
    grid-template-columns: auto auto;
    gap: 50px;*/
	display: flex;
	flex-wrap: wrap;
  }
  .services-area .row
	{
		row-gap: 30px;
	}
  .services-box-item-top {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
  }
  .services-box-item-top .icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .services-box-item-top h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--black);
    flex-grow: 1;
  }
  .services-box-item a {
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .services-box-item a img {
    width: 100%;
  }
  .services-box-item p {
    color: var(--black);
    font-size: 16px;
    font-weight: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
            line-clamp: 4; 
    -webkit-box-orient: vertical;
  }
  .blue-area {
    padding: 100px 0;
    background: var(--drak-blue);
  }
  .blue-area .center-heading h2 {
    color: var(--white);
  }
  .blue-area .center-heading::after {
    filter: brightness(0) saturate(100%) invert(64%) sepia(64%) saturate(424%)
      hue-rotate(150deg) brightness(85%) contrast(97%);
  }
  .we-provide-area {
    background-image: url(../images/bg2.png);
    background-position: center top;
    background-repeat: no-repeat;
  }
  .we-provide-area-inner {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #101a32;
    gap: 16px;
    border-radius: 20px;
    height: 100%;
  }
  .we-provide-area-inner h4 {
    color: var(--white);
    font-size: 20px;
  }
  .we-provide-area-inner P {
    color: var(--white);
    font-size: 14px;
    font-weight: normal;
  }
  .support-area-top {
  /*   margin-bottom: 100px; */
  }
  .support-area-top-left {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
  }
  .support-area-top-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .support-area-top-right {
    padding-left: 50px;
  }
  .support-area-top-right p {
    color: var(--black);
    font-size: 20px;
    font-weight: normal;
  }
  .sky-area.our-story-area{
      display:none;
  }
  .contactus-left p{
      width:100%;
  }
  .sky-area{
      padding: 100px 0;
      background: var(--light-sky);
  }
  .white-area.customer-reviews-area{
      padding-top:0 !important;
  }
  .footer-top-right{
  width:40%;
  }
  .footer-top-right p{
      width:100%;
  }
  .white-area.our-mission-vision-area{
      padding-top:0;
  }
  .white-area.inner-about-area{
  padding-bottom:100px !important;
  }
  .why-choose-us-boxs{
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .why-choose-us-boxs-item{
      padding: 24px;
      background: var(--white);
      border-radius: 20px;
      width: 31%;
  }
  .why-choose-us-boximg{
      width: 100%;
      height: 230px;
      overflow: hidden;
      border-radius: 16px;
  }
  .why-choose-us-boximg img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .why-choose-us-boxcont{
      padding-top: 24px;
  }
  .why-choose-us-boxcont h5{
      font-size: 22px;
      font-weight: 500;
      color: var(--black);
      margin-bottom: 16px;
  }
  .why-choose-us-boxcont p{
      font-size: 16px;
      font-weight: normal;
      color: var(--gray-500);
  }
  
  .mission-visionimg{
      width: 100%;
      height: 400px;
      overflow: hidden;
      position: relative;
  }
  .mission-visionimg img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .mission .mission-visionimg{
      border-radius: 0 20px 20px 20px;
  }
  .vision .mission-visionimg{
      border-radius: 20px 0px 20px 20px;
  }
  .our-mission-vision-bottom{
    position: relative;
    padding-top: 80px;
    width: 100%;
  }
  .our-mission-vision-bottom::after{
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    height: 6px;
    content: '';
    background: var(--blue);
  }
  .our-mission-vision-bottom p{
      color: var(--black);
      font-size: 20px;
      font-weight: 500;
  }
  .our-mission-vision-heading{
    width: 306px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    line-height: 24px;
    padding: 6px 0;
  }
  
  .mission .our-mission-vision-heading{
    background: url(../images/headingbg1.svg) left top no-repeat;
    background-size: 100% 100%;
    padding-right: 33px;
  }
  .vision .our-mission-vision-heading{
    background: url(../images/headingbg2.svg) left top no-repeat;
    background-size: 100% 100%;
    float: right;
    padding-left: 33px;
  }
  .blog-box-images{
    border-radius: 16px;
    height: 200px;
    overflow: hidden;
  }
  .blog-box-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blog-box-inner{
  background-color:var(--white);
      border-radius: 17px;
  }
  .blog-box-content{
      padding: 34px;
      background: var(--white);
      border-radius: 0 0 16px 16px;
      margin-top: 0;
      /* height: 280px; */
  }
  .blog-box-content h4{
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .blog-box-content p{
    color: var(--gray-500);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
  }
  .icon-txt-button{
    color: var(--blue);
    font-size: 17px;
    font-weight: 500;
    position: relative;
    margin-top: 6px;
    display: inline-flex;
    transition: 0.5s;
  }
  .icon-txt-button::after{
    position: absolute;
    right: -45px;
    top: -3px;
    background: url(../images/arrow.png) center center no-repeat;
    width: 35px;
    height: 30px;
    background-size: 100%;
    content: '';
    transition: 0.5s;
  }
  .blog-box-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .blog-box-top-txt{
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .blog-box-top-txt p{
    margin-bottom: 0;
  }
  .icon-txt-button:hover::after{
    right: -48px;
  }
  .center-button-area{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
  .about-area-inner{
    display: flex;
    align-items: flex-end;
  }
  .about-area-img{
    width: 50%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .about-area-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-area-content{
    width: 50%;
    padding: 50px 50px 50px 90px;
    border-radius: 20px;
    border: 1px solid #D4D4D4;
    margin-left: -50px;
    margin-bottom: -50px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .about-area-content h2{
    color: var(--black);
    font-size: 45px;
    font-weight: 500;
  }
  .about-area-content p{
    color: var(--black);
    font-size: 18px;
    font-weight: normal;
  }
  .about-area{
    padding-bottom: 150px;
  }
  
  .contact-us-area{
    background-image: url(../images/bg4.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 55%;
  }
  .contact-us-form-area label{
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
  }
  .contact-us-form-area label sup{
    color: #D83F15;
    font-weight: bold;
  }
  .contact-us-form-area .form-control{
    height: 52px;
    padding: 0 15px;
    border:  1px solid var(--gray-400);
  }
  .textarea_{
    padding: 20px !important;
    height: 100px !important;
  }
  .footer-area{
    background: var(--drak-blue);
  }
  .footer-top{
    padding: 80px 0;
  }
  
  .footer-bottom{
    padding: 24px 0;
    border-top: 1px solid #1E2F54;
    text-align: center;
  }
  .footer-bottom p{
    font-size: 16px;
    color: #989898;
  }
  .footer-top{
    display: flex;
    justify-content: space-between;
  }
  .footer-logo{
    width: 250px;
    display: inline-flex;
    margin-bottom: 80px;
  }
  .footer-logo img{
    width: 100%;
  }
  .footer-social-iocn{
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-social-iocn a{
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-top-inner{
    display: flex;
    justify-content: space-between;
  }
  .footer-links-area h6{
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .footer-links-area ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .footer-links-area ul li{
    font-size: 16px;
    font-weight: normal;
    display: flex;
    margin-bottom: 10px;
    color: var(--white);
    gap: 6px;
      align-items:center;
  }
  .footer-links-area ul li:last-child{
    margin-bottom: 0;
  }
  .footer-links-area ul li a{
    color: var(--white);
    transition: 0.5s;
  }
  .footer-links-area ul li a:hover{
    color: var(--sky);
  }
  .footer-links-area{
    margin-bottom: 17px;
  }
  .footer-links-area:last-child
  {
    margin-bottom: 0;
  }
  .footer-links-area ul li .icon{
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-links-area ul li .icon img{
   width: 100%;
  }
  
  .inner-banner-area{
    padding-top: 20px;
  }
  .inner-banner-area .banner-area-txt h1{
    text-align: center;
    margin-bottom: 0;
  }
  .inner-about-area{
    padding-bottom: 0 !important;
  }
  .inner-about-image{
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
  }
  .inner-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .inner-about-content{
    padding-left: 50px;
  }
  .inner-about-content p{
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 30px;
  }
  .customer-reviews-star{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    gap: 3px;
  }
  .customer-reviews-star img{
    width: auto !important;
  }
  .customer-reviews-slider-inner{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-400);
  }
  .customer-reviews-slider-inner p{
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
  }
  .review-client{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }
  .review-client-img{
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 50%;
  }
  .review-client-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .review-client h6{
    font-size: 24px;
    color: var(--black);
    font-weight: 500;
  }
  .customer-reviews-slider-area .owl-dots{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }
  .owl-carousel .owl-dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--black) !important;
  }
  .owl-carousel .owl-dot.active{
    background: var(--sky);
    border: 1px solid var(--sky) !important;
  }
  
  .services-ziczac-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
.white-area-service{
padding:100px 0 20px 0;
}
  .services-ziczac-item{
  
      display: flex
  ;
      align-items: start;
      flex-direction: column;
      justify-content: center;
  }
  .services-ziczac-item-left{
      
  height: auto;
      border-radius: 20px;
      display: flex
  ;
      gap: 50px;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      padding-top: 30px;
  }
  .services-ziczac-item-left .row{
      gap:30px;
      justify-content: center;
      align-content:center;
  }
  .services-ziczac-item-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .services-ziczac-item:nth-last-child(odd) .services-ziczac-item-left{
   order: 1;
  }
  .services-ziczac-item-right{
    width: 100%;
  }
  .services-ziczac-item-right h2{
    font-size: 35px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .services-ziczac-item-right p{
    font-size: 18px;
    color: var(--black);
    font-weight: normal;
  }
  .services-ziczac-item-right ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .services-ziczac-item-right ul li{
    margin-bottom: 24px;
  }
  .services-ziczac-item-right ul li h5{
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    padding-left: 36px;
  }
  .services-ziczac-item-right ul li h5::after{
    width: 24px;
    height: 24px;
    background: url(../images/check-sky-round.png) center center no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
  }
  .services-bottomtxt{
    margin-top: 100px;
  }
  .services-bottomtxt p{
    font-size: 18px;
    color: var(--black);
    font-weight: normal;
  }
  
  .team-content-area{
    padding-bottom: 75px;
    background: url(../images/bg5.png) left center no-repeat;
    background-size: 50%;
  }
  .team-member-card{
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
  }
  .team-member-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-member-card-details{
   position: absolute;
   left: 0;
   bottom: 24px;
   right: 0;
   margin: 0 auto;
   background: var(--white);
   border-radius: 9px;
   width: 90%;
   padding: 24px;
   text-align: center;
   transition: 0.5s;
  }
  .team-member-card:hover:hover .team-member-card-details{
    background: var(--blue);
  }
  .team-member-card:hover .team-member-card-details h4, .team-member-card:hover .team-member-card-details p{
    color: var(--white);
  }
  .team-member-card-details h4{
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 2px;
    font-weight: 500;
    transition: 0.5s;
  }
  .team-member-card-details p{
    color: var(--black);
    font-size: 16px;
    font-weight: normal;
    transition: 0.5s;
  }
  
  .contactus-left{
    background: var(--blue);
    padding: 50px 30px 0 30px;
  }
  .contactus-left img{
    width: 100%;
  }
  .contactus-left h2{
    color: var(--white);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  
  .contact-us-page{
    background-image: url(../images/bg5.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 40%;
  }
  .left-heading {
    position: relative;
    margin-bottom: 50px;
  }
  .left-heading h2 {
    color: var(--black);
    font-size: 45px;
    font-weight: 500;
  }
  .left-headingp {
    color: var(--black);
    font-size: 18px;
    font-weight: normal;
  }
  .contact-us-page .contact-us-form-area{
   padding-left: 50px;
  }
  
  .contact-us-page .contact-us-form-area .textarea_{
    margin-bottom: 24px;
  }
  .contactus-left ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .contactus-left ul li{
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: normal;
    color: var(--white);
    display: flex;
    gap: 16px;
  }
  .contactus-left ul li a{
    color: var(--white);
  }
  
  .contactus-left ul li .icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
  }
  
  .menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.dropdown-menu {
    background: url('../images/down.png') no-repeat;
    background-position: right center; /* Adjust as needed */
    background-size: 20px 20px; /* Adjust size as needed */
  }
  .single-page-main{
      padding:100px 0;
  }
  .single-page-main ol, .single-page-main ul {
      padding-left: 19px;
  }
  /* .ativir-card-text{
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 25px;
  } */
  /* .image-post img{
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
  } */
  .image-post img{
  overflow: hidden;
      border-radius: 20px;
  height:auto;
  }
  .blog-area{
      padding: 100px 0;
      background: var(--drak-blue);
  }
  /*.single .banner-header-area{*/
  /*   color: var(--drak-blue);*/
  /*   background-image:none;*/
  /*}*/
  .menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children:hover .dropdown-menu {
    display: block;
  }
  .blog-item {
    display: none; /* Hide all blog items initially */
  }
  
  .blog-item.blog-item-home:nth-of-type(-n+3) {
    display: block; /* Show the first three blog items */
  }
  .blog-item:nth-of-type(-n+6) {
    display: block; /* Show the first three blog items */
  }
  .show-more .blog-item {
    display: block; /* Show all blog items when .show-more is added */
  }
  
  .row.blog-items{
    row-gap: 20px;
  }
  
  .sky-area.contact-us-area textarea{
    height: 99px;
    padding-top: 20px;
  }
  .menu-item-has-children > a::after {
    content: ""; /* Clear content as we only need the image */
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.75em; /* Adjust font size if needed */
    background-image: url(../images/down.png); /* Correct property for background image */
    background-size: contain; /* Adjust as needed */
    background-repeat: no-repeat; /* Prevent repeating the image */
    width: 11px; /* Set width to the size of your image */
    height: 16px; /* Set height to the size of your image */
    vertical-align: middle; /* Adjust alignment if needed */
  }
  
  .sky-area.contact-us-page textarea{
    padding: 20px !important;
      height: 100px !important;
  }
  .sky-area.contact-us-page .center-button-area {
    justify-content: start;
    margin-top: 24px;
  }
  .specialty-page P{
      margin-bottom: 0;
  }
  .specialty-page h2{
      margin-bottom: 20px;
  }
  .specialty-page .inner-about-content{
  padding:0;
  }
  .seoContent :where(h2,h3,h4,h5,h6){
    margin-block: 20px;
  }
  .seoContent h2{
    font-size: 30px;
    font-weight: 500;
    color: var(--black);
  }
  .seoContent h3{
    font-size: 25px;
    font-weight: 500;
    color: var(--black);
  }
  .seoContent h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
  }
  .seoContent h5{
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
  }
  .seoContent h6{
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
  }
  
.seoContent p,
.seoContent li {
    color: var(--black);
    font-size: 15px;
    font-weight: normal;
	margin-block: 10px;
}
.seoContent ul ,.seoContent ol{
	margin:0;
	padding: 0;
}
.seoContent ul li{
	padding-left:20px;
	position:relative;
	list-style-type: none;
}
.seoContent ul li::before {
	content: "";
    background-image: url(../icon/next.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left center;
    z-index: 1;
    left: 0;
    width: 20px;
    height: 20px;
}
/* 	.seoContent ul li span, .seoContent ul li b
	{
		padding-left:20px;
	} */

  .seoContent li:last-child{
    margin-bottom: 0;
  }
  .seoContent a {
    color: var(--blue);
    font-size: 18px;
    font-weight: normal;
    text-decoration: underline;
  }
  .seoContent img.alignleft {
    float: left;
    margin: 20px 40px 0 0;
    max-width: 55%;
 }
  .seoContent img.alignright {
    float: right;
    margin: 20px 0 0 40px;
    max-width: 50%;
 }
 .seoContent img.aligncenter {

 }
  .wrapper-last-post .blog-box-content {
      padding: 0;
      margin-top: 24px;
  }
  .wrapper-last-post .latest-blog {
      margin-bottom: 30px;
}
  .wrapper-last-post{
      border: 1px solid #003c7a;
      padding: 20px;
      border-radius: 20px;
  }
  .career_inner .blog-box-content{
    height: 250px;
  }
  .career_inner .blog-box-top {
    flex-wrap: wrap;
    gap: 10px;
}
.career_inner .blog-box-top-txt{
    width: 100%;
}

::file-selector-button {
    background: #000;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
}

.ordernowfieldsec
  {
      margin-bottom:15px;
      position:relative;
  }
  .ordernowfieldsec span.wpcf7-spinner
  {
      margin:0;
      position:absolute;
      right:0;
      top:0;
  }
  .ordernowfieldsec p
  {
      margin-bottom:0;
  }
.inputfield, .inputfield:focus
{
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #333;
  background: #f1f1f1;
  border: 1px solid #999;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: none !important;
  width: 100%;
}
.selectfield
{
	background: url(../img/down_arrow.png) no-repeat 97% center #f1f1f1;
  background-size: 15px auto;
}
.selectfield, .selectfield:focus
{
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #333;
  border: 1px solid #999;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: none !important;
  width: 100%;
}
.selectfield:focus
{
	background-color: #f1f1f1;
}
.submitbut
{
  background-color: var(--blue);
  height: 50px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
	outline:0;
	border:0;
	width:100%;
}
.submitbut:hover
{
  background: var(--sky);
  color: var(--white);
}
.btn-close, .btn-close:hover
{
  color: #fff;
  background: #000;
  opacity: 1;
  line-height: 1em;
  border-radius: 5px;
  font-size: 18px;
}
#myModal .modal-dialog
{
  max-width: 700px;
}
.accessdemoform label
{
  line-height: normal;
}
.blog-area .center-button-area
{
  margin-top: 50px;
}
.accessdemoform label{
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
  }
  .accessdemoform label sup{
    color: #D83F15;
    font-weight: bold;
  }
  .accessdemoform .form-control
  {
    height: 52px;
    padding: 0 15px;
    border:  1px solid var(--gray-400);
  }
.accessdemoform .form-control.textarea
{
    height:150px;
    padding:10px 15px;
}
.privacy-policy .seoContent ul li strong
{
    padding-left:20px;
}
.ftrwhatsapp {
    position:fixed;
    z-index:1;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
  }
  .ftrwhatsapp a {
    display:block;
  }
.sglespecialtycontsec
{
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  margin-top: 50px;
}
.sglespecialtycontsec:first-child
{
  margin-top: 0;
}
.lftspecialtycontpart
{
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
.lftspecialtycontpart img
{
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.rytspecialtycontpart
{
  flex: 0 0 60%;
  max-width: 60%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
.sglespecialtycontsec h2
{
  padding: 0 0 15px 0;
}
.sglespecialtycontsec p
{
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  color: var(--black);
}
.sglespecialtycontsec ul
{
  margin: 0 0 0 20px;
  padding: 0;
}
.sglespecialtycontsec ul li
{
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  color: var(--black);
  list-style-type: disc;
}
.sglespecialtycontsec:nth-child(odd) .lftspecialtycontpart
{
  order: 1;
}
.sglespecialtycontsec:nth-child(odd) .rytspecialtycontpart
{
  order: 2;
}
.sglespecialtycontsec:nth-child(even) .lftspecialtycontpart
{
  order: 2;
}
.sglespecialtycontsec:nth-child(even) .rytspecialtycontpart
{
  order: 1;
}


 /* read more content css */
.readMore__content{
	overflow: hidden;
	max-height: var(--max, 0px);
	transition: max-height .4s ease;
}

.readMore__btn{
	margin-top: .75rem;
	padding: .6rem .9rem;
	border: 0;
	border-radius: .6rem;
	cursor: pointer;
	background: #111;
	color: #fff;
}

.progressive--done .readMore__btn{
	display: none; /* hide button when fully expanded */
}
.seoContent ul li{
	padding-left: 0;
}
    .seoContent ul li:has(b) {
        position: relative;
        padding-left: 20px;
    }

    .seoContent ul li:has(b) span {
        position: relative;
        padding-left: 0;
    }

    .seoContent ul li span {
        position: relative;
        padding-left: 20px;
    }

	.seoContent ul li:has(b)::before,
    .seoContent ul li span::before {
        content: "";
        display: inline-block;
        position: absolute;
        background-image: url(../icon/next.png);
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: left center;
        z-index: 1;
        left: 0;
        width: 20px;
        height: 20px;
    }

    .seoContent ul li::before,
    .seoContent ul li:has(b) span::before {
        content: none;
    }