:root {
  --white-color: #ffffff; /** var(--white-color) **/
  --black-color: #333333; /** var(--black-color) **/
  --primary-color: #ec3223; /** var(--primary-color) **/
  --secondary-color: #0b183d; /** var(--secondary-color) **/
  --light-color: #939598; /** var(--light-color) **/
  --primary-font: "Poppins", sans-serif; /** var(--primary-font) **/
  /**--secondary-font:'Oswald', sans-serif; /** var(--secondary-font) **/
}

/*==================================:: WOW CSS Start ::==================================*/
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%,
  to {
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(10%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(10%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -10%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 10%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-10%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(10%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -10%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
/*==================================:: WOW CSS End ::==================================*/

/*==================================:: Magnific Popup CSS Start ::==================================*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  display: block !important;
  margin-top: -30px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: var(--white-color);
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /* Remove all paddings around the image on small screen */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*==================================:: Magnific Popup CSS End ::==================================*/

/*Slick Slider Css Start*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-width: 100%;
}
.slick-list.dragging {
  cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  min-width: 100%;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 0.063rem;
}
.slick-initialized .slick-slide {
  display: block;
  list-style: none;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 0.063rem solid transparent;
}
.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 2;
  padding: 0;
  width: 3.75rem;
  height: 3.75rem;
  text-align: center;
  font-size: 0;
  color: var(--white-color);
  background: none;
  border: 0.063rem solid var(--primary-color);
  cursor: pointer;
  opacity: 1;
  outline: none;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.slick-arrow.slick-prev {
  left: 1rem;
}
.slick-arrow.slick-next {
  right: 1rem;
}
.slick-arrow:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-size: 0.875rem auto !important;
}
.slick-arrow.slick-prev:after {
  background: url(../images/prev-icon.png) no-repeat center;
}
.slick-arrow.slick-next:after {
  background: url(../images/next-icon.png) no-repeat center;
}
.slick-arrow:hover {
  opacity: 1;
  outline: none;
  border-color: var(--title-color);
  background: var(--title-color);
}
.slick-dots {
  display: block;
  margin: 50px auto 0 auto;
  padding: 0;
  text-align: center;
}
.slick-dots li {
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
.slick-dots li:last-child {
  margin: 0;
}
.slick-dots li button {
  display: block;
  width: 17px;
  height: 17px;
  font-size: 0;
  padding: 0;
  background: transparent;
  position: relative;
  border: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.slick-dots li button:before {
  content: "\f26c";
  font-family: "Material-Design-Iconic-Font";
  font-size: 18px;
  line-height: 0;
  color: var(--secondary-color);
}
.slick-dots li.slick-active button:focus,
.slick-dots li.slick-active button:hover,
.slick-dots li.slick-active button {
  outline: none;
  box-shadow: none;
}
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
  box-shadow: none;
}
.slick-dots li.slick-active button:before {
  content: "\f26f";
}
/*Slick Slider Css End*/

/* Loading */
.loader-wrap {
  background: var(--black-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
}
.loader-wrap .spinner {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 50px;
  margin: auto;
  height: 50px;
}
.loader-wrap .double-bounce1,
.loader-wrap .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.loader-wrap .double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader-wrap p {
  top: 50%;
  left: 50%;
  position: absolute;
  color: var(--white-color);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: -30px !important;
  font-weight: 600;
  margin-top: 30px !important;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===== RESET ================================================== */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
hr {
  display: block;
  height: 0.063rem;
  max-width: 100%;
  border: 0;
  border-top: 0.063rem solid var(--secondary-color);
  margin: 1.25rem 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
  margin: 0;
}
ol,
ul,
li {
  list-style: none;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
blockquote {
  padding-left: 0.938rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-left: 0.25rem solid var(--primary-color);
  margin-bottom: 1.875rem;
  background: rgba(238, 33, 35, 0.1);
}

/* ===== GLOBAL ================================================== */
body {
  font-family: var(--primary-font);
  font-size: 1rem;
  line-height: 1.625rem;
  color: var(--secondary-color);
  background: #fff;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease;
}
:focus {
  text-decoration: none;
  outline: none;
}
a {
  text-decoration: none;
  color: var(--primary-color);
  outline: none;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
a:focus {
  outline: 0;
  outline: none;
}
hr {
  display: block;
  height: 0.125rem;
  max-width: 100%;
  border: 0;
  border-top: 0.063rem solid #e8e8e9;
  margin: 3.75rem 0;
  padding: 0;
  opacity: 1;
}

/* Ul Li & Ol Li CSS */
ul,
ol {
  margin: 0;
  padding: 0;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0.938rem;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: 500;
  font-family: var(--primary-font);
}
li a {
  color: var(--primary-color);
}
.entry-content li a {
  text-decoration: underline;
}
.entry-content li a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
.entry-content ul,
.entry-content ol {
  display: inline-block;
  padding: 0;
  margin: 0 0 1.875rem 0;
}
.entry-content ul ol,
.entry-content ol ul,
.entry-content ul ul,
.entry-content ol ol {
  display: block;
  margin-top: 0.625rem;
}
.entry-content ul li {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0 0 10px 0;
  position: relative;
}
.entry-content ul li:last-child {
  margin-bottom: 0;
}
.entry-content ul li:before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--black-color);
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 12px;
}
.entry-content ol {
  margin-left: 0;
  counter-reset: item;
}
.entry-content li li {
  padding-left: 0.875rem;
  list-style: none !important;
}
.entry-content ol li {
  list-style-type: none;
  list-style-image: none;
  list-style-position: outside;
  margin: 0 0 10px 0;
  padding-left: 2rem;
  position: relative;
}
.entry-content ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: bold;
  position: absolute;
  left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  color: var(--black-color);
  font-family: var(--primary-font);
  line-height: 1;
  letter-spacing: 0.025em;
  margin: 0 0 15px;
  letter-spacing: -1px;
}
.h1,
h1 {
  font-size: 48px;
  line-height: normal;
  font-weight: 900;
}
h2 {
  font-size: 36px;
  line-height: normal;
  font-weight: 900;
  margin-bottom: 20px;
}
h3 {
  font-size: 36px;
  line-height: normal;
  font-weight: 900;
  margin-bottom: 20px;
}
h4 {
  font-size: 30px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 20px;
}
h5 {
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.025em;
}
h6 {
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.025em;
}

img.alignleft,
img.alignright {
  border: solid 1px #ccc;
  padding: 5px;
}
img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
img.alignright {
  margin: 0 0 15px 15px;
  float: right;
}

p {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 20px;
  color: var(--black-color);
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0 0 15px;
}
p:last-child {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  outline: none;
}

section *:last-child {
  margin-bottom: 0;
}
.container {
  max-width: 71.25rem;
  padding: 0 15px;
  margin: 0 auto;
}
.img-cover {
  width: 100%;
  height: auto;
}
.img-cover video,
.img-cover img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.button,
.btn {
  display: inline-block;
  padding: 0 20px;
  text-transform: capitalize;
  min-width: 110px;
  background: var(--primary-color);
  border: 0;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--primary-font);
  cursor: pointer;
  letter-spacing: 0.025em;
  text-align: center;
  position: relative;
  height: auto;
  line-height: 20px;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  box-shadow: none !important;
  padding: 10px 23px;
  letter-spacing: 0.01rem;
}
.button:hover,
.button.alt:hover,
.btn:hover,
.button:focus,
.button.alt:focus,
.btn:focus,
.button:active,
.button.alt:active,
.btn:active {
  background: var(--secondary-color);
  color: var(--black-color);
  text-decoration: none;
}
.red-btn {
  background: var(--primary-color);
}
.red-btn:hover,
.red-btn:focus,
.red-btn:active {
  background: var(--black-color);
}
.btn img {
  margin-left: 10px;
}
.btn:hover img {
  filter: brightness(0%);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.yellow-bdr {
  width: 350px;
  height: 2px;
  background: var(--secondary-color);
  margin: 40px auto;
  display: inline-block;
}

/** Header Start **/
body {
  transition: all ease 0.5s;
}
.wrapper {
  padding: 102px 0 0 0;
}
#header {
  z-index: 90;
  padding: 16px 0;
  transition: all ease 0.5s;
  background: var(--white-color);
}
.header-fixed #header {
  padding: 10px 0;
}
.header {
  padding: 0;
}
.logo a img,
.logo a {
  display: block;
}
.logo a img {
  transition: all ease 0.5s;
  height: 50px;
}

.header-top {
  align-items: center;
  gap: 15px;
}

/*========= Mobile Menu STYLE Start ===========*/
body.mobile-menu-open {
  overflow: hidden;
}
.menu-open-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 12;
}
.mobile-menu-open .menu-open-overlay {
  display: block;
}
.mobile-menu-block {
  background: #fff;
  bottom: 0;
  color: #333;
  position: fixed;
  z-index: 14;
  left: -350px;
  top: 0;
  padding: 0;
  transition: left 0.2s ease 0s;
  width: 300px;
  z-index: 94;
  font-size: 14px;
  overflow: auto;
}
.mobile-menu-open .mobile-menu-block {
  left: 0;
}
.mobile-menu-inner {
  height: 100%;
  overflow: auto;
  padding: 20px;
}
.mobile-nav ul {
  margin: 0;
  list-style: none;
}
.mobile-nav li {
  color: #222;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
  position: relative;
  text-transform: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav ul li a {
  display: block;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif, Arial;
  line-height: normal;
  text-transform: none;
  letter-spacing: 0.025em;
  padding: 12px 0;
}
.mobile-nav ul li.menu-item-type-custom.current-menu-item:hover a,
.mobile-nav ul li.menu-item-type-custom.current-menu-item a:hover,
.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus {
  color: var(--primary-color);
}
.mobile-nav ul li.menu-item-has-children a {
  padding-right: 40px;
}
.mobile-nav li li {
  border: none;
}
.mobile-nav li li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  padding: 5px 15px;
}
.mobile-nav li li li a {
  padding-left: 30px;
}
.mobile-nav ul.sub-menu {
  margin: 0 0 20px;
}
.mobile-nav li.btn {
  width: 100%;
}
.mobile-nav li.btn a {
  color: #fff;
  padding: 11px 0;
}
.mobile-menu-inner .social-links {
  margin-top: 10px;
  flex-wrap: wrap;
}
.mobile-menu-inner .social-links a {
  width: 38px;
  height: 38px;
  line-height: 36px;
}
.mobile-menu-inner .social-links a + a {
  margin-left: 5px;
}

/*========= Mobile Menu STYLE End ===========*/
/*Mobile Menu Css Start*/
.mobi-iconbox {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: fixed;
  right: 15px;
  top: 38px;
  z-index: 91;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.menuicon {
  display: block;
  width: 24px;
  cursor: pointer;
  position: relative;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.opened .menuicon {
  width: 20px;
}
.menuicon .icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.menuicon .icon-bar + .icon-bar {
  margin-top: 5px;
}
.opened .icon-bar {
  background: var(--primary-color);
}
.opened .top-icon-bar {
  transform-origin: 0 50% 0;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.opened .middle-icon-bar {
  opacity: 0;
}
.opened .bottom-icon-bar {
  transform-origin: 0 50% 0;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.opened.mobi-iconbox:after {
  color: #fff;
}
/*Mobile Menu Css End*/
.ml-auto {
  margin-left: auto;
}

/*========= Header ===========*/
/*Header*/
.header-top {
  padding: 5px 0;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background: rgb(0, 0, 0, 0.7);
}
.header-top .container {
  align-items: center;
  min-height: 50px;
}
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 4;
  padding: 0;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.logo {
  flex-basis: 292px;
  min-width: 292px;
  max-width: 292px;
  position: relative;
  z-index: 2;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.logo a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 180px;
  transition: all ease 0.5s;
}
.logo a span {
  display: block;
  width: 100%;
}
.logo a img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.header-inner {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.home .header-inner {
  background: none;
}
.header-right {
  flex-wrap: wrap;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  flex-basis: calc(100% - 292px);
  min-width: calc(100% - 292px);
  max-width: calc(100% - 292px);
}
.header-phone {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
.header-phone:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 12px;
  background: #fff;
  content: "";
  display: none;
}
.header-phone a {
  color: #ffffff;
}
.header-phone a + a {
  margin-left: 10px;
}
.header-phone.email a {
  font-style: italic;
}
.header-phone a:hover,
.header-phone a:focus {
  color: var(--primary-color);
}
.header-phone + .header-phone {
  margin-left: 15px;
  padding-left: 15px;
}
.header-phone + .header-phone:after {
  display: block;
}
.header-top .social-links {
  margin-left: 60px;
}

.social-links {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.social-links a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  border: 1px solid #95a3ab;
  border-radius: 50%;
  font-size: 20px;
  color: #95a3ab;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links a + a {
  margin-left: 10px;
}
.social-links a:hover,
.social-links a:hover {
  background: #95a3ab;
  color: var(--primary-color);
}

/*Nav Css*/
.nav-main {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.nav-main nav {
  margin-left: auto;
  display: flex;
  margin-right: 60px;
}
.nav-main nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.nav-main nav > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: 22px;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.nav-main nav > ul > li + li {
  margin-left: 30px;
}
.nav-main nav > ul > li > a {
  display: block;
  color: var(--black-color);
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  padding: 0;
}
.nav-main nav > ul > li a:after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  width: 0;
  margin: 0 auto;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.nav-main nav > ul > li a:focus:after,
.nav-main nav > ul > li:hover a:after {
  width: 100%;
}
.nav-main nav > ul > li:hover > a,
.nav-main nav > ul > li > a:hover,
.nav-main nav > ul > li.current_page_parent > a,
.nav-main nav > ul > li > a:focus {
  color: var(--primary-color);
}
.nav-main nav > ul > li.menu-item-has-children:hover > a:after {
  transform: rotate(-180deg);
}
.nav-main .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  background: #fff;
  min-width: 220px;
  padding: 10px 20px;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.nav-main nav > ul > li:hover > .sub-menu {
  display: block;
}
.nav-main .sub-menu li {
  display: block;
  text-align: left;
  position: relative;
}
.nav-main .sub-menu li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-main .sub-menu li a {
  display: block;
  text-transform: none;
  color: #030303;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  padding: 12px 0;
}
.nav-main .sub-menu li:hover a:after,
.nav-main .sub-menu li.current-menu-item a:after {
  opacity: 1;
}
.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li.current-menu-item a {
  color: var(--primary-color);
}
.nav-main .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
.nav-main .sub-menu li:hover .sub-menu {
  display: block;
}
.nav-main nav > ul > li.current_page_item a {
  color: var(--primary-color);
}
.nav-main nav > ul > li.current_page_item a:after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  width: 100%;
  margin: 0 auto;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.nav-main nav > ul > li.btn {
  min-width: 200px;
}
.nav-main nav > ul > li.btn a:after {
  display: none;
}
.nav-main nav > ul > li.btn a {
  padding: 0 !important;
  line-height: 44px;
  color: #fff;
  font-weight: 600;
}
.nav-main nav > ul > li.btn:hover a,
.nav-main nav > ul > li.btn:focus a {
  color: var(--primary-color);
}

.header-btn a {
  width: fit-content;services-items
  height: 60px;
  background: #ec3223;
  box-shadow: 0px 20px 20px -12px rgba(236, 50, 35, 0.3);
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px 15px 16px;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  gap: 10px;
}
.header-btn a:hover {
  background: #163c93;
}

/*Header Fixed*/
.header-fixed .header-top {
  margin-top: -60px;
  opacity: 0;
}
.header-fixed .header {
  background: rgb(255 255 255 / 80%);
}
.header-fixed .logo a {
  width: auto;
  max-width: 140px;
}

.herosection {
  padding: 0;
  position: relative;
  background: url(../images/hero-banner.png) no-repeat center center;
  background-size: cover;
}
.herosection .container {
  position: relative;
  z-index: 1;
}
.herosection::after {
  content: "";
  background: url(../images/hero-bg.png) no-repeat;
  width: 659px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  display: none;
}
.herosection-inner {
  display: flex;
  gap: 30px;
  position: relative;
  padding: 55px 0 38px;
}
.home-hero-box {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 20px 50px -15px rgba(236, 50, 35, 0.15);
  border-radius: 30px;
  padding: 50px 20px;
  max-width: 591px;
  margin: 0;
  width: 100%;
  /* min-height: 597px; */
}

.home-hero-box h1 {
  font-weight: 900;
  font-size: 37px;
  line-height: 55px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black-color);
  margin: 0;
}
.home-hero-box h1 strong {
  color: var(--primary-color);
}
.home-hero-box p b {
  font-weight: bold;
}
.heroImg {
  position: absolute;
  right: -36px;
  top: -4px;
}
.heroImg img {
}
.home-hero-box .line {
  width: 50px;
  height: 4px;
  background: #ec3223;
  border-radius: 10px;
  display: inline-block;
  margin: 8px 0 23px;
}
.btn-sec {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 60px 0 0;
}
.btn-sec a.getbtn {
  width: 198px;
  height: 60px;
  background: #ec3223;
  box-shadow: 0px 20px 20px -12px rgba(236, 50, 35, 0.3);
  border-radius: 10px;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  justify-content: center;
}
.btn-sec a.getbtn:hover {
  background: #163c93;
}
.btn-sec a.ser-tlink {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #bdbdbd;
}
.btn-sec a.ser-tlink:hover {
  color: #163c93;
}
.btn-sec span {
  margin-left: 5px;
}

.home-our-services {
  background: #ffffff;
  box-shadow: 0px 0px 40px -6px rgba(236, 50, 35, 0.15);
  padding: 36px 0 50px;
  margin: 15px 0 0 0;
}
.home-our-services .heading {
  margin: 0 0 55px;
}
.home-our-services .heading h3 {
  text-align: center;
  position: relative;
}
.home-our-services .heading h3 strong {
  color: var(--primary-color);
}
.home-our-services .heading h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  bottom: -10px;
  left: 39%;
  background: #ec3223;
  border-radius: 10px;
}
.home-services-sec {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 60px;
}
.home-services-item {
  width: 33%;
}
.home-services-thumbnail {
  display: flex;
  flex-direction: column;
}
.home-services-thumbnail .img-cover img {
  border-radius: 8px;
}
.home-services-content {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-services-item h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--secondary-color);
  margin: 0;
}
.home-services-item p {
  text-align: center;
  margin-bottom: 10px;
  color: #0b183d;
}
.home-services-item a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 20px;
  background: #ec3223;
  box-shadow: 0px 15px 20px -6px rgba(236, 50, 35, 0.2);
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  width: fit-content;
  margin: 0 auto;
}
.home-services-item a:hover {
  background: #163c93;
}
.home-services-btn a.btn.btn-primary:hover {
  background: #163c93;
  color: #ffffff;
}
.hs-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 0;
  position: relative;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #ec3223, #2f54a1) border-box;
  border-radius: 50em;
  border: 1px solid transparent;
}
.home-services-mid-content {
  display: flex;
  flex-direction: row;
  margin: 50px 0;
}
.home-services-mid-content h3 {
  color: #cecece;
  margin: 0;
  width: 41%;
  position: relative;
  display: flex;
  align-items: center;
}
.home-services-mid-content h3::before {
  position: absolute;
  width: 4px;
  height: 100%;
  content: "";
  background: #ec3223;
  border-radius: 10px;
  right: 10px;
}
.home-services-mid-content div {
  margin: 0;
  width: 58%;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #828282;
}
.home-services-btn a {
  background: #ec3223;
  box-shadow: 0px 20px 20px -12px rgba(236, 50, 35, 0.2);
  border-radius: 10px;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  height: 60px;
  width: fit-content;
  margin: 0 auto;
  min-width: 200px;
  justify-content: center;
}

.cta-section {
  display: flex;
  flex-direction: row;
  margin: 0 0;
  justify-content: center;
  position: relative;
  width: 100%;
  height: auto;
  background: #163c93;
  overflow: hidden;
  padding: 37px 15px;
}
.cta-section-inner {
  max-width: 1206px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
}
.cta-section .cta-section-inner div {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 38px;
  color: #ffffff;
  width: 82.5%;
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}
.cta-section .cta-section-inner div::before {
  position: absolute;
  width: 2px;
  height: 100%;
  content: "";
  background: #ffffff;
  border-radius: 10px;
  right: 10px;
}
.cta-section .cta-section-inner a {
  background: #ffffff;
  box-shadow:
    0px 20px 20px -12px rgba(255, 255, 255, 0.25),
    inset 0px 3px 11px rgba(22, 60, 147, 0.5);
  border-radius: 10px;
  height: 60px;
  width: fit-content;
  margin: 0 0 0 auto;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #163c93;
  justify-content: center;
}
.cta-section .cta-section-inner a:hover {
  background: var(--primary-color);
  color: #fff;
}
.cta-left-bg {
  position: absolute;
  left: 0;
  top: -78px;
}
.cta-right-bg {
  position: absolute;
  right: 17%;
  top: -79px;
}

.home-testimoniyal {
  background: url(../images/testimoniyal-bg.png) no-repeat top right;
  padding: 57px 0 50px;
}
.home-testimoniyal .heading {
  margin: 0 0 73px;
}
.home-testimoniyal .heading h3 {
  position: relative;
  text-transform: uppercase;
  display: flex;
  width: 100%;
  justify-content: center;
}
.home-testimoniyal .heading h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  bottom: -10px;
  background: #ec3223;
  border-radius: 10px;
}
.home-testimoniyal-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.home-testimoniyal-items {
  background: #ffffff;
  box-shadow: 0px 20px 50px -15px rgba(29, 117, 101, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}
.home-testimoniyal-items h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #333333;
  margin: 0;
}
.home-testimoniyal-items p {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #828282;
  margin: 0;
}
.home-testimoniyal-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 50px 0 0 0;
}
.home-testimoniyal-btn a {
  width: 168px;
  height: 60px;
  background: #ffffff;
  border: 2px solid #ec3223;
  border-radius: 15px;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ec3223;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-testimoniyal-btn a:hover {
  border: 2px solid #163c93;
  color: #163c93;
}

.home-contact-section {
  background: #f6faff;
}
.home-contact-section .home-contact-wrap {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.home-contact-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 0 30px 0;
}
.home-contact-right .heading {
  margin: 0 0 26px;
}
.home-contact-right h3 {
  position: relative;
  text-transform: uppercase;
}
.home-contact-right h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  left: 0;
  bottom: -10px;
  background: #ec3223;
  border-radius: 10px;
}

.home-contact-innerwrap {
  display: flex;
  flex-direction: row;
  gap: 0px;
}

.home-contact-info {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.home-contact-info .cs-call-sec {
  display: flex;
  gap: 20px;
}
.home-contact-info .cs-call-sec span {
  display: flex;
  width: 24px;
  height: 24px;
}
.home-contact-info .cs-call-sec .address {
  color: #4f4f4f;
  width: 86%;
}
.home-contact-info .cs-call-sec a {
  color: #4f4f4f;
}

.home-contact-form {
  width: 100%;
  max-width: 320px;
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 20px 0 0;
}
.home-contact-form::after {
  background: #e0e0e0;
  border-radius: 10px;
  width: 4px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.home-contact-form input.form-control,
.home-contact-form textarea.form-control,
.forminator-field input,
.forminator-field textarea {
  height: 48px;
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 18px;
  border: 0;
  width: 100%;
}
.forminator-field textarea {
  min-height: 48px !important;
}
.home-contact-form .contactform-sec {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-contact-form textarea.form-control {
  min-height: inherit;
}
.home-contact-form input[type="submit"],
.forminator-button-submit {
  width: 127px;
  height: 48px;
  background: #ec3223;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  border: 0;
}
.home-contact-form .form-group.fgbtn {
  margin: 26px 0 0 0;
}

.neighborhoods-section {
  margin: 0 0 60px;
  padding: 55px 0 0 0;
}
.neighborhoods-section1 {
  background: url(../images/neighborhoods-bg.png) no-repeat top right;
  margin: 0 0 60px;
  padding: 55px 0 0 0;
}
.neighborhoods-section .heading {
  max-width: 712px;
  margin: 0 0 36px;
}
.neighborhoods-section .heading h3 {
  line-height: 55px;
}
.neighborhoods-section .heading h3 strong {
  color: var(--primary-color);
}
.neighborhoods-main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.neighborhoods-main .neighborhoodsbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 16.6%;
  border-bottom: 1px solid #ec3223;
  border-right: 1px solid #ec3223;
}
.neighborhoods-main .neighborhoodsbox h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #0b183d;
  margin: 0;
  padding: 15px 4px;
}
.neighborhoods-main .neighborhoodsbox p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #0b183d;
  margin: 0;
}
/* .neighborhoods-main .neighborhoodsbox:nth-child(1), .neighborhoods-main .neighborhoodsbox:nth-child(2),
.neighborhoods-main .neighborhoodsbox:nth-child(3){border-bottom: 1px solid var(--primary-color);}
.neighborhoods-main .neighborhoodsbox:nth-child(2){border-left: 1px solid var(--primary-color);border-right: 1px solid var(--primary-color);padding:0 5px 10px;}
.neighborhoods-main .neighborhoodsbox:nth-child(5){border-left: 1px solid var(--primary-color);border-right: 1px solid var(--primary-color);padding:10px 5px 5px;}
.neighborhoods-main .neighborhoodsbox:nth-child(1){padding:0 5px 10px 0;}
.neighborhoods-main .neighborhoodsbox:nth-child(3){padding:0 0 10px 5px;}
.neighborhoods-main .neighborhoodsbox:nth-child(4){padding:10px 5px 0 0;}
.neighborhoods-main .neighborhoodsbox:nth-child(6){padding:10px 0 0 5px;} */
.neighborhoods-main .neighborhoodsbox:nth-child(6),
.neighborhoods-main .neighborhoodsbox:nth-child(12),
.neighborhoods-main .neighborhoodsbox:nth-child(18),
.neighborhoods-main .neighborhoodsbox:nth-child(24),
.neighborhoods-main .neighborhoodsbox:nth-child(27) {
  border-right: 0;
}
.neighborhoods-main .neighborhoodsbox:nth-child(25),
.neighborhoods-main .neighborhoodsbox:nth-child(26),
.neighborhoods-main .neighborhoodsbox:nth-child(27) {
  border-bottom: 0;
}
.neighborhoods-main .neighborhoodsbox:nth-child(27) {
  width: 63%;
}
.neighborhoods-main .neighborhoodsbox:nth-child(27) h4 {
  font-style: italic;
}
.psjimg img {
  border-radius: 10px;
}

.home-why-section {
  padding: 53px 0 68px;
  background: #ffffff;
  box-shadow: 0px 0px 40px -6px rgba(236, 50, 35, 0.2);
}
.home-why-section .heading {
  margin: 0 0 68px;
}
.home-why-section .heading h3 {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}
.home-why-section .heading h3 strong {
  color: var(--primary-color);
}
.home-why-section .heading h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  bottom: -10px;
  background: #ec3223;
  border-radius: 10px;
}
.home-why-section .heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.specialize-left h3 {
  font-weight: 900;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #cecece;
}
.specialize-right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 100px;
  row-gap: 60px;
  justify-content: flex-end;
}
.specialize-right .specialize-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 33%;
  align-items: center;
}
.specialize-right .specialize-box .icon-box {
  width: 67px;
  height: 67px;
  background: #ec3223;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialize-right .specialize-box h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  margin: 17px 0 12px;
}
.specialize-right .specialize-box p {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #828282;
  margin: 0;
}

.contactpage-section {
  padding: 84px 0;
  position: relative;
}
.contactpage-section::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 100%;
  background: #f6faff;
  right: 0;
  top: 0;
  z-index: -1;
}
.contactpage-wrap {
}
.contactpage-wrap .heading {
  margin: 0 0 40px;
}
.contactpage-wrap .heading h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 81px;
  color: #000000;
  margin: 0 0 20px;
}
.contactpage-wrap .heading h1 b {
  color: var(--primary-color);
}
.contactpage-wrap .heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #000000;
}
.contactpage-form {
  width: 100%;
}
.contactpage-form input.form-control,
.contactpage-form textarea.form-control,
.contactpage-form select,
.contactpage-form .forminator-field input,
.contactpage-form .forminator-field textarea,
.contactpage-form .forminator-field select {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.contactpage-form select {
  width: 100%;
}
.contactpage-form .contactpageform {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactpage-form .contactpageform .form-group-column {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.contactpage-form .contactpageform .form-group-column .form-group,
.contactpage-form .forminator-col-6 {
  width: 49%;
}
.contactpage-form textarea.form-control {
  min-height: inherit;
}
.contactpage-form .forminator-row + .forminator-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.contactpage-form .forminator-row .forminator-field-textarea,
.contactpage-form .forminator-row .forminator-field-select {
  width: 100%;
}
.contactpage-form input[type="submit"],
.contactpage-form .forminator-button-submit {
  width: 100%;
  height: 50px;
  border: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  background: #ec3223;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.cp-contact-info {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin: 60px 0 0 0;
}
.cp-call-sec {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cp-call-icon {
  width: 28px;
  height: 28px;
}
.cp-call-contain {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cp-call-contain span {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #000000;
}
.cp-call-contain a {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #ec3223;
}
.cp-call-contain a:hover {
  color: #163c93;
}

.blog-top-section {
  background: #f6faff;
  padding: 50px 0;
}
.blogbigsec {
  position: relative;
  height: 100%;
}
.blogbigsec .img-cover {
  height: 100%;
}
.blogbigsec .blogbigcontent {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  width: 82%;
}
.blogbigsec .blogbigcontent h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: #ffffff;
}
.blogbigsec .blogbigcontent .date {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.blogbigsec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    179.91deg,
    rgba(255, 255, 255, 0) 0.08%,
    rgba(0, 0, 0, 0.5) 66.03%
  );
}
.blogsmallsec-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.blogsmallsec {
  position: relative;
}
.blogsmallsec .blogsmallcontent {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  width: 80%;
}
.blogsmallsec .blogsmallcontent h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  color: #ffffff;
}
.blogsmallsec .blogsmallcontent .date {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.blogsmallsec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    179.91deg,
    rgba(255, 255, 255, 0) 0.08%,
    rgba(0, 0, 0, 0.5) 66.03%
  );
}

.recentblog-section .heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 48px;
}
.recentblog-section .heading h1 {
  margin: 0;
}
.recentblog-section .heading a {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ec3223;
}
.recentblog-section .heading a:hover {
  color: #163c93;
}
.recentblog-section .heading a:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(60%) saturate(3140%)
    hue-rotate(215deg) brightness(92%) contrast(93%);
}
.blog-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-item .date {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ec3223;
}
.blog-item .blog-content {
  display: flex;
  flex-direction: column;
  margin: 24px 0 0 0;
  gap: 16px;
}
.blog-item .blog-content h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  color: #000000;
}

.ready-section {
  margin: 72px 0;
  width: 100%;
}
.ready-section .readysec-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.ready-section .readysec-wrap .readysec-content {
  position: absolute;
  left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
  width: 495px;
}
.ready-section .readysec-wrap .readysec-content h3 {
  font-weight: 500;
  font-size: 44px;
  line-height: 57px;
  color: #ffffff;
  margin: 0 0 24px;
}
.ready-section .readysec-wrap .readysec-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin: 0 0 40px;
}
.ready-section .readysec-wrap .readysec-content a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  height: 54px;
  background: #ec3223;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  width: fit-content;
}
.ready-section .readysec-wrap .readysec-content a:hover {
  background: #163c93;
}
.ready-section .readysec-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.ready-section .readysec-wrap .ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 92%);
}
.ready-section .readysec-wrap .img-cover {
  height: 100%;
}

.services-section {
  background: #f6faff;
  padding: 80px 0 40px;
}
.services-section .heading {
  margin: 0 auto 60px;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.services-section .heading h1 {
  color: #030302;
  margin: 0;
  text-align: center;
}
.services-section .heading h1 b {
  color: var(--primary-color);
}
.services-section .heading .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #cecece;
  border-left: 3px solid #ec3223;
  padding: 0 0 0 14px;
}
.services-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.services-wrap .services-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 33%;
}
.services-wrap .services-items .services-items-inr {
  padding: 30px;
  position: relative;
}
.services-wrap .services-items .services-items-inr .img-cover {
  height: 142px;
}
.services-wrap .services-items .services-items-inr .img-cover img {
  height: 100%;
}
.services-wrap .services-items h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 31px;
  text-align: center;
  color: #030302;
  margin: 20px 0 14px;
}
.services-wrap .services-items p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  color: #838383;
  margin: 0;
  min-height: 104px;
}
.services-wrap .services-items:nth-child(1),
.services-wrap .services-items:nth-child(2),
.services-wrap .services-items:nth-child(3) {
  border-bottom: 3px solid var(--white-color);
}
.services-wrap .services-items:nth-child(2) {
  border-left: 3px solid var(--white-color);
  border-right: 3px solid var(--white-color);
  padding: 0 15px 15px;
}
.services-wrap .services-items:nth-child(5) {
  border-left: 3px solid var(--white-color);
  padding: 15px 15px 0;
}
.services-wrap .services-items:nth-child(1) {
  padding: 0 15px 15px 0;
}
.services-wrap .services-items:nth-child(3) {
  padding: 0 0 15px 15px;
}
.services-wrap .services-items:nth-child(4) {
  padding: 15px 15px 0 0;
}
.services-wrap .services-items:last-child .services-items-inr .img-cover {
  height: auto;
}
.services-wrap .services-items:last-child .services-items-inr
{
      padding: 30px;
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-wrap .services-items:hover .services-items-inr {
  background: #ffffff;
  box-shadow: 0px 1px 20px rgba(22, 60, 147, 0.2);
}

.services-top-section {
  padding: 100px 0 0 0;
}
.services-top-wrap {
  display: flex;flex-wrap: wrap;
}
.services-top-leftpart {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 24%;
  padding:0 10px 0 0;
}
.services-top-leftpart h1 {
  font-weight: 900;
  font-size: 40px;
  line-height: 42px;
  color: #030302;
  margin: 0;
}
.services-top-leftpart h1 b {
  color: var(--primary-color);
}
.services-top-leftpart p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #030302;
  margin:10px 0;
}
.services-top-leftpart a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  gap: 10px;
  height: 58px;
  background: #ec3223;
  border-radius: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  width: fit-content;
}
.services-top-leftpart a:hover {
  background: #163c93;
}
.how-section {
  max-width:40%;
  padding: 0 0 0 32px;
}
.how-section-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 36px;
}
.how-section-top h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  color: #030302;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-item .step-item-text span {
  width: 13px;
  height: 13px;
  background: #ec3223;
  border-radius: 100px;
  display: inline-flex;
  margin: 0 6px 0 0;
}

.how-section-top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #838383;
  margin: 0;
}
.step-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid #eeeeee;
  margin: 0 0 10px 0;
  padding: 0 0 10px;
}
.step-item .step-item-heading {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #030302;
  display: flex;
  gap: 20px;
}
.step-item .step-item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #030302;
}

.about-section {
  padding: 0;
  display: flex;
}
.about-wrap {
  display: flex;
  gap: 74px;
}
.about-image {
  flex: 1;
}
.about-img {
  width: 45%;
}
.about-content-section {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 66px;
  flex: 1;
  justify-content: center;
  padding: 0 0 0 20px;
}
.about-content-section .heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
}
.about-content-section .heading h1 {
  font-weight: 900;
  font-size: 40px;
  line-height: 56px;
  color: #333333;
}
.about-content-section .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #cecece;
  border-left: 3px solid #ec3223;
  padding: 0 0 0 14px;
}
.about-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 70%;
}
.about-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 0 0 45px;
}
.about-item-icon {
  position: relative;
  padding: 13px 0 0 13px;
}
.about-item-icon::before {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  left: 0;
  top: 0px;
  background: #ec3223;
  border-radius: 4px 10px 4px 4px;
  z-index: 0;
}
.about-item-icon img {
  position: relative;
  z-index: 1;
  max-width: inherit;
}
.about-item-contain {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-item-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #333333;
}
.about-item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

.vi-mi-section {
  padding: 90px 0 70px;
  background: url(../images/vi-mi-bg.png) no-repeat top right;
}
.vi-mi-items {
  position: relative;
  background: #ffffff;
  box-shadow:
    0px 20px 50px -15px rgba(236, 50, 35, 0.1),
    inset 0px 1px 4px rgba(236, 50, 35, 0.15);
  border-radius: 30px;
  padding: 26px 45px 30px;
  min-height: 245px;
}
.vi-mi-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 0;
  position: relative;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #ec3223, #2f54a1) border-box;
  border-radius: 50em;
  border: 1px solid transparent;
}
.vi-mi-items h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #333333;
  margin: 26px 0 19px 0;
}
.vi-mi-items p {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #828282;
  margin: 0;
}

.founder-section {
  padding: 70px 0 140px;
}
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-content .heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-content .heading h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 56px;
  color: #333333;
}
.founder-content .heading h2 b {
  color: var(--primary-color);
}
.founder-content .heading .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #cecece;
  border-left: 3px solid #ec3223;
  padding: 0 0 0 14px;
}
.founder-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}
.founder-content p b {
  font-weight: 700;
}
.founder-img {
  position: relative;
}
.founder-img .img-cover {
  height: 420px;
}
.founder-small-img {
  position: absolute;
  right: 0;
  bottom: -40px;
  background: #fff;
  padding: 16px 0 0 16px;
  border-radius: 15px 0 15px 15px;
}

.h-bdr {
  background:
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 2px)
      calc(100% - 2px) no-repeat,
    linear-gradient(
      90deg,
      rgba(28, 30, 31, 0) 0%,
      #4d5255 50%,
      rgba(121, 128, 133, 0) 100%
    );
  border-radius: 0px;
  padding: 1px 0 0 0;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1300px;
  width: 100%;
}

.faqsection {
  padding: 0 0 70px;
}
.faqsection .faq-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 64px;
}
.faqsection .faq-top-section .heading {
  width: 38%;
}
.faqsection .faq-top-section .heading h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #1a1d21;
  margin: 0;
}
.faq-top-section .faq-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606977;
  width: 56%;
}
/* Faqs page start */
.faqs-section1 {
  padding: 100px 0;
}

.question-answer-list .accordion-row {
  margin-bottom: 24px;
}

.question-answer-list .accordion-row:last-child {
  margin-bottom: 0;
}

.question-answer-list .accordion-row .title {
  background: #fff;
  padding: 20px 14px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all ease 0.5s;
  position: relative;

  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  padding: 20px 24px;
  background: #ffffff;
  box-shadow: inset 0px -12px 40px rgba(206, 206, 251, 0.06);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}

.question-answer-list .accordion-row .title::before {
  content: "+";
  position: absolute;
  right: 25px;
  top: 22px;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 300;
  border: 2px solid #163c93;
  border-radius: 6px;
  color: #163c93;
}

.question-answer-list .accordion-row .title.active,
.question-answer-list .accordion-row .title:hover {
  background: #163c93;
  box-shadow: none;
  backdrop-filter: blur(8px);
  border-radius: 12px;
  color: #fff;
}

.question-answer-list .accordion-row .title.active {
  border-radius: 12px 12px 0 0;
}
.question-answer-list .accordion-row .title.active::before,
.question-answer-list .accordion-row .title:hover::before {
  border: 2px solid #fff;
  color: #fff;
}

.question-answer-list .accordion-row .title.active::before {
  content: "-";
}

.question-answer-list .accordion-row .content {
  border: 0;
  padding: 20px 15px;
  display: none;
  background: #163c93;
  padding: 0 24px 20px 24px;
  border-radius: 0 0 12px 12px;
  backdrop-filter: blur(8px);
}
.question-answer-list .accordion-row .content.open {
  display: block;
}
.question-answer-list .accordion-row .content p {
  margin: 0;
  color: #fff;
}
.faqsection.servicesfaqsection {
  padding: 53px 0 10px 0;
}

/** Footer start **/
.main-footer {
  background: #163c93;
  padding: 68px 0;
}
.footer-logo {
  display: block;
}
.footer-contact-info {
  margin: 22px 0;
  display: flex;
  gap: 15px;
}
.footer-contact-info.fci-call {
  margin: 0;
}
.footer-contact-info a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #ffffff;
}
.footer-contact-info a:hover {
  color: var(--primary-color);
}
.footer-links.footer-services-links {
  max-width: 210px;
  margin: 0 auto;
}
.footer-links ul li {
  line-height: normal;
}
.footer-links ul li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-transform: capitalize;
}
.footer-links ul li a:hover {
  color: var(--primary-color);
}
.footer-links h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #92989f;
  margin: 0 0 13px;
}
.footer-links.footer-legal-links {
  max-width: 230px;
  margin: 0 0 0 auto;
}
.footer-copyright {
  border-top: 1px solid #71777d;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.257143px;
  color: #92989f;
  padding: 23px 0 0 0;
  margin: 30px 0 0 0;
}

.footer-social {
  display: flex;
  margin: 60px 0 0 0;
}
.footer-social a {
  border-radius: 0;
  margin-right: 30px;
}
.footer-social a:last-child {
  margin: 0;
}
.footer-social a:hover img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(51%) saturate(1775%)
    hue-rotate(338deg) brightness(89%) contrast(108%);
}

form.forminator-custom-form {
  display: block !important;
}
.forminator-row {
  margin-bottom: 10px;
}
.forminator_ajax {
  display: none;
}

.home-spl-sec-wrap h3 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 55px 0 30px;
  margin: 0;
  color: #fff;
}

.home-spl-sec-wrap .splcards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-spl-sec-wrap .splcard {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 30px 25px;
  width: 381px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.home-spl-sec-wrap .splcard img {
  /* max-width: 100%;
      height: 140px;
      object-fit: contain;
      margin-bottom: 20px; */
}

.home-spl-sec-wrap .splcard h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.home-spl-sec-wrap .spec {
  font-size: 14px;
  margin-bottom: 8px;
}

.home-spl-sec-wrap .warranty {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.home-spl-sec-wrap .price {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.home-spl-sec-wrap .price.red {
  color: #e53935;
}

.home-spl-sec-wrap .price.blue {
  color: #153f96;
}

.splbtn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.splbtn.red {
  background: #e53935;
}

.splbtn.blue {
  background: #153f96;
}

.splcards-footer {
  padding: 35px 0 50px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.home-spl-sec {
  position: relative;
}
.home-spl-sec::after {
  content: "";
  background: #163c93;
  width: 100%;
  height: 214px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.home-spl-sec::before {
  content: "";
  background: #163c93;
  width: 100%;
  height: 214px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.home-spl-sec .container {
  position: relative;
  z-index: 9;
}
.home-spl-sec-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sd-hero-section {
  padding: 80px 0 100px;
}
.sd-hero-section h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 54px;
  line-height: 81px;
  color: #333333;
}
.sd-hero-section h1 strong {
  color: var(--primary-color);
}
.sd-hero-section p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #000000;
}
.sd-hero-section p strong {
  font-weight: 700;
}

.sd-hero-section a.btn-gq {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  gap: 10px;
  background: #ec3223;
  border-radius: 6px;
  width: fit-content;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
.sd-hero-section a.btn-gq:hover {
  background: var(--secondary-color);
}
.sd-hero-section .image-box {
  /* border-top: 5px solid #dc3545;
  border-right: 5px solid #dc3545;
  overflow: hidden; */
}
.sd-hero-section .image-box img {
  width: 100%;
  height: auto;
  display: block;
}
.sd-third-section {
  padding: 62px 0 50px;
}
.sd-third-wrap {
  padding: 0;
  text-align: center;
}
.sd-third-section h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 57px;
  color: #333333;
}
.sd-third-section p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.sd-third-section p strong {
  font-weight: 700;
}
/* 
.sd-third-section a.btn-cn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  gap: 10px;
  background: #ec3223;
  border-radius: 6px;
  width: fit-content;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
.sd-third-section a.btn-cn:hover {
  background: var(--secondary-color);
} */

.sd-commonsign-sec {
  padding: 53px 0 36px;
  background: #f6faff;
}
.sd-commonsign-sec .heading {
  margin: 0 0 60px;
}
.sd-commonsign-sec .heading h3 {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.sd-commonsign-sec .heading h3 strong {
  color: var(--primary-color);
}
.sd-commonsign-sec .heading h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  bottom: -10px;
  background: #ec3223;
  border-radius: 10px;
}
.commonsign-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 84px;
}
.commonsign-wrap .commonsign-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 19%;
  align-items: center;
}
.commonsign-wrap .commonsign-box .icon-box {
  width: 67px;
  height: 67px;
  background: #ec3223;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commonsign-wrap .commonsign-box h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  margin: 17px 0 6px;
}
.commonsign-wrap .commonsign-box p {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #828282;
  margin: 0;
}
.sd-twobtn-section {
  background: #ec3223;
  display: flex;
  padding: 40px 0;
  justify-content: center;
  gap: 130px;
}
.btn-cn {
  width: 322px;
  height: 69px;
  background: #ffffff;
  box-shadow: 0px 20px 20px -12px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #333333;
  justify-content: center;
  cursor: pointer;
}
.btn-cn:hover {
  background: var(--secondary-color);
}
.btn-cf {
  width: 322px;
  height: 69px;
  background: #ffffff;
  box-shadow: 0px 20px 20px -12px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #333333;
  justify-content: center;
  cursor: pointer;
}
.btn-cf:hover {
  background: var(--secondary-color);
}

 .pricing-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding:81px 15px 52px;
  }

   .pricing-wrapper .pcard {
    width: 347px;
    height: 246px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
background: #FFFFFF;
box-shadow: 0px 20px 50px -15px rgba(236, 50, 35, 0.1), inset 0px 1px 4px rgba(236, 50, 35, 0.15);
border-radius: 30px;
  }

   .pricing-wrapper .pcard h3 {
    margin: 0;
    font-size: 30px;
    color: #8c8c8c;
    font-weight: 600;
  }

   .pricing-wrapper .price {
    margin-top: 20px;
    font-size:100px;
    color: #ef2b1c;
    font-weight: 700;
    line-height: 1;
  }

  /* Center highlighted card */
   .pricing-wrapper .pcard.highlight {
width: 347px;
height: 246px;
background: #EC3223;
box-shadow: 0px 20px 50px -15px rgba(236, 50, 35, 0.1), inset 0px 1px 4px rgba(236, 50, 35, 0.15);
border-radius: 30px;
margin-top: -50px;
  }

   .pricing-wrapper .pcard.highlight h3 {
    color: #fff;
  }

   .pricing-wrapper .pcard.highlight .price {
    color: #fff;
  }

   .pricing-wrapper .subtitle {
    font-size: 22px;
    color: #8c8c8c;
    margin-top: 10px;
  }

   .pricing-wrapper .highlight .subtitle {
    color: #fff;
  }





/*======================================================================
=============================:: MEDIA CSS ::============================
=======================================================================*/

@media screen and (max-width: 1599px) {
  .about-content-section .heading {
    width: 78%;
  }
}

@media screen and (max-width: 1365px) {
  .about-content-section .heading {
    width: 83%;
  }
}
@media screen and (max-width: 1250px) {
  .heroImg {
    right: 0;
  }
  .btn-sec {
    gap: 18px;
  }
  .cta-section .cta-section-inner div {
    width: 80.5%;
    font-size: 23px;
    line-height: 38px;
  }
}

@media screen and (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .contactpage-wrap .heading h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 10px;
  }
  .contactpage-wrap .heading {
    margin: 0 0 30px;
  }
  .contactpage-section {
    padding: 65px 0;
  }
  .blog-item .blog-content h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .recentblog-section .heading {
    margin: 0 0 40px;
  }
  .blogbigsec .blogbigcontent h3 {
    font-size: 26px;
    line-height: 35px;
  }
  .blogsmallsec .blogsmallcontent h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .services-top-section {
    padding: 80px 0 0 0;
  }
  .services-top-leftpart h1 {
    font-size:28px;
    line-height:32px;
  }
  .how-section-top {
    margin: 0 0 25px;
  }
  .how-section {
    /* padding: 22px 0 0 32px; */
    max-width: 36%;
  }
  .step-item .step-item-heading {
    font-size: 18px;
    line-height: 28px;
  }
  .services-wrap .services-items .services-items-inr {
    padding: 24px;
  }
  .services-wrap .services-items p {
    line-height: 22px;
    min-height: 110px;
  }
  .services-section {
    padding: 65px 0 40px 0;
  }
  .services-section .heading {
    margin: 0 auto 50px;
  }

  .about-section {
    /* padding: 90px 0; */
  }
  .about-wrap {
    gap: 50px;
  }
  .about-img {
    width: 50%;
  }
  .about-content-section .heading h1 {
    font-size: 35px;
    line-height: 50px;
  }
  .vi-mi-section {
    padding: 80px 0 55px;
  }
  .vi-mi-items {
    min-height: 265px;
  }
  .about-content-section {
    gap: 40px;
  }

  .founder-content .heading h2 {
    font-size: 36px;
    line-height: 45px;
  }
  .founder-section {
    padding: 60px 0 110px;
  }
  .faqsection .faq-top-section .heading h3 {
    font-size: 38px;
    line-height: 45px;
  }
  .faqsection .faq-top-section {
    margin: 0 0 50px;
  }

  .home-hero-box h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .btn-sec {
    margin: 40px 0 0;
  }
  .home-hero-box {
    padding: 40px 20px;
    margin: 40px 0 38px;
    max-width: 525px;
  }
  .heroImg {
    width: 582px;
  }

  .main-footer {
    padding: 50px 0;
  }
  .home-contact-section .home-contact-wrap {
    gap: 30px;
  }
  .home-contact-right {
    padding: 20px 0;
  }
  .home-contact-right h3,
  .home-testimoniyal .heading h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .home-contact-right .heading {
    margin: 0 0 20px;
  }
  .home-contact-form .form-group.fgbtn {
    margin: 13px 0 0 0;
  }
  .home-testimoniyal {
    padding: 40px 0;
  }
  .home-testimoniyal .heading {
    margin: 0 0 55px;
  }
  .home-testimoniyal-btn {
    margin: 40px 0 0 0;
  }
  .home-why-section .heading h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .specialize-left h3 {
    font-size: 33px;
    line-height: 45px;
  }
  .specialize-right .specialize-box {
    width: 37%;
  }
  .specialize-right {
    column-gap: 80px;
  }
  .specialize-right .specialize-box h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .home-why-section .heading {
    margin: 0 0 55px;
  }
  .cta-section .cta-section-inner div {
    font-size: 19px;
    line-height: 30px;
    padding: 0 20px 0 0;
  }
  .cta-section .cta-section-inner a {
    padding: 18px 25px;
  }
  .neighborhoods-section .heading h3 {
    font-size: 32px;
    line-height: 45px;
  }
  .neighborhoods-section .heading {
    max-width: 630px;
    margin: 0 0 32px;
  }
  .neighborhoods-section {
    padding: 45px 0 0 0;
  }
  .neighborhoods-main .neighborhoodsbox h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .neighborhoods-main .neighborhoodsbox p {
    font-size: 13px;
  }
  .home-services-item h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .home-services-sec {
    gap: 45px;
  }
  .home-services-mid-content h3,
  .home-our-services .heading h3 {
    font-size: 31px;
  }
  .home-spl-sec-wrap h3 {
    font-size: 30px;
  }
  .splcards-footer {
    font-size: 25px;
  }
  .about-content-section .heading {
    width: 88%;
  }
  .about-item-wrap {
    gap: 30px;
    width: 90%;
  }
  .sd-hero-section {
    padding: 60px 0 80px;
  }
  .sd-hero-section h1 {
    font-size: 47px;
    line-height: 60px;
  }
  .commonsign-wrap {
    column-gap: 60px;
  }
  .commonsign-wrap .commonsign-box {
    width: 20.3%;
  }
  .sd-commonsign-sec .heading h3 {
    font-size: 32px;
  }
  .sd-third-section h3 {
    font-size: 34px;
  }
  .sd-third-section {
    padding: 48px 0 42px;
  }
  .sd-commonsign-sec .heading {
    margin: 0 0 50px;
  }
  .pricing-wrapper .pcard h3{font-size: 28px;}
  .pricing-wrapper .price {font-size: 90px;}
}

@media screen and (max-width: 991px) {
  .mobi-iconbox {
    display: block;
  }
  .nav-main {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .header-top .social-links .hide {
    display: block;
  }
  .header-top .social-links {
    margin-left: 0;
  }
  .header-fixed .header {
    background: rgb(255 255 255 / 90%);
  }
  .header-top,
  .header-fixed .header-top {
    margin-top: 0;
    opacity: 1;
    display: none;
  }
  .logo a,
  .header-fixed .logo a {
    width: 120px;
  }

  .h1,
  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .contactpage-wrap .heading h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 10px;
  }
  .contactpage-wrap .heading {
    margin: 0 0 30px;
  }
  .contactpage-section {
    padding: 50px 0;
  }
  .cp-contact-info {
    margin: 30px 0 !important;
  }

  .ready-section .readysec-wrap .readysec-content h3 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  .ready-section .readysec-wrap .readysec-content p {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 20px;
  }
  .ready-section .readysec-wrap .readysec-content {
    width: 380px;
  }
  .blog-item .blog-content h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .recentblog-section .heading {
    margin: 0 0 30px;
  }
  .blogbigsec .blogbigcontent h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .blogsmallsec .blogsmallcontent h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .services-top-section {
    padding: 60px 0 0 0;
  }
  .services-top-leftpart {
    /* padding: 16px 16px 0 0; */
    width: 48%;
  }
  .services-top-leftpart h1 {
    font-size: 20px;
    line-height: 35px;
  }
  .services-top-leftpart p {
    margin: 10px 0;
  }
  .services-top-leftpart a {
    padding: 16px 26px;
    height: 50px;
  }
  .how-section {
    padding:10px 0 0 0;
    max-width: 100%;
  }
  .how-section-top {
    margin: 0 0 14px;
  }
  .step-item .step-item-text {
    line-height: 16px;
  }
  .step-item .step-item-heading {
    font-size: 16px;
    line-height: 24px;
  }
  .step-item {
    margin: 0 0 6px 0;
    padding: 0 0 6px;
    gap: 4px;
  }
  .how-section-top h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .how-section-top h3 span {
    width: 12px;
    height: 12px;
  }
  .how-section-top p {
    font-size: 14px;
    line-height: 18px;
  }

  .services-section {
    padding: 50px 0 40px 0;
  }
  .services-section .heading {
    margin: 0 auto 40px;
  }
  .services-wrap .services-items h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 15px 0 10px;
  }
  .services-wrap .services-items .services-items-inr {
    padding: 15px;
  }
  .services-wrap .services-items p {
    line-height: 20px;
    min-height: 120px;
    font-size: 13px;
  }

  .about-content-section .heading {
    width: 96%;
  }

  .about-section {
    /* padding: 60px 0; */
  }
  .about-content-section {
    gap: 25px;
  }
  .about-wrap {
    gap: 40px;
  }
  .about-content-section .heading h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .about-item-text {
    font-size: 13px;
    line-height: 16px;
  }
  .about-item {
    gap: 15px;
    padding: 0;
  }
  .about-item-heading {
    font-size: 18px;
    line-height: 22px;
  }
  .about-item-contain {
    width: 80%;
    gap: 10px;
  }
  .about-item-wrap {
    gap: 20px;
    width: 97%;
  }
  .vi-mi-items {
    min-height: 282px;
    padding: 25px 30px 30px;
  }
  .vi-mi-section {
    padding: 90px 0 55px;
  }

  .founder-content .heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .founder-small-img {
    bottom: -100px;
  }
  .founder-section {
    padding: 50px 0 80px;
  }
  .faqsection .faq-top-section .heading h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .faqsection .faq-top-section {
    margin: 0 0 40px;
  }
  .faqsection {
    padding: 0 0 40px;
  }

  .home-hero-box h1 {
    font-size: 26px;
    line-height: 34px;
  }
  .btn-sec {
    margin: 20px 0 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero-box {
    padding: 30px 20px;
    margin: 30px 0 20px;
    max-width: 53%;
  }
  .heroImg {
    width: 516px;
    top: inherit;
    bottom: 0;
  }
  .home-hero-box .line {
    margin: 8px 0;
  }
  .btn-sec span {
    display: none;
  }

  .main-footer {
    padding: 40px 0;
  }
  .map-sec .img-cover {
    height: 100%;
  }
  .home-testimoniyal {
    padding: 30px 0;
  }
  .home-testimoniyal .heading {
    margin: 0 0 45px;
  }
  .home-testimoniyal-btn {
    margin: 35px 0 0 0;
  }
  .home-why-section .heading h3 {
    font-size: 28px;
    line-height: 35px;
  }
  .specialize-left h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .specialize-right .specialize-box {
    width: 42%;
  }
  .specialize-right {
    column-gap: 50px;
    row-gap: 40px;
  }
  .specialize-right .specialize-box h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .home-why-section .heading {
    margin: 0 0 45px;
  }

  .cta-section .cta-section-inner div {
    font-size: 16px;
    line-height: 25px;
  }
  .cta-section .cta-section-inner a {
    padding: 18px 20px;
    width: 180px;
  }
  .cta-section {
    padding: 30px 15px;
  }
  .neighborhoods-section .heading h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .neighborhoods-section .heading {
    margin: 0 0 25px;
  }
  .neighborhoods-section {
    padding: 40px 0 0 0;
  }
  .neighborhoods-main .neighborhoodsbox {
    width: 24.9%;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(6),
  .neighborhoods-main .neighborhoodsbox:nth-child(18) {
    border-right: 1px solid #ec3223;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(4),
  .neighborhoods-main .neighborhoodsbox:nth-child(8),
  .neighborhoods-main .neighborhoodsbox:nth-child(12),
  .neighborhoods-main .neighborhoodsbox:nth-child(16),
  .neighborhoods-main .neighborhoodsbox:nth-child(20),
  .neighborhoods-main .neighborhoodsbox:nth-child(24) {
    border-right: 0;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(27) {
    width: 50%;
  }
  /* .neighborhoods-main .neighborhoodsbox:nth-child(1),
  .neighborhoods-main .neighborhoodsbox:nth-child(2),
  .neighborhoods-main .neighborhoodsbox:nth-child(3) {
    border-bottom: 1px solid #c42013;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(2),
  .neighborhoods-main .neighborhoodsbox:nth-child(5) {
    border-left: 1px solid #c42013;
    border-right: 1px solid #c42013;
  } */
  .neighborhoods-main {
    margin-bottom: 15px !important;
  }
  .home-services-item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .home-services-item p {
    font-size: 13px;
  }
  .home-services-sec {
    gap: 30px;
  }
  .home-services-mid-content h3 {
    font-size: 28px;
    line-height: 30px;
    width: 33%;
  }
  .home-our-services .heading h3 {
    font-size: 28px;
    line-height: 30px;
  }
  .home-services-mid-content div {
    width: 66%;
  }
  .home-services-mid-content {
    margin: 40px 0;
  }
  .home-our-services {
    padding: 30px 0 40px;
  }
  .home-spl-sec-wrap h3 {
    font-size: 26px;
    text-align: center;
  }
  .splcards-footer {
    font-size: 22px;
  }
  .home-spl-sec-wrap .splcard {
    width: 340px;
  }
  .home-spl-sec-wrap .price {
    font-size: 25px;
  }
  .sd-hero-section {
    padding: 50px 0 60px;
  }
  .sd-hero-section h1 {
    font-size: 36px;
    line-height: 50px;
  }
  .commonsign-wrap {
    column-gap: 30px;
  }
  .commonsign-wrap .commonsign-box {
    width: 21.9%;
  }
  .commonsign-wrap .commonsign-box h4 {
    font-size: 16px;
  }
  .sd-commonsign-sec .heading h3 {
    font-size: 30px;
  }
  .sd-third-section h3 {
    font-size: 30px;
  }
  .sd-third-section {
    padding: 35px 0 35px;
  }
  .sd-commonsign-sec .heading {
    margin: 0 0 50px;
  }
  .sd-twobtn-section {
    gap: 80px;
  }
  .faqsection.servicesfaqsection {
    padding: 40px 0 10px 0;
  }
    .pricing-wrapper .pcard h3{font-size: 22px;}
  .pricing-wrapper .price {font-size: 70px;}
}

/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width: 767px) {
  .h1,
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .herosection {
    background: url(../images/hero-banner.png) no-repeat right center;
  }

  .contactpage-wrap .heading h1 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px;
  }
  .contactpage-wrap .heading {
    margin: 0 0 20px;
  }
  .contactpage-section {
    padding: 30px 0;
  }
  .ready-section .readysec-wrap .readysec-content h3 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  .ready-section .readysec-wrap .readysec-content p {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 20px;
  }
  .ready-section .readysec-wrap .readysec-content {
    width: 80%;
  }
  .ready-section .readysec-wrap .ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 115%);
  }

  .blog-item .blog-content {
    margin: 15px 0;
    gap: 10px;
  }
  .blog-item .blog-content h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .recentblog-section .heading {
    margin: 0 0 20px;
  }

  .blogsmallsec-main {
    gap: 20px;
    margin: 20px 0 0;
  }
  .blogbigsec .blogbigcontent {
    left: 20px;
  }
  .blogsmallsec .blogsmallcontent {
    left: 20px;
  }

  .services-top-section {
    padding: 40px 0 0 0;
  }
  .services-top-wrap {
    flex-direction: column;
  }
  .services-top-leftpart {
    padding: 0 0 15px;
    width: 100%;
  }
  .how-section {
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
  }

  .services-section {
    padding: 30px 0;
  }
  .services-section .heading {
    margin: 0 auto 30px;
  }
  .services-wrap .services-items p {
    min-height: 100px;
  }
  .services-wrap .services-items {
    width: 49%;
  }
  .services-wrap .services-items:nth-child(1),
  .services-wrap .services-items:nth-child(2),
  .services-wrap .services-items:nth-child(3) {
    border-bottom: 3px solid var(--white-color);
  }
  .services-wrap .services-items:nth-child(2) {
    border-left: 0;
    border-right: 0;
    padding: 0 0 15px 15px;
  }
  .services-wrap .services-items:nth-child(5) {
    border-left: 0;
    padding: 15px 15px 0;
  }
  .services-wrap .services-items:nth-child(1) {
    padding: 0 15px 15px 0;
    border-right: 3px solid var(--white-color);
  }
  .services-wrap .services-items:nth-child(3) {
    padding: 0 15px 15px 0;
    border-right: 3px solid var(--white-color);
  }
  .services-wrap .services-items:nth-child(4) {
    padding: 0 0 15px 15px;
    border-bottom: 3px solid var(--white-color);
  }

  .about-section {
    /* padding: 40px 0; */
  }
  .about-wrap {
    flex-direction: column;
  }
  .about-img {
    width: 100%;
  }
  .about-content-section {
    width: 100%;
    gap: 30px;
  }
  .about-content-section .heading h1 {
    font-size: 25px;
    line-height: 35px;
  }
  .vi-mi-items {
    min-height: inherit;
    padding: 20px 20px 20px;
  }
  .vi-mi-items.vi-sec {
    margin: 60px 0 0 0 !important;
  }
  .vi-mi-section {
    padding: 80px 0 40px;
  }

  .founder-content .heading h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .founder-content {
    margin: 0 0 20px !important;
  }
  .founder-section {
    padding: 30px 0 40px;
  }

  .faqsection .faq-top-section {
    margin: 0 0 30px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .faqsection {
    padding: 105px 0 30px;
  }
  .faqsection .faq-top-section .heading {
    width: 100%;
  }
  .faq-top-section .faq-content {
    width: 100%;
  }
  .question-answer-list .accordion-row .title {
    font-size: 16px;
    line-height: 22px;
  }

  .home-hero-box {
    max-width: 100%;
  }
  .heroImg {
    position: relative;
    width: 100%;
  }
  .herosection-inner {
    flex-direction: column-reverse;
  }

  .footer-links.footer-legal-links {
    margin: 20px 0 0 0;
  }
  .footer-social {
    margin: 20px 0 0 0;
  }
  .main-footer {
    padding: 30px 0;
  }

  .herosection-inner {
    gap: 0;
  }
  .home-hero-box {
    margin: 0px 0 20px;
  }
  .home-contact-section .home-contact-wrap {
    flex-direction: column;
    gap: 0;
  }
  .home-contact-right h3,
  .home-testimoniyal .heading h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .home-testimoniyal {
    padding: 20px 0;
  }
  .home-testimoniyal .heading {
    margin: 0 0 35px;
  }
  .home-testimoniyal-wrap {
    flex-direction: column;
  }
  .home-testimoniyal-btn {
    margin: 30px 0 0 0;
  }
  .home-why-section .heading h3 {
    font-size: 25px;
    line-height: 35px;
    flex-direction: column;
    align-items: center;
  }
  .specialize-left h3 {
    text-align: center;
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 35px;
  }
  .home-why-section .heading {
    margin: 0 0 35px;
  }
  .cta-section .cta-section-inner a {
    font-size: 15px;
    padding: 18px;
  }
  .cta-left-bg,
  .cta-right-bg {
    display: none;
  }
  .neighborhoods-section {
    /* background: url(../images/neighborhoods-bg.png) no-repeat top right -200px; */
    padding: 25px 0 0 0;
    margin: 0 0 20px;
  }
  .neighborhoods-section .heading h3 {
    font-size: 25px;
    line-height: 35px;
  }
  .neighborhoods-main .neighborhoodsbox h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .neighborhoods-main {
    margin-bottom: 20px !important;
  }
  .neighborhoods-main .neighborhoodsbox {
    width: 33.1%;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(3),
  .neighborhoods-main .neighborhoodsbox:nth-child(6),
  .neighborhoods-main .neighborhoodsbox:nth-child(9),
  .neighborhoods-main .neighborhoodsbox:nth-child(15),
  .neighborhoods-main .neighborhoodsbox:nth-child(18),
  .neighborhoods-main .neighborhoodsbox:nth-child(21),
  .neighborhoods-main .neighborhoodsbox:nth-child(24),
  .neighborhoods-main .neighborhoodsbox:nth-child(26) {
    border-right: 0;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(4),
  .neighborhoods-main .neighborhoodsbox:nth-child(8),
  .neighborhoods-main .neighborhoodsbox:nth-child(16),
  .neighborhoods-main .neighborhoodsbox:nth-child(20) {
    border-right: 1px solid #ec3223;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(25),
  .neighborhoods-main .neighborhoodsbox:nth-child(26) {
    width: 50%;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(27) {
    width: 100%;
    border-top: 1px solid #ec3223;
  }
  .home-services-sec {
    gap: 25px;
    flex-direction: column;
  }
  .home-services-item {
    width: 100%;
  }
  .home-services-mid-content {
    flex-direction: column;
    margin: 30px 0;
  }
  .home-services-mid-content h3 {
    width: 100%;
    justify-content: center;
    margin: 0 0 20px;
  }
  .home-services-mid-content div {
    width: 100%;
  }
  .home-services-mid-content h3::before {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100px;
    height: 4px;
    top: 32px;
  }
  .home-our-services {
    padding: 30px 0;
  }

  .home-spl-sec-wrap h3 {
    font-size: 24px;
    text-align: center;
    padding: 30px 0 20px;
  }
  .splcards-footer {
    font-size: 20px;
    text-align: center;
  }
  .home-spl-sec-wrap .splcard {
    width: 90%;
  }
  .home-spl-sec-wrap .price {
    font-size: 22px;
  }
  .sd-hero-section {
    padding: 30px 0 40px;
  }
  .sd-hero-section .image-box {
    margin-top: 20px;
  }
  .commonsign-wrap .commonsign-box {
    width: 47.6%;
  }
  .commonsign-wrap {
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
  }
  .sd-commonsign-sec {
    padding: 30px 0 25px;
  }
  .sd-commonsign-sec .heading h3 {
    font-size: 25px;
  }
  .sd-third-section h3 {
    font-size: 25px;
  }
  .sd-third-section {
    padding: 25px 0 25px;
  }
  .sd-commonsign-sec .heading {
    margin: 0 0 40px;
  }
  .sd-twobtn-section {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    align-items: center;
  }

  .faqsection.servicesfaqsection {
    padding: 30px 0 10px 0;
  }

  .services-top-img{display: flex;height: 100%;}
  .pricing-wrapper{gap: 15px;}
      .pricing-wrapper .pcard h3{font-size: 18px;}
  .pricing-wrapper .price {font-size: 50px;}
  .pricing-wrapper .subtitle {font-size: 18px;}
  .pricing-wrapper .pcard{height: 200px;}
}

/*View :: 320px ::*/
@media screen and (max-width: 575px) {
  .cp-contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .ready-section .readysec-wrap .readysec-content h3 {
    font-size: 25px;
    line-height: 25px;
    margin: 0 0 15px;
  }
  .ready-section .readysec-wrap .readysec-content p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 15px;
  }
  .ready-section .readysec-wrap .readysec-content {
    width: 90%;
    left: 20px;
  }
  .ready-section .readysec-wrap .ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 170%);
  }
  .ready-section .readysec-wrap .readysec-content a {
    padding: 16px 18px;
    font-size: 14px;
    height: 44px;
  }
  .blog-item .blog-content h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .services-top-section {
    padding: 30px 0 0 0;
  }
  .services-section .heading {
    margin: 0 auto 20px;
  }
  .services-wrap .services-items p {
    min-height: inherit;
  }
  .services-wrap .services-items {
    width: 100%;
  }
  .services-wrap .services-items:nth-child(1),
  .services-wrap .services-items:nth-child(2),
  .services-wrap .services-items:nth-child(3) {
    border-bottom: 3px solid var(--white-color);
  }
  .services-wrap .services-items:nth-child(2) {
    border-left: 0;
    border-right: 0;
    padding: 15px 0;
  }
  .services-wrap .services-items:nth-child(5) {
    border-left: 0;
    padding: 15px 15px 0;
  }
  .services-wrap .services-items:nth-child(1) {
    padding: 15px 0;
    border-right: 0;
  }
  .services-wrap .services-items:nth-child(3) {
    padding: 15px 0;
    border-right: 0;
  }
  .services-wrap .services-items:nth-child(4) {
    padding: 15px 0;
    border-bottom: 3px solid var(--white-color);
  }

  .about-item {
    gap: 20px;
    padding: 0;
  }
  .founder-small-img {
    width: 200px;
    padding: 10px 0 0 10px;
  }
  .question-answer-list .accordion-row .title span {
    width: 80%;
    display: inline-block;
  }

  .footer-links.footer-services-links,
  .footer-links.footer-legal-links {
    margin: 25px 0 0 0;
  }
  .home-contact-innerwrap {
    flex-direction: column;
    gap: 20px;
  }
  .home-contact-form {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .home-contact-form::after {
    display: none;
  }
  .home-why-section .heading p {
    font-size: 15px;
  }
  .specialize-right .specialize-box {
    width: 100%;
  }
  .specialize-right {
    row-gap: 16px;
  }
  .specialize-right .specialize-box h4 {
    margin: 15px 0 10px;
  }
  .home-why-section .heading {
    margin: 0 0 25px;
  }
  .cta-section-inner {
    flex-direction: column;
  }
  .cta-section .cta-section-inner div {
    width: 100%;
    padding: 0 0 10px;
    text-align: center;
    border-bottom: 2px solid #fff;
    margin: 0 0 10px;
  }
  .cta-section .cta-section-inner a {
    margin: 0 auto;
  }
  .cta-section .cta-section-inner div::before {
    display: none;
  }
  .neighborhoods-section .heading h3 b {
    color: var(--white-color);
  }
  .neighborhoods-main {
    flex-direction: column;
    gap: 10px;
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(4),
  .neighborhoods-main .neighborhoodsbox:nth-child(8),
  .neighborhoods-main .neighborhoodsbox:nth-child(12),
  .neighborhoods-main .neighborhoodsbox:nth-child(16),
  .neighborhoods-main .neighborhoodsbox:nth-child(20),
  .neighborhoods-main .neighborhoodsbox:nth-child(24),
  .neighborhoods-main .neighborhoodsbox:nth-child(25),
  .neighborhoods-main .neighborhoodsbox:nth-child(26),
  .neighborhoods-main .neighborhoodsbox:nth-child(27),
  .neighborhoods-main .neighborhoodsbox:nth-child(3),
  .neighborhoods-main .neighborhoodsbox:nth-child(6),
  .neighborhoods-main .neighborhoodsbox:nth-child(9),
  .neighborhoods-main .neighborhoodsbox:nth-child(15),
  .neighborhoods-main .neighborhoodsbox:nth-child(18),
  .neighborhoods-main .neighborhoodsbox:nth-child(21),
  .neighborhoods-main .neighborhoodsbox:nth-child(24),
  .neighborhoods-main .neighborhoodsbox:nth-child(26) {
    border: 1px solid var(--primary-color);
  }
  .neighborhoods-main .neighborhoodsbox:nth-child(25),
  .neighborhoods-main .neighborhoodsbox:nth-child(26),
  .neighborhoods-main .neighborhoodsbox:nth-child(27) {
    width: 100%;
  }
  /* .neighborhoods-main .neighborhoodsbox:nth-child(1),
  .neighborhoods-main .neighborhoodsbox:nth-child(2),
  .neighborhoods-main .neighborhoodsbox:nth-child(3),
  .neighborhoods-main .neighborhoodsbox:nth-child(4),
  .neighborhoods-main .neighborhoodsbox:nth-child(5),
  .neighborhoods-main .neighborhoodsbox:nth-child(6) {
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 6px;
  } */
  .neighborhoods-main .neighborhoodsbox {
    width: 100%;
    border: 1px solid var(--primary-color);
  }
  .neighborhoods-section,
  .home-testimoniyal {
    background: transparent;
  }
  /* .neighborhoods-main .neighborhoodsbox:nth-child(2),
  .neighborhoods-main .neighborhoodsbox:nth-child(3) {
    padding-top: 10px;
  } */
  .neighborhoods-section .heading h3 {
    text-align: center;
  }
  .fservices-sec,
  .flegal-sec {
    width: 48%;
  }
  .contactpage-form .forminator-row + .forminator-row {
    flex-direction: column;
    gap: 10px;
  }
  .contactpage-form .forminator-col-6 {
    width: 100%;
  }
  .commonsign-wrap .commonsign-box {
    width: 100%;
  }
  .pricing-wrapper{flex-direction: column;}
      .pricing-wrapper .pcard {
        height: auto;
        padding: 20px;
        width: 100%;
    }
    .pricing-wrapper .pcard.highlight{height: auto;margin: 0;width: 100%;}
}
