body,
html {
  overflow-x: hidden;
}

/* ======== Header Style 1 ========== */

.ca-btn-primary {
  display: inline-block;
  font-weight: 600;
  padding: 10px 16px 10px 20px;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.ca-btn-primary span {
  background: #44496c;
  height: 32px;
  width: 32px;
  /* display: inline-block; */
  line-height: 32px;
  border-radius: 50%;
  text-align: center;
  margin-left: 6px;
}

.ca-btn-primary:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #1b0901;
  z-index: -1;
  transition: 0.3s;
  transform: scaleX(0);
}

.ca-btn-primary:hover:after {
  transform: scaleX(1);
  border-radius: 50px;
}

.ca-btn-primary-2 {
  display: inline-block;
  font-weight: 700;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.ca-btn-primary.ca-btn-primary-2:hover:after {
  border-radius: 0;
}

.ca-btn-primary.ca-sec-primary-3 {
  padding: 8px 16px;
}

.ca-btn-primary-22 {
  background: #d11207;
  padding: 16px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.ca-btn-primary-22 span {
  margin-left: 4px;
  transform: rotate(-45deg);
  display: inline-block;
  transition: 0.3s;
}

.ca-btn-primary-22:hover span {
  transform: rotate(0);
}

.ca-btn-primary-22:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #333;
  z-index: -1;
  transform: scaleX(0);
  transition: 0.3s;
}

.ca-btn-primary-22:hover:after {
  transform: scaleX(1);
}

/* btn  3 */
.ca-btn-primary-3 {
  display: inline-block;
  font-weight: 700;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.ca-btn-primary-3:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #1b0901;
  z-index: -1;
  transition: 0.3s;
  transform: scaleX(0);
}

.ca-btn-primary-3:hover:after {
  transform: scaleX(1);
  border-radius: 50px;
}

.ca-btn-primary-3:hover {
  color: #fff;
  transition: 0.3s;
}

a.ca-btn-primary-3:hover {
  color: #fff;
  transition: 0.3s;
}

.ca-main-menu {
  text-align: center;
}
.ca-main-menu ul > li {
  display: inline-block;
  position: relative;
}

.ca-main-menu ul li > a {
  color: #1b0901;
  padding: 0px 30px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.ca-main-menu ul li:hover > a {
  color: #44496c;
  transition: 0.3s;
}

.ca-main-menu ul li .sub-menu {
  position: absolute;
  top: 105%;
  width: 180px;
  left: 0;
  background: #fff;
  text-align: left;
  padding: 16px 0;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
}
.ca-main-menu ul li .sub-menu li {
  display: block;
}
.ca-main-menu ul li .sub-menu li a {
  color: #333;
  display: block;
  padding: 10px 18px;
  transition: 0.3s;
}

.ca-main-menu ul li .sub-menu li:hover > a {
  color: #333;
  transition: 0.3s;
}
.ca-main-menu ul li .sub-menu li a:hover {
  color: #44496c;
  transition: 0.3s;
  padding-left: 26px;
}
.ca-main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.ca-main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ca-main-menu ul li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.ca-main-menu ul li a span {
  font-size: 14px;
  display: inline-block;
}

/* Header stiky 1 */
.ca-header-area.ca-header-1.stiky.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}

/* ======== Off canvas Header 1 ============ */
.ca-offcanvas {
  position: fixed;
  width: 450px;
  z-index: 99;
  right: 0;
  top: 0;
  padding: 40px 50px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  z-index: 999;
}
.ca-offcanvas-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ca-offcanvas-close-toggle {
  font-size: 30px;
  color: #02000e;
}

.ca-offcanvas-title {
  font-size: 35px;
}

.ca-offcanvas-sm-title {
  font-size: 30px;
  color: #02000e;
  margin-bottom: 10px;
}

.ca-offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45 easc-in-out;
  background: rgba(24, 24, 24, 0.4);
}

.ca-offcanvas-overlay-open {
  opacity: 1;
  visibility: visible;
}

.ca-sm-conatct-location a {
  color: #5a5d63;
  font-size: 16px;
  line-height: 30px;
  transition: 0.3s;
}
.ca-sm-conatct-location a:hover {
  color: #0e47a1;
  transition: 0.3s;
}

.ca-sm-conatct-location-3 a:hover {
  color: #44496c;
  transition: 0.3s;
}

/* menu */
/* mobile-menu */
.ca-offcanvas-menu-1 ul {
  list-style: none;
}
.ca-offcanvas-menu-1 ul .active > a {
  color: #44496c;
}
.ca-offcanvas-menu-1 ul .active > .ca-menu-close {
  background: #44496c;
  color: #fff;
}
.ca-offcanvas-menu-1 ul .active .ca-menu-close i {
  transform: rotate(90deg);
}

.ca-offcanvas-menu-1 ul li {
  position: relative;
}
.ca-offcanvas-menu-1 ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ca-offcanvas-menu-1 ul li > a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
}

.ca-offcanvas-menu-1 ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.ca-menu-close {
  position: absolute;
  right: 0;
  top: 4px;
  height: 30px;
  width: 30px;
  text-align: center;
  border: 1px solid rgba(1, 15, 28, 0.12);
  background: none;
  font-size: 15px;
  line-height: 30px;
}

.ca-menu-close i {
  transition: 0.3s;
}
.ca-offcanvas-close-toggle {
  background: none;
  border: none;
}
.ca-offcanvas-toogle {
  background: none;
  border: none;
  color: #02000e;
}
.ca-offcanvas-menu-1 ul li a {
  color: #02000e;
  transition: 0.3s;
}
.ca-offcanvas-menu-1 ul li a span {
  display: none;
}

.ca-offcanvas-social a {
  margin-right: 8px;
}
.ca-sm-single-item-4-content a {
  color: #0c0504;
}

/* ========= Header Style 2 ============== */
.ca-btn-primary-2 span {
  background: none;
  margin-left: 4px;
  transform: rotate(-45deg);
  transition: 0.3s;
  width: inherit;
}
.ca-header-bg-2 {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.ca-main-menu-2 ul li a {
  color: #fff;
}
.ca-main-menu-2 ul li .sub-menu {
  background: #d11207;
}
.ca-main-menu-2 ul li:hover a {
  color: #d11207;
}
.ca-header-bg-2 {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 24px;
}
/* header 2 */
.ca-main-menu-2 .ca-mega-menu {
  left: -437px;
}
.ca-main-menu-2 {
  text-align: center;
}
.ca-main-menu-2 ul > li {
  display: inline-block;
  position: relative;
}

.ca-main-menu-2 ul li > a {
  color: #fff;
  padding: 18px 12px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  transition: 0.3s;
}
.ca-main-menu-2 ul li:hover > a {
  color: #d11207;
  transition: 0.3s;
}

.ca-main-menu-2 ul li .sub-menu {
  position: absolute;
  top: 105%;
  width: 180px;
  left: 0;
  background: #fff;
  text-align: left;
  padding: 16px 0;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
}
.ca-main-menu-2 ul li .sub-menu li {
  display: block;
}
.ca-main-menu-2 ul li .sub-menu li a {
  color: #333;
  display: block;
  padding: 10px 18px;
  transition: 0.3s;
}

.ca-main-menu-2 ul li .sub-menu li:hover > a {
  color: #d11207;
  transition: 0.3s;
  padding-left: 26px;
}
.ca-main-menu-2 ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.ca-main-menu-2 ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ca-main-menu-2 ul li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.ca-main-menu-2 ul li a span {
  font-size: 14px;
  display: inline-block;
}

.ca-main-menu-2 ul > li:hover .ca-mega-menu {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  top: 100%;
}

/* offcanvas menu 2 */
.ca-offcanvas-menu-2 ul li {
  position: relative;
}
.ca-offcanvas-menu-2 ul li > a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.ca-offcanvas-menu-2 ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.ca-offcanvas-menu-2 ul .active > a {
  color: #d11207;
}
.ca-offcanvas-menu-2 ul .active > .ca-menu-close2 {
  color: #fff;
  background: #d11207;
}
.ca-offcanvas-menu-2 ul .active .ca-menu-close2 i {
  transform: rotate(90deg);
}
.ca-offcanvas-menu-2 ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ca-menu-close2 {
  position: absolute;
  right: 0;
  top: 6px;
  border: 1px solid rgba(1, 15, 28, 0.12);
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}

.ca-menu-close2 i {
  transition: 0.3s;
}

.ca-main-menu-3 ul > li:hover .ca-mega-menu {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  top: 100%;
}

.ca-sm-conatct-location-2 a:hover {
  color: #d11207;
  transition: 0.3s;
}

/* Header stiky 2 */
header.header-2.stiky.scroll-header .ca-header-bg-2 {
  background: #464950;
}
.header-2.stiky.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: #464950;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

.header-2.stiky.scroll-header .ca-header-bg-2 {
  top: 0;
  width: 100%;
  position: relative;
}
/* ======== Header Style 3 ============ */
.ca-main-menu-3 {
  text-align: center;
}
.ca-main-menu-3 ul > li {
  display: inline-block;
  position: relative;
}

.ca-main-menu-3 ul li > a {
  color: #5a5d63;
  padding: 0px 15px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  transition: 0.3s;
}
.ca-main-menu-3 ul li:hover > a {
  color: #0e47a1;
  transition: 0.3s;
}

.ca-main-menu-3 ul li .sub-menu {
  position: absolute;
  top: 105%;
  width: 180px;
  left: 0;
  background: #fff;
  text-align: left;
  padding: 16px 0;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
}
.ca-main-menu-3 ul li .sub-menu li {
  display: block;
}
.ca-main-menu-3 ul li .sub-menu li a {
  color: #333;
  display: block;
  padding: 10px 18px;
  transition: 0.3s;
}
.ca-main-menu-3 ul li .sub-menu li a:hover {
  transition: 0.3s;
  padding-left: 26px;
}
.ca-main-menu-3 ul li .sub-menu li:hover > a {
  color: #0e47a1;
  transition: 0.3s;
}
.ca-main-menu-3 ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 145%;
}
.ca-main-menu-3 ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ca-main-menu-3 ul li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.ca-main-menu-3 ul li a span {
  font-size: 12px;
  display: inline-block;
}

/* offcanvas menu 3 */
.ca-offcanvas-menu-3 ul li {
  position: relative;
}
.ca-offcanvas-menu-3 ul li > a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: #5a5d63;
}
.ca-offcanvas-menu-3 ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.ca-offcanvas-menu-3 ul .active > a {
  color: #0e47a1;
}
.ca-offcanvas-menu-3 ul .active > .ca-menu-close3 {
  color: #fff;
  background: #0e47a1;
}
.ca-offcanvas-menu-3 ul .active .ca-menu-close3 i {
  transform: rotate(90deg);
}
.ca-offcanvas-menu-3 ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ca-menu-close3 {
  position: absolute;
  right: 0;
  top: 6px;
  border: 1px solid rgba(1, 15, 28, 0.12);
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}

.ca-menu-close3 i {
  transition: 0.3s;
}
.ca-offcanvas-menu-3 ul li a span {
  display: none;
}
.ca-main-menu-3 .ca-home-title {
  color: #5a5d63;
}

/*  */
.header-area-3 {
  position: absolute;
  width: 100%;
}

header.header-area-3.stiky .header-3 {
  background: #fff;
  padding: 20px 24px;
  border-radius: 87px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 9;
  position: relative;
  left: 0;
  right: 0;
  top: 24px;
}

header.header-area-3.stiky.scroll-header .header-3 {
  box-shadow: none;
  top: 0;
  border-radius: 0;
  padding: 15px;
}

.header-area-3.stiky.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

.ca-sec-primary-3 span {
  background: #dce6f7;
}

.ca-sec-primary-3 {
  border: 1px solid #0e47a1;
  margin-left: 16px;
  transition: 0.3s;
  padding: 10px 16px;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
a.ca-sec-primary-3 span {
  height: 32px;
  width: 32px;
  display: inline-block;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  margin-left: 6px;
}
.ca-sec-primary-3:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #0e47a1;
  z-index: -1;
  border-radius: 50px;
  transform: scaleX(0);
  transition: 0.3s;
}
.ca-sec-primary-3:hover {
  color: #fff;
  transition: 0.3s;
}
.ca-sec-primary-3 span {
  transition: 0.3s;
}
.ca-sec-primary-3:hover span {
  background: #2b5dac;
  transition: 0.3s;
}
.ca-sec-primary-3:hover:after {
  transform: scale(1.1);
  transition: 0.3s;
}

.ca-btn-primary-3 span {
  background: #2b5dac;
  height: 32px;
  width: 32px;
  display: inline-block;
  line-height: 32px;
  border-radius: 50%;
  text-align: center;
  margin-left: 6px;
  transition: 0.3s;
}
.ca-btn-primary-3 span i {
  font-size: 20px;
  line-height: 20px;
  transform: translateY(2px);
}

.ca-btn-cta-3 .cta-btn:hover {
  color: #fff;
}

.ca-btn-cta-3 .cta-btn:hover span {
  color: #0e47a1;
  transition: 0.3s;
}

/* section title 3 */
.subtitle-bg-6:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #0e47a1;
  top: 9px;
  left: 12px;
}
.ca-sec-content-3 p {
  color: #5a5d63;
  font-size: 16px;
  line-height: 24px;
}

/* ======== Header Style 4 ========== */
.ca-main-menu-4 {
  text-align: center;
}
.ca-main-menu-4 ul > li {
  display: inline-block;
  position: relative;
}

.ca-main-menu-4 ul li > a {
  color: #5a5d63;
  padding: 0px 15px;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  transition: 0.3s;
}
.ca-main-menu-4 ul li:hover > a {
  color: #4ab9cf;
  transition: 0.3s;
}

.ca-main-menu-4 ul li .sub-menu {
  position: absolute;
  top: 105%;
  width: 180px;
  left: 0;
  background: #fff;
  text-align: left;
  padding: 16px 0;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
}
.ca-main-menu-4 ul li .sub-menu li {
  display: block;
}
.ca-main-menu-4 ul li .sub-menu li a {
  color: #333;
  display: block;
  padding: 10px 18px;
  transition: 0.3s;
}

.ca-main-menu-4 ul li .sub-menu li:hover > a {
  color: #4ab9cf;
  transition: 0.3s;
  padding-left: 26px;
}
.ca-main-menu-4 ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.ca-main-menu-4 ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ca-main-menu-4 ul li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.ca-main-menu-4 ul li a span {
  font-size: 12px;
  display: inline-block;
}
.ca-hero-4-btn {
  display: inline-block;
}
/* offcanvas menu 4 */
.ca-offcanvas-menu-4 ul li {
  position: relative;
}
.ca-offcanvas-menu-4 ul li > a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: #5a5d63;
}
.ca-offcanvas-menu-4 ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.ca-offcanvas-menu-4 ul .active > a {
  color: #4ab9cf;
}
.ca-offcanvas-menu-4 ul .active > .ca-menu-close4 {
  color: #fff;
  background: #4ab9cf;
}
.ca-offcanvas-menu-4 ul .active .ca-menu-close4 i {
  transform: rotate(90deg);
}
.ca-offcanvas-menu-4 ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ca-menu-close4 {
  position: absolute;
  right: 0;
  top: 6px;
  border: 1px solid rgba(1, 15, 28, 0.12);
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}

.ca-menu-close4 i {
  transition: 0.3s;
}
.ca-offcanvas-menu-4 ul li a span {
  display: none;
}

.ca-main-menu-4 ul > li:hover .ca-mega-menu {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  top: 100%;
}

.ca-main-menu-4 .ca-home-title {
  color: #333;
}

.icon span {
  height: 30px;
  width: 30px;
  border: 1px solid;
  display: block;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border-radius: 50px;
}

.icon {
  display: inline-block;
}

.ca-sm-single-item-4 {
  display: flex;
  align-items: center;
}

.ca-sm-single-item-4-content {
  margin-left: 15px;
}

/* Header 4 */
.header-area-3.stiky .header-4 {
  background-color: #ffffff38;
  padding: 20px 24px;
  border-radius: 87px;
  z-index: 9;
  position: relative;
  left: 0;
  right: 0;
  top: 24px;
}
.header-area-3.stiky.scroll-header .header-4 {
  box-shadow: none;
  top: 0;
  border-radius: 0;
  background: none;
}
.header-area-3.header-area-4.stiky.scroll-header {
  background-color: #021013;
}
.ca-main-menu-4 ul li a {
  color: #fff;
  transition: 0.3s;
}

/* btn 4 */
.ca-btn-primary-4 span {
  background: #fff;
  color: #4ab9cf;
  transform: rotate(-45deg);
}
.ca-hero-4-btn .ca-btn-primary:after {
  background: #fff;
}

.ca-hero-4-btn:hover .ca-btn-primary-4 {
  color: #333 !important;
  transition: 0.3s;
}

.ca-hero-4-btn:hover .ca-btn-primary-4 span {
  background: #4ab9cf;
  color: #fff;
}

.ca-btn-primary-4 {
  transition: 0.3s;
}

.header-area-3.header-area-4.stiky.scroll-header
  .ca-btn-header
  .ca-btn-primary:after {
  background: #fff;
}

.header-area-3.header-area-4.stiky.scroll-header
  .ca-btn-header:hover
  .ca-btn-primary {
  color: #021013 !important;
}
.header-area-3.header-area-4.stiky.scroll-header
  .ca-btn-header:hover
  .ca-btn-primary
  span {
  background: #4ab9cf;
  color: #fff !important;
}

/* ===== SLIDER AREA CSS ============*/

/* ===== Slider Style 1 ======== */

.ca-hero-content-1 .ca-section-subtitle {
  transform: translateY(-400px);
  opacity: 0;
  visibility: hidden;
  transition: 1200ms;
}

.ca-hero-area-1.slick-active .ca-hero-content-1 .ca-section-subtitle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: 1200ms;
}

.ca-hero-content-1 .ca-slide-title-1 {
  transform: translateX(-550px);
  opacity: 0;
  visibility: hidden;
  transition: 1400ms;
}
.ca-hero-area-1.slick-active .ca-hero-content-1 .ca-slide-title-1 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition: 1400ms;
}
.ca-hero-content-1 p {
  transform: translateX(-550px);
  opacity: 0;
  visibility: hidden;
  transition: 1600ms;
}
.ca-hero-area-1.slick-active .ca-hero-content-1 p {
  visibility: visible;
  transform: translateX(0px);
  transition: 1600ms;
}
.ca-vd-py-text span {
  border-bottom: 1px solid #fff;
}
.ca-vd-py-text span {
  color: #ffff;
}
.ca-hero1-active {
  margin-bottom: 0 !important;
}
.ca-vid-content {
  display: flex;
  align-items: baseline;
}
/* slider animation  */
.ca-hero1-active {
  position: relative;
}

.ca-hero1-active .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.ca-hero1-active .ca-hero-area-1 .ca-img1 {
  height: 100%;
}
.ca-hero1-active .ca-hero-area-1 .ca-img2 img {
  height: 100% !important;
}

.ca-hero1-active .slick-list {
  overflow: inherit;
}

.ca-hero1-active .ca-hero-area-1 .ca-img1 {
  width: 85%;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.ca-hero1-active .ca-hero-area-1.slick-active .ca-img1 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
  animation: cssAnimation 8s 1 ease-in-out forwards;
}

/* 2 */
.ca-hero1-active .ca-hero-area-1 .ca-img2 {
  width: 50%;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  right: 0;
}
.ca-hero1-active .ca-hero-area-1.slick-active .ca-img2 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
  animation: cssAnimation 8s 1 ease-in-out forwards;
}
@keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}
@-webkit-keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}
/*  */

section.ca-hero-area-1 {
  position: relative;
  height: 704px !important;
  overflow: hidden;
}

.ca-img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  z-index: 1;
}

.ca-img2 {
  position: absolute;
  right: 0;
  width: 52%;
  object-fit: cover;
  top: 0;
  height: 100%;
}

.ca-img1 img {
  width: 80%;
}

.ca-img2 img {
  width: 100%;
}

.ca-hero-content-1 {
  position: relative;
  z-index: 1;
  color: #fff;
  top: 50%;
  left: 0;
}
.ca-hero1-active {
  margin-bottom: 0px;
}

.subtitle-bg-10:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #44496c;
  top: 9px;
  left: 12px;
}

.ca-slide-title-1 {
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
.ca-hero-content-1 p {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  line-height: 24px;
}
.ca-vd-ply-ic span {
  display: block;
  height: 36px;
  width: 36px;
  background: #44496c;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
}

/* btn animation */
.wrapper {
  display: inline-block;
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #44496c;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 92px;
  height: 92px;
  background: #502303;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -28px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
  top: -28px;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.ca-sli-btn-1 {
  display: flex;
  align-items: center;
}

.ca-btn-1 {
  margin-right: 16px;
}
.ca-vd-py-text {
  margin-left: 12px;
}

.ca-vd-py-text p {
  color: #fff;
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}

/* dot */
.ca-hero1-active .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #44496c;
  border-radius: 50px;
  display: inline-block;
  line-height: 12px;
  opacity: 0.5;
  position: relative;
}
.ca-hero1-active .slick-dots .slick-active button:after {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  border: 2px solid #44496c;
  border-radius: 50px;
  top: -6px;
  right: -6px;
}

.ca-hero1-active .slick-dots .slick-active button {
  background: #44496c;
  opacity: 1;
}

.ca-hero1-active {
  position: relative;
  z-index: 1;
}

.ca-hero1-active .slick-dots {
  position: absolute;
  right: -25%;
  bottom: 20px;
  z-index: 999;
}

.ca-hero-shape-1 {
  bottom: 60px;
  left: 0;
  z-index: 1;
  animation: move 7s linear infinite;
}

/* ========= Slider Style 2 ============ */
.slider-nav.sm-slider-img img {
  height: 100px;
  width: 100px;
}
.slider-nav.sm-slider-img .slick-list {
  /* background: #ffffff33; */
  height: 376px !important;
  width: 140px;
  padding: 20px;
}
.slider-nav.sm-slider-img {
  position: absolute;
  top: 277px;
  right: 60px;
  z-index: 9;
}
.shape-1-slider img {
  width: 100%;
  animation: move-forever 4s -3s linear infinite;
}
.shape-2-slider img {
  width: 100%;
  animation: move-forever 4s -3s linear infinite;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.sm-slider-img .slick-slide.slick-current.slick-active.slick-center img {
  border: 5px solid #fff;
}
.slider-2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-nav {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.slider-nav {
  margin-top: 20px;
}
.slider-nav .slick-slide {
  opacity: 0.6;
}
.slider-nav .slick-current {
  opacity: 1;
}

.ca-slider-heading {
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
}
.ca-slider-content-2 p {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  opacity: 0.8;
}
.slider-team-title {
  font-size: 24px;
  line-height: 24px;
}
.ca-slider-team {
  padding: 24px;
  width: 400px;
  background: #ffffff3b;
}
.ca-slider-team-img {
  width: 160px;
  margin-right: 20px;
}
.ca-slider-content-2 {
  z-index: 999;
  position: relative;
}
.slider-nav.sm-slider-img img {
  margin-bottom: 16px;
  cursor: pointer;
}
.ca-slider-2-team {
  display: flex;
}
.ca-slider-team-review .review-text {
  color: #dddddc;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
}
.shape-2-slider {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape-1-slider {
  bottom: 0;
  z-index: 1;
}
.shape-3-slider {
  left: 0;
  top: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.slider-text.slider-2 {
  background-position: bottom center;
}

.ca-play-btn span {
  background: #d11207;
  height: 50px;
  width: 50px;
  display: block;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-right: 12px;
}
.how-we-work {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  border-bottom: 1px solid #fff;
}
.ca-slider-team-review span.re-heading {
  color: #dadada;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.ca-slider-team-review span {
  color: #fc9c2c;
}

/* active */
.ca-slider-content-2 .ca-section-subtitle {
  transform: translateY(-100px);
  opacity: 0;
  visibility: hidden;
  transition: 1400ms;
}

.slider-2.slick-active .ca-slider-content-2 .ca-section-subtitle {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: 1400ms;
}
.ca-slider-content-2 .ca-slider-heading {
  transform: translateX(500px);
  opacity: 0;
  visibility: hidden;
  transition: 1300ms;
}
.slider-2.slick-active .ca-slider-content-2 .ca-slider-heading {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition: 1300ms;
}

.ca-slider-content-2 .slider-sub-content {
  transform: translatex(500px);
  opacity: 0;
  visibility: hidden;
  transition: 1300ms;
}
.slider-2.slick-active .ca-slider-content-2 .slider-sub-content {
  opacity: 1;
  visibility: visible;
  transition: 1300ms;
  transform: translateX(0);
}

.ca-slider-content-2 .ca-slider-2-btn {
  transform: translatex(500px);
  opacity: 0;
  visibility: hidden;
  transition: 1500ms;
}
.slider-2.slick-active .ca-slider-content-2 .ca-slider-2-btn {
  opacity: 1;
  visibility: visible;
  transition: 1500ms;
  transform: translateX(0);
}

.ca-slider-team {
  transform: translateY(130px);
  opacity: 0;
  visibility: hidden;
  transition: 1700ms;
}
.slider-2.slick-active .ca-slider-team {
  opacity: 1;
  visibility: visible;
  transition: 1700ms;
  transform: translateY(0);
}

/* ======= Slider Style 3 ========= */

.ca-slider-active-3 .next_arrow1 {
  color: #fff;
  width: 40px;
  height: 40px;
  background: #0e47a1;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  position: absolute;
  cursor: pointer;
  transition: 0.3s;
  right: 15%;
  top: 50%;
}

.ca-slider-active-3 .prev_arrow1 {
  color: #fff;
  position: absolute;
  z-index: 9;
  font-size: 16px;
  top: 44%;
  right: 15%;
  background: #0e47a1;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.ca-line-shape3 {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.ca-slider-3 {
  height: 784px;
}
.ca-hero-content-3 {
  padding-top: 230px;
}

.ca-slider-3-shape img {
  position: absolute;
  right: 0;
  width: 50%;
}
.ca-slider-top-shape-img img {
  position: absolute;
  z-index: -1;
}

/* slider dot */
.ca-slider-active-3 .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #becde4;
  border-radius: 50px;
  display: inline-block;
  line-height: 12px;
  transform: translateY(-3px);
}

.ca-slider-active-3 .slick-dots .slick-active button {
  background: #0e47a1;
}

.ca-slider-active-3 {
  position: relative;
  z-index: 1;
}

.ca-slider-active-3 .slick-dots {
  position: absolute;
  right: 0;
  top: -5%;
  z-index: 999;
  transform: rotate(90deg);
  left: -63%;
}

.ca-slider-active-3 .slick-dots .slick-active {
  background: #cfdaec;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  line-height: 30px;
  text-align: center;
}

.ca-hero-content-3.ca-sec-content-3 {
  position: relative;
  z-index: 2;
}

.ca-hero-content-3 .ca-section-subtitle {
  transform: translateY(-200px);
  opacity: 0;
  visibility: hidden;
  transition: 1300ms;
}

.ca-slider-3.slick-active .ca-hero-content-3 .ca-section-subtitle {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.ca-hero-content-3 .ca-slider-heading {
  transform: translateX(-400px);
  opacity: 0;
  visibility: hidden;
  transition: 1300ms;
}
.ca-slider-3.slick-active .ca-hero-content-3 .ca-slider-heading {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.ca-slider-3.slick-active .hero3-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero3-btn {
  transform: translateX(-500px);
  opacity: 0;
  visibility: hidden;
  transition: 1400ms;
}
.ca-hero-content-3 p {
  transform: translateX(-400px);
  opacity: 0;
  visibility: hidden;
  transition: 1300ms;
}
.ca-slider-3.slick-active .ca-hero-content-3 p {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.ca-slider-img-3 {
  right: 10px;
  bottom: 0;
}
.ca-slider-img-3 img {
  transform: translateX(350px);
  transition: 1400ms;
  opacity: 0;
  visibility: hidden;
}
.ca-slider-3.slick-active .ca-slider-img-3 img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ======= Slider Style 4 ========== */

.ca-header-4 {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 26px 24px;
  border-radius: 87px;
}
.ca-hero-4 {
  width: 100vw;
  height: 907px;
  background: #021013;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.ca-hero-4-content p {
  color: #fff;
  opacity: 0.8;
}

header.header-4 {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
}

.ca-hero-4-content {
  padding-top: 240px;
}
.ca-hero-4-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.ca-hero-4-shape {
  z-index: -1;
}

/* infinite circle */
.ca-circle-text {
  background: #4ab9cf;
  height: 100px;
  width: 100px;
  padding: 5px;
  border-radius: 50px;
  position: relative;
  margin-top: -50px;
  z-index: 1;
  margin: 0 auto;
  top: -50px;
}
.circle-text-animation {
  animation: rotate 9s linear infinite;
}

.circle-ic-4 {
  position: absolute;
  top: 32%;
  right: 0;
  left: 0;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ======= ABOUT AREA CSS =============*/

/* ======= About Style 1 ============= */
.ca-section-subtitle {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 8px 12px;
  padding-left: 22px;
}
.subtitle-bg-1:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #44496c;
  top: 9px;
  left: 12px;
}
.ca-section-title {
  font-size: 44px;
  line-height: 44px;
}
.ca-about-title {
  font-size: 44px;
  line-height: 52px;
}
.ca-about-desc p {
  text-align: left;
  float: right;
  color: #4a4a49;
  font-size: 16px;
  line-height: 24px;
}
.ca-counter-area p {
  color: #4a4a49;
  font-size: 16px;
  line-height: 16px;
}
.ca-counter-title {
  font-size: 32px;
  line-height: 32px;
  transition: 0.3s;
}
.ca-counter-bg {
  background: #f9f5f3;
  padding: 32px;
}
.ca-counter-area {
  border-bottom: 1px solid #e3dddb;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.ca-counter-area:last-child {
  border: navajowhite;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ca-about-ic {
  background: #fff2ec;
  height: 70px;
  width: 70px;
  border-radius: 50px;
  margin-right: 24px;
  line-height: 70px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ca-about-content p {
  color: #4a4a49;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
}
.ca-about-icon-box {
  border-bottom: 1px solid #e8e6e6;
  padding-bottom: 40px;
  margin-bottom: 32px;
}
.ca-about-img img {
  height: 464px;
}
.ca-about-icon-box:last-child {
  border: navajowhite;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ca-about-icon-box:hover .ca-about-ic {
  background: #44496c;
  transition: 0.3s;
  transform: rotateY(180deg);
}
.ca-about-ic img {
  transition: 0.3s;
}
.ca-about-icon-box:hover .ca-about-ic img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.ca-about-content .ca-title a {
  color: #1b0901;
  transition: 0.3s;
}
.ca-about-content .ca-title a:hover {
  color: #44496c;
  transition: 0.3s;
}

/* ======== About Style 2 =========== */
.ca-choose-item .ca-title {
  font-size: 20px;
  line-height: 20px;
}
.ca-choose-item p {
  font-size: 16px;
  line-height: 24px;
  color: #5a5a5a;
}
.ca-choose-item {
  padding-left: 25px;
  margin-bottom: 40px;
}
.ca-choose-item:after {
  position: absolute;
  content: "";
  background: #d11207;
  height: 100%;
  width: 6px;
  left: 0;
  top: 0;
}
.ca-about-2-icon {
  height: 48px;
  width: 48px;
  background: #fae7e6;
  line-height: 48px;
  text-align: center;
  border-radius: 50px;
  margin-left: 20px;
  margin-right: 16px;
}

.ca-about-2-content p {
  font-size: 16px;
  line-height: 16px;
  color: #5a5a5a;
}

.ca-about-2-num {
  color: #0c0504;
  font-weight: 700;
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding-top: 12px;
}
.ca-about-2-overlay {
  right: 0;
  top: 70px;
  z-index: 2;
}
.ca-about-2-img:after {
  position: absolute;
  content: "";
  background: #fff;
  height: 360px;
  width: 180px;
  top: 61px;
  left: 275px;
  z-index: 1;
}
.ca-port-2-icon span {
  height: 70px;
  width: 70px;
  background: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
}

.ca-port-2-icon {
  display: inline-block;
}
.ca-portfolio-2-overlay-content {
  top: 34%;
  left: 24px;
  right: 24px;
  transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
  background: #d112078a;
  text-align: center;
  padding: 24px;
  transition: 0.3s;
}
.ca-port-2-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  opacity: 0.8;
}
.ca-port-2-desg p {
  color: #fff;
  opacity: 0.8;
}
.ca-port-2-desg p {
  color: #fff;
  opacity: 0.8;
}
.ca-portfolio-2-item:hover .ca-portfolio-2-overlay-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ca-portfolio-2-overlay-content.pitem2 {
  top: 25px;
}
.item-1-img {
  height: 320px;
}

.item-1-img img {
  object-fit: cover;
}
.ca-portfolio-2-item img {
  height: 670px;
}
.ca-port-2-icon span img {
  height: 24px;
}
.ca-port-2-icon:hover span {
  transform: rotate(45deg);
  transition: 0.3s;
}

.ca-port-2-icon span {
  transition: 0.3s;
}

.ca-portfolio-2-item {
  overflow: hidden;
}

.ca-portfolio-2-item img {
  transition: 0.3s;
}

.ca-portfolio-2-item:hover img {
  transform: scale(1.1);
}
/* ======= About Style 3 =========== */
.ca-ab-content3 {
  margin-left: 30px;
}
.ca-about-item3 {
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 20px;
}
.ca-about-item3 p {
  color: #5a5d63;
}
.ca-about-item3:after {
  position: absolute;
  content: "";
  background: #44496c;
  border-radius: 5px;
  height: 100%;
  width: 6px;
  left: 0;
  top: 0;
}
.ca-about-content-3 .ca-section-title {
  line-height: 52px;
}
.ca-item-ch-title {
  font-size: 16px;
  line-height: 16px;
  color: #00060f;
  font-weight: 600;
}

.ca-ab-sngle-item-ic span {
  height: 20px;
  width: 20px;
  background: #e7edf6;
  border-radius: 50px;
  display: block;
  line-height: 20px;
  font-size: 10px;
  text-align: center;
  color: #0e47a1;
  margin-right: 8px;
}

.ca-ab-sngle-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.ca-ab-item-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ca-abo-single-item {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.ca-abo-hover-item {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-70%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.ca-abo-hover-title {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  padding-top: 16px;
  color: #fff;
}

.ca-abo-icon span {
  background: #fff;
  height: 60px;
  width: 60px;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
}

.ca-abo-content p {
  font-size: 18px;
  line-height: 18px;
  padding-top: 12px;
  color: #fff;
  opacity: 0.8;
}
.ca-abo-single-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #0e47a1;
  transform: translateX(-100%);
  transition: 0.3s;
}
.ca-abo-single-item:hover::after {
  transform: translateX(0px);
  transition: 0.3s;
  right: 0;
}

.ca-abo-single-item:hover .ca-abo-hover-item {
  transition: 0.3s;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.lar-img-1 {
  height: 330px;
  object-fit: cover;
}
.sm-img-1 {
  height: 220px;
  object-fit: cover;
}
.sm-img-2 {
  height: 186px;
  object-fit: cover;
}
.lar-img-2 {
  height: 364px;
  object-fit: cover;
}

/* ======= About Style 4 ========== */
.ca-about-content-4 p {
  color: #5d6061;
  transition: 0.3s;
  line-height: 24px;
}
.ca-service-4-list ul li span {
  height: 20px;
  width: 20px;
  background: #4ab9cf;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 9px;
  border-radius: 50px;
  margin-right: 8px;
}

.ca-service-4-list ul li {
  color: #5d6061;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 16px;
}

.ca-service-4-list ul li:last-child {
  margin-bottom: 0;
}
.ca-counter-servic-4 {
  display: flex;
}
.ca-counter-area-4 {
  padding-right: 40px;
  margin-right: 40px;
  position: relative;
}
.ca-counter-area-4 {
  height: 64px;
  border-right: 2px solid #edf8fa;
  right: 0;
  top: 0;
}
.ca-counter-area-4 .ca-counter-title {
  color: #021013;
}
.ca-counter-area-4 p {
  color: #5d6061;
}
.ca-counter-area-4:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.ca-counter-area-4:last-child {
  background: none;
}

.ca-about-4-sm-img img {
  height: 300px;
  width: 300px;
  object-fit: cover;
  float: left;
  margin-top: -600px;
  border-radius: 7px;
}

.ca-about-4-img img {
  border-radius: 7px;
  height: 450px;
  width: 470px;
  object-fit: cover;
  float: right;
}
.space-mt {
  margin-top: 120px;
}
.ca-about-4-img {
  margin-right: 50px;
}
.ca-about-4-top-img img {
  height: 300px;
  width: 300px;
  object-fit: cover;
  border-radius: 7px;
}

.ca-about-4-top-img {
  top: -120px;
}

.ca-expericence-4 {
  position: absolute;
  right: 86px;
  top: -80px;
  transform: translateY(3px);
}

.ca-expericence-4 {
  display: flex;
  align-items: center;
}

.ca-right-border:after {
  position: absolute;
  content: "";
  height: 48px;
  width: 2px;
  background: #4ab9cf;
  top: -84px;
  left: 317px;
  border-radius: 8px;
}

.ca--about-sm-img img {
  height: 300px;
  width: 300px;
  float: left;
  margin-top: -600px;
}

/* new about 4 img style */

.ca-ab-4-img img {
  border-radius: 7px;
}

.ca-ab-sm-img {
  height: 300px;
  width: 300px !important;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.ca-ab-lng-img {
  margin-top: -180px;
  height: 450px;
  width: 470px !important;
  object-fit: cover;
  margin-left: 100px;
}

.ca-ab-counter-4 {
  position: absolute;
  right: 19%;
  top: 0;
  z-index: 2;
}

.ca-ab-counter-4 {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  border-left: 2px solid #4ab9cf;
  padding-left: 10px;
}

.ca-ab-counter-4 p {
  margin-left: 12px;
}
/* ======= SERVICE AREA CSS ===========*/

/* ======= SERVICE Style 1 ============*/
.subtitle-bg-2:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #44496c;
  top: 9px;
  left: 12px;
}
.ca-sec-content p {
  font-size: 16px;
  line-height: 24px;
  color: #4a4a49;
}
.ca-service-content p {
  color: #4a4a49;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
}
.read-more {
  font-size: 16px;
  line-height: 16px;
  color: #1b0901;
  font-weight: 700;
  transition: 0.3s;
}

.read-more span {
  display: inline-block;
  color: #1b0901;
  font-size: 16px;
  line-height: 16px;
  margin-left: 4px;
  transition: 0.3s;
}
.ca-title.ca-title-2 a {
  color: #1b0901;
  transition: 0.3s;
  font-weight: 700;
}
.ca-about-icon {
  position: relative;
}

.ca-num {
  position: absolute;
  top: 14px;
  right: 0;
}

.overly-num {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.ca-ser-icon-box {
  transition: 0.3s;
}

.ca-ser-icon-box::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 0%;
  width: 100%;
  background-color: #44496c;
  transition: 0.3s;
  z-index: -1;
  border-radius: 7px;
}
.ca-ser-icon-box:hover:after {
  height: 100%;
}

.ca-ser-icon-box:hover .ca-about-ic {
  background: #fff;
  transform: rotateY(180deg);
  transition: 0.3s;
}
.ca-ser-icon-box:hover .ca-service-content h4 {
  color: #fff;
  transition: 0.3s;
}
.ca-ser-icon-box:hover .ca-service-content p {
  color: #fff;
  transition: 0.3s;
  opacity: 0.8;
}
.ca-ser-icon-box:hover .read-more,
.ca-ser-icon-box:hover .read-more span {
  color: #fff;
  transition: 0.3s;
}
.ca-ser-icon-box:hover .overly-num {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.ca-shape {
  z-index: -1;
  top: 50px;
  margin-left: -30px;
  animation: move 7s linear infinite;
}
.ca-shape.ca-test-shape {
  margin-left: 30px;
}
.ca-service-shape {
  z-index: -1;
  right: 0;
  bottom: 30px;
  animation: move 7s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(-20%);
  }
}

/* ======== Working Style ========== */

.subtitle-bg-7:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #fff;
  top: 9px;
  left: 12px;
}

.ca-working-section-3 p {
  color: #cccdcf;
}

.ca-work-ic-box {
  padding: 24px 20px;
  border: 1px solid #191f27;
  transition: 0.3s !important;
}

.ca-work-ic-box-img span {
  height: 50px;
  width: 50px;
  background: #33383f;
  display: block;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
}

.ca-work-ic-box-content p {
  color: #cccdcf;
}

.ca-work-ic-box:hover {
  background: #191f27;
  transition: 0.3s;
}

/* ======= CONTACT AREA CSS =======*/

/* ======= CONTACT Style 1 ======= */
.ca-contact-shape-1 {
  position: absolute;
  right: 0;
  z-index: 9;
  animation: moveRightToLeft 4s ease-in-out infinite;
}
.ca-contact-shape-2 {
  position: absolute;
  right: 0;
  z-index: 9;
  bottom: 0;
  animation: moveRightToLeft 4s ease-in-out infinite;
}

@keyframes moveRightToLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.ca-contact .subtitle-bg-1 {
  background: #fff;
}
.ca-contact p {
  color: #4a4a49;
}

input[type="text"],
input[type="file"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
input[type="phone"],
select,
textarea {
  outline: none;
  height: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 16px;
  color: #4a4a49;
  border: 0;
  background: #fff;
  border-radius: 7px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  padding-left: 20px;
}

textarea {
  height: auto;
}

.ca-contact-from .nice-select {
  height: 52px;
  line-height: 52px;
  border: none;
  border-radius: 7px;
  padding-left: 20px;
  color: #4a4a49;
}

.ca-contact-from .current {
  font-size: 16px;
  line-height: 16px;
  color: #4a4949c7;
}

.ca-contact-from textarea {
  height: 140px;
}
.ca-contact-img {
  top: 0;
  left: -5px;
  height: 101%;
}
.ca-contact-img img {
  height: 100%;
}

.ca-contact-shape-img1 {
  position: absolute;
  right: 0;
  z-index: 1;
  width: 60%;
}

.ca-contact-shape-img1 img {
  position: relative;
  width: 100%;
}
.ca-contact-shape-img2 {
  position: absolute;
  z-index: -1;
}

.ca-contact {
  position: relative;
  z-index: 1;
}
.ca-contact {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ca-contact-from .nice-select:after {
  height: 8px;
  width: 8px;
}
.ca-contact-area {
  height: 700px;
}

.ca-contact-shape-img1 img {
  height: 890px;
}

/* ======= CONTACT Style 3 ========= */
.ca-contact-from-3 {
  padding: 32px;
}
.ca-contact-from-3 input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
select,
textarea {
  background: none;
  border: 1px solid #e5e6e7;
}

.ca-contact-from.ca-contact-from-3 input {
  border: 1px solid #e5e6e7;
  border-radius: 7px;
}
.ca-contact-from.ca-contact-from-3 textarea {
  border: 1px solid #e5e6e7;
  border-radius: 7px;
}
.ca-contact-from-3 .nice-select {
  background: none;
  border: 1px solid #e5e6e7;
}
.ca-location-icbox-img span {
  background: #e7edf6;
  height: 50px;
  width: 50px;
  display: block;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
}
.ca-location-icbox {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 24px 10px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 0.3s;
  min-height: 140px;
  cursor: pointer;
}
.ca-location-icbox-text {
  transition: 0.3s;
}
.ca-location-icbox-img {
  margin-right: 20px;
}
.ca-location-icbox-img span i {
  color: #44496c;
  font-size: 16px;
}
.ca-location-icbox-text p {
  color: #5a5d63;
  font-size: 16px;
  line-height: 26px;
  transition: 0.3s;
}
.ca-location-icbox-text a {
  font-size: 16px;
  line-height: 30px;
  transition: 0.3s;
  color: #5a5d63;
}
.ca-location-icbox:hover {
  background: #44496c;
  transition: 0.3s;
}
.ca-location-icbox:hover .ca-location-icbox-img span {
  background: #fff;
  transition: 0.3s;
}
.ca-location-icbox-img span img {
  transition: 0.3s;
}
.ca-location-icbox:hover .ca-location-icbox-img span img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.ca-location-icbox:hover .ca-location-icbox-text .ca-title {
  color: #fff;
  transition: 0.3s;
}

.ca-location-icbox:hover .ca-location-icbox-text p {
  transition: 0.3s;
  color: #fff;
  opacity: 0.8;
}
.ca-location-icbox:hover .ca-location-icbox-text a {
  transition: 0.3s;
  color: #fff;
  opacity: 0.8;
}

/* ======= CONTACT Style 4 =========== */
.ca-blo-4-title {
  font-size: 20px;
  line-height: 28px;
}
.ca-work-content span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #5d6061;
  transform: translateY(2px);
  display: block;
}

.ca-work-time-box {
  display: flex;
  align-items: center;
}

.ca-work-ic span {
  display: inline-block;
  height: 24px;
  width: 24px;
  margin-right: 8px;
}
.ca-working-time {
  display: flex;
}
.ca-working-hour {
  border-bottom: 1px solid #dfe2e3;
  padding-bottom: 32px;
}
.ca-contact-4-icon span {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background: #e3f0f2;
  display: block;
  line-height: 50px;
  text-align: center;
  transition: 0.3s;
  margin-right: 16px;
}
.ca-contact-ic-box-4 {
  display: flex;
}
.ca-con-icon-box-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
}
.ca-contact-ic-box-4:hover .ca-contact-4-icon span {
  background: #4ab9cf;
  transition: 0.3s;
}

.ca-contact-ic-box-4:hover .ca-contact-4-icon span img {
  filter: brightness(0) invert(1);
}

iframe.ca-map {
  height: 100%;
  width: 470px;
}

.ca-contact-4-content p {
  color: #5d6061;
  font-size: 16px;
  line-height: 1;
}

.ca-contact-content-4 p {
  color: #5d6061;
}
/* ======= CONTACT Style 2 ========= */

.ca-contact-from-2 {
  padding: 32px;
  margin-right: 50px;
}
.ca-contact-title-2 {
  font-size: 24px;
  line-height: 24px;
}
.ca-contact-content-2 p {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 26px;
}
.ca-contact-area-2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ca-contact-from-2 input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
select,
textarea {
  background: #fff;
  border-radius: 0;
  border: none;
}

.ca-contact-from-2 .nice-select {
  height: 52px;
  line-height: 52px;
  border: none;
  padding-left: 20px;
  color: #4a4a49;
  border-radius: 0;
}

/* new map */
.ca-location-item img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.ca-top-lc img {
  height: 32px;
}

.ca-top-lc {
  position: absolute;
  top: -32px;
  transition: 0.3s;
}
.ca-location-item:hover .ca-top-lc {
  opacity: 0;
  transition: 0.3s;
}
.ca-lc-box {
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  color: #5a5a5a;
  top: -150px;
  position: relative;
  left: 25px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.ca-location-item:hover .ca-lc-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: 0.3s;
}

.ca-lca-1 {
  right: 15px;
  top: 44px;
}
.ca-lca-2 {
  top: 217px;
  right: 80px;
}
.ca-lca-3 {
  right: 32px;
  top: 425px;
}
.ca-lca-4 {
  top: 90px;
  left: 243px;
}

.ca-lca-6 {
  top: 350px;
  left: 71px;
}
.ca-lca-5 {
  top: 15px;
  left: 88px;
}

/* ========= CTA AREA CSS ===========*/

/* ========= CTA Style 2 ============ */
.ca-cta-2 {
  padding: 80px 60px;
  padding-bottom: 50px;
  padding-top: 70px;
}
.ca-cta-area-2 {
  margin-bottom: -178px;
  z-index: 9;
}
.ca-btn-cta-2 .ca-btn-primary span {
  background: none;
  transform: rotate(-45deg);
  width: 20px;
}
.c-shape-1 {
  left: 53%;
  bottom: 0;
}
.c-shape-2 img {
  height: 320px;
  width: 450px;
  transition: 0.3s;
}

.c-shape-2 {
  bottom: 0;
}
.ca-cta-area-2:hover .c-shape-2 img {
  transform: scale(1.1);
}

.ca-btn-cta-2 .ca-btn-primary:hover {
  background: #fff;
  color: #d11207 !important;
}

.ca-btn-cta-2 .ca-btn-primary:after {
  background: #fff;
}
.ca-btn-primary:hover span {
  transform: rotate(0deg);
  transition: 0.3s;
}

.ca-btn-primary span {
  transition: 0.3s;
}
.ca-btn-cta-2 .ca-btn-primary span {
  width: inherit;
}

/* ======= CTA Style 3 ========== */
.ca-btn-cta-3 {
  margin: 0;
  padding: 0;
}
.ca-btn-cta-3 .ca-btn-primary-3 {
  color: #0e47a1;
}
.ca-btn-cta-3 .ca-btn-primary-3 span {
  background: #cfdaec;
  color: #2b5dac;
}
.ca-cta-shape3 {
  left: 50%;
  top: 0;
  animation: move 7s linear infinite;
}
.ca-btn-cta-3:hover .ca-btn-primary {
  color: #fff;
}

/* ======== CTA Style 4 ========== */

.ca-btn-cta-4 span {
  background: #4ab9cf;
  color: #fff;
  transition: 0.3s;
}

/* new  */
iframe.ca-map-4 {
  width: 100%;
  height: 348px;
  display: block;
}

.container.theme-bg-4 {
  padding: 0;
}

.ca-cta-content-4 {
  padding: 78px 48px;
}

/* ======== FOOTER AREA CSS ==========*/

/* ======== FOOTER Style 1 ========== */
.ft-shape-1 {
  top: 40%;
  left: 0;
  animation: move 7s linear infinite;
  z-index: -1;
}
.ft-shape-2 {
  bottom: 30px;
  right: 0;
  animation: move 7s linear infinite;
  z-index: -1;
}

.ft-shape-3 {
  left: 0;
  bottom: 26px;
  animation: move 7s linear infinite;
  z-index: -1;
}
.ft-shape-4 {
  bottom: 10px;
  left: 90px;
  animation: move 7s linear infinite;
  z-index: -1;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-1000deg);
  }
}
.cta-title-1 {
  font-size: 44px;
  line-height: 54px;
}

.ca-cta-area {
  padding-top: 48px;
  padding-bottom: 48px;
}
.ca-ft-content p {
  color: #4a4a49;
}
.ca-ft-area {
  padding-top: 48px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 28px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.ca-title a {
  font-size: 20px;
  line-height: 20px;
  transition: 0.3s;
  font-weight: 600;
  color: #fff;
}
.ca-footer-menu ul li a {
  color: #4a4a49;
  font-size: 16px;
  display: block;
  padding-bottom: 15px;
  transition: 0.3s;
}
.ca-footer-menu ul li a:hover {
  color: #44496c;
  transition: 0.3s;
  padding-left: 4px;
}
.border-1 {
  border-top: 1px solid #d1cecc;
}

.ca-footer-email-sub input[type="email"] {
  outline: none;
  height: 48px;
  border-radius: 30px;
  display: block;
  padding: 16px 20px;
  border: none;
  background: #ffefe8;
  width: 100%;
}

.ca-footer-email-sub button {
  border: none;
  width: 100%;
  margin: 20px 0;
}

.copry-right-text {
  color: #4a4a49;
}
.copy-right-menu ul li {
  display: inline-block;
  padding-left: 16px;
  margin-left: 16px;
  position: relative;
}
.copy-right-menu ul li:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 2px;
  background: #4a4a49;
  opacity: 0.2;
  left: 0;
  top: 6px;
}
.copy-right-menu ul li:first-child:before {
  display: none;
}

.copy-right-menu ul li a {
  color: #4a4a49;
}
.copy-right-menu ul {
  margin-right: 14px;
}

.ca-footer-social ul li {
  display: inline-block;
}
.ca-footer-social ul li a {
  display: block;
}
.ca-footer-social ul li a {
  display: block;
  height: 30px;
  width: 30px;
  background: #ffefe7;
  line-height: 30px;
  text-align: center;
  color: #44496c;
  font-size: 14px;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.3s;
}
.ca-footer-social ul li a:hover {
  background: #44496c;
  color: #fff;
  transition: 0.3s;
  border: 1px solid #fff;
}

/* scroll top 1 */
#topBtn {
	    animation: upDown 0.8s 
ease-in-out infinite;
  position: fixed;
  width: 40px;
  height: 40px;
  background: #44496c;
  bottom: 40px;
  right: 25px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  z-index: 9;
}
/* ======== FOOTER Style 2 =========== */
.ca-footer-email-sub-2 input[type="email"] {
  border-radius: 0;
  background: #f1dbda;
}
.ca-ft-area-2 {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.ca-footer-social-2 ul li a {
  background: #f2dfde;
  color: #d11207;
  transition: 0.3s;
}
.ca-footer-social-2 ul li a:hover {
  background: #d11207;
  color: #fff;
  transition: 0.3s;
}
button.ca-btn-primary.ca-btn-primary-2 span {
  width: auto;
}
#topBtn2 {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #d11207;
  bottom: 40px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  z-index: 9;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
}

.ca-ft-content-2 p {
  color: #5a5a5a;
}

.ca-footer-menu-2 ul li a {
  color: #5a5a5a;
  transition: 0.3s;
}
.ca-footer-menu-2 ul li a:hover {
  color: #d11207;
  transition: 0.3s;
  padding-left: 4px;
}
/* ======== FOOTER Style 3 ========== */

.ca-footer-email-sub-3 input[type="email"] {
  background: #e7edf6;
}
.ca-ft-content-3 p {
  color: #5a5d63;
}
.ca-footer-social-3 ul li a {
  background: #e7edf6;
  color: #44496c;
  transition: 0.3s;
}
.ca-footer-social-3 ul li a:hover {
  background: #44496c;
  color: #fff;
  transition: 0.3s;
}
.blog_details ul li a:hover {
  background: #44496c;
}

.blog_details ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.ca-footer-menu-3 ul li a:hover {
  color: #0e47a1;
}
.copy-right-menu.pt-24 {
  text-align: end;
}
#topBtn3 {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #0e47a1;
  bottom: 40px;
  right: 50px;
  border-radius: 50px;
  z-index: 9;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
}

/* ========= FOOTER Style 4 ============ */
.ca-footer-social-4 ul li a {
  background: #e7f3f6;
  color: #021013;
  transition: 0.3s;
}
.ca-footer-social-4 ul li a:hover {
  background: #4ab9cf;
  color: #fff;
  transition: 0.3s;
}

#topBtn4 {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #4ab9cf;
  bottom: 40px;
  right: 50px;
  border-radius: 50px;
  z-index: 9;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
}
.ca-footer-menu-4 ul li a {
  color: #5d6061;
}

.ca-footer-menu-4 ul li a:hover {
  color: #4ab9cf;
  padding-left: 4px;
}
.ca-footer-4.widget-1 p {
  color: #5d6061;
}
.ca-ft-content-4 p {
  color: #5d6061;
}

.copry-right-text-4 {
  color: #5d6061;
}
.copy-right-menu-4 ul li a {
  color: #5d6061;
}

.ca-footer-4-shape {
  right: 0;
  top: 0;
  animation: moveRightToLeft 4s ease-in-out infinite;
}

/* ========= breadcrumb ===========*/

.ca-breadcrumb-title {
  color: #fff;
  font-size: 55px;
  line-height: 64px;
  font-weight: 600;
}

.it-breadcum-link a {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
}

.it-breadcum-link {
  padding-top: 10px;
  color: #fff;
}

.it-breadcum-link span {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  margin: 0 8px;
}

.it-breadcum-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bre-sh-2 {
  left: 0;
  bottom: 0;
  z-index: -1;
}
.bre-sh-1 {
  z-index: -1;
}

/* ======== about inner page ===========*/

.ca-ab-iner-img img {
  border-radius: 7px;
}
.ca-ab-iner-img-2 {
  margin-top: 60px;
}
.ca-iner-review-text {
  padding: 32px;
  color: #fff;
  border-radius: 7px;
  border: 4px solid #fff;
  bottom: 107px;
  left: 160px;
  z-index: 1;
  background: #44496c;
}

/* choose us section  */
.ca-iner-ch-box-content {
  background: #fff;
  padding: 16px 16px;
  border-radius: 7px;
  border-left: 6px solid #0e47a1;
}
.ca-iner-ch-box-content .ca-title {
  font-size: 20px;
  line-height: 20px;
}
.ca-iner-ch-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ca-choose-img img {
  border-radius: 7px;
}
.ca-ch-butom-img {
  right: -50px;
  z-index: 11;
  bottom: -48px;
  border: 4px solid #fff;
  border-radius: 7px;
}

.ca-choose-img > img {
  margin-right: 50px;
}
.ca-choose-content3 {
  margin-right: 50px;
}

.ca-value-cbox {
  padding: 24px 46px;
  transition: 0.3s;
}
.ca-value-cbox span {
  transition: 0.3s;
}
.ca-value-cbox .ca-counter-title {
  color: #00060f;
  transition: 0.3s;
}
.ca-value-cbox .ca-counter-title span {
  color: #00060f;
  transition: 0.3s;
}
.ca-value-cbox {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.ca-value-cbox:hover {
  background: #0e47a1;
  transition: 0.3s;
}

.ca-value-cbox:hover .ca-counter-title {
  color: #fff;
  transition: 0.3s;
}

.ca-value-cbox:hover .ca-counter-title span {
  color: #fff;
  transition: 0.3s;
}

.ca-value-cbox .v-text {
  color: #4a4a49;
  transition: 0.3s;
}
.ca-value-cbox:hover .v-text {
  color: #e7edf6;
  transition: 0.3s;
}
.ca-team-iner-content {
  background: #fff;
  padding: 16px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-left: 20px;
  margin-right: 20px;
}
.ca-team-iner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -43px;
  position: relative;
  z-index: 1;
}
.ca-team-iner-img img {
  border-radius: 7px;
  overflow: hidden;
  transition: 0.3s;
}
.ca-team-iner-title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #00060f;
  padding-bottom: 10px;
}

.ca-team-iner-heading span {
  color: #5a5d63;
  font-size: 16px;
  line-height: 16px;
}

.ca-team-iner-share a {
  background: #00060f;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: block;
  line-height: 37px;
  text-align: center;
  transition: 0.3s;
}

.ca-team-iner-social ul li a span {
  background: #f8f9fa;
  height: 36px;
  width: 36px;
  display: block;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
  color: #00060f;
  transition: 0.3s;
  transform: translateX(80px);
  opacity: 0;
  visibility: hidden;
}

.ca-team-iner-social ul li {
  margin-bottom: 10px;
}
.ca-team-iner-social ul li:last-child {
  margin-bottom: 0;
}
.ca-team-iner-social {
  position: absolute;
  top: 40px;
  right: 30px;
}

.ca-team-iner-social ul li a span:hover {
  background: #0e47a1;
  color: #fff;
  transition: 0.3s;
}

.ca-team-inner:hover .ca-team-iner-social ul li a span {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.ca-team-inner:hover .ca-team-iner-share a {
  background: #0e47a1;
  transition: 0.3s;
}

/* service inner page  */
.ca-ser-ic {
  background: #e1e7f1;
}
.overly-num2 {
  color: #ecedee;
  opacity: 1;
  visibility: visible;
}

.ca-service-content-iner .ca-title a {
  color: #00060f;
  transition: 0.3s;
}
.ca-service-content-iner p {
  color: #5a5d63;
  transition: 0.3s;
}

.ca-service-content-iner .read-more {
  color: #00060f;
  transition: 0.3s;
}

.ca-ser-icon-box-2::after {
  background-color: #0e47a1;
}

/* pagination */

.theme-pagination ul li {
  margin: 0 5px;
}

.theme-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-pagination ul li {
  display: inline-block;
}

.theme-pagination ul li a {
  background: #e7edf6;
  height: 50px;
  width: 50px;
  display: block;
  line-height: 50px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 600;
  color: #00060f;
  font-size: 16px;
}

.theme-pagination ul li span {
  background: #e7edf6;
  height: 50px;
  width: 50px;
  display: block;
  line-height: 50px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 600;
  color: #00060f;
  font-size: 16px;
}
.theme-pagination ul li span.current {
  background: #44496c;
  color: #fff;
}

.theme-pagination ul li a.active {
  background: #44496c;
  color: #fff;
}
.theme-pagination ul li a:hover {
  background: #44496c;
  color: #fff;
  transition: 0.3s;
}
.theme-pagination {
  margin-top: 18px;
}

/* contact page css */
.ca-contact-inner .ca-title {
  font-size: 22px;
  line-height: 30px;
}
.ca-contact-inner .ca-location-icbox-text p {
  font-size: 16px;
  line-height: 30px;
}

/* contact inner  */
.ca-con-rep-form {
  padding: 60px 100px;
}
.ca-con-rep-form .ca-title {
  font-size: 32px;
  line-height: 32px;
}

.ca-con-rep-form .nice-select.wide.ca-select {
  height: 56px;
}
.contact-page__google-map {
  width: 100%;
  height: 700px;
}
.ca-radion-btn {
  text-align: start;
}

.ca-radion-btn input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #0e47a1;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
  margin-right: 12px;
}

.ca-cmt-from .nice-select:after {
  height: 8px;
  width: 8px;
}
.ca-cmt-from .nice-select.wide.ca-select:focus {
  outline: none;
}

.ca-cmt-from .nice-select.wide.ca-select .current {
  color: #5a5d63;
}
/* Change border color on hover */
.ca-radion-btn input[type="radio"]:hover {
  border-color: #0e47a1;
}

.ca-radion-btn input[type="radio"]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

.ca-radion-btn input[type="radio"]:checked::before {
  background: #0e47a1;
}

.ca-radion-btn {
  display: flex;
  align-items: center;
}
.ca-conatct-form1 textarea {
  margin-bottom: 0;
}

.ca-radion-btn {
  margin-bottom: 32px;
}
.ca-radion-btn label {
  color: #5a5d63;
  font-size: 16px;
  line-height: 30px;
}

/* new */
.ca-iner-one .accordion-button span {
  background: #0e47a1;
  height: 36px;
  width: 36px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.ca-iner-one .accordion-button.collapsed span {
  transform: rotate(-90deg);
  transition: 0.3s;
}

.ca-iner-one .accordion-button.collapsed span {
  background: #e7edf6;
  transition: 0.3s;
  color: #0e47a1;
}

.ca-iner-one .accordion-button {
  padding-left: 60px;
}

.ca-iner-one .accordion-body {
  padding: 0;
  padding-left: 56px;
  padding-bottom: 20px;
  padding-right: 13px;
}
/* 404 page css */
.ca-eror-heading p {
  color: #5a5d63;
  font-size: 16px;
  line-height: 24px;
}

.ca-eror-heading .ca-section-title {
  font-size: 40px;
  line-height: 40px;
}

/* ======== preloader css ==========*/

.ctn-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}
.ctn-preloader .animation-preloader {
  z-index: 1000;
}
.ctn-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
/*   border-top-color: #048ec5; */
	border-top-color: #4a4a49;
  height: 150px;
  margin: 0 auto 3.5em auto;
  width: 150px;
}
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em "Outfit", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.ctn-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}
.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}
.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}
.ctn-preloader p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #3b3b3b;
}
.ctn-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.ctn-preloader .loader .row {
  height: 100%;
}
.ctn-preloader .loader .loader-section {
  padding: 0px;
}
.ctn-preloader .loader .loader-section .bg {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.ctn-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}
.ctn-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.ctn-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Outfit", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Outfit", sans-serif;
  }
}

/* Quote */
.quote {
  padding: 50px 0;
}
/* Marque Text */
.marque {
  background: black;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 65s linear infinite;
  font-size: 18px;
  color: white;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Modes Section */
section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  color: #1a1a1a;
}

.mode-card {
  border: none;
  border-radius: 16px;
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.mode-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.mode-card i,
.icon-box i {
  font-size: 36px;
  color: #44496c;
  margin-bottom: 15px;
}

.mode-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.mode-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  .mode-card {
    margin-bottom: 20px;
  }
}

.ca-ser-icon-box {
  cursor: pointer;
}

/* Specialtiy Section */
.speciality-section {
  padding: 60px 0;
  text-align: center;
}
.speciality-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
.speciality-section p {
  margin-bottom: 40px;
}
.speciality-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
  cursor: pointer;
}
.speciality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.speciality-card img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}
.speciality-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Services */
.card-custom {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #f8f9fa;
  margin: 0 auto 1rem auto;
}
.card-title {
  font-weight: 600;
  color: #1b1f3b;
  font-size: 1.5rem;
}
.icon-box i {
  margin-bottom: 0;
}

/* Map */
.map iframe {
  width: 100%;
  height: 250px;
}

/* Newsletter */
.news_form form {
  display: flex;
  gap: 30px;
}

/* Logo */
.ca-ft-logo img,
.ca-logo img,
.ca-offcanvas-logo img {
  max-width: 130px;
  border-radius: 15px;
}

/* Service */
.ca-contact.ser {
  padding: 0;
}
.why-choose-us .card-body {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.why-choose-us .card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-choose-us .card:hover {
  transform: translateY(10px);
  transition: all 0.3s;
}
.ser_text h3 {
  padding-bottom: 15px;
}
.ser_text p {
  padding-bottom: 20px;
}
.ser_ul {
  padding-bottom: 20px;
}
.ser_ul li {
  line-height: 30px;
  font-size: 18px;
  list-style: auto;
  margin-left: 25px;
}
.ser_vv .ca-location-icbox {
  min-height: auto;
  padding: 25px;
}

.ca-service-section .ca-about-ic i {
  color: #44496c;
  font-size: 22px;
}
.ca-header-top .ca-header-top-content i {
  color: #fff;
}

/* Blog */
.ca-blog-box-content {
  padding: 24px;
}
.ca-blog-box-content {
  padding: 24px;
}
.ca-b-meta {
  display: flex;
  margin-bottom: 20px;
}
.ca-blog-meta {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #1b0901;
}
.ca-meta-icon span i {
  display: block;
  line-height: 20px;
  margin-right: 8px;
  transition: 0.3s;
}

.ca-meta-title span {
  font-size: 16px;
  line-height: 16px;
  display: block;
}
.ca-blog-title a {
  font-size: 20px;
  line-height: 28px;
  color: #1b0901;
  transition: 0.3s;
}

.ca-blog-box-content p {
  color: #4a4a49;
  font-size: 16px;
  line-height: 24px;
}
.ca-blog-date {
  background: #1b0901;
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  transition: 0.3s;
}

.blg-date {
  display: block;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}
.ca-blog-date p {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  transition: 0.3s;
}
.ca-blog-box:hover .ca-blog-date {
  transform: rotateY(360deg);
  transition: 0.3s;
  background: #ff5e14;
}

.ca-blog-box:hover .ca-blog-title a {
  color: #ff5e14;
  transition: 0.3s;
}
.ca-blog-box:hover .read-more,
.ca-blog-box:hover .read-more span {
  color: #ff5e14;
  transition: 0.3s;
}

/* ============================================
                    BLOG Style 2
============================================ */

.ca-b-meta.ca-b-meta-2 {
  margin-bottom: 14px;
}
.ca-blog-box-content-2 p {
  padding-top: 10px;
  padding-bottom: 10px;
}

.subtitle-bg-4:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #d11207;
  top: 9px;
  left: 12px;
}
.ca-sec-content-2 p {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 24px;
}
.ca-blogimg-2 img {
  height: 100%;
  object-fit: cover;
  width: 170px;
}
.ca-blog-box-2 p {
  color: #5a5a5a;
}
.ca-team-img.ca-blogimg-2.ca-lar-img img {
  height: 268px;
}
.ca-blog-box-2:hover .read-more {
  color: #d11207;
  transition: 0.3s;
}
.ca-blog-box-2:hover .read-more span {
  color: #d11207;
  transition: 0.3s;
}
.ca-blog-box-2:hover .ca-blog-title a {
  color: #d11207;
  transition: 0.3s;
}
.ca-meta-title-2 span {
  color: #5a5a5a;
  font-size: 18px;
  line-height: 18px;
}
.ca-lar-img-2 img {
  height: 267px;
  object-fit: cover;
}

/* ============================================
                    BLOG Style 3
============================================ */
.ca-blog-date-3 {
  background: #44496c;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  position: absolute;
  right: 13px;
  top: 51%;
  z-index: 1;
  transition: 0.3s;
  font-size: 16px;
  line-height: 16px;
}

.blg-date-3 {
  color: #fff;
  transition: 0.3s;
}
.ca-blog-box-content-3 {
  padding-top: 30px;
}
.ca-blog-title-3 a {
  color: #00060f;
  transition: 0.3s;
  text-transform: capitalize;
}
.ca-blog-box-content-3 p {
  color: #5a5d63;
  transition: 0.3s;
}
.read-more3 {
  font-size: 16px;
  line-height: 16px;
  color: #00060f;
  font-weight: 700;
  transition: 0.3s;
}
.ca-blog-box-3:hover .ca-blog-title-3 a {
  color: #0e47a1;
  transition: 0.3s;
}
.ca-blog-box-3:hover .read-more3 {
  color: #0e47a1;
  transition: 0.3s;
}
.ca-blog-box-3:hover .ca-blog-date-3 {
  background: #0e47a1;
  transition: 0.3s;
}
.read-more3 span {
  margin-left: 4px;
  font-size: 16px;
  line-height: 16px;
}
.ca-blog-meta-3 span {
  color: #00060f;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: 0.3s;
}
.ca-meta-title a {
  color: #00060f;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: 0.3s;
}

/* ============================================
                    BLOG Style 4
============================================ */
.subtitle-bg-8:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  background: #021013;
  top: 9px;
  left: 12px;
}
.ca-blog-content-4 p {
  color: #5d6061;
  transition: 0.3s;
}

.ca-blog-box-content-4 {
  margin-left: 50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  border-radius: 7px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-top-right-radius: 0;
}

.ca-blog-box-4:hover .ca-blog-title a {
  color: #4ab9cf;
  transition: 0.3s;
}
.ca-blog-box-4 img {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}
.ca-blog-4-img img {
  overflow: hidden;
  border-radius: 7px;
  height: 350px;
  object-fit: cover;
}
.blog-4-readmore .read-more3 {
  color: #021013;
  transition: 0.3s;
}
.ca-blog-box-4:hover .blog-4-readmore .read-more3 {
  color: #4ab9cf;
  transition: 0.3s;
}
.ca-blog-4-img {
  border-radius: 7px;
  overflow: hidden;
}
.ca-blg-box-3:hover .ca-blog-box-content-3 {
  background: #44496c;
  transition: 0.3s;
}
.ca-blg-box-3:hover .ca-blog-title-3 a {
  color: #fff;
  transition: 0.3s;
}
.ca-blg-box-3:hover .ca-blog-box-content-3 p {
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}
.ca-blg-box-3:hover .read-more3 {
  color: #fff;
  transition: 0.3s;
}
.ca-blg-box-3:hover .ca-blog-meta-3 span {
  color: #fff;
  transition: 0.3s;
}
.ca-blg-box-3:hover .ca-blog-meta-3 a {
  color: #fff;
  transition: 0.3s;
}
.ca-blg-box-3:hover .ca-meta-icon span i {
  color: #fff;
}
.ca-team-box:hover .ca-team-img img {
  transform: scale(1.1);
  transition: 0.3s;
}
.ca-team-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Blog Details */
.ca-padding {
  padding: 24px 20px;
}
.ca-recent-post-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ca-recent-post-thumb img {
  height: 100px;
  width: 100px;
  border-radius: 7px;
  margin-right: 15px;
}
.ca-rec-post-date a {
  color: #5a5d63;
  font-size: 18px;
  line-height: 18px;
}
.ca-rec-post-date {
  display: flex;
  align-items: center;
}
.ca-rec-post-date span {
  margin-right: 4px;
}
.ca-rec-post-title a {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #00060f;
}
.ca-servic-cat {
  display: flex;
  margin-top: 20px;
}
.ca-servic-cat-item {
  display: flex;
  gap: 10px;
  height: 16px;
  align-items: center;
  border-right: 1px solid #5a5d63;
  padding-right: 16px;
  margin-right: 16px;
}
.ca-servic-cat-item:last-child {
  border: none;
}
.ca-blog-cat-ttitle p {
  color: #5a5d63;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  display: block;
}
.ca-blog-cat-ttitle p a {
  color: #5a5d63;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  display: block;
}

/* Breadcrumb */
section.ca-breadcrumb-area {
  background: url("../img/breadcrumb.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}
section.ca-breadcrumb-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  top: 0;
  opacity: 0.5;
}
.ca-breadcrumb-content {
  position: relative;
}

.ca-footer-area .ca-footer-menu li i {
    font-size: 12px;
    margin-right: 6px;
}
.ca-team-img img {
    height: 320px;
    object-fit: cover;
	transition: all 0.4s;
}
.ca-servic-thumb img {
    height: 500px;
    object-fit: cover;
}
.post-nav-next.text-right a, .post-nav-prev a {
    color: #000;
}
.post-nav-next.text-right a:hover{
	color: #fff !important;
}
.post-nav-prev a:hover{
	color: #fff !important;
}
input.wpcf7-form-control.wpcf7-submit {
    padding: 16px 30px;
	border: none;
}
.ca-cmt-from textarea {
    height: 150px;
}
.ca-footer-email-sub input.wpcf7-form-control.wpcf7-submit {
    margin: -10px 0 0 0;
	padding: 14px 30px;
}
.ca-footer-area .ca-footer-social ul li a {
    height: 35px;
    width: 35px;
    line-height: 35px;
}
@keyframes upDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}


/* Testimonial */
.section-header {
	text-align: center;
}
.slider-container {
	position: relative;
	overflow: hidden;
}
.slider-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
}
.slide {
	min-width: 100%;
	display: flex;
	gap: 30px;
	padding: 0 15px;
}
.testimonial {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 9%);
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    border: 1px solid #cccccc52;
}
.testimonial-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.quote-icon {
	margin-bottom: 4px;
}
.testimonial-text {
	font-size: 16PX;
	line-height: 26PX;
	color: #333;
	margin-bottom: 10px;
	font-style: italic;
	flex: 1;
	transition: all 0.4s;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}
.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #44496c;
	flex-shrink: 0;
}
.author-info h4 {
	font-size: 1rem;
	color: #333;
	margin-bottom: 5px;
	transition: all 0.4s;
}
.author-info p {
	font-size: 0.85rem;
	color: #666;
	transition: all 0.4s;
}
.slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}
.slider-dots {
	display: flex;
	gap: 10px;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}
.dot.active {
	background: #44496c;
	width: 30px;
	border-radius: 6px;
}
@media (max-width: 968px) {
	.slide {
		flex-direction: column;
	}

	.testimonial {
		min-height: auto;
	}
}
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
    }
    .testimonial {
        width: 100%;
        min-height: auto;
        padding: 30px 20px;
    }
    .testimonial:nth-child(2) {
        display: none;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}

.testimonial:hover .shape {
    opacity: .60;
	z-index: 999;
}
.testimonial:hover .testimonial-text {
	color: #fff;
}
.testimonial:hover .author-info h4{
	color: #fff;
}
.testimonial:hover .author-info p{
	color: #fff;
}
.quote-icon i{
	font-size: 14px;
	color: #ffc107;
	transition: all 0.4s;
}
.shape{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 500ms 
ease;
    transition: all 500ms 
ease;
    z-index: -1;
}
.testimonial:hover .quote-icon i {
    color: #fff;
}