* {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

:root {
  --primary-color: #0000ab;
  --secondary-color: #222222;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #e7ecfc;
  overflow-x: hidden !important;
}

/* nav */
/* .main-p{
  padding: 20px 0;
} */

.enquiry-area{
  position: relative;
}

.enquiry-area .popup {
    width:100%;
    height:100%;
    display:block;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index: 9999;
  }

  .enquiry-area .popup {
    background: rgb(20 20 13 / 79%);
  }

  .enquiry-area .popup-inner {
    width: 28%;
    background-color: #FFF9F9;
    border-radius: 21px 21px 40px 40px;
}

 .enquiry-area .popup-close {
    width: 25px;
    height: 27px;
    padding-top: 4px;
    /* display: inline-block; */
    position: absolute;
    top: 15px;
    right: 26px;
    transition: ease 0.25s all;
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: transparent;
    font-family: Arial, Sans-Serif;
    font-size: 30px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}


.text-area{
    width: 100%;
    height: 40px;
    border: 1px solid #B9A8A8;
    padding: 5px 10px;
    border-radius: 15px;
    outline: none;
    font-weight: 350;
    color: #555454;
}

.popup-inner {
    width: 70%;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(-50%, -50%);
}

.mobile-area {
    padding: 0 0 40px 0;
}

.mob-head h1 {
    text-align: center;
    background-color: #1c059e;
    padding: 5px 0;
    border-radius: 21px 21px 0 0;
    margin-bottom: 40px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    font-family: "MyCustomFont";
}

.mobile-inp-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
}

.mon-input {
    width: 100%;
    height: 40px;
    border: 1px solid #B9A8A8;
    padding: 5px 10px;
    border-radius: 15px;
    outline: none;
}

.sub-im {
    background-color: #D9D9D9;
    border-radius: 28px;
    padding: 5px 7px;
    outline: none !important;
    border: none;
    font-weight: 600;
    counter-reset: #444;
}
.sub-im:hover{
  background-color: #1f07a5;
  color: #fff;
}

.popup-close {
    width: 25px;
    height: 27px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 19px;
    right: 26px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: transparent;
    font-family: Arial, Sans-Serif;
    font-size: 25px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

.popup-close:hover {
    color: #dd0808;
}

/* home popup end*/

.nav-p {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 33px 0px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
  z-index: 999;
  /* height:30%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .prim_nav {
  
} */

.prim_nav.open .left_menu {
  transform: translateX(0px);
  opacity: 1;
  transition: all 300ms ease-in-out;
}

.prim_nav ul li a {
  color: #fff;
  text-transform: uppercase;
}

.prim_nav ul li a:hover {
  color: var(--primary-btn-color);
}

.left_menu {
  display: flex;
  padding-right: 45px;
  flex-grow: 1;
}

.left_menu li {
  padding: 0px 18px;
}

/* mega dropdown */
.left_menu > li {
  position: relative;
}

.left_menu > li:hover .mega_menu {
  transform: scale(1);
  visibility: visible;
}

.left_menu .mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 20px 15px 7px;
  margin-top: 10px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  min-width: 500px;
  transform: scale(0);
  visibility: hidden;
  transform-origin: left top;
  transition: all 400ms ease-in-out;
  z-index: 5;
}

.left_menu .mega_menu ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
}

.left_menu .mega_menu ul > li {
  padding: 0px 10px 13px;
  margin: 0px;
}

.left_menu .mega_menu ul > li a {
  position: relative;
  color: #5b5b5b;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  transition: all 200ms ease;
}

.left_menu .mega_menu ul > li a:hover {
  color: #c30000;
}

.left_menu .mega_menu ul > li a::after {
  content: "";
  position: absolute;
  display: block;
  margin: 0 auto;
  width: 0px;
  height: 1px;
  background-color: #c30000;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 200ms ease;
}

/* mega dropdown */

.left_menu .mega_menu ul > li a:hover::after {
  width: 100%;
}

.left_menu li:first-child {
  padding-left: 0px;
}

.left_menu li:last-of-type {
  padding-right: 0px;
  margin-left: auto;
}

.right_menu {
  display: flex;
  gap: 30px;
}

#close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.brand {
  padding-top: 10px;
  width: 8%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand img {
  width: 100%;
}

/* nav end*/

.nav-parent > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-nav {
  padding: 20px 0;
  width: 100%;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}

.nav-parent ul > li > a {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 8px;
  transition: all 0.4s ease 0s;
}

.nav-parent ul > li {
  transition: all ease 0.4s;
}

.nav-parent ul .new-hover:hover {
  background-color: var(--primary-color);
  transform: skew(-20deg);
}

.nav-parent ul .new-hover > a:hover {
  transform: skew(20deg);
}

.navbar-dropdown {
  cursor: pointer;
  position: relative;
  z-index: 100;
  transition: all ease 0.4s;
}

.hamburger {
  display: none;
  color: white;
}

.txt-5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.nav-parent ul .new-hover:hover {
  background-color: var(--primary-color);
  transform: skew(-20deg);
}

.logo2 {
  display: flex;
  justify-content: center;
}

.navbar-dropdown .fa-caret-down {
  margin-left: 7px;
}

.navbar-dropdown > .drop-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #ffffff;
  top: 38px;
  left: -57%;
  width: 240px;
  padding: 0px 0px;
  z-index: 111;
  transition: 0.4s all;
  transform: translateY(20px);
}

.navbar-dropdown ul > li {
  padding: 12px 21px;
  position: relative;
  text-align: center;
}

.navbar-dropdown ul > li > a {
  padding: 0 !important;
  font-size: 15px !important;
  color: #222222 !important;
  transition: all ease-in 0.3s;
}

.nav-parent ul li.navbar-dropdown:hover .drop-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.navbar-dropdown ul > li::after {
  background: var(--primary-color);
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  transition: all ease-in 0.3s;
  z-index: -1;
}

.navbar-dropdown ul > li:hover::after {
  width: 100%;
}

.navbar-dropdown ul > li:hover a {
  color: #ffffff !important;
}

.nav-parent ul li.navbar-dropdown .drop-menu li:hover {
  padding-left: 25px;
}

/* .nav-parent ul li.navbar-dropdown .drop-menu li a:hover {
  color: #ffffff !important;
} */

/* mobile-nav */

.mobile-btn {
  position: absolute;
  right: 300px;
  top: 0%;
  left: 89%;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-btn svg {
  font-size: 14px;
  color: #fff;
}

.mobile-display {
  transform: translateX(400px);
}
.mobile-nav {
  position: fixed;
  z-index: 1001;
  top: 0px;
  right: 0px;
  width: 350px;
  height: 100%;
  background-color: white;
  padding: 25px;
  text-align: center;
  transition: all 0.7s ease-in-out;
}

.side-menu-overlay {
  background-color: rgba(9, 16, 32, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.side-menu-overlay.active {
  opacity: 0.7;
  visibility: visible;
}

.mobile-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.mobile-navigation {
  text-align: left;
  padding-left: 0px;
  margin-bottom: 25px;
}
.mobile-navigation > li {
  margin-bottom: 20px;
}
.link {
  display: inline-block;
  text-align: left;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #444444;
}

.service_new {
  display: inline-block;
  text-align: left;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #444444;
}

.service_new svg {
  margin-left: 7px;
}

.mobile-dropdown {
  text-align: left;
  width: 100%;
  padding: 0px;
  height: 0px;
  overflow: hidden;
  transition: height 0.4s ease-out, paddding 0s ease-out;
}
.active_dropdown {
  height: 124px;
  padding: 12px 0px;
  overflow: hidden;
  transition: height 0.4s ease-out, paddding 0s ease-out;
}

.mobile-dropdown > li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: black;
  margin-bottom: 8px;
}
.mobile-dropdown > li a:before {
  position: relative;
  margin-right: 5px;
  bottom: 4px;
  display: inline-block;
  content: "";
  width: 7px;
  height: 1px;
  background-color: black;
}

.banner {
  position: relative;
  z-index: 10;
  background-image: url(../image/con-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
}

.logo {
  width: 94%;
}

.logo img {
  width: 100%;
}

.ban-txt {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ban-txt h2 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  text-shadow: -1px -1px 0 rgba(0, 0, 171, 0.4), 1px -1px 0 rgba(0, 0, 171, 0.4),
    -1px 1px 0 rgba(0, 0, 171, 0.4), 1px 1px 0 rgba(0, 0, 171, 0.4);
  margin-bottom: 0;
}

.gbl_heading {
  font-size: 30px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #191919;
}

.color {
  color: #0000ab;
}

.line {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 264px;
  height: 3px;
  background-color: var(--primary-color);
}

.div {
  position: absolute;
  width: 45px;
  height: 8px;
  border-radius: 15px;
  background-color: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.new-btn {
  overflow: hidden;
  position: relative;
  width: 211px;
  padding: 14px 6px;
  background-color: var(--primary-color);
  text-align: center;
  /* transform: skew(-20deg);
  transition: all 0.4s ease 0s; */
  border: none;
  margin-left: 88%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.new-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #6b8fe8;
  transition: all 0.5s ease-in-out;
  transform: translateX(-98%) translateY(-25%) rotate(154deg);
}

.new-btn:hover:after {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.btn-txt {
  z-index: 1;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* transform: skew(20deg); */
  /* transition: all 0.4s ease 0s; */
}

.owl-stage{
  transition: 0.5s;
}

/* start footer */

.f-logo {
  width: 43%;
}

.f-logo img {
  width: 100%;
}

.footer {
  padding: 100px 0px;
  background-image: url(../image/footer\ Bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.f-list {
  margin-top: 45px;
}

.f-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 20px;
}

.f-list li {
  margin-bottom: 25px;
}

.f-list li a svg {
  font-size: 20px !important;
  color: #0000ab !important;
  margin-right: 14px;
}

.list-parent {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.f-2 {
  width: 50%;
}

.f-2 h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
}

.f-2 h4::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #191919;
  top: 97%;
  left: 5%;
  transform: translateX(-50%);
}

.f2-list {
  margin-top: 20px;
  position: relative;
}

.f2-list::after {
  display: none;
  position: absolute;
  content: "";
  left: 77%;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: 1px;
  background-color: #444444;
}

.f2-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 20px;
}

.f2-list li {
  margin-bottom: 11px;
}

.f2-list li a svg {
  font-size: 19px !important;
  color: #0000ab !important;
  transform: rotate(48deg);
  margin-right: 14px;
}

.new-list::after {
  display: none !important;
}

.new-list h4 {
  margin-bottom: 20px !important;
}

.footer p{
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
  color: #282828;
}

.footer form {
  width: 78%;
  margin-top: 35px;
}

.email-div {
  border: 1px dashed #ffffff;
  display: flex;
}

.email-div input {
  width: 70%;
  background-color: #ffffff;
  padding: 15px 20px 15px 7px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: #4e4c4c;
}

.email-div input:focus {
  outline: none;
}

.sub-btn {
  width: 30%;
  background-color: #e60013;
  padding: 15px 12px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.fb-badge {
  width: 100%;
  height: 400px;
}

.fb-badge iframe {
  width: 100%;
  height: 100%;
}
.footer .row {
  padding-bottom: 47px;
  border-bottom: 1px solid #444444;
}

.font-2 {
  font-size: 20px !important;
}

.copyright {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}

.f-icon {
  width: 16%;
  display: flex;
  justify-content: space-between;
}

.copyright h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0;
}

.copyright h4 svg {
  color: #ff0404;
}

.icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #424242;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #222222;
  position: relative;
}

.icon::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 125%;
  content: "";
  width: 1px;
  height: 25px;
  background-color: #424242;
}

/* end footer */

/* start of floating-wp */

.floating-wp {
  position: fixed;
  bottom: 132px;
  left: 25px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

/* start of dial-pad */

.dial-pad {
  position: fixed;
  bottom: 40px;
  left: 25px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dial-icon {
  background-color: #0092ff;
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #0092ff;
}

.txt {
  font-size: 28px;
  color: #0092ff;
  font-weight: 600;
  font-family: "Dancing Script", cursive;
  display: inline-block;
  position: absolute;
  bottom: -29%;
}



/* start of slider */

/* .slide {
  margin: 100px 0;
}

.slide-img {
  width: 100%;
}

.slide-img img {
  width: 100%;
}

.slide .owl-carousel .owl-nav.disabled {
  display: block;
}

.slide .owl-dots {
  display: none !important;
}

.slide .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff !important;
  color: #ff0000 !important;
  border: 1px solid rgba(0, 52, 135, 0.65) !important;
}

.slide .owl-nav button.owl-prev {
  left: -5%;
}

.slide .owl-nav button.owl-next {
  right: -5%;
} */

/* start of motor */

/* .motor-div {
  text-align: center;
  margin-bottom: 100px;
}

.moto-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-2 {
  position: absolute;
  top: 2%;
  left: 86%;
  width: 13%;
}

.img-2 img {
  width: 100%;
}

.img-1 {
  width: 85%;
  margin: 0 auto;
}

.img-1 img {
  width: 100%;
}

.moto-txt {
  text-align: left;
  margin-left: 3%;
}

.moto-txt h4 {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
}

.moto-txt h5 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #222222;
  margin-bottom: 12px;
}

.para-1 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #474341;
  margin-bottom: 12px;
}

.para-2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #474443;
  margin-bottom: 0;
}

.new-font {
  display: inline-block;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #222222;
  margin: 20px 0;
}

.new-para {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #474341;
}

.motor-con {
  margin-top: 77px;
} */

/* .model-dot {
  margin-top: 25px;
  margin-bottom: 10px;
}

.model-tab > button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.model-tab {
  display: flex;
}

.new {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #464646 !important;
  border: none;
}

.model-tab > button.active {
  border: 2px solid #003487;
}

.model-tab .tablinks[data-tab="tab2"] .new {
  background-color: #000000 !important;
}

.model-tab .tablinks[data-tab="tab3"] .new {
  background-color: transparent;
  margin-right: 0;
}

.model-tab .tablinks[data-tab="tab3"]::before,
.model-tab .tablinks[data-tab="tab3"]::after {
  content: "";
  width: 12px;
  height: 24px;
}

.model-tab .tablinks[data-tab="tab3"]:before {
  float: left;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #333333;
}

.model-tab .tablinks[data-tab="tab3"]:after {
  transform: rotate(180deg);
  float: right;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #1c459a;
}

.tabcontent {
  display: none;
}

.product-btn {
  width: 170px;
  padding: 14px 12px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 4px 0 rgba(119, 40, 43, 0.2);
  margin-top: 21px;
}

.arrow::after {
  display: inline-block;
  padding-left: 8px;
  content: "\f061" !important;
  font-family: "Fontawesome" !important;
  transition: transform 0.3s ease-out;
}
.arrow:hover::after {
  transform: translateX(4px);
} */

/* start of testimonial */

.test-con {
  margin-top: 72px;
}

.testimonial {
  text-align: center;
  margin-bottom: 100px;
  /* margin-top: 100px; */
}

.test-con .owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: block;
}

.test-con .owl-nav button {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003487 !important;
  color: #ffffff !important;
}

.test-con .owl-nav button.owl-prev {
  left: -5%;
}

.test-con .owl-nav button.owl-next {
  right: -5%;
}

.test-con .owl-dots {
  text-align: center;
  bottom: -10%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.test-con .owl-dots button.owl-dot {
  width: 26px;
  height: 4px;
  border-radius: 15px;
  display: inline-block;
  background-color: #7c7474;
  margin: 0 3px;
}
.test-con .owl-dots button.owl-dot.active {
  background-color: var(--primary-color);
}
.test-con .owl-dots button.owl-dot:focus {
  outline: none;
}

.slide-div {
  position: relative;
}

.slide-con {
  padding: 0 10px;
  margin: 0 auto;
  width: 91%;
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
}

.p-div {
  margin: 0 auto;
  width: 77%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.test-img {
  width: 18%;
}

.test-img img {
  width: 100%;
}

.test-icon {
  width: 12%;
}

.test-icon img {
  width: 100%;
}

.slide-con p {
  margin: 10px auto 0 auto;
  width: 86%;
  font-size: 14px;
  font-weight: 600;
  color: #444444;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-bottom: 0;
}

.slide-txt {
  width: 47%;
  text-align: center;
  margin-top: 11px;
  margin-left: auto;
}

.slide-txt h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0;
}

.s-img {
  width: 35% !important;
  margin: 0 auto;
}

.s-img img {
  width: 100% !important;
  margin-left: auto;
}
.slide-one {
  width: 100%;
}

.slide-one img {
  width: 100% !important;
}
