body, .font-beau {
    font-family: 'BT Beau Sans', Arial, sans-serif;
}
/* header css start */
.mainmenu::before {
    content: "";
    width: 69%;
    height: 100%;
    background: #e6e6e6;
    position: absolute;
    z-index: 1;
    border-style: solid;
    border-width: 0px 0 93px 52px;
    border-color: transparent transparent transparent #ffffff;
    right: 0;
}

.dropdown-item:hover {
    background: transparent;
    color: #efa106;
    padding-left: 32px;
  }

  .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 8px;
    color: #efa106;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
    z-index: -1;
  }

  .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }
/* header css end */

.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    font-size: 60px;
    position: relative;
    transition: all .5s ease-in-out;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg)
}
.feature-item:hover {
    transform: translateY(-10px)
}

.site-head::before{
    background-image:  url('../images/shape-icon.png');
}


  .shop-shape.animate-custom-upward {
    animation: customUpwardAnimation 1s ease-in-out infinite;
    /* Adjust the duration as needed */
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    background: white;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.contact-info::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -8px;
    background: #efa106;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    height: 20px;
    z-index: -1;
}
.contact-info-icon {
    font-size: 35px;
    color: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    position: relative;
    background: #efa106;
}

.contact-info-icon::before {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
    border: 3px solid #efa106;
    border-radius: 50px;
}


.cta-wrapper::before{
    background-image: url('../images/calltoactionbg.png');
}

.testimonial-area{
    background-image: url('../images/test.jpg');
}
.newsletter{
    background-image: url('../images/news-letter.jpg');
}


.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    text-align: center;
    background-color: #efa106;
    color: black;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 30px;
    min-width: 170px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.th-btn:before,.th-btn:after {
    content: "";
    position: absolute;
    background-color: #0e0d0d;
    z-index: -1;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 0
}

.th-btn:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.th-btn:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    -ms-transform: translate(50%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg)
}

.th-btn .icon {
    overflow: hidden;
    display: inline-block
}

.th-btn i {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    position: relative;
    right: 2px
}

.th-btn:hover,.th-btn.active {
    color: white;
    box-shadow: none
}

.th-btn:hover:before,.th-btn.active:before {
    -webkit-animation: criss-cross-left 0.9s both;
    animation: criss-cross-left 0.9s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate
}

.th-btn:hover:after,.th-btn.active:after {
    -webkit-animation: criss-cross-right 0.9s both;
    animation: criss-cross-right 0.9s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate
}

.th-btn:hover i,.th-btn.active i {
    -webkit-animation: btn-icon-anim 0.9s both;
    animation: btn-icon-anim 0.9s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate
}
@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        height: 20px;
        width: 20px
    }

    100% {
        left: 50%;
        height: calc(300px*1.5);
        width: calc(300px*1.5)
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        height: 20px;
        width: 20px
    }

    100% {
        left: 50%;
        height: calc(300px*1.5);
        width: calc(300px*1.5)
    }
}

@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        height: 20px;
        width: 20px
    }

    100% {
        right: 50%;
        height: calc(300px*1.5);
        width: calc(300px*1.5)
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        height: 20px;
        width: 20px
    }

    100% {
        right: 50%;
        height: calc(300px*1.5);
        width: calc(300px*1.5)
    }
}

@-webkit-keyframes btn-icon-anim {
    0% {
        top: 0;
        right: 2px
    }

    25% {
        top: -10px;
        right: -10px
    }

    50% {
        top: 10px;
        opacity: 0;
        right: 17px
    }

    100% {
        top: 0;
        right: 2px;
        opacity: 1
    }
}

@keyframes btn-icon-anim {
    0% {
        top: 0;
        right: 2px
    }

    25% {
        top: -10px;
        right: -10px
    }

    50% {
        top: 10px;
        opacity: 0;
        right: 17px
    }

    100% {
        top: 0;
        right: 2px;
        opacity: 1
    }
}
.process-section-four {
    position: relative;
    padding: 100px 0 70px;
}

.process-block-four {
    position: relative
}

.process-block-four .inner-box {
    position: relative;
    margin-bottom: 30px;
    text-align: center
}

.process-block-four .inner-box:before {
    position: absolute;
    content: "";
    right: -105px;
    top: 52px;
    width: 214px;
    height: 35px;
    background: url('../images/icon-right.png') no-repeat 50%
}

.process-block-four:last-child .inner-box:before {
    display: none
}

.process-block-four .icon {
    position: relative;
    width: 130px;
    height: 130px;
    line-height: 130px;
    margin: 0 auto 30px;
    text-align: center;
    background: url('../images/shape-7.a90a8ab5.png') no-repeat 50%
}

.process-block-four:nth-child(2) .icon {
    background: url('../images/shape-8.246fb100.png') no-repeat 50%
}

.process-block-four:nth-child(3) .icon {
    background: url('../images/shape-9.81a34b32.png') no-repeat 50%
}
.process-block-four .icon img{
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.process-block-four h4 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff
}

.process-block-four .text {
    position: relative;
    color: #bac6e3;
    font-size: 18px;
    font-weight: 500;
    padding: 0 50px;
}
#get-connect {
    position: fixed;
    bottom: 40px;
    right: 10px;
    height: 40px;
    padding: 5px 20px;
    z-index: 99999;
  }
  @media only screen and (max-width: 1440px) {
    .animeslide-button-next, .animeslide-button-prev{
      width: 30px !important;
      height: 30px !important;
    }
  }


  .connetus a{
    animation-name: pulse;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgb(249 236 49 / 42%);
      }
      80% {
          box-shadow: 0 0 0 14px rgb(248 235 49 / 12%);
      }
  }
  .img-wrap{
    height: 91vh;
  }
@media only screen and (max-width:768px) {
    .about-left::after{
        right: 0;
    }
    .process-card.style2:after{
        content: none;
    }
    .slick-arrow {
        display: none !important;
    }
    .mainmenu::before {
        content: "";
        width: 69%;
        height: 100%;
        background: #e6e6e6;
        position: absolute;
        z-index: 1;
        border-style: solid;
        border-width: 0px 0 80px 52px;
        border-color: transparent transparent transparent #ffffff;
        right: 0;
    }

    .mainmenu::before {
        content: "";
        width: auto;
        height: auto;
        background: white;
        position: absolute;
        z-index: 1;
        border-style: solid;
        border-width: 0px;
        border-color: transparent transparent transparent #ffffff;
        right: 0;
    }
    .img-wrap{
        height: 50vh;
      }
}
@media only screen and (max-width:822px) {
    .mainmenu::before {
        border-width: 0px 0 68px 21px;
    }
}
@media only screen and (max-width:1024px) {
    .mainmenu::before {
        border-width: 0px 0 86px 21px;
    }
}
