@font-face {
  font-family: "InterTight-Light";
  src: url("../fonts/inter/InterTight-Light.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight-Regular";
  src: url("../fonts/inter/InterTight-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight-Medium";
  src: url("../fonts/inter/InterTight-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight-SemiBold";
  src: url("../fonts/inter/InterTight-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight-Bold";
  src: url("../fonts/inter/InterTight-Bold.ttf") format("truetype");
}
*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
label,
span {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 31px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
}
.hamburger .bar:nth-child(2) {
  width: 20px;
  margin-right: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "InterTight-Regular", sans-serif;
  background: #000000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

bdi {
  color: #ffffff;
  padding: 14px;
  border-radius: 100px;
  border-radius: 100px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 10px;
}

h1 {
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 54px;
  line-height: normal;
  margin-top: 8px;
}

h2 {
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

p {
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
}

.zoom-animate {
  overflow: hidden;
}
.zoom-animate img {
  transition: transform 0.5s ease;
}
.zoom-animate:hover img {
  transform: scale(1.1);
}

.service-svg-icon {
  width: 58px;
  height: 58px;
  background: #212122;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.py-120 {
  padding: 120px 0 120px 0;
}

header nav ul .primary-btn a{
	color:#000000 !important;
}

.primary-btn {
  border-radius: 15px;
  background: #ffffff !important;
  color: #000000 !important;
  font-size: 16px;
  padding: 13px 23px;
  font-family: "InterTight-Regular", sans-serif !important;
	
	&:hover {
		background: #D2010D !important;
        color: #fff !important;
	}
}
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-primary svg {
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;

    background-image:
        url("https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png"),
        url("https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png");

    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 0 0, -15px 15px;

    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-primary:hover svg path{
    opacity: 0;
    transform: translateX(10px);
}

.btn-primary:hover::after {
    opacity: 1;
    animation: buttonArrow 0.7s linear infinite;
}


@keyframes buttonArrow {

    0% {
        background-position:
            0 0,
            -25px 25px;
    }

    100% {
        background-position:
            25px -25px,
            0 0;
    }
}

.secondry-btn {
  font-size: 16px;
  border-radius: 15px;
  background: #D2010D !important;
  color: #ffffff !important;
  padding: 13px 23px;
  font-family: "InterTight-Regular", sans-serif !important;
}

.secondry-btn-svg rect {
  fill: #D2010D;
}
.secondry-btn-svg path {
  fill: #ffffff;
}

.slick-arrow {
  z-index: 9;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 999;
  background: transparent;
}
.header nav {
  padding: 30px 0 !important;
  background: transparent;
}
.header nav ul {
  gap: 35px;
}
.header nav ul li a {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: normal;
}

.header nav ul li a:hover{
	color: #E93325;
}
 
.header nav ul #menu-item-508:hover .btn-primary svg path{
    opacity:0;
} 
.header nav ul #menu-item-508:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}

.header nav ul li a span {
  border-radius: 6px;
  background: linear-gradient(111deg, #EC2629 -2.19%, #FF5070 50.5%, #E51619 98.78%);
  padding: 3px 5px;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
  display: inline-flex;
  gap: 1px;
}

.sticky-header {
  position: relative;
}

footer {
  background: #000000;
  position: relative;
  padding-top: 150px;
}
footer .footer-top-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
footer .main-footer-img {
  padding-top: 80px;
  overflow: hidden;
}
footer .footer-branches h5 {
  color: #ffffff;
  font-size: 18px;
  font-family: "InterTight-Medium", sans-serif;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer .footer-branches a {
  color: #9A9A9A;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-top: 17px;
  display: inline-block;
}
footer .footer-quick-link h5 {
  color: #FFF;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
footer .footer-quick-link ul li {
  margin-top: 17px;
}
footer .footer-quick-link ul li a {
  color: #FFF;
  font-size: 18px;
  font-family: "InterTight-Light", sans-serif;
  line-height: normal;
}
footer .footer-quick-link ul li a:hover {
	color: #E93325;
}
footer .footer-contact {
  margin-top: 67px;
  display: flex;
  gap: 150px;
}
footer .footer-contact span {
  display: block;
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2px;
}
footer .footer-contact .call-creater a {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
footer .footer-contact .call-creater a:hover {
	color:#E93325;
}
footer .footer-contact .call-creater-mail a {
  color: #ffffff;
  font-family: "InterTight-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
}
footer .footer-contact .call-creater-mail a:hover {
	color:#E93325;
}
footer .footer-social-sec {
  padding-top: 120px;
}
footer .footer-social-sec .footer-policy {
  display: flex;
  align-items: center;
  gap: 60px;
}
footer .footer-social-sec .footer-policy ul {
  display: flex;
  gap: 30px;
}
footer .footer-social-sec .footer-policy ul li a {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
footer .footer-social-sec .footer-policy ul li a:hover {
	color:#E93325;
}
footer .footer-social-sec .footer-policy ul li {
	position:relative;
}
footer .footer-social-sec .footer-policy ul li::after {
	content:"";
    position: absolute;
    top: 0px;
    right: -16px;
    background-color: #fff;
    border-right: 1px solid #fff;
    width: 2px;
    height: 25px;
}
footer .footer-social-sec .footer-policy ul li:last-of-type:after {
  display: none;
}
footer .footer-social-sec .footer-soical-icon {
  display: flex;
  gap: 24px;
}

footer .footer-social-sec .footer-soical-icon img:hover {
	  filter: brightness(0) saturate(100%)
            invert(32%) sepia(99%)
            saturate(2820%)
            hue-rotate(343deg)
            brightness(97%)
            contrast(94%);
}
footer .copy-rights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid #404040;
  margin-top: 20px;
}
footer .copy-rights p {
  color: #9A9A9A;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
footer .copy-rights p:last-of-type {
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
footer .footer-disclaimer {
  padding: 40px 0 0 0;
}
footer .footer-disclaimer p {
  color: #9A9A9A;
  font-family: "InterTight-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.main-banner {
  padding-top: 100px;
}
.main-banner p {
  color: #333333;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.main-banner .main-banner-img {
  padding-top: 80px;
}
.main-banner .main-banner-trusted {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 70%;
}
.main-banner .main-banner-trusted p {
  font-size: 14px;
}
.main-banner .main-banner-trusted p span {
  color: #C92636;
}

.py-100 {
  padding: 100px 0 100px 0;
}

.form-area {
  position: relative;
  z-index: 999;
  border-radius: 20px;
  border: 1px solid #676767;
  background: #ffffff;
  padding: 40px;
}
.form-area h3 {
  color: #000000;
  font-size: 31px;
  line-height: normal;
  margin-bottom: 10px;
  font-family: "InterTight-Regular", sans-serif;
}
.form-area p {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  font-family: "InterTight-Regular", sans-serif;
  margin: 0 !important;
}
.form-area form {
  margin-top: 40px;
}
.form-area form textarea {
  resize: none;
  height:130px !important;
}
.form-area form .resume input {
  padding: 50px;
  width: 100%;
}

.form-area form .checkbox .wpcf7-list-item {
	margin-left:0;
}

.form-area form .checkbox .wpcf7-list-item-label {
	display:none;
}
.form-area form .row-gap-20 {
  row-gap: 20px;
}
.form-area form label {
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  font-family: "InterTight-Regular", sans-serif;
}
.form-area form label span {
  color: #E52E2A;
  font-size: 16px;
  line-height: 24px;
}
.form-area form .form-control {
  padding: 13px 15px 13px 0;
  border: 0;
  border-bottom: 1px solid #BBBBBB !important;
  border-radius: 0;
}
.form-area form .form-control:focus {
  box-shadow: none;
}
.form-area form .form-select {
  padding: 13px 15px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #BBBBBB !important;
  border-radius: 0;
  padding-left: 0;
}
.form-area form .form-select:focus {
  box-shadow: none;
}
.form-area form input {
  color: #000000;
  border-radius: 8px;
  background: transparent;
  border: 0;
}
.form-area form input::-moz-placeholder {
  color: #818181;
  font-size: 16px;
}
.form-area form input::placeholder {
  color: #818181;
  font-size: 16px;
}
.form-area form .comment {
  color: #818181;
  font-size: 14px;
  line-height: normal;
  margin-top: 8px;
}
.form-area form textarea {
  border-radius: 8px;
  background: transparent;
  border: 0;
}
.form-area form .checkbox {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.form-area form .checkbox input {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 3px !important;
}
.form-area form .checkbox input:focus {
  box-shadow: none;
}
.form-area form .checkbox p {
  color: #333333;
  font-size: 16px;
  line-height: normal;
}
.form-area form .checkbox p a {
  text-decoration: underline;
  color: #C92636;
}
.form-area form .error-msg {
  color: #E52E2A;
  font-size: 16px;
  line-height: 22px;
}
.form-area form .submit {
  border: 0;
  margin-top: 30px;
}
.form-area form .submit button {
	border: none;
    background: transparent;
	padding:0;
    align-items: center;
    display: flex;
}

.form-area form .submit button .icon {
	margin-left: 0px;
}
.form-area form .submit .primary-btn {
  background: #D2010D !important;
  color: #ffffff !important;
	    font-size: 16px;
    padding: 13px 23px;
    font-family: "InterTight-Regular", sans-serif !important;
}
.form-area form .submit a svg rect {
  fill: #D2010D;
}
.form-area form .submit a svg path {
  fill: #ffffff;
}
.form-area input:checked {
  background-color: #D2010D;
  border-color: #D2010D;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  border-radius: 0;
}

.slick-dots {
  bottom: -40px;
}
.slick-dots li button:before {
  content: "";
  transition: all 0.3s ease;
  background: #CCCCCC;
  font-size: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50px;
}
.slick-dots .slick-active button:before {
  background: #C92636;
  width: 26px;
  opacity: 1 !important;
}

.modal .modal-content {
  background: #000000;
}
.modal .modal-content .modal-header {
  border: 0;
}
.modal .modal-content .modal-header .btn-close {
  position: absolute;
  top: -20px;
  right: -20px;
}

.home-banner {
  background: #000000;
  height: 100dvh;
  position: relative;
}
.home-banner .home-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  filter: blur(60px);
}
.home-banner .container {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-banner .container p {
  margin-top: 30px;
  color: #ffffff;
}
.home-banner .container .main-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 43px;
}
.home-banner .container .main-btn:hover .btn-primary svg path{
    opacity:0;
}

.home-banner .container .main-btn:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}
.home-banner .prefred-brand {
  position: absolute;
  bottom: 0px;
  z-index: 3;
  top: unset;
}
.home-banner .prefred-brand p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}
.home-banner .prefred-brand .banner-logo {
  display: inline-flex;
  align-items: center;
  gap: 54px;
 margin-top: 30px;
}

.animate-sec {
  overflow: hidden;
  background: #000000;
  padding-top: 120px;
}
.animate-sec .animate-main-wrapper {
  gap: 10px;
  display: flex;
  overflow: hidden;
  height: 100vh;
  position: relative;
}
.animate-sec .animate-main-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75%;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 101%);
}
.animate-sec .animate-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  will-change: transform;
}
.animate-sec .animate-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-sec .animate-wrapper:nth-child(odd) {
  margin-top: -3%;
}

.product-design-sec {
  background: #000000;
	padding-top: 0;
}
.product-design-sec .design-top-sec h3 {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.12px;
}
.product-design-sec .design-top-sec h6 {
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.09px;
}
.product-design-sec .design-top-sec span {
  color: #9A9A9A;
  margin-top: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.27px;
}
.product-design-sec .design-slider-wrapper {
  padding-left: calc((100vw - 1335px) / 2);
  margin-top: 63px;
}
.product-design-sec .design-slider-wrapper .design-slider .card {
  background: transparent;
  border: 0;
  margin-right: 20px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .zoom-animate {
  border-radius: 24px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .zoom-animate img {
  width: 100%;
  height: 478px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .card-body {
  padding: 40px 40px 30px 40px;
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
	background: linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0) 8%, rgb(0 0 0 / 0%) 55%, transparent 100%);
    border: 1px solid #1D1D1D;
    border-radius: 24px;
}
.product-design-sec .design-slider-wrapper .design-slider .card h5 {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
}
.product-design-sec .design-slider-wrapper .design-slider .card p {
  color: rgba(255, 255, 251, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body h6 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon {
  width: 45px;
  height: 45px;
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon svg {
  width: 12px;
  height: 12px;
	
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon::after {
    content: "";
    position: absolute;
    right: 54px;
    bottom: 36px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url(https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png), url(https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png);
    background-repeat: no-repeat;
    background-size: contain, contain;
    background-position: 0 0, -25px 25px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    pointer-events: none;
    filter: brightness(500);
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon:hover::after {
    opacity: 1;
    visibility: visible;
    animation: buttonArrow .7s linear infinite;
}
.product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon:hover svg path{
	opacity:0;
}
.product-design-sec .design-slider-wrapper .design-slider .slick-arrow {
  position: absolute;
  top: -25%;
  right: 20%;
  left: unset;
}
.product-design-sec .design-slider-wrapper .design-slider .slick-prev {
  right: 24%;
}

.service-section {
  background: #000000;
  padding-bottom: 0;
}
.service-section .top-section {
  margin-bottom: 63px;
}
.service-section .card-row {
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0D0D0D 0%, #0D0D0D 97.6%);
  row-gap: 20px;
  justify-content: space-between;
  position: sticky;
  top: 100px;
  will-change: transform;
}
.service-section .card-row:last-of-type {
  margin-bottom: 0;
}
.service-section .card-row .right-card {
  padding: 73px 0 40px 40px;
}
.service-section .card-row .right-card a {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}
.service-section .card-row .right-card a:hover {
  color: #C92636;
}
.service-section .card-row .right-card p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-top: 14px;
}
.service-section .card-row .right-card ul {
  padding-top: 144px;
}
.service-section .card-row .right-card ul li {
  border-radius: 12px;
  border: 0.5px solid #464545;
  background: #0C0C0C;
  font-size: 14px;
  padding: 10px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 2px;
}
.service-section .card-row .right-card ul li:nth-child(even) {
  border-radius: 30px;
}
.service-section .card-row .right-card .service-svg-icon {
  margin-top: 20px;
}
.service-section .card-row .right-card .service-svg-icon {
	position:relative;
}
.service-section .card-row .right-card .service-svg-icon svg {
        transition: opacity .3s ease;
    }
.service-section .card-row .right-card .service-svg-icon::after {
        content: "";
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;

        background-image:
            url("https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png"),
            url("https://douzzocart.com/krizeedesign/wp-content/uploads/2026/07/Vector-41.png");

        background-repeat: no-repeat;
        background-size: contain, contain;

        background-position:
            0 0,
            -25px 25px;

        opacity: 0;
        visibility: hidden;

        transition: opacity .3s ease;

        pointer-events: none;
	    filter:brightness(500);
    }
.service-section .card-row .right-card .service-svg-icon:hover svg path{ 
        opacity: 0;
}

.service-section .card-row .right-card .service-svg-icon:hover::after {
    opacity: 1;
    visibility: visible;
    animation: buttonArrow .7s linear infinite;
}
	
.service-section .card-row .card-row-img {
  position: relative;
}
.service-section .card-row .card-row-img .main-image {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
  left: -20px;
}
.service-section .card-row .card-row-img .certificate-img {
  display: inline-flex;
  gap: 20px;
  position: absolute;
  bottom: 40px;
  right: 40px;

}
.service-section .card-row .card-row-img .certificate-img  img{
		transition:unset;
	transform:unset;
}

.review-section {
  background: #000000;
  position: relative;
  overflow: hidden;
}
.review-section::before {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.36) 20%, rgba(233, 51, 37, 0.24) 55%, rgba(233, 51, 37, 0.11) 94%, rgba(233, 49, 37, 0) 68%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  top: 0px;
  width: 100%;
  height: 21%;
  filter: blur(60px);
  z-index: 0;
}
/* .review-section .container {
  position: relative;
  z-index: 9;
} */
.review-section .review-slider {
  margin-top: 60px;
}
.review-section .review-slider .review-card {
  position: relative;
  margin: 0 15px 0 15px;
  overflow: hidden;
}
.review-section .review-slider .review-card::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 75%;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 131%);
	z-index:9;
}
.review-section .review-slider .review-card video{
	 width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 25px;
  min-height: 610px;
	border: 1px solid #fff;
}
.review-section .review-slider .review-card:hover .testimonial-video .img-svg{
	 opacity: 1;
	   pointer-events: auto; 
}
.review-section .review-slider .review-card .testimonial-video .img-svg{
	  opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.review-section .review-slider .review-card .testimonial-video .img-svg img{
	width:78px;
	height:78px;
    min-height: 78px;
}
.review-section .review-slider .review-card .testimonial-video .img-svg{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
	backdrop-filter: blur(8px);
    border-radius: 50%;
	 cursor: pointer;
  	z-index: 99;
	border:0;
	background:transparent;
	padding: 0 !important;
}
.review-section .review-slider .review-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 25px;
  min-height: 610px;
}
.review-section .review-slider .review-card .review-body {
  position: absolute;
  bottom: 32px;
  padding: 30px 30px 0 30px;
	z-index:99;
}
.review-section .review-slider .review-card .review-body p {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
.review-section .review-slider .review-card .review-body h6 {
  color: #ffffff;
  font-family: "InterTight-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-top: 26px;
}
.review-section .review-slider .review-card .review-body span {
  color: #ffffff;
  margin-top: 5px;
  display: inline-block;
  font-size: 16px;
}

.trusted-company {
  background: #000000;
}
.trusted-company .trusted-slider {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}
.trusted-company .trusted-slider .item img {
  width: 100%;
  height: 37px;
  -o-object-fit: contain;
     object-fit: contain;
	filter:brightness(0.5);
}
.trusted-company .trusted-slider .item img:hover {
	filter:brightness(1);
}

.insights-section {
  background: linear-gradient(180deg, #000 67%, #000000 106%);
  overflow: hidden;
  position: relative;
}
.insights-section::before {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.46) 20%, rgba(233, 51, 37, 0.39) 31%, rgba(233, 51, 37, 0.11) 85%, rgba(233, 49, 37, 0) 100%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 21%;
  filter: blur(60px);
}
.insights-section .blog-slider-wrapper {
  padding-left: calc((100vw - 1335px) / 2);
  margin-top: 63px;
}
.insights-section .blog-slider-wrapper .blog-slider .card {
  background: transparent;
  border: 0;
  margin-right: 20px;
}
.insights-section .blog-slider-wrapper .blog-slider .card .zoom-animate {
  border-radius: 20px;
}
.insights-section .blog-slider-wrapper .blog-slider .card .zoom-animate img {
  width: 100%;
  height: 265px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.insights-section .blog-slider-wrapper .blog-slider .card .card-body {
  padding: 10px 0 0 0;
}
.insights-section .blog-slider-wrapper .blog-slider .card .card-body span {
  color: #D2010D;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
	text-transform:uppercase;
}
.insights-section .blog-slider-wrapper .blog-slider .card .card-body li {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
	text-transform:uppercase;
  color: #ffffff;
	list-style-type:disc;
}
.insights-section .blog-slider-wrapper .blog-slider .card .card-body h5 {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.insights-section .blog-slider-wrapper .blog-slider .slick-arrow {
  position: absolute;
  top: -25%;
  right: 20%;
  left: unset;
}
.insights-section .blog-slider-wrapper .blog-slider .slick-prev {
  right: 24%;
}

.insights-section .blog-slider-wrapper .blog-slider .card:hover .card-body h5{
	color:#D2010D;
	text-decoration:underline;
}

.faq-section {
  background-color: #000000;
}
.faq-section p {
  color: #9A9A9A;
  font-weight: 400;
  line-height: 140%;
  padding-top: 20px;
}
.faq-section .accordion .accordion-item {
  background-color: transparent;
  border: 0;
}
.faq-section .accordion .accordion-item .accordion-header button {
  background-color: transparent;
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  border: 0;
  box-shadow: none;
}
.faq-section .accordion .accordion-item .accordion-header button:focus {
  box-shadow: unset !important;
}
.faq-section .accordion .accordion-item .accordion-header button::after {
  display: none;
}
.faq-section .accordion .accordion-item .accordion-header button::before {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  left: -45px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='37' viewBox='0 0 37 37' fill='none'%3E%3Crect x='0.5' y='0.5' width='36' height='36' rx='18' stroke='white' stroke-opacity='0.5'/%3E%3Cpath d='M12.5 15.5L15.3696 18.5L18.2391 21.5L24.5 15.5' stroke='white' stroke-opacity='0.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq-section .accordion .accordion-item .accordion-header button:not(.collapsed)::before {
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Crect width='36' height='36' rx='18' fill='%23D2010D'/%3E%3Cpath d='M12 21L14.8696 18L17.7391 15L24 21' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq-section .accordion .accordion-item .accordion-body {
  padding-top: 0;
}
.faq-section .accordion .accordion-item .accordion-body p {
  padding-top: 0;
}
.faq-section .accordion .accordion-item .accordion-body ul {
  padding-top: 15px;
}
.faq-section .accordion .accordion-item .accordion-body ul li {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
  line-height: normal;
  position: relative;
  margin-bottom: 10px;
}
.faq-section .accordion .accordion-item .accordion-body ul li:last-of-type {
  margin-bottom: 0;
}
.faq-section .accordion .accordion-item .accordion-body ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M14 1.05145L4.4 10L0 5.89858L1.128 4.84713L4.4 7.88963L12.872 0L14 1.05145Z' fill='%23F25324'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pre-footer {
  background: #000000;
  padding-bottom: 140px;
  position: relative;
}
.pre-footer::before {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.9) 20%, rgba(233, 51, 37, 0.85) 18%, rgba(233, 51, 37, 0.2) 75%, rgba(233, 49, 37, 0) 100%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  bottom: -145px;
  width: 100%;
  height: 87%;
  filter: blur(60px);
}
.pre-footer p {
  color: #ffffff;
  line-height: normal;
  margin-top: 20px;
}
.pre-footer .pre-footer-btn {
  margin-top: 30px;
}
.pre-footer .pre-footer-btn::after {
  content: "";
  background: #E93325;
}
.pre-footer .pre-footer-btn a {
  display: inline-block;
}
.pre-footer .pre-footer-btn a:last-child {
  color: #ffffff;
  padding: 13px 27px;
  border-radius: 15px;
  border: 1px solid #ffffff;
  margin-left: 10px;
}
.pre-footer .pre-footer-btn a:last-child:hover {
	color: #000;
	background-color:#fff;
}
.pre-footer .pre-footer-animation {
  position: absolute;
  width: 35%;
  right: 0;
  bottom: 0;
  text-align: start;
  display: flex;
  align-items: center;
  bottom: -70px;
}
.pre-footer .pre-footer-animation p {
  font-family: "InterTight-Light", sans-serif;
  font-size: 16px;
}

.pre-footer .pre-footer-btn .primary-btn:hover {
	background-color:#000 !important;
	color:#fff !important;
}

.red-slider-arrow .slick-arrow {
  position: absolute;
  top: -15%;
  right: 20%;
  left: unset;
}
.red-slider-arrow .slick-arrow::before {
  display: none;
}
.red-slider-arrow .slick-arrow:hover svg rect {
  fill: #E93325;
}
.red-slider-arrow .slick-prev {
  right: 24%;
}

.main-about-page .about-banner {
  background: #000000;
  position: relative;
  z-index: 3;
}
.main-about-page .about-banner::before {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.9) 16%, rgba(233, 51, 37, 0.85) 36%, rgba(233, 51, 37, 0.2) 53%, rgba(233, 49, 37, 0) 100%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  bottom: -145px;
  width: 100%;
  height: 87%;
  filter: blur(60px);
  z-index: 0;
}
.main-about-page .about-banner p {
  margin-top: 20px;
}
.main-about-page .about-banner .about-banner-animate {
  margin-top: 30px;
}

.main-about-page .about-banner .about-banner-animate .abt-button {
	display:flex;
	align-items:center;
}

.main-about-page .about-banner .about-banner-animate .abt-button:hover .btn-primary svg path{
    opacity:0;
}

.main-about-page .about-banner .about-banner-animate .abt-button:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}

.main-about-page .about-banner .about-banner-animate p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  width: 50%;
  right: -80px;
}
.main-about-page .about-banner .about-banner-animate p svg {
  position: absolute;
  top: -22px;
  left: -34px;
}
.main-about-page .about-banner .about-banner-review {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-about-page .about-banner .about-banner-review span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.main-about-page .about-product-design-sec {
  position: relative;
  background: #000000;
  padding-top: 120px;
}
.main-about-page .about-product-design-sec h6 {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: normal;
}
.main-about-page .about-product-design-sec .about-highlight-text p {
  color: #9A9A9A;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
.main-about-page .about-product-design-sec .popup-video-sec {
  position: relative;
}
.main-about-page .about-product-design-sec .popup-video-sec svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px
}
.main-about-page .about-product-design-sec .about-top-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.main-about-page .about-team {
  background: #000000;
	position: relative;
}
.main-about-page .about-team::after {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.36) 20%, rgba(233, 51, 37, 0.24) 55%, rgba(233, 51, 37, 0.11) 94%, rgba(233, 49, 37, 0) 68%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 21%;
  filter: blur(60px);
  z-index: 0;
}
.main-about-page .about-team .card {
  background-color: transparent;
  border: 0;
}
.main-about-page .about-team .card .zoom-animate {
  border-radius: 15px;
}
.main-about-page .about-team .card .zoom-animate img {
  border-radius: 15px;
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-about-page .about-team .card .card-body {
  padding: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-about-page .about-team .card .card-body h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.main-about-page .about-team .card .card-body p {
  color: #B2B2B2;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
}
.main-about-page .about-team .team-btn-box{
	position:relative;
	z-index:99;
}
.main-about-page .about-team .team-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  border-radius: 50px;
  border: 1px solid #230705;
  background: #210705;
  padding: 16px;
}
.main-about-page .about-team .team-bottom-btn h6 {
  color: #ffffff;
  font-size: 18px;
  font-family: "InterTight-Medium", sans-serif;
  font-weight: 500;
  line-height: normal;
}
.main-about-page .about-team .team-bottom-btn span {
  color: #9A9A9A;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.main-about-page .vision-mision-sec {
  background-color: #000000;
  padding-bottom: 0;
}
.main-about-page .vision-mision-sec .zoom-animate-dup {
  position: relative;
  border-radius: 20px;
}
.main-about-page .vision-mision-sec .zoom-animate-dup svg {
  position: absolute;
  bottom: -20px;
  right: 30px;
}
.main-about-page .vision-mision-sec .zoom-animate-dup .zoom-animate {
  border-radius: 20px;
}
.main-about-page .vision-mision-sec .zoom-animate-dup .zoom-animate img {
  border-radius: 20px;
}
.main-about-page .vision-mision-sec h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  font-family: "InterTight-Medium", sans-serif;
  line-height: normal;
  margin-top: 30px;
}
.main-about-page .vision-mision-sec p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  font-family: "InterTight-Light", sans-serif;
  line-height: 24px;
  margin-top: 10px;
}
.main-about-page .vision-mision-sec .card {
  border-radius: 24px;
  padding: 30px;
  background: #141414;
  border: 0;
}
.main-about-page .vision-mision-sec .card .zoom-animate {
  border-radius: 20px;
}
.main-about-page .vision-mision-sec .card h5 {
  margin-top: 0;
}
.main-about-page .vision-mision-sec .card svg {
  position: relative;
  bottom: -22px;
  z-index: 9;
  right: 30px;
}
.main-about-page .vision-mision-sec .card .card-body {
  padding: 0px;
}
.main-about-page .vision-mision-sec .card .card-body ul {
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.main-about-page .vision-mision-sec .card .card-body ul li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-about-page .vision-mision-sec .card .card-body ul li:last-of-type {
  margin-bottom: 0;
}
.main-about-page .vision-mision-sec .card .card-body ul li::before {
  content: "";
  position: relative;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23D2010D'/%3E%3Cpath d='M9.2 13.5L6.8 11.1L6 11.9L9.2 15.1L16 8.3L15.2 7.5L9.2 13.5Z' fill='white'/%3E%3C/svg%3E");
}
.main-about-page .vision-mision-sec .card .card-body p {
  margin-top: 60px;
}
.main-about-page .vision-mision-sec .card .card-body p:last-of-type {
  margin-top: 4px;
}
.main-about-page .vision-mision-sec .card .card-body p span {
  color: #BDBDBD;
  font-size: 16px;
  line-height: 20px;
  text-transform: lowercase;
}
.main-about-page .vision-mision-sec .downlode-broach {
  display: flex;
  padding: 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 55px;
  background: #ffffff;
  margin-bottom: 20px;
}
.main-about-page .vision-mision-sec .downlode-broach h6 {
  color: #000000;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.main-about-page .vision-mision-sec .downlode-broach span {
  color: #9A9A9A;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.main-about-page .vision-mision-sec .downlode-last-content {
  color: #9A9A9A;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 15px;
  display: inline-block;
}
.main-about-page .trusted-company {
  padding-bottom: 120px;
}

.main-about-page .review-section::before {
	display:none;
}

.start-project-banner {
  background: #000000;
  padding-top: 120px;
}
.start-project-banner .project-banner-img {
  position: absolute;
  left: 0;
  top: 0;
}
.start-project-banner .project-svg {
  position: absolute;
  right: 0;
  top: 15%;
}
.start-project-banner p {
  margin-top: 20px;
  font-size: 16px;
	line-height:24px;
}
.start-project-banner .banner-call-us {
  padding-top: 40px;
}
.start-project-banner .banner-call-us span {
  color: #ffffff;
  font-family: "InterTight-Light", sans-serif;
  font-size: 16px;
  line-height: normal;
  display: block;
}
.start-project-banner .banner-call-us a {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.start-project-banner .project-contact-detail {
	margin-top:260px;
}
.start-project-banner .project-contact-detail h5 {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.start-project-banner .project-contact-detail p {
  color: #BFBFC8;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
	margin-top:6px;
}
.start-project-banner .project-contact-detail p a {
  color: #D2010D;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.work-banner-sec {
  position: relative;
  background: #000000;
  overflow: hidden;
}
.work-banner-sec::before {
  content: "";
  background: radial-gradient(circle at bottom center, rgba(233, 51, 37, 0.46) 20%, rgba(233, 51, 37, 0.39) 31%, rgba(233, 51, 37, 0.11) 85%, rgba(233, 49, 37, 0) 100%, rgba(0, 0, 0, 0.42) 100%);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 21%;
  filter: blur(60px);
}
.work-banner-sec p {
  margin-top: 20px;
}
.work-banner-sec .banner-animate-info {
  position: relative;
  margin-top: 30px;
}
.work-banner-sec .banner-animate-info .banner-animate {
  position: absolute;
  width: 50%;
   right: -50px;
   bottom: -35px;
  display: flex;
  gap: 7px;
}
.work-banner-sec .banner-animate-info .banner-animate p {
  margin: 0;
  transform: rotate(7deg);
}

.work-page-sec {
  background: #000000;
}
.work-page-sec ul {
  display: flex;
  gap: 10px;
  margin-bottom: 30px !important;
}
.work-page-sec ul li button {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 14px 28px;
  border-radius: 15px !important;
  border: 2px solid #181818;
}
.work-page-sec ul li button:hover {
  background-color: #D2010D !important;
  color: #ffffff !important;
}
.work-page-sec ul li .active {
  background-color: #D2010D !important;
  color: #ffffff;
}
.work-page-sec .work-row-card {
  row-gap: 40px;
}
.work-page-sec .work-row-card .zoom-animate {
	overflow:hidden;
	border-radius:15px;
}
.work-page-sec .work-row-card img {
  width: 100%;
  height: 430px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-page-sec .work-row-card h5 {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px;
}
.work-page-sec .work-row-card ul {
  margin-top: 20px;
}
.work-page-sec .work-row-card ul li {
  border-radius: 30px;
  border: 1px solid #333;
  background: #252525;
  display: inline-flex;
  padding: 10px 15px;
  gap: 10px;
  color: #ffffff;
}
.work-page-sec .work-row-card p {
  margin-top: 6px;
  font-size: 16px;
	width:75%;
}

.main-work-page-tag .trusted-company {
  padding: 120px 0 !important;
}

.work-detail-section {
  padding-bottom: 80px;
}

.work-detail-section .aos-animate img{
	width:40px;
}
.work-detail-section .about-detail-list:first-of-type ul{
	padding:0;
}
.work-detail-section .about-detail-list:first-of-type ul li{
  border-radius: 22.5px;
  border: 1px solid #333;
  background: #252525;
  padding: 13px 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  margin-right: 8px;
}
.work-detail-section span {
  border-radius: 22px;
  border: 1px solid #333;
  background: #252525;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  margin-right: 8px;
}
.work-detail-section span:last-of-type {
  margin-right: 0;
}
.work-detail-section h2 {
  margin-top: 10px;
}
.work-detail-section p {
  margin: 20px 0;
}
.work-detail-section .detail-banner-right {
  text-align: end;
}
.work-detail-section .detail-banner-right .detail-card {
  border-radius: 10px;
  background: #ffffff;
  padding: 30px 20px 20px 20px;
  display: inline-block;
  text-align: start;
}
.work-detail-section .detail-banner-right .detail-card bdo {
  color: #D2010D;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.work-detail-section .detail-banner-right .detail-card p {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 17px 0 0 0;
}
.work-detail-section .overview-img {
  margin-top: 30px;
}
.work-detail-section .overview-img img {
  width: 100%;
  height:548px;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 50px;
}
.work-detail-section .overview-img h6 {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 112.815%;
  text-transform: uppercase;
}
.work-detail-section .about-detail-list h5 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
}
.work-detail-section .about-detail-list:first-of-type h5 {
  margin-top: 0;
}
.work-detail-section .overview-img p {
  margin-top: 8px;
  line-height: 24px;
}
.work-detail-section .overview-img ul {
  padding-left: 18px;
}
.work-detail-section .overview-img ul li {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  list-style-type: disc;
}
.work-detail-section .overview-img ul li:last-of-type {
  margin-bottom: 0;
}

.detail-slider-sec {
  overflow: hidden;
  padding-top: 0;
}
.detail-slider-sec .work-detail-slider .work-slider-img {
  padding: 0 20px;
}
.detail-slider-sec .work-detail-slider .work-slider-img img {
  width: 100%;
}
.detail-slider-sec .work-detail-slider .slick-arrow {
  right: 20%;
  left: unset;
  bottom: -10%;
  top: auto;
}
.detail-slider-sec .work-detail-slider .slick-arrow::before {
  display: none;
}
.detail-slider-sec .work-detail-slider .slick-arrow:hover svg rect {
  fill: #E93325;
}
.detail-slider-sec .work-detail-slider .slick-prev {
  right: 24%;
}

.person-detail-sec {
  padding: 50px 0 0px 0;
}
.person-detail-sec svg {
  position: absolute;
  top: -30px;
  left: 20px;
  z-index: 99;
}
.person-detail-sec .zoom-animate {
  border-radius: 20px;
  position: relative;
  width: 100%;
  height: 261px;
}
.person-detail-sec .zoom-animate img {
  width: 100%;
  height: 261px;
  -o-object-fit: cover;
     object-fit: cover;
}
.person-detail-sec h6 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
}
.person-detail-sec p {
  line-height: 24px;
}
.person-detail-sec span {
  color: #9A9A9A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-work-detail-page .trusted-company {
  padding: 120px 0;
}
.blog-detail-banner p{
	margin-top:10px;
}
.blog-banner-sec {
  padding: 120px 0 0 0;
}
.blog-banner-sec p {
  margin-top: 20px;
  line-height: 24px;
}

.blog-info {
  padding-top: 50px;
  padding-bottom: 120px;
}
.blog-info ul {
  position: sticky;
  top: 100px;
}
.blog-info ul li {
  margin-bottom: 24px;
}
.blog-info ul li:last-of-type {
  margin-bottom: 0;
}
.blog-info ul li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
	text-transform:capitalize;
}
.blog-info ul li a:hover {
  color: #D2010D;
}
.blog-info ul li .active {
  color: #D2010D;
}
.blog-info .card {
  background: transparent;
  border: 0;
}
.blog-info .card .zoom-animate {
  border-radius: 24px;
  margin-bottom: 20px;
}
.blog-info .card img {
  border-radius: 24px;
  width: 100%;
  height: 296.88px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-info .card span {
  color: #D2010D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  display: inline;
}
.blog-info .card ul li {
  list-style-type: disc;
  color: #fff;
  margin-left: 10px;
}
.blog-info .card h5 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-top: 8px;
}
.blog-info .card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.main-service-page .trusted-company {
  padding: 0 0 120px 0;
}

.work-banner-sec .banner-animate-info {
  width: 60%;
}
.work-banner-sec .banner-animate-info .banner-animate {
  width: 55%;
}
.work-banner-sec .zoom-animate {
  border-radius: 33px;
  z-index: 9;
  position: relative;
}
.work-banner-sec .zoom-animate img {
  width: 100%;
  border-radius: 33px;
}
.work-banner-sec p {
  line-height: 24px;
}

.branches-info-sec {
  padding-top: 87px;
  background: #000000;
}
.branches-info-sec h5 {
  color: #ffffff;
  font-size: 18px;
  font-family: "InterTight-Bold", sans-serif;
  font-weight: 700;
  line-height: normal;
  margin-top: 25px;
}
.branches-info-sec P a{
  color: #9A9A9A;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display:inline-block;
  margin-top: 10px;
}
.branches-info-sec a {
  font-size: 16px;
}

.branches-info-sec .hover-btn{
	color:#fff !important;
}
.branches-info-sec .hover-btn:hover {
	color:#D2010D !important;
}
.branches-info-sec img{
	width: 250px;
	height: 164.086px;
	object-fit:contain;
	object-position: bottom;
}
.hover-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #ffffff !important;
  font-size: 16px;
}
.hover-btn svg {
  transition: 0.3s ease-in;
}
.hover-btn:hover {
  color: #D2010D !important;
}
.hover-btn:hover svg {
  transform: translateX(9px);
  transition: 0.4s ease-in;
}
.hover-btn:hover svg path {
  fill: #D2010D;
}

.map-sec .map-info {
  position: relative;
}
.map-sec .map-info iframe {
  width: 100%;
  height: 700px;
}
.map-sec .map-info .card {
  position: absolute;
  bottom: 20%;
  right: 25%;
  border: 0;
  background: transparent;
}
.map-sec .map-info .card .card-info {
  background: #D2010D;
  padding: 50px;
  margin-left: auto;
}
.map-sec .map-info .card .card-info .map-btn-box {
	display:flex;
	align-items:center;
}
.map-sec .map-info .card .card-info .map-btn-box:hover .primary-btn {
	background-color:#000 !important;
	color:#fff !important;
}
.map-sec .map-info .card .card-info .map-btn-box:hover .btn-primary svg path{
    opacity:0;
}
.map-sec .map-info .card .card-info .map-btn-box:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}
.map-sec .map-info .card h6 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
.map-sec .map-info .card p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
  width: 70%;
}
.map-sec .map-info .card a {
  margin-top: 30px;
  display: inline-block;
}
.map-sec .map-info img {
  position: absolute;
  bottom: 0;
  right: 18%;
}
.blog-detail-sec h2{
	margin:12px 0 0px 0;
}

.blog-detail-sec .zoom-animate img {
	height: 668px !important;
    object-fit: cover;
}
.job-detail-sec {
  padding-bottom: 120px;
}
.job-detail-space{
	padding-top:100px;
}
.job-detail-sec bdo{
	color: #A0A0A0;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	display:inline-block;
	margin-top:10px;
}
.job-detail-sec span {
  color: #D2010D;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.job-detail-sec .form-area form .submit .primary-btn {
    color: #D2010D;
    text-transform: unset;
}
.job-detail-sec ul li {
  list-style-type: disc;
  margin-left: 30px;
  color: #ffffff;
}
.job-detail-sec .bottom-text {
  display: flex;
  margin-top: 30px;
}
.job-detail-sec .bottom-text a {
  margin-left: -10px;
}
.job-detail-sec .bottom-text img {
  position: relative;
  z-index: 99;
  width: 46px;
  height: 46px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.job-detail-sec .zoom-animate {
  border-radius: 25px;
}
.job-detail-sec .zoom-animate img {
  border-radius: 25px;
}

.job-detail-info h4 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  margin-top: 40px;
}
.job-detail-info h4:first-of-type {
  margin-top: 0;
}
.job-detail-info p {
  color: #ffffff;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.job-detail-info p:last-of-type {
  margin-bottom: 0;
}
.job-detail-info h6 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  font-family: "InterTight-Medium", sans-serif;
  margin: 15px 0 0px 0;
}
.job-detail-info ul {
  margin: 20px 0 0 0;
  padding-left: 28px;
}
.job-detail-info ul li {
  color: #ffffff;
  list-style-type: disc;
  margin: 0;
}
.job-detail-info img{
	margin-top:50px;
}
.job-detail-info .wp-block-columns{
	margin-top:50px;
	display:flex;
	gap:30px;
}
.job-detail-info .wp-block-columns img{
	margin:0;
}
.main-blog-detail-page .insights-section::before {
  display: none;
}
.work-banner-sec .banner-animate-info .service-btn:hover .btn-primary svg path{
    opacity:0;
}

.work-banner-sec .banner-animate-info .service-btn:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}

.services-detail ul {
  margin-top: 30px;
}
.services-detail ul li {
  border-radius: 30px;
  border: 1px solid #333;
  background: rgba(13, 13, 13, 0.3);
  padding: 13px 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  line-height: normal;
  margin-bottom: 10px;
}
.services-detail ul li:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.services-detail .banner-animate-info {
  margin-top: 30px;
}
.services-detail .banner-animate-info a {
  display: inline-block;
}

.service-product-design .service-detail-content {
  padding-bottom: 120px;
}
.service-product-design .service-detail-content h6 {
  color: #ffffff;
  font-family: "InterTight-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.service-product-design .service-detail-content p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  line-height: normal;
}
.service-product-design .service-detail-content p:last-of-type {
  margin-top: 50px;
  color: #9A9A9A;
  font-size: 34px;
  font-weight: 400;
  line-height: 48px;
}
.service-product-design .zoom-animate {
  border-radius: 15px;
}
.service-product-design .zoom-animate img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-product-design .accordion .accordion-item {
  border-radius: 18px;
  background: #121212;
  border: 0;
  margin-bottom: 10PX;
}
.service-product-design .accordion .accordion-item .accordion-header button {
  background-color: transparent;
  color: #ffffff;
  font-family: "InterTight-Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  border: 0;
  box-shadow: none;
}
.service-product-design .accordion .accordion-item .accordion-header button:focus {
  box-shadow: unset !important;
}
.service-product-design .accordion .accordion-item .accordion-header button::after {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='37' viewBox='0 0 37 37' fill='none'%3E%3Crect x='0.5' y='0.5' width='36' height='36' rx='18' stroke='white' stroke-opacity='0.5'/%3E%3Cpath d='M12.5 15.5L15.3696 18.5L18.2391 21.5L24.5 15.5' stroke='white' stroke-opacity='0.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.service-product-design .accordion .accordion-item .accordion-header button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Crect width='36' height='36' rx='18' fill='%23D2010D'/%3E%3Cpath d='M12 21L14.8696 18L17.7391 15L24 21' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E");
}
.service-product-design .accordion .accordion-item .accordion-body {
  padding-top: 0;
}
.service-product-design .accordion .accordion-item .accordion-body p {
  padding-top: 0;
  font-size: 16px;
}
.service-product-design .accordion .accordion-item .accordion-body ul {
  padding-top: 15px;
}
.service-product-design .accordion .accordion-item .accordion-body ul li {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
  line-height: normal;
  position: relative;
  margin-bottom: 10px;
}
.service-product-design .accordion .accordion-item .accordion-body ul li:last-of-type {
  margin-bottom: 0;
}
.service-product-design .accordion .accordion-item .accordion-body ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M14 1.05145L4.4 10L0 5.89858L1.128 4.84713L4.4 7.88963L12.872 0L14 1.05145Z' fill='%23F25324'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-choose-sec {
  padding-bottom: 120px;
}
.why-choose-sec span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 100.02%;
}
.why-choose-sec h2 {
  margin-top: 10px;
}
.why-choose-sec a {
  margin-top: 30px;
  display: inline-block;
}
.why-choose-sec h5 {
  color: #ffffff;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  line-height: 100.02%;
}
.why-choose-sec p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 24px;
}

.main-service-detail-page .trusted-company {
  padding-bottom: 120px;
}

.job-info p {
  font-size: 16px;
  line-height: 24px;
}
.job-info .job-card {
  background: #0C0C0C;
  padding: 25px 30px;
  margin-bottom: 8px;
}
.job-info .job-card:first-of-type {
  margin-top: 60px;
}
.job-info .job-card h5 {
  color: #FFFFFB;
      font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 5px;
}
.job-info .job-card span {
  color: #A0A0A0;
  font-family: "InterTight-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}
.job-info .job-card p {
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
	    width: 87%;
}

.error-page h1 {
  color: #ffffff;
  font-size: 150px;
  font-weight: 700;
  line-height: normal;
  font-family: "InterTight-Bold", sans-serif;
}
.error-page h4 {
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}
.error-page p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px !important;
}
.error-page a {
  margin-top: 30px;
  display: inline-block;
}

@media screen and (min-width: 1900px) {
  .top-arrow-animate {
    right: 230px !important;
  }

  .mindzchatwhatsappgreenbg {
    right: 225px !important;
   }

   .mindzchatmodal {
      right: 225px !important;
   }
}

@media screen and (min-width: 1025px) {
  .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .nav-up {
    transform: translateY(-100%);
  }
  .nav-down {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
	
}
@media only screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  header .is-fixed {
    background: #C92636;
    top: 0;
    position: fixed;
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff !important;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-43deg);
    background-color: #fff !important;
    width: 100% !important;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0px;
    gap: 0 !important;
    flex-direction: column !important;
    background: #C92636;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    text-align: start;
    z-index: -9;
    padding: 30px 30px 100px 30px;
    justify-content: space-between;
  }
	
	#primary-menu {
		width:100%;
	}
  .nav-menu.active {
    left: 0;
    padding: 160px 30px 30px 30px;
  }
  .nav-active {
    position: fixed;
    width: 100%;
  }
  .home-banner {
    height: 80dvh;
  }
	.job-detail-space{
	padding-top:0px;
}
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
  bdi {
    color: #ffffff;
    padding: 10px;
     background: #000000;
     gap: 6px;
    font-size: 12px;
  }
  .primary-btn {
    padding: 13px 20px;
  }
  h1 {
    font-size: 28px;
    margin-top: 0px;
    line-height: 34px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .py-120 {
    padding: 50px 0;
  }
  .form-area {
    padding: 20px;
  }
  .form-area h3 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 8px;
  }
  .form-area p {
    font-size: 14px;
    line-height: 20px;
  }
  .form-area form {
    margin-top: 20px;
  }
  .form-area form textarea {
    resize: none;
  }
  .form-area form .resume input {
    padding: 50px;
    width: 100%;
  }
  .form-area form .row-gap-20 {
    row-gap: 20px;
  }
  .form-area form label {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    font-family: "InterTight-Regular", sans-serif;
  }
  .form-area form label span {
    color: #E52E2A;
    font-size: 16px;
    line-height: 24px;
  }
  .form-area form .form-control {
    padding: 13px 15px 13px 0;
    border: 0;
    border-bottom: 1px solid #BBBBBB !important;
    border-radius: 0;
  }
  .form-area form .form-control:focus {
    box-shadow: none;
  }
  .form-area form .form-select {
    padding: 13px 15px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #BBBBBB !important;
    border-radius: 0;
  }
  .form-area form .form-select:focus {
    box-shadow: none;
  }
  .form-area form input {
    color: #000000;
    border-radius: 8px;
    background: transparent;
    border: 0;
  }
  .form-area form input::-moz-placeholder {
    color: #818181;
    font-size: 16px;
  }
  .form-area form input::placeholder {
    color: #818181;
    font-size: 16px;
  }
  .form-area form .comment {
    color: #818181;
    font-size: 14px;
    line-height: normal;
    margin-top: 8px;
  }
  .form-area form textarea {
    border-radius: 8px;
    background: transparent;
    border: 0;
	  min-height:131px;
  }
  .form-area form .checkbox {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-top: 20px;
  }
  .form-area form .checkbox input {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 3px !important;
  }
  .form-area form .checkbox input:focus {
    box-shadow: none;
  }
  .form-area form .checkbox p {
    color: #333333;
    font-size: 16px;
    line-height: normal;
  }
  .form-area form .checkbox p a {
    text-decoration: underline;
    color: #C92636;
  }
  .form-area form .error-msg {
    color: #E52E2A;
    font-size: 16px;
    line-height: 22px;
  }
  .form-area form .submit {
    border: 0;
    margin-top: 30px;
  }
  .form-area form .submit .primary-btn {
    background: #D2010D !important;
    color: #ffffff !important;
  }
  .form-area form .submit a svg rect {
    fill: #D2010D;
  }
  .form-area form .submit a svg path {
    fill: #ffffff;
  }
  .form-area .form-check-input:checked {
    background-color: #D2010D;
    border-color: #D2010D;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    border-radius: 0;
  }
  .home-banner .home-banner-img {
    height: 100%;
  }
  .home-banner .container {
    top: 45%;
  }
  .home-banner .container p {
    margin-top: 16px;
  }
  .home-banner .container .main-btn {
    margin-top: 20px;
  }
  .home-banner .prefred-brand {
    top: 84%;
  }
  .home-banner .prefred-brand p {
    font-size: 14px;
  }
  .home-banner .prefred-brand .banner-logo {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-banner .prefred-brand .banner-logo .item {
    width: 90px;
  }
  .animate-sec {
    padding-top: 50px;
  }
  .animate-sec .animate-main-wrapper {
    height: 40vh;
  }
  .animate-sec .animate-wrapper:nth-child(odd) {
    margin-top: -7%;
  }
  .product-design-sec .design-top-sec h3 {
    font-size: 18px;
  }
  .product-design-sec .design-top-sec h6 {
    font-size: 16px;
    margin-top: 9px;
  }
  .product-design-sec .design-top-sec span {
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
  }
  .product-design-sec .design-slider-wrapper {
    padding-left: 0;
    margin-top: 30px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card {
    margin-right: 30px;
    margin-left: 30px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card .zoom-animate {
    border-radius: 24px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card .zoom-animate img {
    width: 100%;
    height: 400px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card .card-body {
    padding: 30px 30px 16px 30px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card h5 {
    font-size: 18px;
    line-height: normal;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card p {
    font-size: 14px;
    margin-top: 10px;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card .design-card-body {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .product-design-sec .design-slider-wrapper .design-slider .card .design-card-body .service-svg-icon {
    position: unset;
  }
  .service-section {
    padding-bottom: 0;
  }
  .service-section .top-section {
    margin-bottom: 60px;
  }
  .service-section .card-row .right-card {
    padding: 20px;
  }
  .service-section .card-row .right-card a {
    font-size: 20px;
  }
  .service-section .card-row .right-card a:hover {
    color: #C92636;
  }
  .service-section .card-row .right-card p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .service-section .card-row .right-card ul {
    padding-top: 16px;
  }
  .service-section .card-row .right-card ul li {
    font-size: 13px;
    margin-bottom: 2px;
    border-radius: 30px;
  }
  .service-section .card-row .right-card .service-svg-icon {
    margin-top: 0px;
  }
  .service-section .card-row .card-row-img .main-image {
    position: unset;
  }
  .service-svg-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .service-svg-icon svg {
    width: 8px;
    height: 8px;
  }
  .review-section h2 {
    margin-bottom: 16px;
  }
  .review-section .review-slider {
    margin-top: 30px;
  }
  .review-section .review-slider .review-card img {
    width: 100%;
    -o-object-position: top;
       object-position: top;
    min-height: 300px;
    height: 500px;
  }
	.review-section .review-slider .review-card video{
		-o-object-position: top;
       object-position: top;
    min-height: 300px;
    height: 500px;
	}
  .review-section .review-slider .review-card .review-body {
    position: absolute;
    bottom: 32px;
    padding: 30px 30px 0 30px;
  }
  .review-section .review-slider .review-card .review-body p {
    font-size: 16px;
  }
  .review-section .review-slider .review-card .review-body h6 {
    margin-top: 20px;
  }
  .red-slider-arrow .slick-arrow {
    display: none !important;
  }
  .trusted-company .trusted-slider {
    padding-top: 30px;
    gap: 24px;
  }
  .insights-section h2 {
    margin-bottom: 16px;
  }
  .insights-section .blog-slider-wrapper {
    padding-left: 0;
    margin-top: 20px;
  }
  .insights-section .blog-slider-wrapper .blog-slider .card {
    margin-right: 30px;
    margin-left: 30px;
  }
  .insights-section .blog-slider-wrapper .blog-slider .slick-arrow {
    display: none !important;
  }
  .faq-section {
    padding-bottom: 0;
  }
  .faq-section p {
    font-size: 16px;
    line-height: 24px;
    padding-top: 16px;
  }
  .faq-section .accordion {
    margin-top: 20px;
  }
  .faq-section .accordion .accordion-item .accordion-header button {
    font-size: 16px;
    line-height: 24px;
    padding: 11px 11px 11px 26px;
  }
  .faq-section .accordion .accordion-item .accordion-header button::before {
    width: 26px;
    height: 26px;
    margin-left: 0px;
    left: -6px;
    top: 12px;
  }
  .faq-section .accordion .accordion-item .accordion-body {
    padding-top: 0;
  }
  .faq-section .accordion .accordion-item .accordion-body p {
    padding-top: 0;
  }
  .faq-section .accordion .accordion-item .accordion-body ul {
    padding-top: 15px;
  }
  .faq-section .accordion .accordion-item .accordion-body ul li {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    line-height: normal;
    position: relative;
    margin-bottom: 10px;
  }
  .faq-section .accordion .accordion-item .accordion-body ul li:last-of-type {
    margin-bottom: 0;
  }
  .faq-section .accordion .accordion-item .accordion-body ul li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 14px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M14 1.05145L4.4 10L0 5.89858L1.128 4.84713L4.4 7.88963L12.872 0L14 1.05145Z' fill='%23F25324'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .pre-footer {
    padding-bottom: 50px;
  }
  .pre-footer p {
    margin-top: 16px;
  }
  .pre-footer .pre-footer-btn {
    margin-top: 20px;
  }
  .pre-footer .pre-footer-animation {
    display: none;
  }
  footer {
    padding-top: 50px;
  }
  footer .main-footer-img {
    order: 8;
    padding-top: 30px;
  }
  footer .footer-branches {
    order: 3;
    margin-top: 30px;
  }
  footer .footer-branches h5 {
    font-size: 16px;
  }
  footer .footer-branches a {
    font-size: 14px;
    margin-top: 7px;
  }
  footer .footer-quick-link {
    order: 1;
  }
  footer .footer-quick-link h5 {
    margin-top: 30px;
  }
  footer .footer-quick-link ul li {
    margin-top: 16px;
  }
  footer .footer-quick-link ul li a {
    font-size: 16px;
  }
  footer .footer-contact {
    order: 4;
    margin-top: 30px;
    display: block;
  }
  footer .footer-contact span {
    font-size: 14px;
    margin-bottom: 2px;
  }
  footer .footer-contact .call-creater {
    margin-bottom: 20px;
  }
  footer .footer-contact .call-creater a {
    font-size: 20px;
  }
  footer .footer-contact .call-creater-mail a {
    font-size: 20px;
  }
  footer .footer-social-sec {
    padding-top: 30px;
    display: block !important;
    order: 5;
  }
  footer .footer-social-sec .footer-policy {
    display: block;
  }
  footer .footer-social-sec .footer-policy ul {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  footer .footer-social-sec .footer-policy ul li a::after {
    content: "|";
    position: relative;
    right: -6px;
  }
  footer .footer-social-sec .footer-soical-icon {
    margin-top: 20px;
  }
  footer .copy-rights {
    order: 6;
    display: block;
    padding-top: 20px;
    margin-top: 20px;
  }
  footer .copy-rights p {
    margin-bottom: 15px;
  }
  footer .copy-rights p:last-of-type {
    margin-bottom: 0;
  }
  footer .footer-disclaimer {
    order: 7;
    padding: 20px 0 0 0;
  }
  footer .footer-disclaimer p {
    font-size: 14px;
  }
	.pre-footer .pre-footer-btn {
		display:flex;
	}
	
	.pre-footer .pre-footer-btn a{
		font-size:14px;
	}
  .main-about-page .about-banner {
    text-align: center;
  }
  .main-about-page .about-banner::before {
    display: none;
  }
  .main-about-page .about-banner p {
    margin-top: 8px;
  }
  .main-about-page .about-banner .about-banner-animate {
    margin-top: 20px;
  }
  .main-about-page .about-banner .about-banner-animate p {
    display: none;
  }
  .main-about-page .about-banner .about-banner-review {
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 33px;
  }
  .main-about-page .about-product-design-sec {
    padding-top: 50px;
  }
  .main-about-page .about-product-design-sec h6 {
    font-size: 18px;
  }
  .main-about-page .about-product-design-sec p {
    font-size: 18px;
  }
  .main-about-page .about-product-design-sec .about-highlight-text {
    margin-top: 6px !important;
  }
  .main-about-page .about-product-design-sec .about-highlight-text p {
    font-size: 14px;
    line-height: 24px;
  }
  .main-about-page .about-product-design-sec .popup-video-sec {
    position: relative;
  }
  .main-about-page .about-product-design-sec .popup-video-sec svg {
    width: 60px;
    height: 60px;
  }
  .main-about-page .about-team .card {
    margin: 10px;
  }
  .main-about-page .about-team .card .zoom-animate {
    border-radius: 15px;
  }
  .main-about-page .about-team .team-bottom-btn {
    margin-top: 60px;
    border-radius: 20px;
    padding: 16px;
    display: block;
    text-align: center;
  }
  .main-about-page .about-team .team-bottom-btn h6 {
    text-align: start;
  }
  .main-about-page .about-team .team-bottom-btn span {
    font-size: 14px;
    line-height: 20px;
    text-align: start;
    display: inline-block;
  }
  .main-about-page .about-team .team-bottom-btn a {
    margin-top: 15px;
    display: inline-block;
  }
  .main-about-page .vision-mision-sec {
    background-color: #000000;
    padding-bottom: 0;
  }
  .main-about-page .vision-mision-sec h5 {
    font-size: 18px;
    margin-top: 20px;
  }
  .main-about-page .vision-mision-sec .card {
    padding: 20px;
    margin-top: 30px;
  }
  .main-about-page .vision-mision-sec .card .zoom-animate img {
    width: 100%;
  }
  .main-about-page .vision-mision-sec .card h5 {
    margin-top: 0;
  }
  .main-about-page .vision-mision-sec .card .card-body {
    padding: 0px;
  }
  .main-about-page .vision-mision-sec .card .card-body ul {
    padding-top: 24px;
    display: block;
  }
  .main-about-page .vision-mision-sec .card .card-body ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .main-about-page .vision-mision-sec .card .card-body p {
    margin-top: 30px;
  }
  .main-about-page .vision-mision-sec .card .card-body p:last-of-type {
    margin-top: 4px;
  }
  .main-about-page .vision-mision-sec .card .card-body p span {
    font-size: 14px;
    line-height: 20px;
  }
  .main-about-page .vision-mision-sec .downlode-broach {
    display: block;
    border-radius: 10px;
    margin-top: 20px;
  }
  .main-about-page .vision-mision-sec .downlode-broach img {
    width: 30%;
    margin-top: 10px;
  }
  .main-about-page .vision-mision-sec .downlode-broach svg {
    display: none;
  }
  .main-about-page .trusted-company {
    padding-bottom: 50px;
  }
  .start-project-banner {
    padding-top: 50px;
  }
  .start-project-banner p {
    margin-top: 10px;
    font-size: 14px;
	  
  }
  .start-project-banner .mobile-start-project {
    text-align: center;
  }
  .start-project-banner .banner-call-us {
    padding-top: 20px;
    margin-bottom: 30px;
  }
  .start-project-banner .banner-call-us span {
    color: #9A9A9A;
    font-family: "InterTight-Regular", sans-serif;
  }
  .start-project-banner .project-contact-detail {
    display: none;
  }
  .work-banner-sec {
    text-align: center;
  }
  .work-banner-sec p {
    margin-top: 10px;
  }
  .work-banner-sec .banner-animate-info {
    position: relative;
    margin-top: 27px;
    margin-bottom: 34px;
    width: 100%;
  }
  .work-banner-sec .banner-animate-info .banner-animate {
    display: none;
  }
  .work-page-sec ul {
    gap: 8px;
  }
  .work-page-sec ul li button {
    font-size: 14px;
    padding: 12px 20px;
  }
  .work-page-sec .work-row-card {
    row-gap: 40px;
  }
  .work-page-sec .work-row-card img {
    height: 300px;
  }
  .work-page-sec .work-row-card h5 {
    font-size: 20px;
    margin-top: 15px;
  }
  .work-page-sec .work-row-card ul {
    margin-top: 16px;
    margin-bottom: 0 !important;
  }
  .work-page-sec .work-row-card ul li {
    display: inline-flex;
    padding: 8px 10px;
    gap: 2px;
    font-size: 12px;
  }
  .work-page-sec .work-row-card p {
    font-size: 14px;
  }
  .main-work-page-tag .trusted-company {
    padding: 50px 0 !important;
  }
  .work-detail-section {
    padding-bottom: 0px;
  }
  .work-detail-section span {
    padding: 8px 10px;
    font-size: 12px;
  }
  .work-detail-section h2 {
    margin-top: 10px;
  }
  .work-detail-section p {
    margin: 20px 0 10px 0;
  }
  .work-detail-section .detail-banner-right {
    text-align: start;
    margin-top: 20px;
  }
  .work-detail-section .detail-banner-right .detail-card {
    padding: 30px 10px 10px 10px;
    text-align: start;
  }
  .work-detail-section .overview-img {
    margin-top: 30px;
  }
  .work-detail-section .overview-img img {
    height: 214px;
    margin-bottom: 30px;
  }
  .work-detail-section .overview-img h6 {
    margin-bottom: 20px;
  }
  .work-detail-section .overview-img h5 {
    font-size: 18px;
    margin-top: 30px;
  }
  .work-detail-section .overview-img p {
    margin-top: 8px;
    line-height: 24px;
  }
  .work-detail-section .overview-img ul {
    padding-left: 28px;
  }
  .work-detail-section .overview-img ul:first-of-type {
    padding-left: 0px;
  }
  .detail-slider-sec .work-detail-slider .work-slider-img {
    padding: 0 20px;
  }
  .detail-slider-sec .work-detail-slider .work-slider-img img {
    width: 100%;
    height: 200px;
  }
  .detail-slider-sec .work-detail-slider .slick-arrow {
    display: none;
  }
  .person-detail-sec {
    padding: 50px 0 0px 0;
  }
  .person-detail-sec svg {
    position: absolute;
    top: -30px;
    left: 20px;
    z-index: 99;
  }
  .person-detail-sec .zoom-animate {
    border-radius: 20px;
    position: relative;
    width: 100%;
    height: 261px;
  }
  .person-detail-sec .zoom-animate img {
    width: 100%;
    height: 261px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .person-detail-sec h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
  }
  .person-detail-sec p {
    line-height: 24px;
  }
  .person-detail-sec span {
    color: #9A9A9A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .main-work-detail-page .trusted-company {
    padding: 50px 0;
  }
  .slick-arrow {
    display: none !important;
  }
  .blog-banner-sec {
    padding: 50px 0 0 0;
  }
  .blog-banner-sec p {
    margin-top: 8px;
    line-height: 20px;
  }
  .blog-info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .blog-info ul {
    position: unset;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    white-space: nowrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  .blog-info ul li {
    margin-bottom: 16px;
  }
  .blog-info ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .blog-info ul li a:hover {
    color: #D2010D;
  }
  .blog-info ul li .active {
    color: #D2010D;
  }
  .blog-info .card {
    background: transparent;
    border: 0;
  }
  .blog-info .card span {
    font-size: 12px;
    line-height: 20px;
  }
  .blog-info .card ul {
    margin-bottom: 0;
  }
  .blog-info .card ul li {
    font-size: 12px;
    margin-left: 10px;
  }
  .blog-info .card h5 {
    font-size: 20px;
    line-height: 26px;
  }
  .blog-info .card p {
    margin-top: 6px;
  }
  .job-detail-sec span {
    font-size: 12px;
    line-height: 18px;
  }
  .job-detail-sec .bottom-text a {
    font-size: 14px;
  }
  .job-detail-sec .zoom-animate {
    border-radius: 25px;
  }
  .job-detail-sec .zoom-animate img {
    width: 100%;
    height: 214px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .job-detail-info h4 {
    font-size: 18px;
    margin-top: 20px;
  }
  .job-detail-info p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .job-detail-info h6 {
    font-size: 16px;
    line-height: 22px;
    margin: 15px 0 0px 0;
  }
  .job-detail-info ul {
    margin: 20px 0 0 0;
    padding-left: 28px;
  }
  .job-detail-info ul li {
    font-size: 14px;
  }
  .services-detail {
    text-align: start;
  }
  .service-product-design .service-detail-content {
    padding-bottom: 50px;
  }
  .service-product-design .service-detail-content h6 {
    font-size: 18px;
  }
  .service-product-design .service-detail-content p {
    font-size: 16px;
  }
  .service-product-design .service-detail-content p:last-of-type {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .service-product-design .accordion {
    margin-top: 40px;
  }
  .why-choose-sec {
    padding-bottom: 50px;
    text-align: center;
  }
  .main-service-detail-page .trusted-company {
    padding-bottom: 50px;
  }
  .branches-info-sec h5 {
    font-size: 16px;
  }
  .branches-info-sec p {
    font-size: 14px;
    line-height: 20px;
  }
  .branches-info-sec a {
    font-size: 14px;
  }
  .map-sec .map-info iframe {
    height: 400px;
  }
  .map-sec .map-info .card {
    bottom: -24%;
    right: 1px;
  }
  .map-sec .map-info .card .card-info {
    padding: 20px;
    border-radius: 15px;
  }
  .map-sec .map-info .card h6 {
    font-size: 16px;
    line-height: normal;
  }
  .map-sec .map-info .card p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
  }
  .map-sec .map-info .card a {
    margin-top: 20px;
  }
  .map-sec .map-info img {
    display: none;
  }
  .main-contact-page .trusted-company {
    padding-top: 120px;
  }
  .work-banner-sec .zoom-animate {
    margin-top: 20px;
  }
  .job-info p {
    font-size: 14px;
    line-height: 20px;
  }
  .job-info .job-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .job-info .job-card:first-of-type {
    margin-top: 30px;
  }
  .job-info .job-card .hover-btn {
    justify-content: start !important;
  }
  .job-detail-sec {
    padding-bottom: 0px;
  }
  .job-detail-sec .bottom-text {
    padding-bottom: 30px;
  }
  .job-detail-info {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */


.wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative;
}

/* Checked State */
.wpcf7-checkbox input[type="checkbox"]:checked {
  background: #D2010D;
  border-color: #D2010D;
}

/* Tick mark */
.wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
      top: 1px;
    left: 5px;
}

.wpcf7-not-valid-tip {
	text-transform:initial !important;
}


.mindzchatboxbody .mindzchatbodywindow .mindzchatbodywindow-receivedmsg p {
	color:#000;
}
.mindzchatboxbody .mindzchathead .usercolforminzchat .mindzchartuserimg img {
	object-fit:contain;
}
.mindzchatboxbody .mindzchatbodywindow .mindzchatbodywindow-receivedmsg .mindzchatbodywindowreceivedmsgchat .emoji {
	position:unset !important;
}

.mindzchatboxbody #minzchatform .minzchatform .mindzchatsendmsgentered .mindzchatmsgsend-button .mindzchatmsgsend-greenround .mindzchatmsgsend {
	    width: 30px;
    height: 16px;
    position: relative;
}

.mindzchatboxbody #minzchatform .minzchatform .mindzchatsendmsgentered .mindzchatmsgsend-button .mindzchatmsgsend-greenround .mindzchatmsgsend img {
	    left: -7px;
    top: -7px;
    width: 31px !important;
    height: 31px;
}

/* Normal Menu */
.header nav ul li a {
    color: #ffffff;
    transition: 0.3s;
}

/* Hover */
.header nav ul li a:hover {
   color: #E93325;
}

.header nav ul li a:hover .menu-badge {
	color:#fff !important;
}

/* Active Menu */
.header nav ul li.current-menu-item > a,
.header nav ul li.current_page_item > a,
.header nav ul li.current-menu-ancestor > a,
.header nav ul li.current_page_parent > a {
    color: #E93325 !important;
}

.header nav ul li.current-menu-item > a .menu-badge,
.header nav ul li.current_page_item > a .menu-badge {
    color: #fff !important;
}

.mindzchatmodal {
    z-index: 9999;
}

bdi svg {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


.service-section .card-row:nth-child(1) {
    background: #1C1C1C;
}

.service-section .card-row:nth-child(2) {
    background: #202020;
}

.service-section .card-row:nth-child(3) {
    background: #272727;
}

.service-section .card-row:nth-child(4) {
    background: #2A2A2A;
}
.service-section .card-row:nth-child(5) {
    background: #2D2D2D;
}
.service-section .card-row:nth-child(6) {
    background: #373737;
}


.top-arrow-animate {
    position: fixed;
    bottom: 15px;
    right: 18px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(-100px);
    transition: all 0.6s ease;
    z-index: 999;
}

.top-arrow-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.top-arrow-animate .top-arrow-animate-img {
    border-radius: 50%;
}

.mindzchatwhatsappgreenbg {
    text-align: end;
    right: 20px;
    position: fixed;
    z-index: 9999;
    bottom: 80px;
}

.mindzchatmodal {
	bottom:125px;
}

.main-about-page .about-team .team-bottom-btn .team-botm-btn:hover .btn-primary svg path{
    opacity:0;
}

.main-about-page .about-team .team-bottom-btn .team-botm-btn:hover .btn-primary::after{
    opacity:1;
    animation:buttonArrow .7s linear infinite;
	visibility:visible;
}

.service-banner-sec .banner-animate-info{
	width:80%;
}

.wpcf7 form.invalid .wpcf7-response-output {
	    background: #ff00003d;
    color: #d2010d;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #d2010d !important;
    border-radius: 8px;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #049d44;
background-color: #edfeee;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #b0deb6 !important;
    border-radius: 8px;
}