
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", serif;
}
body{
    overflow-x:hidden;
}
.wrapper {
      background: #ffffff;
    /* position: fixed; */
    width: 100%;
    box-shadow: 2px 2px 5px #b6b6b6, -2px -2px 2px #ffffff;
}
.wrapper nav {
    
       
}
nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
nav .nav-content .links {
  margin-left: 80px;
  display: flex;
  gap: 10px;
      margin-bottom: 0;
}
.nav-content .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-content .logo img {
      width: 400px;
}
.nav-content .logo a {
  color: #a443ff;
  font-size: 30px;
  font-weight: 600;
}
.nav-content .links li {
  list-style: none;
  line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
      color: #000000;
    font-size: 15px;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
        text-decoration: none;
}
.nav-content .links li label {
  display: none;
}
.nav-content .links li a:hover,
.nav-content .links li label:hover {
      /*background: #00ffff;*/
    color: #000000;
}
.wrapper .search-icon,
.wrapper .menu-icon {
     color: #000;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 100%;
    text-align: right;
}
.wrapper .menu-icon {
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before {
  content: "\f00d";
}

.wrapper .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box input {
        width: 17%;
    /* height: 100%; */
    border: none;
    outline: none;
    font-size: 13px;
    color: #000;
    background: #ffffff;
    padding: 0 0px 0 15px;
    border: 1px solid #ededed;
    top: -34px;
    position: absolute;
    border-radius: 15px;
    padding: 6px 10px;
}
.search-box input::placeholder {
  color: #545252;
}
.search-box .go-icon {
  position: absolute;
  display: flex;
  right: 10px;
  top: 50%;
  align-items: center;
  transform: translateY(-50%);
  line-height: 60px;
  width: 51px;
  height: 50px;
  justify-content: center;
  border: none;
  outline: none;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}
.wrapper input[type="checkbox"] {
  display: none;
}



/* Dropdown Menu code start */
.nav-content .links ul {
  position: absolute;
  background: #8446f7;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}
.nav-content .links li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.nav-content .links ul li a {
  color: #fff;
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}
.nav-content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.nav-content .links ul li {
  position: relative;
}
.nav-content .links ul li:hover ul {
  top: 0;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1320px;
    }
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1320px;
    }
}
/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }
  nav .nav-content .links {
    margin-left: 30px;
  }
  .nav-content .links li a {
    color: #000;
    padding: 8px 13px;
    font-size: 17px;
  }
  .wrapper .search-box {
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input {
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
  }
  .nav-content .logo a {
    font-size: 25px;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before {
    content: "\f00d";
  }
  nav .nav-content .links {
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .nav-content .links {
    left: 0%;
  }
  .nav-content .links li {
    margin: 15px 20px;
  }
  .nav-content .links li a,
  .nav-content .links li label {
    line-height: 20px;
    font-size: 17px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
    color: #fff;
  }
  .nav-content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .nav-content .links ul,
  .nav-content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .nav-content .links #show-features:checked ~ ul,
  .nav-content .links #show-services:checked ~ ul,
  .nav-content .links #show-items:checked ~ ul {
    max-height: 100vh;
  }
  .nav-content .links ul li {
    margin: 7px 20px;
  }
  .nav-content .links ul li a {
    font-size: 17px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}

@media screen and (max-width: 400px) {
  .wrapper nav {
    padding: 0 10px;
  }
  .nav-content .logo img {
    width: 25px;
  }
  .nav-content .logo a {
    font-size: 23px;
  }
  .wrapper .search-box {
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon {
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input {
    padding-right: 30px;
  }
}


.login-color{
      color: #ffffff !important;
    border-bottom: 1px solid #ededed;
    padding-bottom: 0px !important;
    border-radius: 0px !important;
}

.sor{
    color: #ffffff;
    margin-top: 3px;
    background: #00349f;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 19px;
}

.subTitle {
    color: #000000;
    /* text-transform: uppercase; */
    font-size: 42px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.mainContent h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

.mainContent p {
    line-height: 22px;
}

.conterBox {
    position: relative;
    line-height: 30px;
}

.numberData .bigNum {
    font-size: 50px;
    font-weight: 700;
    color: #00349f;
}

.numberData .bigNum, .numberData span {
    text-align: center;
    margin-bottom: 5px;
    margin-left: -20px;
}

.numberData span.conterText {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.readMore {
    min-width: 150px;
    font-size: 13px;
    vertical-align: middle;
    padding: 10px 25px;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.blueBtn {
    background: #00349f;
    color: #fff;
    border: 1px solid #00349f;
}

.quality_1 {
    background: #0a365d;
}

.qualityBox {
    position: relative;
    padding: 25px 15px;
    background:#0a365d;
    color: #fff;
    transition: all .3s ease-in;
    overflow: hidden;
    cursor: default;
}

.qualityBox .icon {
    margin-bottom: 15px;
}

.qualityBox .icon img {
    height: 65px;
}

.qualityBox h3 {
    font-size: 20px;
}

.slick-slide img {
    display: block;
}

.bg-sec{
  background: #13528d!important;
}

.bg-sec2{
  background: #0061af;
}

.bg-sec3{
  background: #3c8cd3;
}

a{
  text-decoration: none!important;
}

.homeproductWrap {
    background: url(../img/product_bg.png)!important;
    
}

.post-title a{
      font-size: 13px;
    color: black;
}

.post-content {
    position: relative;
    padding: 20px;
    border: 1px solid #f3f3f3;
    background-color: #ffffff;
    min-height: 216px;
}
.post-date{
  font-size: 10px;
}

.post-discription{
      font-size: 11px;
}

.detail-link a{
      color: #0061af;
    font-size: 11px;
}

.pad-50{
      padding-top: 40px !important;
    padding-bottom: 85px !important;
}

.fnt-14px {
    font-size: 14px !important;
    font-weight: 400;
    padding: 0px 43px 0px;
}

.youtube{
          padding: 15px;
    background: #f1ebeb;
    margin-bottom: 10px;
}

.video-title{
      color: #0061af;
    font-size: 14px;
    text-align: center;
}

 .businessVer h2 {
    font-weight: 500;
    text-transform: none;
}

.businessVer h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

.color-white{
  color:white!important;
}

.verticals {
    border-right: 1px solid #ffffff;
}

.verticals {
    width: 20%;
    padding: 0 25px;
}

.verticals h3 {
       width: 12vw;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #ffffff;
    transition: transform .3s ease;
    font-size: 22px;
    font-weight: 700;
}

.ls{
      color: aliceblue;
    font-size: 12px;
}

.pao{
         background-color: #0061af;
    margin-bottom: 20px;
}


.footerBg {
    background: #000000e8;
       padding: 10px;
    padding-bottom: 0px;
}


.footer_subhead {
    color: #000;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.foot_list li a {
    font-size: 13px;
    font-weight: 400;
    display: block;
    color: #000;
    position: relative;
    transition: all .3s ease-in-out;
}

.footer_subhead {
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

.footerLinks a {
    color: #000;
    font-weight: 500;
}

.foot_list{
  list-style:none!important;
      padding: 0;
}

.foot_list li {
    color: #000;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 12px;
    line-height: 22px;
}

.list-type-2 .list-type-2-item {
    
    margin-bottom: 30px;
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
padding: 10px;
}

.list-type-2 .list-type-2-item .list-type-2-media-content {
  
}



    .list-type-2 .list-type-2-item .list-type-2-media-content .list-type-2-image:not(.no-image) {
        width: 100%;
        height: auto;
       
    }

.list-type-2 .list-type-2-item .list-type-2-media-content .list-type-2-cat-icon-content {
    width: 90px;
    height: 90px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
        background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
       right: 20px;
    bottom: -45px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #0033a0;
}

.list-type-2-cat-icon-content img{
    width:70px;
}

.list-type-2 .list-type-2-item .list-type-2-media-content .list-type-2-cat-icon-content .list-type-2-cat-icon {
    width: 50px;
    height: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.list-type-2 .list-type-2-item .list-type-2-information {
    
           padding: 20px 0px;
}

.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-information-content {
    overflow: hidden;
    height: auto;
}

.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-title {
display: block;
    font-size: 15px;
    font-weight: 500;
    color: #1E2020;
    margin-bottom: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    
}

.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-description {
font-size: 14px;
    font-weight: 400;
    color: #8E8E8E;
    line-height: 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-links {
    margin-top: 18px;
        display: flex;
    justify-content: space-between;
}

.list-type-2-links a {
        font-size: 12px;
    color: #33c4ff;
    font-weight: 500;
    /* background: #00349f; */
    padding: 20px 35px;
    border-radius: 2px;
    border: 1px solid;
}

.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-links .list-type-2-link.detail-link {
    padding-left: 10px;
}


.list-type-2 .list-type-2-item .list-type-2-information .list-type-2-links .list-type-2-link {
    position: relative;
    color: #0033a0;
    font-size: 13px;
    font-weight: 400;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.offerIcon {
    z-index: 1;
    max-height: 380px;
}


            [data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos] {
                transition-duration: 50ms
            }

            [data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate {
                transition-delay: 50ms
            }

            [data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos] {
                transition-duration: .1s
            }

            [data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate {
                transition-delay: .1s
            }

            [data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos] {
                transition-duration: .2s
            }

            [data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate {
                transition-delay: .2s
            }

            [data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos] {
                transition-duration: .25s
            }

            [data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate {
                transition-delay: .25s
            }

            [data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos] {
                transition-duration: .35s
            }

            [data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate {
                transition-delay: .35s
            }

            [data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos] {
                transition-duration: .4s
            }

            [data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate {
                transition-delay: .4s
            }

            [data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos] {
                transition-duration: .45s
            }

            [data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate {
                transition-delay: .45s
            }

            [data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos] {
                transition-duration: .5s
            }

            [data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate {
                transition-delay: .5s
            }

            [data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos] {
                transition-duration: .6s
            }

            [data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate {
                transition-delay: .6s
            }

            [data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos] {
                transition-duration: .8s
            }

            [data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate {
                transition-delay: .8s
            }

            [data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos] {
                transition-duration: .85s
            }

            [data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate {
                transition-delay: .85s
            }

            [data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos] {
                transition-duration: 1s
            }

            [data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate {
                transition-delay: 1s
            }

            [data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos] {
                transition-duration: 1.2s
            }

            [data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate {
                transition-delay: 1.2s
            }

            [data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos] {
                transition-duration: 2s
            }

            [data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate {
                transition-delay: 2s
            }

            [data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos] {
                transition-duration: 2.05s
            }

            [data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos] {
                transition-delay: 0
            }

            [data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate {
                transition-delay: 2.05s
            }

            [data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos] {
                transition-timing-function: cubic-bezier(.25,.25,.75,.75)
            }

            [data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos] {
                transition-timing-function: ease;
            }

            [data-aos^=fade][data-aos^=fade] {
                opacity: 1;
                transition-property: opacity,transform
            }

            [data-aos^=fade][data-aos^=fade].aos-animate {
                opacity: 1;
                transform: translateZ(0)
            }

            [data-aos=fade-up] {
               
            }

            [data-aos=fade-right] {
                transform: translate3d(-100px,0,0)
            }

            [data-aos=fade-left] {
                transform: translate3d(100px,0,0)
            }

            [data-aos^=zoom][data-aos^=zoom] {
                opacity: 0;
                transition-property: opacity,transform
            }

            [data-aos^=zoom][data-aos^=zoom].aos-animate {
                opacity: 1;
                transform: translateZ(0) scale(1)
            }

            [data-aos^=slide][data-aos^=slide] {
                transition-property: transform
            }

            [data-aos^=slide][data-aos^=slide].aos-animate {
                transform: translateZ(0)
            }

            [data-aos^=flip][data-aos^=flip] {
                backface-visibility: hidden;
                transition-property: transform
            }

            @media(max-width: 768px) {
                [data-aos^=fade][data-aos^=fade] {
                    opacity:1;
                    transition-property: opacity,transform
                }

                [data-aos=fade-up] {
                    transform: translate3d(0,0,0)
                }
            }

                        .offerWrap {
                min-height: 500px;
                background: var(--wpr-bg-39aa6b39-1c0d-46a6-a6a9-535b6e19161e) no-repeat red;
                background-size: cover;
                color: #fff
            }

            .offerList li {
                margin-bottom: 50px;
                min-height: 130px;
            }

            .offerList li h4 {
                font-weight: 700;
                font-size: 16px
            }

            .offerList li p {
                font-size: 14px
            }

            .offerTextRight {
                text-align: right
            }

            .offerIcon {
                z-index: 1;
                max-height: 380px
            }

            .offerIcon::before {
                width: 1px;
                height: 95%;
                background: #5c98c9;
                position: absolute;
                left: 25%;
                top: 10px;
                content: "";
                z-index: -1
            }

            .offerIcon::after {
                width: 1px;
                height: 95%;
                background: #5c98c9;
                position: absolute;
                right: 25%;
                top: 10px;
                content: "";
                z-index: -1
            }

            .offerTextRight li {
                position: relative;
                    list-style: none;
            }

            .offerTextRight li:before {
                width: 30%;
                height: 1px;
                background: #5c98c9;
                position: absolute;
                right: -45%;
                top: 10px;
                content: ""
            }

            .offerTextRight li:after {
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fff;
                position: absolute;
                right: -60px;
                top: 2px;
                content: "";
                animation: 3s ease-out infinite zoom-in-zoom-out
            }

            .offerTextLeft li {
                position: relative;
                    list-style: none;
            }

            .offerTextLeft li:before {
                width: 30%;
                height: 1px;
                background: #5c98c9;
                position: absolute;
                left: -45%;
                top: 10px;
                content: ""
            }

            .offerTextLeft li:after {
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fff;
                position: absolute;
                left: -60px;
                top: 2px;
                content: "";
                animation: 3s ease-out infinite zoom-in-zoom-out
            }

            .offerTextCenter {
                text-align: center;
                min-height: 260px
            }

            .offerTextCenter li {
                position: relative;
                margin-top: 80px
            }

            .offerTextCenter li:before {
                width: 1px;
                height: 100%;
                background: #5c98c9;
                position: absolute;
                left: 50%;
                top: -125%;
                content: ""
            }

            .offerTextCenter li:after {
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fff;
                position: absolute;
                left: 50%;
                margin-left: -7px;
                top: -40px;
                content: "";
                animation: 3s ease-out infinite zoom-in-zoom-out
            }

            @keyframes zoom-in-zoom-out {
                0% {
                    transform: scale(.5,.5)
                }

                50% {
                    transform: scale(1,1)
                }

                100% {
                    transform: scale(.5,.5)
                }
            }

            @keyframes spin {
                to {
                    transform: rotate(360deg)
                }
            }

            @media (max-width: 768px) {
                .offerIcon {
                    max-width:300px;
                    height: auto!important;
                    margin: auto
                }

                .offerTextLeft,.offerTextRight {
                    text-align: center
                }

                .offerList li {
                    margin-bottom: 30px;
                    min-height: auto
                }

                .offerTextCenter {
                    min-height: auto
                }

                .offerIcon::after,.offerIcon::before,.offerTextCenter li:after,.offerTextCenter li:before,.offerTextLeft li:after,.offerTextLeft li:before,.offerTextRight li:after,.offerTextRight li:before {
                    display: none
                }

                .offerTextCenter li {
                    margin-top: 50px
                }
            }

            .offerList li h4 {
    font-weight: 700;
    font-size: 16px;
}

.offerList li p {
        font-size: 14px;
    color: white;
}

.offerTextCenter li:before {
    width: 1px;
    height: 100%;
    background: #5c98c9;
    position: absolute;
    left: 50%;
    top: -125%;
    content: "";
}

.offerTextCenter li:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: -40px;
    content: "";
    animation: 3s ease-out infinite zoom-in-zoom-out;
}

.offerTextRight li:before {
    width: 30%;
    height: 1px;
    background: #5c98c9;
    position: absolute;
    right: -45%;
    top: 10px;
    content: "";
}
.offerList li h4 {
        font-weight: 700;
    font-size: 16px;
    color: white;
}

.offerTextRight li:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    right: -60px;
    top: 2px;
    content: "";
    animation: 3s ease-out infinite zoom-in-zoom-out;
}

.offerTextLeft li:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: -60px;
    top: 2px;
    content: "";
    animation: 3s ease-out infinite zoom-in-zoom-out;
}

.partnerAssociated {
    background: #fff;
}

.associated {
    color: #0d63ad;
    font-size: 16px;
}

.partnerAssociated a {
    color: #000;
        text-align: center;
}

.innerBanner {
    position: relative;
}

.innerBanner img {
    width: 100%;
    display: block;
}

.innerBannerText {
    width: 100%;
    position: absolute;
    left: 5%;
    top: 0;
    bottom: 0;
}

.breadcrum ul {
    padding: 0;
    font-size: 12px;
    margin-left: -15px;
}

.breadcrum ul li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 15px;
    position: relative;
    color: #fff;
}

.breadcrum ul li a {
    color: #fff;
    font-weight: 500;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: all .5s ease;
}

.breadcrum ul li:after {
    content: '\276f';
    position: absolute;
    right: -18px;
    top: 0;
    display: block;
    font-size: 10px;
}

.breadcrum ul li:last-child {
    margin-right: 0;
    pointer-events: none;
}

.ji{
          margin: auto;
    margin-right: 0;
    color: #000000;
    font-size: 16px;
    border-bottom: 1px solid #000000;
}


.pd-wrap {
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}
.heading-section {
  text-align: center;
  margin-bottom: 20px;
}
.sub-heading {
  font-family: 'Poppins', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.heading-section h2 {
  font-size: 32px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}
.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
  min-width: 80px;
  background-size: 100%;
}
.carousel-testimonial .item {
  padding: 30px 10px;
}
.quote {
  position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}
.name {
  margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}
.position {
  color: #adadad;
  font-size: 14px;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  outline: none;
  height: 25px;
}
.owl-nav button svg {
  width: 25px;
  height: 25px;
}
.owl-nav button.owl-prev {
  left: 25px;
}
.owl-nav button.owl-next {
  right: 25px;
}
.owl-nav button span {
  font-size: 45px;
}
.product-thumb .item img {
  height: 100px;
}
.product-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 4px;
}
.product-price-discount {
  font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}
.product-price-discount span.line-through {
  text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}
.display-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.product-info {
  width: 100%;
}
.reviews-counter {
    font-size: 13px;
}
.reviews-counter span {
  vertical-align: -2px;
}
.rate {
    float: left;
    padding: 0 10px 0 0;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
    color:#ccc;
  margin-bottom: 0;
  line-height: 21px;
}
.rate:not(:checked) > label:before {
    content: '\2605';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
.product-dtl p {
  font-size: 14px;
  line-height: 24px;
  color: #7a7a7a;
}
.product-dtl .form-control {
  font-size: 15px;
}
.product-dtl label {
  line-height: 16px;
  font-size: 15px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.product-count {
  margin-top: 15px; 
}
.product-count .qtyminus,
.product-count .qtyplus {
  width: 34px;
    height: 34px;
    background: #212529;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}
.product-count .qtyminus {
  border-radius: 3px 0 0 3px; 
}
.product-count .qtyplus {
  border-radius: 0 3px 3px 0; 
}
.product-count .qty {
  width: 60px;
  text-align: center;
}
.round-black-btn {
  border-radius: 4px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    margin-top: 20px;
    border: solid 2px #212529; 
    transition: all 0.5s ease-in-out 0s;
}
.round-black-btn:hover,
.round-black-btn:focus {
  background: transparent;
  color: #212529;
  text-decoration: none;
}

.product-info-tabs {
  margin-top: 25px; 
}
.product-info-tabs .nav-tabs {
  border-bottom: 2px solid #d8d8d8;
}
.product-info-tabs .nav-tabs .nav-item {
  margin-bottom: 0;
}
.product-info-tabs .nav-tabs .nav-link {
  border: none; 
  border-bottom: 2px solid transparent;
  color: #323232;
}
.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
  border: none; 
}
.product-info-tabs .nav-tabs .nav-item.show .nav-link, 
.product-info-tabs .nav-tabs .nav-link.active, 
.product-info-tabs .nav-tabs .nav-link.active:hover {
  border: none; 
  border-bottom: 2px solid #d8d8d8;
  font-weight: bold;
}
.product-info-tabs .tab-content .tab-pane {
  padding: 30px 20px;
  font-size: 15px;
  line-height: 24px;
  color: #7a7a7a;
}
.review-form .form-group {
  clear: both;
}
.mb-20 {
  margin-bottom: 20px;
}

.product-detail-content {
    font-size: 15px;
    color: #63666A;
    margin: 0;
    line-height: 1.4;
}

.product-detail-content strong {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #121731;
    display: block;
}

.product-detail-content p {
    margin-bottom: 40px;
    font-size:14px;
}

.product-dtl .product-info .product-info-icon {
    width: 120px;
    min-width: 120px;
    height: 120px;
    min-height: 120px;
    margin-bottom: 30px;
    border-radius: 50%;
    background-color: #0033a0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.mr-2{
  margin-right:10px!important;
}

.w-90{
  width:88%;
      padding-left: 15px;
}

.left-content__title{
   font-weight: 500;
    font-size: 20px;
    line-height: 41px;
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #ffffff;
    width: 100%;
    display: block;

  }

.bg-blue {
    background: #0033a0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top:30px;
}

  .pad-big{
        padding: 14px;
    border-right: 1px solid #ffffff;
    margin-right: 10px;
  }

.left-content {
    padding-bottom: 15px;
    background: #0033a0;
}


  .gb{
        margin-right: 15px;
    background: #3c8cd3;
    border: #3c8cd3;
        font-size: 15px;
  }


  .contact-us {
    width: 100%;
   
   
    padding: 0 120px;
   
}

.contact-heading {
    width: 100%;
  
        display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 40px;
}

.contact-heading h2 {
    font-size: 32px;
    font-weight: 700;
    
}
    .contact-heading h2, .subcontainer-heading h3 {
    margin: 0;
    color: #0094d9;
    line-height: 120%;
    font-style: normal;
}


.contact_us-container {
    position: relative;
    width: 100%;
   
    justify-content: center;
    align-items: start;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact_us-subcontainer {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.subcontainer-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.subcontainer-heading h3 {
    font-size: 17px;
    font-weight: 600;
    padding: 0;
  
  }

  .subcontainer_content .content-1 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

  .subcontainer_content {
    width: 100%;
   
    display: flex;
    flex-direction: column;
}

.subcontainer_content .content-2 p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #58595b;
    padding: 0;
}

.press-queries {
    
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
  background:#F9F9F9;
  padding:25px;
  margin:50px 0;
}

#contact h3 {
  color: #F96;
  display: block;
  font-size: 30px;
  font-weight: 400;
}

#contact h4 {
  margin:5px 0 15px;
  display:block;
  font-size:13px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
  width:100%;
  border:1px solid #CCC;
  background:#FFF;
  margin:0 0 5px;
  padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
  -webkit-transition:border-color 0.3s ease-in-out;
  -moz-transition:border-color 0.3s ease-in-out;
  transition:border-color 0.3s ease-in-out;
  border:1px solid #AAA;
}

#contact textarea {
  height:100px;
  max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
  cursor:pointer;
  width:100%;
  border:none;
  background:#0CF;
  color:#FFF;
  margin:0 0 5px;
  padding:10px;
  font-size:15px;
}

#contact button[type="submit"]:hover {
  background:#09C;
  -webkit-transition:background 0.3s ease-in-out;
  -moz-transition:background 0.3s ease-in-out;
  transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
  outline:0;
  border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
.catalogue-container {
    padding: 30px 0 70px 0;
    
}
    .catalogue-container .result-products-content {
        margin-top: 30px;
    }
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
button.btn, a.btn {
    border-radius: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (min-width: 1366px) {
    .filter-sidebar {
        overflow: visible;
        z-index: 9;
    }
}

@media (min-width: 1024px) {
    .filter-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 116px;
        width: auto;
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.filter-sidebar {
    background-color: #DDE6F0;
    padding: 30px;
    left: 0;
}
button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
    cursor: pointer;
}

.filter-sidebar__close {
    margin: 0 0 30px auto;
    display: block;
    background: none;
    border: none;
}

@media (min-width: 1024px) {
    .d-lg-none {
        display: none !important;
    }
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
.filter-sidebar__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    /* margin-bottom: 40px; */
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.filter-sidebar .form-group .form-control {
    border-color: #ffffff;
}

.form-group__icon__left .form-control {
    padding-left: 2.5rem;
}

.form-group .form-control, .form-group .custom-file-label, .form-group .custom-file-input {
    height: 50px;
    border-radius: 0;
    padding: 15px;
    line-height: inherit;
    background-color: #fff;
    border: 2px solid #EAEAEA;
}

.form-control {
    text-transform: uppercase;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0.25rem 0.25rem;
    font-size: 12px;
    line-height: 1.5;
    color: #121731;
    background-clip: padding-box;
    border-bottom: 0.5px solid #333333 !important;
    border: none;
    border-radius: 0px !important;
    font-weight: 500;
}

.form-group__icon__left .svg {
    left: 0.9375rem;
}

.form-group__icon .svg {
    position: absolute;
    bottom: 17px;
    width: 16px;
    height: 16px;
}


.filter-sidebar__item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #121731;
    margin-bottom: 20px;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
}
input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}




.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label {
    color: #121731;
}

.custom-control.custom-radio .custom-control-label {
    color: #63666a;
    padding-left: 7px;
}

.form-group label {
    color: #121731;
    font-size: 15px;
    font-weight: 400;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}

label {
    margin: 0;
}

label {
    display: inline-block;
    margin-bottom: 15px;
}



.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #0033a0;
    background-color: #ffffff;
}

.custom-control.custom-radio .custom-control-label::before {
    width: 20px;
    height: 20px;
    border: 1.5px solid #D9DADA;
    top: 2px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control-label::before, .custom-file-label, .custom-select {
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: none;
    background-color: #0133a0;
}


.custom-control.custom-radio .custom-control-label::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 0;
    -webkit-transform: translate(6px, 8px);
    transform: translate(6px, 8px);
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%;

}

.custom-control.custom-radio + .custom-radio {
    margin-top: 10px;
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
}




.filter-sidebar__item .form-group-vehicle, .filter-sidebar__item .form-group-product-category {
    margin-bottom: 5px;
}

.filter-sidebar__item .form-group-vehicle {
    margin-top: 15px;
}



:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
    width: 100%;
}

.filter-sidebar .form-group .form-control {
    border-color: #ffffff;
}

.form-group .bootstrap-select {
    padding: 0;
    border: none;
    background: none;
}

.form-group .form-control, .form-group .custom-file-label, .form-group .custom-file-input {
    height: 50px;
    border-radius: 0;
    line-height: inherit;
    background-color: #fff;
    border: 2px solid #EAEAEA;

}

.filter-sidebar .form-group .form-control {
    border-color: #ffffff;
}



.form-group .bootstrap-select .btn.dropdown-toggle.bs-placeholder {
    color: #c7c7c7;
}

.form-group .bootstrap-select .btn.dropdown-toggle {
    color: #121731;
    font-size: 15px;
    font-weight: 400;
    padding: 0 40px 0 14px;
    height: 100%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;

}



.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}












.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0;
}
.dropdown, .dropup {
    position: relative;
}
.form-group .bootstrap-select {
    padding: 0;
    border: none;
    background: none;

}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.btn.btn-secondary, a.btn.btn-secondary {
    background-color: #00B9F2;
    border-color: #62b5e5;
}

.filter-sidebar .btn-search {
    width: 100%;
    height: 50px;
}

.btn.btn-secondary {
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #ffffff;
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
    cursor: pointer;
}

button.btn, a.btn {
    border-radius: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
    button.btn .svg.svg-right, a.btn .svg.svg-right {
        margin-left: 10px;
        margin-right: 0;
    }
.dom {
    max-height: 153px !important;
} 
  
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.dam {
    display: block;
    width: 130%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

table {
    border-collapse: collapse;
}
.product-list-container .product-image-col {
    max-width: 180px;
    width: 180px;
}

.product-list-container table tr th {
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #8a8d8f;
    padding-top: 0;
    padding-bottom: 20px;
    white-space: nowrap;
}

.product-list-container table tr td, .product-list-container table tr th {
    border: none;
    padding: 20px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}


.product-list-container tbody:nth-of-type(even) {
    background-color: #E6ECF2;
}

.product-list-container tbody + tbody {
    border: none;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.product-list-container .product-row {
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    color: #63666a;
        border: 1px solid #ededed;
}

.form-group__icon__left .form-control {
    padding-left: 2.5rem;
}

.product-list-container tbody:hover:not(.not-hover) {
    background-color: #DDE6F0 ;
}
.product-list-container table tr td:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-list-container table tr td {
    padding-top: 30px;
    padding-bottom: 30px;
}

.product-list-container table tr td, .product-list-container table tr th {
    border: none;
    padding: 20px;
}

.table th, .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.product-list-container .product-image {
    position: relative;
    width: 120px;
    height: 80px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 15px;
    box-sizing: content-box;
}
    .product-list-container .product-image a {
        height: 100%;
    }
    .product-list-container .product-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
.product-list-container .product-name {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #00B9F2;
    width: 100%;
    display: block;
    text-align: center;
}
.product-list-container .product-manufacturer {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: #121731;
    margin: 5px 0 10px 0;
}
.product-list-container .product-category {
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #8a8d8f;
}
.product-list-container .table-td-list.table-td-oe-list {
    display: block;
    
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
    .product-list-container .table-td-list.table-td-oe-list li {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
    }

.product-list-container .table-td-list li {
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    color: #63666a;
}
.product-list-container .table-td-list.table-td-oe-list li:first-child span {
    margin-top: 0;
}

.product-list-container .table-td-list.table-td-oe-list li span {
    margin: 20px 0 10px 0;
}
.product-list-container .table-td-list.table-td-oe-list li strong {
    color: #00B9F2;
}

.product-list-container .table-td-list li strong {
    font-weight: 500;
    color: #121731;
    margin: 0 0 0 3px;
}
.product-list-container .table-td-list.table-td-oe-list.scroll + .btn-view-more {
    display: -webkit-box !important;
    display: flex !important;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn-view-more::before, .btn-view-more::after {
    content: "";
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #8a8d8f;
    opacity: 0.2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.btn-view-more__text {
    color: #8a8d8f;
    font-size: 13px;
    font-weight: 400;
    padding: 0 0px;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.btn-view-more::before, .btn-view-more::after {
    content: "";
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #8a8d8f;
    opacity: 0.2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}







.product-list-container .table-td-list.table-td-oe-list {
    display: block;
    
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product-list-container tbody {
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}









.category-container {
    font-family: Arial, sans-serif;
    /* margin: 20px; */
}

label {
    display: block;
    margin: 10px 0 5px;
}

select {
    /* width: 200px; */
    padding: 11px;
    font-size: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 50px;
    width: 100%;
   
}


.bootstrap-select > .dropdown-toggle:after {
    margin-top: -1px;
}

    select:disabled {
        background-color: #f0f0f0;
        color: #888;
    }




.pagination {
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.5rem;
}



    .pagination .page-item.active .page-link {
        background-color: #0033a0;
        color: #fff;
    }

    .pagination .page-item .page-link {
        background-color: #fff;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        color: #121731;
        border-radius: 0 !important;
        border: none;
        font-size: 15px;
        font-weight: 600;
    }

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}



.m-t-25 {
    margin-top: 25px !important;
}




.pagination .page-item {
    margin: 0 7px;
}









.home-search__top {
    background-color: #0c3da5;
}


.custom-radio-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.custom-radio-btn__item {
    -webkit-box-flex: 1;
    flex: 1;
}
.custom-radio-btn__input {
    display: none;
}
    .custom-radio-btn__input:checked ~ .custom-radio-btn__label-content {
        color: #ffffff;
        border-color: #62b5e5;
        background-color: #0033a0;
    }

.custom-radio-btn__label-content {
    color: rgba(255, 255, 255, 0.6999999881);
    height: 60px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-top: 3px solid transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


.custom-radio-btn__label {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-flex: 1;
    flex: 1;
    padding: 0 30px;
    height: 100%;
}

label {
    margin: 0;
}
.position-relative {
    position: relative !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
}
.custom-radio-btn__input:checked ~ .custom-radio-btn__label-content .custom-radio-btn__icon {
    opacity: 0;
    visibility: hidden;
}

.custom-radio-btn__icon {
    position: absolute;
    top: 53%;
    left: -8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 31px;
    min-width: 29px;
    height: 30px;
}
.custom-radio-btn__input:checked ~ .custom-radio-btn__label-content .custom-radio-btn__icon.active {
    opacity: 1;
    visibility: visible;
}
.custom-radio-btn__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    margin-left: 30px;
}

@media (min-width: 1366px) {
    .left-content__title1 {
        text-align: right;
        margin-bottom: 35px;
        display: block;
    }
}
 .left-content__title1 {
    font-weight: 500;
    font-size: 30px;
    line-height: 41px;
    color: #ffffff;
    width:21%;
   
  
}
 .dum{
     color:white;
 }
.doom {
    color: white;
    margin-left: 31px;

 }
.table1 {
    width: 100%;
}
.table-responsive1 {
    width: 129%;
}

.main__brands2 {
    padding: 0px 0 0;
    padding-bottom:50px;
}
.brands-box-wrap {
    background-color: #F5F5F5;
    padding: 25px;
}
.brands_titling__title {
    font-size: 34px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 0;
}

.brands-iteams {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 25px;
}

.brands-iteam {
    display: inline-block;
}
.brands-iteam img{
    width:100px;
}
.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}

.brands-iteam a {
                padding: 20px;
    display: flex;
    transition: 0.3s;
    min-height: 140px;
    border: 1px solid #00349f;
    border-radius: 8px;
        background: white;
   
}

.magnet{
        font-size: 34px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
 
    padding-bottom: 10px;
    margin-bottom: 0;
}

.brands-iteam a:hover {
                padding: 20px;
    display: flex;
    transition: 0.3s;
    min-height: 140px;
    border: 1px solid #ffffff;
    border-radius: 8px;
        background: #737578;
   
}

.brands-iteam-title {
    text-align: center;
    color: #222;
    font-size: 16px;
    padding-top: 10px;

}

    .bgcol_2-icons {
       /* grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 0;
        display: grid;
        max-width: 1700px;
        margin: 0 auto;*/
    }


    .bgcol-icon:first-child {
    background: #F4F3FB;
}

.bgcol-icon {
       padding: 30px;
    display: flex;
    gap: 60px;
    position: relative;
}

.bgcol-icon_box {
    width: 300px;
}

.bgcol-icon_content {
    max-width: 1200px;
    margin: 0 auto;
}

.bgcol_2-icons h5 {
    color: #222;
    font-size: 36px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 20px;
    
}

.bgcol_2-icons p {
    font-size: 15px;
    line-height: 24px;
}

.bgcol_2-icons .btn-action {
    padding-top: 25px;
}

.btn-action {
    padding: 15px 0;
}

.btn.btn-second {
    color: #222;
    background: #fff;
    border: 1px solid #ddd;
}

.bgcol-icon:last-child {
    background: #00349f;
}

.counter-area {
     position: relative;
    background: #00359e;
    z-index: 1;
    padding: 30px;
}

.counter-area::before {
    content: "";
    position: absolute;
    background-image: url(../img/01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .15;
    z-index: -1;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.counter-box .icon {
    position: relative;
    text-align: center;
    font-size: 60px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    line-height: 110px;
    color: white;
    border: 5px solid white;
    background: blue;
    z-index: 1;
}

.flaticon-car-rental:before {
    content: "\f10d";
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: white;
    font-size: 50px;
    font-weight: 600;
}

.counter-box .title {
    color: white;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.icon img{
        width: 100%;
    padding: 20px;

}

.section-all-padding {
    padding-top: 110px;
    padding-bottom: 0px;
    position: relative;
}

.titling--centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.titling {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    text-align: center;
}

.titling__suptext {
    font-weight: 500;
    color: #00369d;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 6px;
    margin-bottom: 0;
}
.titling__title {
    font-size: 34px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery__titling .titling__text {
    max-width: 615px;
    margin-bottom: 0;
    padding-bottom: 0;
}

    .box-ico-col4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .box-ico-1 {
    display: grid;
    grid-column-gap: 40px;
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding: 50px;
    padding-top: 80px;
}


.box-ico-1 .box-ico-1_iteam {
    border: 1px solid #eee;
    padding: 20px;
    -webkit-box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, .05);
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, .05);
    position: relative;
    z-index: 5;
    background: #fff;
    transition: 0.3s;
}

.box-ico-1_iteam {
    max-width: 350px;
}

.box-ico-1 .box-ico-1_ico-nmbr {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #222;
    font-size: 90px;
    opacity: 0.1;
    font-weight: 600;
}

.box-ico-1 .box-ico-1_img {
    width: 100px;
}
.box-ico-1_img svg, .box-ico-1_img img {
    max-width: 100%;
    height: auto;
}

.box-ico-1 .box-ico-1_title {
    color: #222;
    font-weight: 600;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 5px;
    text-transform: capitalize;
    max-width: 80%;
    display: inline-block;
    padding-top: 15px;
}

.box-ico-1 .box-ico-1_iteam p {
    color: #777;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.box-ico-1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 290px;
    z-index: 3;
    background-color: #F5F5F5;
}


/* Hero Video */
 .outter.hero-video {
     width: 100%;
     height: auto;
    
     flex-direction: column;
     justify-content: center;
}
 @media (max-width: 767px) {
     .outter.hero-video {
         height: 325px;
    }
}
 .hero-video .video-container {
     height: 800px;
     width: 100%;
     position: relative;
     overflow: hidden;
}
 @media (max-width: 767px) {
     .hero-video .video-container {
         height: 325px;
    }
}
 .hero-video video {
     object-fit: cover;
     /* position: absolute; */
     height: auto;
     width: 100%;
     top: 0;
     left: 0;
}
 @media (max-width: 767px) {
     .hero-video video {
         height: 325px;
    }
}
 .hero-video .video-container:after {
     content: '';
     display: block;
     height: 100%;
     width: 100%;
     position: absolute;
     top: 0;
     left: 0;
     background: rgba(0, 0, 0, .2);
     z-index: 1;
}
 .hero-video h1 {
     text-transform: uppercase;
     margin: 0 0 1rem;
     padding: 0;
     line-height: 1.4;
     color: white;
}
 @media (max-width: 767px) {
     .hero-video h1 {
         font-size: 32px;
    }
}
 @media (min-width: 768px) {
     .hero-video h1 {
         font-size: 46px;
    }
}
 .hero-video .desc {
     color: white;
     font-weight: 400;
     font-size: 18px;
}
 .hero-video .callout {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     height: 100%;
     text-align: center;
     position: relative;
     z-index: 10;
     width: 70%;
     margin: auto;
}
 @media (max-width: 767px) {
     .hero-video .callout {
         width: 90%;
    }
}
 .hero-video .button {
     text-transform: uppercase;
     background-color: transparent;
     border-radius: 0px;
     margin-top: 20px;
     background-color: #00349f;
     padding: 15px 30px;
     border-radius: 0px;
     color: #fff;
     text-decoration: none;
     font-weight: bold;
         border-radius: 6px;
}
 @media (max-width: 767px) {
     .hero-video .button {
         padding: 10px 20px;
    }
}
 .hero-video .button:hover {
     cursor: pointer;
     background-color: #ffffff;
     color:black;
     border:1px solid #00349f;
 }



 /* Hero Video */
 .outter.hero-video1 {
     width: 100%;
     height: auto;
    
     flex-direction: column;
     justify-content: center;
}
 @media (max-width: 767px) {
     .outter.hero-video1 {
         height: 325px;
    }
}
 .hero-video1 .video-container {
     height:800px;
     width: 100%;
     position: relative;
     overflow: hidden;
}
 @media (max-width: 767px) {
     .hero-video1 .video-container {
         height: 325px;
    }
}
 .hero-video1 video {
     object-fit: cover;
     /*position: absolute;*/
     height: 100%;
     width: 100%;
     top: 0;
     left: 0;
}
 @media (max-width: 767px) {
     .hero-video1 video {
         height: 325px;
    }
}
 .hero-video1 .video-container:after {
     content: '';
     display: block;
     height: 100%;
     width: 100%;
     position: absolute;
     top: 0;
     left: 0;
     background: rgba(0, 0, 0, .2);
     z-index: 1;
}
 .hero-video1 h1 {
     text-transform: uppercase;
     margin: 0 0 1rem;
     padding: 0;
     line-height: 1.4;
     color: white;
}
 @media (max-width: 767px) {
     .hero-video1 h1 {
         font-size: 32px;
    }
}
 @media (min-width: 768px) {
     .hero-video1 h1 {
         font-size: 46px;
    }
}
 .hero-video1 .desc {
     color: white;
     font-weight: 400;
     font-size: 18px;
}
 .hero-video1 .callout {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     height: 100%;
     text-align: center;
     position: relative;
     z-index: 10;
     width: 70%;
     margin: auto;
}
 @media (max-width: 767px) {
     .hero-video1 .callout {
         width: 90%;
    }
}
 .hero-video1 .button {
     text-transform: uppercase;
     background-color: transparent;
     border-radius: 0px;
     margin-top: 20px;
     background-color: #00349f;
     padding: 15px 30px;
     border-radius: 0px;
     color: #fff;
     text-decoration: none;
     font-weight: bold;
         border-radius: 6px;
}
 @media (max-width: 767px) {
     .hero-video1 .button {
         padding: 10px 20px;
    }
}
 .hero-video1 .button:hover {
     cursor: pointer;
     background-color: #ffffff;
     color:black;
     border:1px solid #00349f;
 }
.row.heading h2 {
    color: #fff;
    font-size: 52.52px;
    line-height: 95px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.heading.heading-icon {
    display: block;
}
.padding-lg {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
}
.practice-area.padding-lg {
    padding-bottom: 55px;
    padding-top: 55px;
}
.practice-area .inner{ 
     border:1px solid #999999; 
     text-align:center; 
     margin-bottom:28px; 
     padding:40px 25px;
}
.our-webcoderskull .cnt-block:hover {
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    border: 0;
}
.practice-area .inner h3{ 
    color:#3c3c3c; 
    font-size:24px; 
    font-weight:500;
    font-family: 'Poppins', sans-serif;
    padding: 10px 0;
}
.practice-area .inner p{ 
    font-size:14px; 
    line-height:22px; 
    font-weight:400;
}
.practice-area .inner img{
    display:inline-block;
}


.our-webcoderskull{
  background: url("../img/product_bg.png") no-repeat center top / cover;
  
}
.our-webcoderskull .cnt-block{ 
   float:left; 
   width:100%; 
   background:#fff; 
   padding:30px 20px; 
   text-align:center; 
   border:2px solid #d5d5d5;
   margin: 0 0 28px;
}
.our-webcoderskull .cnt-block figure{
   width:148px; 
   height:148px; 
   border-radius:100%; 
   display:inline-block;
   margin-bottom: 15px;
}
.our-webcoderskull .cnt-block img{ 
   width:148px; 
   height:148px; 
   border-radius:100%; 
}
.our-webcoderskull .cnt-block h3{ 
   color:#2a2a2a; 
   font-size:20px; 
   font-weight:500; 
   padding:6px 0;
   text-transform:uppercase;
}
.our-webcoderskull .cnt-block h3 a{
  text-decoration:none;
    color:#2a2a2a;
}
.our-webcoderskull .cnt-block h3 a:hover{
    color:#337ab7;
}
.our-webcoderskull .cnt-block p{ 
   color:#2a2a2a; 
   font-size:13px; 
   line-height:20px; 
   font-weight:400;
}
.our-webcoderskull .cnt-block .follow-us{
        margin: 20px 0 0;
    align-items: center;
    display: contents;
}
.our-webcoderskull .cnt-block .follow-us li{ 
    display:inline-block; 
    width:auto; 
    margin:0 5px;
}
.our-webcoderskull .cnt-block .follow-us li .fa{ 
   font-size:24px; 
   color:#767676;
}
.our-webcoderskull .cnt-block .follow-us li .fa:hover{ 
   color:#025a8e;
}


.btn-view-more__text a {
    font-size: 12px;
    background: #00B9F2;
    color: white;
    padding: 10px;
    font-weight: 500;
    border-radius: 0px;
    width: 100%;
}

.theclass{
    color: #00349f;
}

.white-bg {
    background: #ffffff;
}

.page-section-ptb {
    padding: 80px 0;
}


.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title .separator {
    position: relative;
    margin-top: 10px;
    display: inline-block;
}


/*************************************
         Our History
**************************************/
.timeline { list-style: none; padding: 20px 0 20px; position: relative; }
.timeline:before { top: 0; bottom: 0; position: absolute; content: " "; width: 1px; background-color: #dedede; left: 50%; margin-left: -1.5px; }
.timeline > li { margin-bottom: 100px; position: relative; }
.timeline > li:last-child { margin-bottom: 20px; }
.timeline > li:before, .timeline > li:after { content: " "; display: table; }
.timeline > li:after { clear: both; }
.timeline > li:before, .timeline > li:after { content: " "; display: table; }
.timeline > li:after { clear: both; }
.timeline .timeline-body p { line-height: 24px; }
.timeline > li > .timeline-panel { width: 50%; float: left; border: 1px solid #dedede; border-radius: 2px; padding: 20px; position: relative; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline > li.timeline-inverted + li:not(.timeline-inverted), .timeline > li:not(.timeline-inverted) + li.timeline-inverted { margin-top: -60px; }
.timeline > li:not(.timeline-inverted) { padding-right: 90px; }
.timeline > li.timeline-inverted { padding-left: 90px; }
.timeline > li > .timeline-panel:before { position: absolute; top: 26px; right: -15px; display: inline-block; border-top: 15px solid transparent; border-left: 15px solid #ccc; border-right: 0 solid #ccc; border-bottom: 15px solid transparent; content: " "; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline > li > .timeline-panel:after { position: absolute; top: 27px; right: -14px; display: inline-block; border-top: 14px solid transparent; border-left: 14px solid #fff; border-right: 0 solid #fff; border-bottom: 14px solid transparent; content: " "; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline > li > .timeline-badge { color: #fff; width: 50px; height: 50px; line-height: 50px; font-size: 1.4em; text-align: center; position: absolute; top: 16px; left: 50%; margin-left: -25px; background-color: #ffffff; border: 1px solid #dedede; z-index: 100; border-top-right-radius: 50%; border-top-left-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline > li > .timeline-badge h4 { line-height: 50px; color: #323232; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline .timeline-heading h5 { position: relative; padding-bottom: 10px; margin-bottom: 20px; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline .timeline-heading h5:before { position: absolute; content: ""; width: 20px; height: 2px; background: #db2d2e; left: 0px; bottom: 0px; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; }
.timeline > li.timeline-inverted > .timeline-panel { float: right; }
.timeline > li.timeline-inverted > .timeline-panel:before { border-left-width: 0; border-right-width: 15px; left: -15px; right: auto; }
.timeline > li.timeline-inverted > .timeline-panel:after { border-left-width: 0; border-right-width: 14px; left: -14px; right: auto; }
.timeline > li:hover > .timeline-badge { background-color: #00349f; }
.timeline > li:hover > .timeline-panel { background: #00349f; color: #ffffff; border-color: transparent; }
.timeline > li:hover > .timeline-panel:after { border-left-color: #00349f; }
.timeline > li.timeline-inverted:hover > .timeline-panel:after { border-right-color: #db2d2e; }
.timeline > li:hover > .timeline-panel h5, .timeline > li:hover > .timeline-badge h4 { color: #ffffff; }
.timeline > li:hover > .timeline-panel h5:before { background: #ffffff; }

.scroll-bar-wrap {
  width: 300px;
  position: relative;
  margin: 2em auto;
}
.scroll-box {
  width: 100%;
  height: 500px;
  overflow-y: scroll;
}
.scroll-box::-webkit-scrollbar {
  width: .4em; 
}
.scroll-box::-webkit-scrollbar,
.scroll-box::-webkit-scrollbar-thumb {
  overflow:visible;
  border-radius: 4px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.2); 
}
.cover-bar {
  position: absolute;
  background: #fff;;
  height: 100%;  
  top: 0;
  right: 0;
  width: .4em;
  -webkit-transition: all .5s;
  opacity: 1;
}
/* MAGIC HAPPENS HERE */
.scroll-bar-wrap:hover .cover-bar {
   opacity: 0;
  -webkit-transition: all .5s;
}

.mam{
       width: 100px;
    margin: auto;
    margin-right: 15px;
}

.ss h5{
           font-size: 34px;
    line-height: 40px;
    padding-bottom: 50px;
}

.carousel-dark .carousel-caption  {
     color: #ffffff;
    
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    filter: invert(0) grayscale(0);
}

.carousel-indicators [data-bs-target] {
        box-sizing: content-box;
    flex: 0 1 auto;
    width: 11px;
    height: 11px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #4F4F4F !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid #4F4F4F;
    border-bottom: 10px solid #4F4F4F;
    opacity: .5;
    transition: opacity .6sease;
    border-radius: 10px;
    border: 1px solid #4F4F4F;
}
.carousel-indicators .active {
  
    
    background-color: transparent !important;
    height: 22px;
    width: 22px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin-top: -5px;
}
.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    /*background-color: #00349f;*/
    border-radius: 50px;
}
.carousel-control-next-icon {
   /* background-color: #00349f;*/
    border-radius: 50px;
}
.ss{
    background: #0000004f;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-bottom:0px;

}

.carousel-wrap {
  margin: 90px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

.gtco-testimonials {
  position: relative;
  margin-top: 30px;

  h2 {
    font-size: 30px;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
  }

  .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    text-align: center;

    span {
      position: relative;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: block;
      background: #fff;
      border: 2px solid #01b0f8;
      margin: 0 5px;
    }

    .active {
      box-shadow: none;

      span {
        background: #01b0f8;
        box-shadow: none;
        height: 12px;
        width: 12px;
        margin-bottom: -1px;
      }
    }
  }

  .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;

    .card-img-top {
      max-width: 100px;
      border-radius: 50%;
      margin: 15px auto 0;
      box-shadow: 0 8px 20px -4px #95abbb;
      width: 100px;
      height: 100px;
    }

    h5 {
      color: #01b0f8;
      font-size: 21px;
      line-height: 1.3;

      span {
        font-size: 18px;
        color: #666666;
      }
    }

    p {
      font-size: 18px;
      color: #555;
      padding-bottom: 15px;
    }
  }

  .active {
    opacity: 0.5;
    transition: all 0.3s;
  }

  .center {
    opacity: 1;

    h5 {
      font-size: 24px;

      span {
        font-size: 20px;
      }
    }

    .card-img-top {
      max-width: 100%;
      height: 120px;
      width: 120px;
    }
  }
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}

.owl-carousel {
  .owl-nav button {
    &.owl-next, &.owl-prev {
      outline: 0;
    }
  }

  button.owl-dot {
    outline: 0;
  }
}

.grid {
   
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    /*margin: 10px 1%;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 33.33%;
    background: #3085a3;*/
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 1;
        height: 500px;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

/* Individual effects */


/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
            content: '';
    opacity: 0;
    -webkit-transform: translate3d(0,50%,0);
    transform: translate3d(0,50%,0);
}

figure.effect-sadie h2 {
    position: absolute;
    font-weight: 800;
    bottom: 25%;
    left: 0;
    width: 100%;
    color: #ffffff;
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 400;
        bottom: 19%;
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
       position: absolute;
    bottom: 10%;
    left: 0;
    /* padding: 1em; */
    width: 100%;
    /* opacity: 0; */
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

figure.effect-sadie:hover h2 {
    color: #fff;
    -webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
        transform: translate3d(0, -145%, 0) translate3d(0, -40px, 0);
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
 max-height: none; /* show full paragraph on hover */
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
}






.jik{
        color: white;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #ffffff;
    padding: 5px 10px;
    border-radius: 7px;
}


.content {
    
}

.content > h2 {
    clear: both;
    margin: 0;
    padding: 4em 1% 0;
    color: #484B54;
    font-weight: 800;
    font-size: 1.5em;
}

.content > h2:first-child {
    padding-top: 0em;
}

/* Header */
.codrops-header {
    margin: 0 auto;
    padding: 4em 1em;
    text-align: center;
}

.codrops-header h1 {
    margin: 0;
    font-weight: 800;
    font-size: 4em;
    line-height: 1.3;
}

.codrops-header h1 span {
    display: block;
    padding: 0 0 0.6em 0.1em;
    color: #74777b;
    font-weight: 300;
    font-size: 45%;
}

/* Demo links */
.codrops-demos {
    clear: both;
    padding: 1em 0 0;
    text-align: center;
}

.content + .codrops-demos {
    padding-top: 5em;
}

.codrops-demos a {
    display: inline-block;
    margin: 0 5px;
    padding: 1em 1.5em;
    text-transform: uppercase;
    font-weight: bold;
}

.codrops-demos a:hover,
.codrops-demos a:focus,
.codrops-demos a.current-demo {
    background: #3c414a;
    color: #fff;
}

/* To Navigation Style */
.codrops-top {
    width: 100%;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.69em;
    line-height: 2.2;
}

.codrops-top a {
    display: inline-block;
    padding: 1em 2em;
    text-decoration: none;
    letter-spacing: 1px;
}

.codrops-top span.right {
    float: right;
}

.codrops-top span.right a {
    display: block;
    float: left;
}

.codrops-icon:before {
    margin: 0 4px;
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-family: 'codropsicons';
    line-height: 1;
    speak: none;
    -webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
    content: "\e001";
}

.codrops-icon-prev:before {
    content: "\e004";
}

/* Related demos */
.related {
    clear: both;
    padding: 6em 1em;
    font-size: 120%;
}

.related > a {
    display: inline-block;
    margin: 20px 10px;
    padding: 25px;
    border: 1px solid #4f7f90;
    text-align: center;
}

.related a:hover {
    border-color: #39545e;
}

.related a img {
    max-width: 100%;
    opacity: 0.8;
}

.related a:hover img,
.related a:active img {
    opacity: 1;
}

.related a h3 {
    margin: 0;
    padding: 0.5em 0 0.3em;
    max-width: 300px;
    text-align: left;
}



@media screen and (max-width: 25em) {
    .codrops-header {
        font-size: 75%;
    }
    .codrops-icon span {
        display: none;
    }
}

nav {
  background: var(--background-color);
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 4px -2px;
}
.main_menu ul li {
  position: relative;
}

    .main_menu ul li a {
           font-size: 14px;
    color: #8E8E8E;
    padding: 20px 20px;
    display: block;
    font-weight: 500;
    }

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: #00AFE9;
}
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 250px;
  background: #fff;
  transition: 0.5s;
}

.main_menu ul li ul li a {
       padding: 10px 25px;
    font-size: 12px;
    color: #8E8E8E !important;
    font-weight: 500;
    text-transform: uppercase;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

.blue-btn3:hover {
    font-size: 10px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: 1px solid #00AFE9 !important;
    padding: 12px 20px !important;
    border-radius: 2px !important;
    background: #00AFE9 !important;
    display: block;
    width: fit-content;
}

.blue-btn2:hover {
    font-size: 10px;
    font-weight: 500;
    color: #00AFE9 !important;
    background: transparent;
    padding: 12px 20px;
    border-radius: 2px;
    border: 1px solid #00AFE9;
    text-transform: uppercase;
}


.readbtn:hover {
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: 1px solid #00AFE9 !important;
    padding: 12px 20px !important;
    border-radius: 2px !important;
    background: #00AFE9 !important;
}


/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
}
.mega_menu {
    left: 200px;
    right: 0;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    transition: 0.5s;
    width: 76%;
	        text-align: left;
}
.mega_menu_item {
    width: 33.33%;
    padding: 12px 20px;
    border-right: 1px solid #bdbdbd;
}
.main_menu ul li .mega_menu_item a {
  padding: 10px 0;
}

.main_menu ul li .mega_menu_item a:hover {
  color: var(--hover-color);
}
.mega_menu_item h3 {
  margin-bottom: 15px;
}
.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
}

.mobile_btn {
  display: none;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 20px 16px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .main_menu ul li ul {
           visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px;
        padding-left: 0;
        list-style: none;
		        text-align: left;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  .main_menu ul li a {
    border-bottom: 1px solid #ddd;
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

.readbtn {
    font-size: 14px !important;
    color: #00AFE9 !important;
    font-weight: 500 !important;
    border: 1px solid #00AFE9 !important;
    padding: 12px 20px !important;
    border-radius: 2px !important;
    background: none !important;
}


.read-btn-new {
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: 1px solid #00B9F2 !important;
    padding: 5px 16px !important;
    border-radius: 2px !important;
    background: #00B9F2 !important;
}

.bg-grey{
    background:#ededed;
}

.meg p {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: #9d9494;
    position: relative;
    transition: all .3sease-in-out;
    text-transform: capitalize;
}

.kalyug {
        background: #00AFE9 !important;
    color: white !important;
    padding: 12px 25px;
    border-radius: 2px !important;
    font-size: 10px;
    font-weight: 500;
}

 .idhar {
            list-style: none;
        }

        .idhar .megasearch {
            position: relative;
            transition: all 0.3s;
            width: 50px;
            height: auto;
            background: white;
            box-sizing: border-box;
            border-radius: 25px;
            border: 4px solid white;
            padding: 7px;
            cursor: pointer;
        }

        .idhar input {
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 42.5px;
            line-height: 30px;
            outline: 0;
            border: 0;
            font-size: 1em;
            border-radius: 20px;
            padding: 0 20px;
            background: #ffffff;
            border: 1px solid #bfbec4;
            display: none; /* Initially hidden */
        }

        .idhar .fa {
            box-sizing: border-box;
            padding: 10px;
            width: 0.5px;
            position: absolute;
            top: 8px;
            right: 24px;
            color: #bfbebe !important;
            text-align: center;
            font-size: 19px;
            transition: all 0.3s;
        }

        /* Active class for expanded search */
        .idhar .megasearch.active {
            width: 240px;
        }

        .idhar .megasearch.active input {
            display: block;
        }
.feature {
    text-align: center;
    width: 20%;
    
}


@media only screen and (max-width: 767px){
    .feature {
        display: block;
        margin-left: 65px;
    }
}
.ras {
    border-right: 2px solid #DDE7EE;
    border-left: 2px solid #DDE7EE;
}
.jojo {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #20386E;
}
.doom {
border-radius: 2px;
    outline: none;
    background-color: white;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: black;
    padding: 20px 35px;
}
.nija {
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 2px;
    padding: 20px 35px;
    font-size: 12px;
    font-weight: 500;
}
.ram {
    font-size: 17px;
    text-align: center;
    color: #bfbfbf;
    padding-left: 20px;
}
.rok {
    color: lightgray;
    padding: 0px 43px 0px;
}
.but {
    width: 21%;
    height: 42px;
    border: none;
    background-color: #33c4ff;
    color: white;
    border-radius: 3px;
    margin-left: 42px;
font-size:12px;
}
.rask {
    background: #eaeaea;
}
.ant {
    text-align: center;
    margin-top: 1px;
    font-size: 35px;
    font-weight: 500;
}
.jaam{
    font-size:16px !important;
}
.rad{
    text-align:center;

}

@media only screen and (max-width: 767px) {
    .but {
    
        display: block;
        /* padding-top: 3px; */
        width: 34%;
        height: 42px;
    }
    .any {
  
        margin-top: 20px;
    }
    .ano {
        margin-top: 10px;
    }
    .lo {
        margin-left: 69px;
        margin-top: -7px;
    }
}


.jan {
  
    color: white !important;
    background: #33c4ff;
    
}
.road {
    background-color: #044155;
    width: 22%;
    padding: 5px 19px 3px;
    color: white;
    border-radius: 3px;
    font-size:13px;
}
.jakk {
    color: #9d9494;
    font-size: 14px;
    font-weight: 400;
}
.sun {
    color: #9d9494;
    font-size:12px;
}
.jok {
    color: #1a7aa2 !important;
    border-bottom: 1px solid;
    font-size:11px;
}
.jaa{
    margin-top:-4px;

}
.test {
border: none;
    border-radius: 22px;
    /* border: 0px; */
    background: #4d4a4ac4;
    width: 70%;
    height: 42px;
    outline: none;
    padding: 13px 18px;
    margin: 12px -5px;
    font-size: 12px;
}

.alala{
    display:flex;
    justify-content:space-between;
}

.fkld {
     display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #f9f7f7;
    font-weight: 300;
}

.term{
    margin-left:15px;
}

.jun{
    display:flex;
    justify-content:space-between;
}
.gam{
    padding: 0px 43px 0px;
}
.tast{
    font-size:12px !important;
}
.joon {
    padding-top: 0px !important;
}
.no{
    margin-top:37px;
}
.fa-linkedin-in:before {
    content: "\f0e1";
    margin-right: 10px;
    margin-left: 10px;
    color: #27befd;
    background: #5a5959ed;
    border-radius: 50%;
    height: auto;
    padding: 10px;
}
.fa-instagram:before {
    
    margin-right: 10px;
    margin-left: 10px;
    color: #27befd;
    background: #5a5959ed;
    border-radius: 50%;
    height: auto;
    padding: 10px;
}
.fa-facebook:before {
    
    margin-right: 10px;
    margin-left: 10px;
    color: #27befd;
    background: #5a5959ed;
    border-radius: 50%;
    height: auto;
    padding: 10px;
}
.fa-x-twitter:before {
    
    margin-right: 10px;
    margin-left: 10px;
    color: #27befd;
    background: #5a5959ed;
    border-radius: 50%;
    height: auto;
    padding: 10px;
}
.jana {
       background: #1E2020;
    padding: 35px 39px 23px;}
.nuno{
    margin-top:105px!important;
}
@media only screen and (max-width: 767px){
    .alala {
    display:block;
    }
    .fkld{
        display:block;
    }
    .jun{
        display:block;
        text-align: center;
    }
    .road{
        width:30%;
    }
    .joon{
        padding:0px;
    }
}
.don {
    padding-top: 50px !important;
}
.nom {
    padding: 0px !important;
    padding-top: 30px !important;
}
.doon{

            font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    color: #333333!important;
    text-transform: uppercase;
}
.joom{
    font-size:15px;
}
.ssto{
    font-size:21px;
}
.nuho{
    font-size:13px;
    font-weight:400;
}

 .has_dropdown > a, .mega_menu_dropdown > a {
        position: relative;
        padding-right: 15px;
    }
    .has_dropdown > a i, .mega_menu_dropdown > a i {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }
    .mobile_btn {
        font-size: 24px;
        cursor: pointer;
    }
    .main_menu {
        transition: transform 0.3s ease-in-out;
    }
    .menu_close {
        text-align: right;
        padding: 10px 20px;
    }
    .menu_close i {
        font-size: 24px;
        cursor: pointer;
    }

    @media (max-width: 991px) {
        .main_menu {
                    display: block;
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        overflow-y: auto;
        transition: transform 0.3sease-in-out;
        z-index: 99;
        }
        .main_menu.active {
            transform: translateX(-100%);
        }
        .main_menu ul {
            text-align: left;
            padding: 10px;
        }
        .main_menu ul li {
            display: block;
            padding: 10px;
padding-left:0px;
        }
        .has_dropdown .sub_menu {
            display: none;
            padding-left: 0px;
        }
        .has_dropdown.active .sub_menu {
            display: block;
width: 100%;
        }

.mega_menu_item {
    width: 33.33%;
    padding: 12px 20px;
    border-right: none;
}


    }

    .search-iconimg{
                top: 40px;
    position: relative;
    }

    .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
       bottom: 16%;
}

.banner-para{

        font-size: 16px;
    font-weight: 400;
    margin-bottom: 35px;
}

.mt60px{
        margin-top: -60px;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1.5rem;
    margin-left: 15%;
}

.main-p-head{
        font-size: 32px;
    color: #20386E;
    font-weight: 400;
    text-align: center;
    margin-bottom:5px;
}

.main-p-headnew{
        font-size: 32px;
    color: #20386E;
    font-weight: 400;
    text-align: left;
    margin-bottom:15px;
}

.main-p-light{
        font-size: 14px;
    font-weight: 400;
    color: #8E8E8E;
    text-align: center;
        margin-bottom: 30px;
}

.icon-p{
        font-size: 12px;
    font-weight: 500;
    color: #8E8E8E;

}

.small-head{
color: #20386E;
font-size:16px;
font-weight: 400;
text-align: center;
}

.small-head span{
color: #00AFE9;
font-size:16px;
font-weight: 400;
}

.home-date{
        color: #8E8E8E;
    font-size: 10px;
    font-weight: 500;
    margin-left: 7px !important;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 2px;
}

.mega_menu_item a{
   
    font-weight: 500!important;
    font-size: 12px!important;
    text-transform: uppercase;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid #DDE7EE;
    opacity: 1.25;
}

.mega-bread{
    color: #ffffff !important;
    font-weight: 700;
    font-size: 80px;
    margin: auto;
    position: absolute;
    top: 39%;
    text-transform: uppercase;
    text-shadow: 2px 10px 6px rgb(0 0 0 / 56%);
}

.about-h{
        font-size: 26px;
    color: #00AFE9;
    font-weight: 500;
    text-align: center;
}

.about-h-light{
        font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #8E8E8E;
}

.abt-first{
    color:#333333;
    font-size:18px;
    font-weight: 500;
    margin-bottom:8px;
}

.abt-inner{
    color:#333333;
    font-size:14px;
    font-weight: 400;
}

  .nav-tabs {
                border-bottom: 1px solid #D4D4D4;
        }
        .nav-tabs .nav-link {
           font-size: 24px;
    font-weight: 400;
    color: #20386E !important;
        }
        .nav-tabs .nav-link.active {
                   border-bottom: 3px solid #00AFE9 !important;
    border: none;
    width: 100%;
        }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: none;
    isolation: isolate;
    border-color: var(--bs-nav-tabs-link-hover-border-color);
    border-bottom: 3px solid #007bff !important;
    border: none;
}
        .tab-content {
                background: #EFF1F5;
    padding: 40px;
        border-radius: 0px;
        }


        .who-we{
                font-size: 32px;
    color: #20386E;
    font-weight: 400 !important;
      margin-bottom: 35px;
        }


        .whww{
                color: #525252;
    font-weight: 400;
    font-size: 14px;
        }


        .blue-btn{
                font-size: 12px;
    font-weight: 500;
        color: white !important;
    background: #33c4ff;
    padding: 20px 35px;
    border-radius: 2px;
    border: 1px solid #33c4ff;
        text-transform: uppercase;
        }

    .found{
           font-size: 14px !important;
    font-weight: 400;
    color: #525252;
    margin-top: 20px;
    margin-bottom: 40px;
    }


    .founding{
          border: 1px solid #DDE7EE;
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 40px;

        }

        .founding img{
            height:36px;
        }

        .main-p-headla {
    font-size: 24px;
    color: #20386E;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}

.newname{
        color: #20386E!important;
    font-size: 20px!important;
    font-weight: 400!important;
    margin-bottom: 13px!important;
}

.dis{
            color: #333333 !important;
    margin-bottom: 20px;

}

.directions-btn{
        font-size: 12px;
    font-weight: 500;
    color: #00AFE9;
    border-bottom: 2px solid #00AFE9 !important;
    border: none;
}

.cusa{
        font-size: 14px;
    font-weight: 400;
        margin-bottom: 7px;
}

.form-select{
    border: none !important;
    border-bottom: 2px solid #333333 !important;
    border-radius: 0px !important;
       

}

.cat-namep{
    color:#1E2020;
    font-size: 18px;
    font-weight:500;
        margin-top: 15px;
}

.cat-namedis{
    color:#8E8E8E;
    font-size: 14px;
    font-weight:400;
        margin-bottom: 30px;
overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blue-btn3{
        font-size: 10px !important;
    color: #00AFE9 !important;
    font-weight: 500 !important;
    border: 1px solid #00AFE9 !important;
    padding: 12px 20px !important;
    border-radius: 2px !important;
    background: none !important;
        display: block;
    width: fit-content;
}

.pro-code{
    color:#20386E;
    font-size:20px;
    font-weight:500;

}

.pro-dis{
    color:#333333;
    font-size:12px;
    font-weight: 500;
        margin-top: 5px;

}

.profirstdis{
            color: #8E8E8E;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 0;
}

.proseconddis{
color:#333333;
font-weight:500;
font-size:12px;
}

.about-h2{
    color:#1A1A1A;
    font-size: 32px;
    font-weight:500;
    text-align:center;
}

.about-h-light2 {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #525252;
    margin-bottom: 25px;

}

.eventdetailp{
    color:#333333;
    font-weight: 400;
    font-size:16px;
}

.titlep{
    color:#1E2020;
    font-size:24px;
    font-weight: 400;
}

.evendie{
    color:#20386E;
    font-size:20px;
    font-weight: 400;
}

.omg{
        width: 120px!important;
    height: auto;
        border-radius: 5px;
}

.sidename{
        font-size: 12px!important;
    font-weight: 500!important;
    color: #333333!important;
}

.llsls{
        padding: 0 !important;
    margin-left: 10px!important;
}

.search-container1 {
    position: relative;
    width: 250px;
}

.search-box1 {
    width: 250px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #929cab;
    border-radius: 36px;
    font-size: 15px;
    outline: none;
}

.search-icon1 {
    position: absolute;
    right: 10px;
    top: 27%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #06bbf2;
    cursor: pointer;
}

.results1 {
    text-align: left;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.result-item1 {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

    .result-item1:hover {
        background: #06bbf2;
        color: white;
    }
.footer-area-three{
margin-bottom:auto;
}

.mamaa{
margin-bottom:auto;
}
@media screen and (max-width: 767px) and (min-width: 320px) {
.mamaa{
margin-bottom:50px;
}

.main-p-head {
    font-size: 26px;
    color: #20386E;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}
.mt60px {
    margin-top: 0px;
}
.nuno {
    margin-top: 35px !important;
}
.jana {
    background: #1E2020;
    padding: 20px 0px 20px;
}
.footer-area-three{
margin-bottom:8px;
}

.search-box1 {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #929cab;
    border-radius: 36px;
    font-size: 16px;
    outline: none;
}
.term {
    margin-left: 0px;
}
.term p{
margin-bottom:8px;
}
.pad-50 {
    padding-top: 15px !important;
    padding-bottom: 0px !important;

}
.mega-bread {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 24px;
    margin: auto;
    position: absolute;
    top: 40%;
}
.main-p-headnew {
            font-size: 26px;
        color: #20386E;
        font-weight: 400;
        text-align: left;
        margin-bottom: 15px;
        margin-top: 10px;
}

.nav-tabs .nav-link {
    font-size: 12px;
    font-weight: 400;
    color: #20386E !important;
}

.tab-content {
    background: #EFF1F5;
    padding: 20px;
    border-radius: 0px;
}

.who-we {
    font-size: 24px;
    color: #20386E;
    font-weight: 400 !important;
    margin-bottom: 15px;
}

}


.zoom-box {
  background-color: #216ec9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden; /* important to clip zoomed content */
  cursor: pointer;
}

.zoom-content {
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: transform 2s ease;
}


/* Slow Zoom In */
.zoom-box:hover .zoom-content {
  transform: scale(1.1);
}