:root {
  --primary-color: #c10000;
  --secondary-color: #1c2a39;
  --link-color: #007bff;
  --light-color: #f0eee7;
  --red-color: #cc0000;
  --primary-font: "Open Sans", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
  --common-transition: all 0.4s;
}

/*====== Header ======*/
.header-area {
  position: fixed;
  top: 0;
  background-color: var(--secondary-color);
  z-index: 99992;
  width: 100%;
}

.header-top {
  padding: 10px 0;
}

.header-nav {
  background-color: #384c61;
}

.head-cta .main-btn {
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: var(--red-color);
}

.head-cta .main-btn:hover {
  background-color: var(--primary-color);
}

.head-cta .main-btn img {
  width: 16px;
  margin-left: 0;
  margin-bottom: 3px;
}
.middle-text {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  color: #fff;
}
.site-logo img {
  max-width: 220px;
}
@media (max-width: 1199px) {
  .header .header-area .header-top .container {
    max-width: 100%;
  }
  .site-logo img {
    width: 180px;
  }
}

@media all and (max-width: 991px) {
  .middle-text {
    display: none;
  }
  .site-logo img {
    width: 120px;
  }
}
@media (max-width: 575px) {
  .head-cta .main-btn {
    font-size: 10px;
    padding: 5px 10px;
    text-align: center;
    min-width: 90px;
  }
  .head-cta .main-btn img,
  .head-cta .main-btn i {
    display: none;
  }
  .site-logo img {
    width: 90px;
  }
}
/*====Side Navigation====*/
.menu-icon {
  display: flex;
  margin-left: auto;
  text-align: center;
  width: 30px;
  height: 30px;
}

.menu-icon-in {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

.menu-icon-in span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.menu-icon-in span:nth-child(1) {
  top: 10%;
}

.menu-icon-in span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.menu-icon-in span:nth-child(3) {
  bottom: 10%;
}

.menu-icon-in.open span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 100%;
  background-color: #f3f3f3;
}

.menu-icon-in.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-icon-in.open span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 100%;
  background-color: #f3f3f3;
}

.menu-icon-in:hover span {
  background-color: #f3f3f3;
}

.overflow-nav {
  overflow-y: scroll;
}

.dvLeft.open {
  left: 0;
}

#slidebar-out {
  color: #732525;
  font-size: 1.6rem;
  position: absolute;
  right: 12px;
  top: 8px;
  cursor: pointer;
}

#menubar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#menubar::-webkit-scrollbar {
  width: 10px;
  background-color: #fff0;
}

#menubar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgb(0 0 0 / 0.3);
  background-color: #443b34;
}
.menu-icon-in span,
.menu-icon-in.open span:nth-child(3),
.menu-icon-in.open span:nth-child(1),
.menu-icon-in:hover span {
  background-color: #fff;
}

@media all and (min-width: 992px) {
  .dvLeft {
    display: none;
  }
}
@media (max-width: 1199px) {
  .menu-icon-in span {
    height: 3px;
  }
  .dvLeft {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    left: -320px;
    width: 300px;
    background-color: #fff;
    padding: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 1px 0 5px #0000003d;
    -moz-box-shadow: 1px 0 5px #0000003d;
    -webkit-box-shadow: 1px 0 5px #0000003d;
  }
  .mask-overlay {
    content: "";
    position: fixed;
    background: linear-gradient(180deg, rgb(0 0 0 / 50%), rgb(41 61 102 / 30%));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

@media all and (max-width: 991.5px) {
  .dvLeft {
    left: -320px;
    width: 300px;
    padding-top: 120px;
  }
}

@media all and (max-width: 767px) {
  .dvLeft {
    padding-top: 86px;
  }
}

/*====== Top Navigation =====*/
.logo-small,
.small-phone {
  visibility: hidden;
  position: absolute;
}
@media (min-width: 1200px) {
  .navbar {
    padding: 0;
  }

  .navbar-nav.ml-auto {
    margin-left: 0 !important;
  }

  .navbar a:hover {
    text-decoration: none;
  }
  .navbar-nav > li {
    position: relative;
    padding: 0 1rem;
  }

  .navbar-nav > li:first-child {
    padding-left: 0;
  }

  .navbar-nav > li:last-child {
    padding-right: 0;
  }

  .navbar-light .navbar-nav > li > a {
    color: #fff !important;
    position: relative;
    text-transform: capitalize;
    padding: 1rem 0;
    display: block;
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: var(--secondary-font);
  }

  .navbar-light .navbar-nav > li.dropdown > a {
    padding-right: 20px;
  }

  .navbar-light .navbar-nav > li span.dropdown-caret {
    display: none;
  }

  .navbar-light .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 4px;
    left: 0;
    background: var(--secondary-color);
    box-shadow: 0 0 3px 1px #fff;
    visibility: hidden;
    transform: scaleX(0);
    -webkit-transition: 0.25s linear;
    -moz-transition: 0.25s linear;
    -o-transition: 0.25s linear;
    -ms-transition: 0.25s linear;
    transition: 0.25s linear;
  }

  .navbar-light .navbar-nav > li.dropdown:hover > a:before,
  .navbar-light .navbar-nav > li > a:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }

  .dropdown .dropdown-menu {
    background: #fff;
    top: 120%;
    z-index: 99;
    display: block;
    min-width: 24rem;
    width: max-content;
    border-radius: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    left: 5px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.21);
    padding: 0;
    position: relative;
    margin: 0;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
  }

  .dropdown:hover > .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav > li:last-child > .dropdown-menu {
    left: inherit;
    right: 0;
  }

  .navbar-light .navbar-nav .dropdown-menu a {
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 1.5rem;
    padding: 10px;
    display: block;
    line-height: normal;
    border-radius: 0;
    position: relative;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .navbar-light .navbar-nav > li:hover > a {
    color: var(--secondary-color);
  }

  .navbar-light .navbar-nav .dropdown-menu a:hover,
  .navbar-nav > li.dropdown .dropdown-menu li.dropdown:hover > a {
    color: var(--primary-color);
    transform: translateX(5px);
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .navbar-nav .dropdown-menu > li {
    position: relative;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }

  .navbar-nav .dropdown-menu li:last-child {
    border-bottom: 0;
  }

  .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0 !important;
  }

  .navbar-nav > .dropdown > a::after {
    position: absolute;
    right: 2px;
    content: "\f107";
    font-family: FontAwesome;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff !important;
  }

  .navbar-nav > .dropdown:last-child .dropdown::after {
    display: none;
  }

  .navbar-light .navbar-nav > li:hover > a:after {
    color: var(--secondary-color);
  }

  .navbar-nav li.dropdown:last-child:hover .dropdown-menu:after {
    left: inherit;
    right: 10%;
  }

  .navbar-light .navbar-nav > li.dropdown .dropdown-menu li.dropdown a {
    padding-right: 25px;
  }

  .navbar-light .navbar-nav > li.dropdown .dropdown-menu li.dropdown > a::after {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    content: "\f0da";
    font-family: FontAwesome;
    font-weight: 900;
    color: #000;
  }

  .navbar-nav > li.dropdown .dropdown-menu li.dropdown > a:hover::after,
  .navbar-nav > li.dropdown .dropdown-menu li.dropdown:hover > a::after {
    color: var(--primary-color);
  }
  .navbar-nav .nav-link.active {
    color: var(--primary-color);
  }

  a.nav-link:hover {
    color: var(--primary-color) !important;
  }

  .navbar-light .navbar-nav > li > a:hover:before {
    background-color: var(--primary-color);
  }
  .navbar-nav > .dropdown > a:hover::after,
  .navbar-nav > .dropdown > a.nav-link.active::after {
    color: #fff !important;
  }
  .dropdown-item.active {
    color: var(--primary-color) !important;
    background-color: #c6d9ff;
  }
}

@media (max-width: 1199px) {
  .navigation {
    margin-top: 15px;
  }
  /* ===== Navigation ===== */
  li.nav-item.dropdown.current .nav-link {
    background-color: var(--secondary-color);
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .navigation .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--secondary-font);
  }

  a.dropdown-item:visited {
    color: var(--secondary-color);
  }
  a.dropdown-item.active,
  .navigation .nav-link.active {
    color: var(--primary-color) !important;
    background-color: #c6d9ff;
  }

  /* ===== Caret ===== */
  .dropdown-caret {
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  /* ===== Dropdown menu (closed) ===== */
  .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
  }

  /* ===== OPEN STATE ===== */
  .nav-item.current > .dropdown-menu {
    display: block;
    background-color: #f4f6fa;
  }

  /* Rotate caret when open */
  .nav-item.current .dropdown-caret .fa-caret-down:before {
    content: "\f0d8";
  }

  /* ===== Dropdown items ===== */
  .dropdown-item {
    padding: 10px 16px;
    color: var(--secondary-color);
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255);
  }

  .dropdown-item:hover {
    background: var(--secondary-color);
    color: #fff;
  }
  #ulmenu > .nav-item + .nav-item {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid rgb(241 241 241);
  }
}
/*======= Contact Form ======*/
.dynamic-form .form-grid {
  gap: 2rem;
}
.dynamic-form .form-title {
  display: none;
}

.dynamic-form .form-group {
  flex: 1 1 445px;
}

.dynamic-form .form-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.dynamic-form .btn-submit {
  background: var(--primary-color);
  padding: 8px 20px;
  font-size: 1.6rem;
  min-width: 150px;
}

.dynamic-form .floating-label {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dynamic-form .form-control {
  font-size: 1.6rem;
  width: 100%;
  padding: 8px;
  box-shadow: inset 0 0 4px -0.5px rgb(212 212 212 / 50%);
}

.dynamic-form .btn-submit:hover {
  background: var(--secondary-color);
}

/*========== Footer ==========*/
.footer {
  background-color: var(--secondary-color);
}

.footer-top {
  padding: 25px 0;
}

.footer-logo img {
  max-width: 120px;
}
a.social-icon {
  text-align: end;
}

.social-icon img {
  width: 30px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
  margin-bottom: 0;
  justify-content: center;
}

.footer-links ul a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  background: var(--secondary-color);
  color: white;
  padding-block: 15px;
  border-top: 1px solid #636363;
}

.footer-bottom a {
  color: #fff;
}

.powered-by img {
  max-width: 20px;
  margin: 0 2px;
}

.powered-by a {
  color: #febb02 !important;
  text-decoration: none;
}

.powered-by p {
  margin-bottom: 0;
}

.footer-bottom p {
  margin-bottom: 0;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 32px);
  justify-content: end;
  gap: 10px;
}

.social-icons img {
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 3px 0 #00000038;
  width: 32px;
}
@media (max-width: 991px) {
  .footer-logo {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links ul {
    gap: 15px;
  }
  .footer-items {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-links ul a {
    font-size: 13px;
  }
}
/*===== Hero Section ====*/
.slider-wrapper {
  background: radial-gradient(at center center, rgb(255 0 0 / 40%) 0%, rgba(255, 0, 0, 0.7) 100%);
  position: relative;
  width: 100%;
  background-image: url(https://cdn.moumachi.com.bd/websites/2025/25754/images/sell-alarm-company.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
}
.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at center center, rgb(255 0 0 / 40%) 0%, rgba(255, 0, 0, 0.7) 100%);
}
.slider-text {
  text-align: center;
  position: relative;
}

.slider-text p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: rgb(31 35 35 / 50%) -3px 3px 5px;
}

.slider-text .mega-heading {
  font-size: 55px;
  position: relative;
  line-height: normal;
  letter-spacing: 1px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: rgb(31 35 35 / 50%) -3px 3px 5px;
}

.slider-text .main-btn {
  margin-top: 20px;
}

.section-bridge {
  position: relative;
  margin-top: -75px;
  background-color: transparent;
}
.bridge-box {
  display: inline-block;
  background: var(--secondary-color);
  color: #ffffff;
  font-weight: 900;
  font-size: 75px;
  line-height: normal;
  padding: 25px 45px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 5px solid #ffb4b2;
  text-align: center;
  letter-spacing: 3px;
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke-width: 2px;
}

@media (max-width: 1330px) {
  .slider-text .mega-heading {
    font-size: 45px;
  }
  .slider-text p {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .slider-text .mega-heading {
    font-size: 40px;
  }
  .slider-text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .slider-wrapper {
    height: 400px;
  }
  .slider-text .mega-heading {
    font-size: 30px;
  }
  .slider-text p {
    font-size: 16px;
  }
  .section-bridge {
    margin-top: -45px;
  }
  .bridge-box {
    font-size: 4rem;
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .bridge-box {
    font-size: 3.5rem;
  }
  .slider-text a.main-btn {
    font-size: 13px;
    padding: 10px 15px;
    margin-top: 10px;
  }
  a.main-btn img {
    width: 8px;
    margin-left: 3px;
  }
}

/*====== CTA ====*/
.common-sec.cta {
  background-color: var(--secondary-color);
  border-bottom: 3px solid #ffffff;
  color: #fff;
}
.ctaBtn {
  margin-top: 25px;
}

.ctaBtn .main-btn {
  border: 2px solid #ffffff;
  min-width: 200px;
}
.ctaBtn .main-btn:first-child {
  margin-right: 10px;
}
.ctaBtn .main-btn:hover {
  border: 2px solid #fff;
}
@media (max-width: 575px) {
  .ctaBtn .main-btn {
    min-width: 150px;
    font-size: 15px;
    padding: 8px 15px;
  }
}
@media (max-width: 425px) {
  .ctaBtn .main-btn:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .ctaBtn .main-btn {
    display: block;
  }
}

.common-box .content .main-btn {
  border-radius: 10px;
  background-color: #384c61;
  border: 2px solid #fff;
  margin-top: 7px;
}

.common-box .content .main-btn:hover {
  background-color: var(--secondary-color);
}

.whyChoose-common-box {
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  gap: 10px;
  border-radius: 10px;
  background-color: #1c2a39;
  color: #fff;
  display: grid;
  grid-template-columns: 65px 1fr;
}

.whyChoose-common-box .img-box img {
  width: 50px;
}

.whyChoose-common-box .content {
  font-size: 18px;
}

.whyChoose-common-box .img-box {
  margin-bottom: 0;
}

.whyChoose-common-box .img-box span {
  padding: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 575px) {
  .whyChoose-common-box .content {
    font-size: 16px;
  }
}

span.sub-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--red-color);
  position: relative;
  display: inline-flex;
  padding-left: 35px;
}

span.sub-text::before {
  background-color: var(--red-color);
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.curved-box {
  position: relative;
}

.curved-box.common-sec:nth-child(even):before,
.curved-box.common-sec,
.curved-box {
  background-color: #e7f3ff;
}

.curved-box .video-btn {
  z-index: 999;
}

.curved-box .video-btn,
.review-card.video-testimonial .video-btn,
.video-sec .video-btn,
.video-box.red-bg .video-btn {
  background-color: var(--red-color);
}

.curved-box .video-btn .fa-play,
.video-testimonial .video-btn .fa-play,
.video-box.red-bg .video-btn .fa-play {
  color: #fff;
}

.curved-box .video-btn:hover,
.video-testimonial .video-btn:hover,
.video-sec .video-btn:hover,
.video-box.red-bg .video-btn:hover {
  background-color: red;
}

.curved-box-img .video-btn {
  left: 98%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  font-size: 36px;
  border: 5px solid #fff;
}

.curved-box-img .video-btn .fa-play {
  line-height: 70px;
}

.video-sec .common-box {
  background-color: #e4eeff;
  border: 1px solid #cfdef9;
}

.video-sec .common-box > .content {
  font-weight: 500;
  font-size: 14px;
}

.curved-box-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  object-position: top;
}

.curved-box-img::after,
.curved-box-img::before {
  content: "";
  display: block;
  background: var(--red);
  width: calc(100% + 30px);
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 12px;
  left: -15px;
}

.curved-box-img::after {
  background: #fff;
  z-index: 1;
  top: 17px;
}

.curved-box-text {
  padding-left: 30px;
  padding-right: 0;
}

.curved-box-col {
  position: relative;
  padding: 0;
}

.curved-box-img {
  position: relative;
  padding-top: 30px;
}

.curved-box-img img,
.curved-box-img::after,
.curved-box-img::before {
  clip-path: ellipse(100% 100% at bottom);
}

@media (min-width: 2100px) {
  .video-btn {
    left: 70%;
  }
}

@media (min-width: 992px) {
  .curved-box > .container > .row {
    min-height: 450px;
  }
}

@media (min-width: 992px) {
  .curved-box-col {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img {
    padding-left: 30px;
    padding-top: 0;
  }

  .flex-lg-row-reverse .curved-box-img {
    padding-right: 30px;
    padding-left: 0;
  }

  .flex-lg-row-reverse .curved-box-col {
    left: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img img,
  .curved-box-img::after,
  .curved-box-img::before {
    clip-path: ellipse(100% 50vw at right);
  }

  .flex-lg-row-reverse .curved-box-img img,
  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    clip-path: ellipse(100% 50vw at left);
  }
}

@media (min-width: 1200px) {
  .curved-box-img img,
  .curved-box-img::after,
  .curved-box-img::before {
    clip-path: ellipse(100% 45vw at right);
  }

  .flex-lg-row-reverse .curved-box-img img,
  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    clip-path: ellipse(100% 45vw at left);
  }
}

@media (max-width: 991.98px) {
  .curved-box-img img {
    height: 320px;
  }

  .curved-box-text {
    padding-left: 0;
  }

  .curved-box-img .video-btn {
    left: 50%;
    top: 5%;
  }

  .curved-box-img img {
    height: 375px;
  }
}

@media (min-width: 992px) {
  .curved-box-img::after,
  .curved-box-img::before {
    width: 100%;
    top: 0;
    left: 0;
  }

  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    right: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img::after {
    left: 7.5px;
    top: 0;
  }

  .flex-lg-row-reverse .curved-box-img::after {
    left: -7.5px;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .curved-box-img img {
    height: 320px;
  }
}
