h1,
h2,
h3,
h4,
h4,
h5,
h6 {
    font-family: 'Jost-Medium' !important;
}

body {
  font-family: 'Montserrat-Regular';
}

p {
  font-family: 'Montserrat-Regular';
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@font-face {
  font-family: 'Hand_Of_Sean_Demo';
  src: url('../fonts/Hand_Of_Sean_Demo.ttf') format('opentype');
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../fonts/Montserrat-Bold.ttf') format('opentype');
}

@font-face {
  font-family: 'Montserrat-ExtraLight';
  src: url('../fonts/Montserrat-ExtraLight.ttf') format('opentype');
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/Montserrat-Regular.ttf') format('opentype');
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('opentype');
}

:root {
  --black: #000;
  --white: #fff;
  --lime: #F48131;
  --lime-2: #F48131;
}

.loading img {
  width: 250px;
  animation: zoom-in-zoom-out 1s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }

.header__area-3 {
  background-color: var(--white);
  border-bottom: 1px solid var(--white-2);
}

.header__logo-2 a img {
  width: 200px;
}

.main-menu-4>li>a {
  transition: .9s;
  font-size: 16px;
  line-height: 16px;
}

    .main-menu-4 > li > a::before {
        content: "";
        position: absolute;
        left: 0;
        right: auto;
        width: 30px;
        height: 2px;
        bottom: 20px;
        background: var(--lime);
        animation-fill-mode: forwards;
        opacity: 0;
    }

.main-menu-4>li>a:hover:before {
  animation-name: cta-in;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(1, 0, 0, 1);
  animation-fill-mode: forwards;
  /* width: 100%; */
  opacity: 1;
}

.main-menu-4>li>a:hover .menu-text {
  text-shadow: 0 16px 0 var(--lime);
}

@keyframes cta-in {
  0% {
    width: 0px;
    left: 0;
    right: auto;
  }

  49% {
    width: 100%;
    left: 0;
    right: auto;
  }

  50% {
    width: 100%;
    left: auto;
    right: 0;
  }

  100% {
    width: 0px;
    left: auto;
    right: 0;
  }
}

.hero__content-6 {
  padding-top: 75px;
}

.hero__title-6 {
    font-size: 70px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero__title-6 .span {
  color: var(--lime);
}

    .hero__title-6 .hidden_text {
        position: relative;
        opacity: 0;
        font-size: 60px;
        font-weight: 400;
        font-family: 'Hand_Of_Sean_Demo';
        color: var(--lime);
        text-transform: capitalize;
        animation: fadeInUps 1s ease-in-out both;
        animation-delay: 1.5s;
    }

@keyframes fadeInUp {
  0% {
    font-size: 30px;
    opacity: 0;
  }

  100% {
    font-size: 50px;
    opacity: 1;
  }
}

.hero__title-6 .text_fade_right {
  position: absolute;
  animation: fadeInRight 1s ease-in-out forwards;
  animation-delay: 1.5s;
  left: 215px;
}

@keyframes fadeInRight {
  0% {
    opacity: 1;
    left: 215px
  }

  70% {
    opacity: 1;
    left: 410px;
  }

  100% {
    opacity: 1;
    left: 410px;
  }
}
.hero_banner:before {
 content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: url(../img/lines1.png);
    background-size: cover;
    background-position: center top;
    opacity: 0.5;
    z-index: -1;
  
}
.hero_banner:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
    background-image: -webkit-linear-gradient(bottom, #fff, transparent);
    background-image: -o-linear-gradient(bottom, #fff, transparent);
    background-image: linear-gradient(0deg, #fff, transparent);
    z-index: 5;
}
.hero_banner .caption {
    text-align: center;
}
.hero_banner .caption h1.stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
    z-index: 3;
}
.hero_banner .caption h1.stroke i.yellow1 {
    color: transparent;
   -webkit-text-stroke: 1px rgba(244, 129, 49, 0.8);
    z-index: 3;
}
.hero_banner .caption h1 span {
    display: block;
    white-space: nowrap;
}
.hero_banner .caption h1 {
    font-size: 5.5vw;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
	color:#000
}
.hero_banner .caption h1 i.yellow1{
	color:#f48131;
	font-style:normal;
	 -webkit-text-stroke: 1px rgba(244, 129, 49, 0.8);
}
.hero_banner .caption h2{
	    font-size: 3vw;
    font-weight: 800;
    line-height: 1.2;
    position: absolute;
    top: 18%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.hero_banner .caption h2 span{
	color: var(--lime);
}
.hero_banner .caption h2 span.lo {
     font-size: 26px !important;
    font-family: 'Hand_Of_Sean_Demo';
    color: var(--lime);
    text-transform: capitalize;
    animation: fadeInUps 1s ease-in-out both;
    animation-delay: 1s;
    transform: rotate(348deg) !important;
    position: absolute;
    top: -38px;
    left: 8%;
}
.decoration-18 {
    position: absolute;
    bottom: 100px;
    right: -28px;
    width: 80px;
    height: 80px;
    background: #f48131;
    border-radius: 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}
 .tc-partners-style3 .bg {
    position: absolute;
    top: -20%;
    right: 0;
    width: 100%;
    height: 140%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: inherit; }
  .tc-partners-style3::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: calc(((100% - 1320px) / 2) + 1320px);
    height: 0px;
    }
 
.tc-partners-style3 .logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .tc-partners-style3 .logos .logo-card {
      position: relative;
      background-color: #fff;
      height: 128px;
      border: 1px solid #ECECEC;
      width: 11%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 20px; }
      .tc-partners-style3 .logos .logo-card:hover {
        border-color: #f0833c; }
      .tc-partners-style3 .logos .logo-card .logo {
        
        max-height: 95px; filter: grayscale(100%); }
		 .tc-partners-style3 .logos .logo-card .logo1 {
        
        max-height: 95px; filter: grayscale(0); }
		.tc-partners-style3 .logos .logo-card:hover .logo{
        filter: grayscale(0%); }
      .tc-partners-style3 .logos .logo-card .num {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10; }
      .tc-partners-style3 .logos .logo-card p {
        position: absolute;
        left: 30px;
        bottom: 30px;
        text-transform: uppercase;
        color: #666;
        z-index: 10; }
		section.in-top-banr {
    height: 86vh;
    min-height: 500px;
}

.p-relative {
    position: relative;
}
.bd-booknow__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}



.portfolio__hero .pp-thumb.cstm-circle-style {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 14%;
    z-index: auto!important;
}





@media screen and (max-width: 1024px) {
  .tc-partners-style3 .logos .logo-card {
    height: 60px;
    width: 11%; } 
	.tc-partners-style3 .logos .logo-card .logo {
    max-height: 49px;

}
.hero__area-6 {
    position: relative;
    margin-top: 77px;
}
.cstm_showcase{
	margin-bottom:20px;
	
}}
@media screen and (max-width: 767px) {
  .tc-partners-style3 .logos .logo-card {
    height: 80px;
    width: 33.33%; } 
	.tc-partners-style3 .logos .logo-card .logo {
    max-height: 70px;

}
.cstm_showcase{
	margin-bottom:20px;
	
}}
.footer__btm-6 {
  border-top: 1px solid var(--gray-24);
  padding-top: 15px;
  padding-bottom: 15px;
}


.footer__area-6 {
  overflow: hidden;
  background-color: var(--black);
}

.footer__btm-6 {
  border-top: 1px solid var(--black);
}

.footer__copyright-6 p {
  color: var(--white);
}

.footer__copyright-6 p a {
  color: var(--white);
}

.home_filter_form {
  padding: 25px 25px 0;
  background: rgb(255 255 255 / 60%);
  border: 1px solid #e9e9e9;
  margin-top: 60px;
}

.home_filter_form select {
  width: 100%;
  border: 1px solid #E9E9E9;
  height: 50px;
  padding: 15px;
  padding-right: 46px;
}

.home_filter_form select option {
  font-family: "Kanit", sans-serif;
}

/* .home_filter_form select::-webkit-input-placeholder {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.home_filter_form select::-moz-placeholder {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.home_filter_form select:-ms-input-placeholder {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.home_filter_form select::-ms-input-placeholder {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.home_filter_form select::placeholder {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
} */

.home_filter_form select:focus {
  outline: 0;
}

.home_filter_form .woocomerce__signin-btnwrap.signupbtn {
  padding-top: 0;
  padding-bottom: 0;
}

.home_filter_form .woocomerce__signin-btnwrap.signupbtn .woocomerce__checkout-submitbtn {
  padding: 15px 0;
}

.offcanvas__logo img {
  width: 220px;
}

.roll_section {
  background-color: var(--lime);
}

.roll_section .roll__slide {
  justify-content: center;
}

.roll_section .roll__slide h2 {
  font-size: 18px;
  color: #fff;
}

.roll_section .roll__slide img {
  width: auto;
  height: 30px;
  filter: invert(1);
}

.hidden_text_2 {
    position: relative;
    opacity: 0;
    font-size: 60px;
    font-weight: 400;
    font-family: 'Hand_Of_Sean_Demo';
    color: var(--lime);
    text-transform: capitalize;
    animation: fadeInUps 1s ease-in-out both;
    animation-delay: 1s;
    line-height: 1.5;
}

@keyframes fadeInUps {
  0% {
    font-size: 30px;
    opacity: 0;
  }

  100% {
    font-size: 50px;
    opacity: 1;
  }
}

.span {
  color: var(--lime);
}

.brand__list {
  grid-template-columns: repeat(4, 1fr);
}

.solution_section .service__item {
  -ms-grid-columns: 0.8fr 4fr 2.5fr 1fr;
  grid-template-columns: 0.8fr 4fr 2.5fr 1fr;
}

.story_section .service__list-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px 1fr 120px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px;
}

.story_section .service__item-2:nth-child(3n+1)::before {
  position: absolute;
}

.story_section .service__item-2:nth-child(2n+1)::before {
  position: unset;
}

.cstm_showcase_area .cstm_showcase img {
  width: auto;
  height: auto;
  object-fit: unset;
}

.sec-title {
  padding-bottom: 60px;
}

.ability_section .title-anim .icon_img {
  height: 80px;
  width: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: auto;
}

.ability_section .title-anim .icon_img:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 15px;
  width: 2px;
  height: 100vh;
  z-index: -1;
  background: var(--lime);
}

.ability_section .title_anim_1 {
    padding-top: 10px;
}

.ability_section .title_anim_2 {
    padding-top: 21px;
}

.ability_section .title_anim_3 {
  padding-top: 0px;
}

.ability_section .title_anim_4 {
    padding-top: 20px;
}

.ability_section .title_anim_5 {
    padding-top: 20px;
}

.ability_section .title_anim_6 {
  padding-top: 30px;
}

.ability_section .ability_bg{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 75%;
  margin: auto;
}

.ability_section .title-anim .icon_txt {
  margin: 10px 0 60px;
  font-size: 16px;
  text-align: center;
  font-family: 'Montserrat-Light';
  font-weight: 600;
}

.blogs_secttion {
  padding-left: unset;
}

.contact__form input:focus, 
.contact__form input:hover,
.contact__form textarea:focus,
.contact__form textarea:hover {
  border-bottom: 1px solid var(--black-2);
}

.wc-btn-primary:hover, .wc-btn-black:hover, .wc-btn-light:hover, .wc-btn-pink:hover, .wc-btn-secondary:hover {
  color: var(--white);
  border: 1px solid var(--lime);
}

.wc-btn-primary span, .wc-btn-black span, .wc-btn-light span, .wc-btn-pink span, .wc-btn-secondary span {
  background-color: var(--lime);
}

.brdcrmb {
    position: relative;
    background-image: url(/Content/assets/img/ability/ability_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 200px 0;
}
.brdcrmb1 {
    position: relative;
    background-image: url(/Content/assets/img/shutupstudiobanner.jpg);
	    background-position: center;
    
}
.brdcrmb:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-2);
    opacity: 0.3;
}

.brdcrmb .hero__title-6 {
    font-size: 60px;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 24px;
}



.careers_area p {
    margin-bottom: 15px;
}

.careers_area h4 {
    margin-bottom: 15px;
}

.careers_box {
    border: 1px solid #aaaaaa;
    padding: 30px;
    border-radius: 30px;
}

.careers_box h4 {
    margin-bottom: 30px;
}

.contact__form h4 {
    margin-bottom: 30px;
}

.header__inner-2, .header__inner-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav-2 {
  display: block;
}

.offcanvas__body {
    -ms-grid-columns: unset;
    grid-template-columns: unset;
}

.contact__form input {
    margin-bottom: unset;
}

.text-danger {
    color: #dc3545 !important;
}

.text-success {
    color: #28a745 !important;
}

.woocomerce__feature .nav-pills .nav-link.active, 
.woocomerce__feature .nav-pills .show > .nav-link {
    color: var(--lime);
    background-color: transparent;
}


.hero_banner1 .caption h1 span.lo {
    font-size: 26px !important;
    font-family: 'Hand_Of_Sean_Demo';
    color: var(--lime);
    text-transform: capitalize;
    animation: fadeInUps 1s ease-in-out both;
    animation-delay: 1s;
    transform: rotate(348deg) !important;
    position: absolute;
    top: -41px;
    left: 13%;
}

    .hero_banner1 .caption h1 span.lo img {
        left: 35px;
        top: 16px;
        width: 20px;
    }

.hero_banner1 .caption h1 {
    font-size: 57px;
    line-height: 1.5;
}


.hero__area .hero1_bg {
    left: auto;
    right: 0;
    width: 70%;
}

.hero_banner1 .caption h1 span {
    color: var(--lime);
}

.header__area-3 {
    background-color: #000;
    border-bottom: 1px solid #efefef40;
}

.main-menu-4 > li > a {
    color: #ffffff;
}

.sticky-3 .main-menu-4 > li > a {
    color: #000;
}

.hero__area {
    height: 100vh;
}

.sticky-3 .logo-dark {
    display: none;
}

.sticky-3 .logo-light {
    display: block;
}

.roll__area {
    background-color: #ffffff;
}

@media only screen and (max-width: 1401px) {
    .hero_banner1 .caption h1 {
        font-size: 40px;
    }
    .main-menu > li, .main-menu-4 > li {
        margin: 0 15px;
    }
    .hero__title-wrapper {
        
        margin-top: 105px;
    }
    .hero_banner1 .caption h1 span.lo img {
        left: 25px;
        top: -12px;
        width: 13px;
    }
}

    @media only screen and (max-width: 1201px) {
        .hero__title-6 {
            font-size: 45px;
        }

        @keyframes fadeInRight {
            0% {
                opacity: 1;
                left: 100px
            }

            70% {
                opacity: 1;
                left: 325px;
            }

            100% {
                opacity: 1;
                left: 325px;
            }
        }
        .hero_banner1 .caption h1 span.lo img {
            left: 34px;
            top: -15px;
            width: 13px;
        }
        .hero_banner1 .caption h1 span.lo {
            
            top: -41px;
            left: 10%;
        }


        
    }

    .hero_banner .caption h2 span.lo img {
        left: -20px;
        top: 4px;
        width: 20px;
    }

    @media only screen and (max-width: 992px) {
        .header__nav-2 {
            display: none;
        }

        .hero__title-6 {
            font-size: 25px;
        }

        .home_filter_form select {
            padding-right: 30px;
        }

        .sec-title {
            font-size: calc(1.3rem + .6vw);
        }

        section.hero_banner {
            min-height: auto;
            margin-top: 78px;
        }

        .hero_banner .caption h2 span.lo {
            font-size: 12px !important;
            top: -20px;
            left: 8%;
        }

            .hero_banner .caption h2 span.lo img {
                left: -26%;
                top: 0%;
                width: 9px;
            }

        @keyframes fadeInUps {
            0% {
                font-size: 20px;
                opacity: 0;
            }

            100% {
                font-size: 25px;
                opacity: 1;
            }
        }

        @keyframes fadeInRight {
            0% {
                opacity: 1;
                left: 100px
            }

            70% {
                opacity: 1;
                left: 350px;
            }

            100% {
                opacity: 1;
                left: 200px;
            }

        }

        .ability_section .title-anim .icon_img:after {
            opacity: 0.1;
        }

        .showcase__content-16.cstm_showcase {
            min-height: 450px;
            height: auto;
            z-index: 1;
        }

        .brand__list {
            grid-template-columns: repeat(3, 1fr);
            border-bottom: unset;
        }

        .brand__item {
            border: 1px solid var(--white-3);
        }

            .brand__item:nth-child(even) {
                border: 1px solid var(--white-3);
            }

        .service__item-2::before {
            display: none;
        }

        .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
            font-size: 24px;
            padding: 20px 30px;
        }

        .contact__btm {
            padding-top: unset;
        }

        .brdcrmb .hero__title-6 {
            font-size: 32px;
            padding-bottom: unset;
        }
        .hero_banner1 .caption h1 {
            font-size: 30px;
        }
            .hero_banner1 .caption h1 span.lo {
                top: -31px;
                left: 7%;
                font-size: 20px !important;
            }
                .hero_banner1 .caption h1 span.lo img {
                    left: 36px;
                    top: -7px;
                    width: 13px;
                }
    }

    @media only screen and (min-width: 992px) and (max-width: 992px) {
        .service__item-2::before {
            display: unset;
        }
    }

    @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .header__inner-2, .header__inner-3 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .header__logo-2 a img {
            width: 150px;
        }

        .hero__title-6 {
            font-size: 24px;
        }

        .cstm_showcase {
            height: auto;
        }

        br {
            display: block;
        }

        .sec-title {
            font-size: 20px;
        }

        @keyframes fadeInUps {
            0% {
                font-size: 20px;
                opacity: 0;
            }

            100% {
                font-size: 24px;
                opacity: 1;
            }
        }

        @keyframes fadeInRight {
            0% {
                opacity: 1;
                left: 100px
            }

            70% {
                opacity: 1;
                left: 110px;
            }

            100% {
                opacity: 1;
                left: 170px;
            }
        }

        

        .ability_section .title-anim .icon_img {
            margin-left: 0;
        }

        

        .ability_section .title-anim {
            padding-top: 0 !important;
        }

        .service__title {
            font-size: 20px;
            padding-left: 20px !important;
        }

        .brand__list {
            grid-template-columns: repeat(1, 1fr);
        }

        .team__slide {
            padding: 0 30px;
        }

        .contact__btm {
            padding-top: unset;
        }

        .brdcrmb .hero__title-6 {
            font-size: 32px;
            padding-bottom: unset;
        }

        .service__title-2, .service__title-3 {
            font-size: 20px;
        }

        .blog__item h5 > a {
            font-size: 20px;
        }

        .showcase__content-16.cstm_showcase {
            min-height: 240px;
            margin-top: 59px !important;
        }

        .service__list-wrapper {
            margin-top: unset;
        }

        .service__item-2 {
            text-align: center;
        }
        .hero_banner1 .caption h1 span.lo img {
            left: 24px;
            top: -12px;
            width: 11px;
        }
        .hero_banner1 .caption h1 span.lo {
            top: -31px;
            left: 13%;
            font-size: 20px !important;
        }

        section.woocomerce__exclusive.pt-140.pb-140.position-relative.tc-partners-style3 {
            background-color: #fff3eb;
        }




      }






    .custom-container {
        --bs-gutter-x: 100px;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
        margin-right: auto;
        margin-left: auto;
    }

    

.roll__area.logo-area img.logo {
    filter: grayscale(1);
}
.roll__area.logo-area img.logo:hover {
    filter: unset;
}
.cstm-pwr-cmpn-inr {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    border-radius: 50% 50% 0 50%;
}
.cstm-pwr-cmpn img.pp-thumb {
    bottom: 20px;
    width: 60%;
    left: -50%;
}
.cstm-pwr-cmpn-inr1 {
    border-radius: 0 !important;
}
.cstm-bottom-img {
    width: 100%;
    position: absolute;
    bottom: 0px;
    z-index: 0;
}
.cstm_slide_img {
    width: auto;
    max-height: 100vh;
    max-width: 100%;
    height: auto;
}
.workflow__area-3 .wf_panel {
    
    min-height: 100vh;
    
}
.workflow__area-3 {
    
    padding-bottom: 60px;
}
.woocomerce__footer-wrapper > div {
    padding-right: 15px;
}
.cstm-studio {
    position: absolute;
    bottom: 12%;
    right: 7%;
    z-index: 1;
}
.cstm-studio-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #f48131;
    padding: 20px;
    text-align: center;
    padding-top: 30px;
    color: #fff !important;
    
}
    .cstm-studio-circle i {
        font-size: 33px !important;
        margin-bottom: 10px;
    }
.primery-color {
    color: var(--primary);
}



@media (min-width: 1400px) {
    .custom-container {
        --bs-gutter-x: 100px;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
        margin-right: auto;
        margin-left: auto;
    }
}

@media(max-width:1190px) {
    .cstm-pwr-cmpn img.pp-thumb {
        bottom: 80%;
        width: 33%;
        left: 11%;
    }
}
    @media(max-width:991px) {
    .custom-container {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 0;
    }
        .cstm-studio {
            position: relative;
            right: 0;
            z-index: 1;
            margin-top: 30px;
            margin-bottom: 30px;
            top: 0;
        }
    .cstm-img-width-new {
        max-width: 300px;
    }
    .cstm-pwr-cmpn {
        background: #fff;
    }
    .workflow__area-3 .wf_panel {
        min-height: auto;
    }
        .cstm-rap-sec h1 {
            font-size: 30px;
            text-align: center;
        }
        
        .brdcrmb {
            padding: 100px 0;
        }
        .hero__content-6 {
            padding-top: 0px;
        }
        .ability_section .title-anim .icon_img:after {
            opacity: 0;
        }
        .ability_section .title-anim .icon_img {
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
        }
        .ability_section .title-anim .icon_txt {
            margin: 10px 0 30px;
        }
        .showcase__content-16.cstm_showcase {
            margin-top: 0px !important;
        }
        .story__text p {
            font-size: 15px;
        }
}

@media(max-width:768px) {
    .cstm-20-size {
        font-size: 20px !important;
    }
    .cstm-pwr-cmpn-inr {
        position: unset;
        border-radius: 0;
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-bottom: 50px;
    }
    .cstm-pwr-cmpn img.pp-thumb {
        bottom: -84px;
        width: 32%;
        left: 30%;
    }
    .hidden_text_2 {
        
        font-size: 18px !important;
       
    }
    .h5, h5 {
        font-size: 1rem;
    }
    img.cstm-img-width {
        width: 100%;
    }
    .cstm-workflow img {
        max-width: 100%;
    }
    .hero__area .hero1_bg {
        left: auto;
        right: 0;
        width: 100%;
    }
    .hero__title-wrapper {
        margin-top: 0;
    }
    .cstm-bonito-d h2, .cstm-bonito-d h3 {
        font-size: 20px !important;
    }
    
    .cstm-main-banner, .hero__area {
        height: 400px !important;
    }
    .cstm-rap-sec h1 {
        font-size: 24px !important;
        text-align: center;
    }
    .cstm-studio {
        
        left: 50%;
        transform: translateX(-50%) !important;
    }
    ul.woocomerce__footer-social.pe-5 {
        width: 100%;
        padding: 0 !important;
        justify-content: center;
    }
    p.woocomerce__footer-copytext {
        width: 100%;
    }
}
    
    @media(max-width:480px) {
    .hero_banner1 .caption h1 {
        font-size: 21px;
        max-width: 316px;
    }

        .hero_banner1 .caption h1 span.lo {
            top: -29px;
            left: 11%;
            font-size: 17px !important;
        }
        .h3, h3 {
            font-size: calc(1.2rem + .6vw) !important;
        }
        .hero_banner1 .caption h1 span.lo img {
            left: 24px;
            top: -15px;
            width: 8px;
        }
}

@media(max-width:375px) {
    .hero_banner1 .caption h1 {
        font-size: 19px;
        max-width: 285px;
    }

        .hero_banner1 .caption h1 span.lo {
            top: -29px;
            left: 11%;
            font-size: 17px !important;
        }
    
}
.header__nav-icon-3 img {
    margin-top: -5px;
    filter: invert(1);
}
.sticky-3 .header__nav-icon-3 img {
    margin-top: -5px;
    filter: invert(0);
}
.cstm-img-about img {
    max-width: 100%;
    width: 300px;
}

.service__item {
    
    -ms-grid-columns: 1fr 5fr ;
    grid-template-columns: 1fr 5fr;
    
}





/*Prachi*/
.contact__info.cstm-work-heading {
    color: #F48131;
}
.cstm-work-text {
    color: #F48131;
}
.about__title-wrapper.cstm-work-subheading {
    padding-left: 0px;
    color: #F48131;
}
.about__content-wrapper.cstm-work-img {
    display: inline;
}
h3.sec-title.title-anim.cstm-work-heading2 {
    color: #F48131;
}

.text-right {
    text-align:right;
}