@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Queensila';
  src: url(../fonts/Queensila.ttf);
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Blender_Pro';
  src: url(../fonts/Blender_Pro_Thin.ttf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Queensila';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Queensila';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
   font-family: 'Blender_Pro';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;

}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}

.menuSec img {
  margin: 0;
}

.menuSec .row {
  align-items: center;
}
a.active {
    position: relative;
    color: #393939 !important;
}

a.active::before {
    position: absolute;
    bottom: -38px;
    left: -14px;
    width: 60px;
    height: 2px;
    content: '';
    background-color: #47b5a9;
}

/* ===== BTN-1: Corner Bracket Style ===== */
a.btn-1 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: #47b5a9;
  color: #fff;
  font-size: 15px;
  font-family: 'Blender_Pro';
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

/* Top-left corner INSIDE the button */
a.btn-1::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  transition: all 0.35s ease;
  clip-path: polygon(100% 1%, 0 0, 0 100%);
  background-color: #fff;
}

/* Bottom-right corner INSIDE the button */
a.btn-1::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  transition: all 0.35s ease;
  background-color: #fff;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

/* ---- Hover Effect ---- */
a.btn-1:hover {
  background-color: #2e9488;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(71, 181, 169, 0.55);
  transform: translateY(-2px);
}

a.btn-1:hover::before {
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-color: #ffffff;
}

a.btn-1:hover::after {
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-color: #ffffff;
}

/* ===== END BTN-1 ===== */
.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {
  color: inherit;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.container-fluid {
  padding: 0 4%;
}


.ban-txt {
  padding: 150px 0px 80px;
}
.ban-ul ul li a i:hover {
    background-color: #59b5a9;
    transition: 1s;
    color: #fff;
    border: unset;
}

.ban-txt h1 span::before {
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 50%;
    height: 1px;
    content: '';
    background-color: #cccccc;
    z-index: -3;
}
section.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/banner-img.jpg);
  height: 720px;
  background-attachment: fixed;
}

.ban-txt h1 {
  font-size: 95px;
  line-height: 1;
  color: #181818;
  font-weight: 300;
}

.ban-txt h1 span {
  display: block;
  position: relative;
  z-index: 1;
}

.ban-txt p {
  font-size: 14px;
  color: #a7a7a7;
  width: 62%;
  margin-bottom: 30px;
}

.ban-ul {
  display: flex;
  position: absolute;
  bottom: 40px;
  gap: 90px;
  align-items: center;
}

.ban-ul ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: unset;
  position: relative;
}

.ban-ul ul li a i {
  color: #adadac;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #adadac;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ban-ul h5 {
  font-size: 14px;
  color: #181818;
  font-family: 'Montserrat';
  margin: unset;
  text-transform: uppercase;
  position: relative;
}

.ban-ul ul::before {
  position: absolute;
  left: -59px;
  top: 20px;
  width: 56px;
  height: 1px;
  content: '';
  background-color: #cccccc;
}

.ban-ul ul::after {
  position: absolute;
  width: 74px;
  height: 1px;
  content: '';
  background-color: #cccccc;
  right: -80px;
}

/* ===== Banner Project Card ===== */
.ban-project-card {
  width: 220px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 5;
  margin-right: 10px;
}

.ban-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.ban-project-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  padding: 10px;
  background-color: #59b5a9;
}

.ban-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.abt-img img:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}
.ban-project-card:hover .ban-project-img img {
  transform: scale(1.07);
}

.ban-project-info {
  background-color: #47b5a9;
  padding: 16px 18px 18px;
  text-align: center;
}
.chose-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
    transition: 1s;
}
.ban-project-info h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.ban-project-info p {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.ban-project-info h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.ban-project-info::before {
    position: absolute;
    left: 0;
    width: 9px;
    content: '';
    background-color: #fff;
    height: 42%;
    bottom: 0;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
}
.ban-project-info::after {
    position: absolute;
    right: 0;
    width: 9px;
    content: '';
    background-color: #fff;
    height: 42%;
    bottom: 0;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
}
/* ===== END Banner Project Card ===== */
/*about start*/
section.about {
    padding: 100px 0px 60px;
    position: relative;
    z-index: 1;
}

.abt-img img {
    width: 100%;
    height: 548px;
    object-fit: cover;
    transition: 1s;
}
.abt-txt h3 {
    font-size: 80px;
    line-height: 1;
    color: #181818;
    font-weight: 300;
    margin-bottom: 0px;
}

.abt-txt p {
    font-size: 14px;
    color: #a7a7a7;
}

.abt-sm {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 20px;
}

.abt-txt-sm h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Queensila';
    font-weight: 500;
    text-transform: uppercase;
}

.abt-txt-sm p {
    font-size: 14px;
    color: #a7a7a7;
    width: 91%;
}

.abt-txt {
    padding-left: 30px;
}

.abt-sm-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
section.about::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-color: #47b5a9;
    content: '';
    z-index: -1;
}
.abt-main-bx {
    background-color: #fff;
    padding: 60px 50px;
}
/*about end*/
.ser-top-txt {
    text-align: center;
    margin-bottom: 30px;
}

.ser-top-txt h3 {
    font-size: 80px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: unset;
}

.ser-top-txt p {
    font-size: 14px;
    color: #a7a7a7;
    width: 55%;
    margin: 0 auto;
}

.ser-img img {
    height: 480px;
    object-fit: cover;
    width: 100%;
}

.ser-img {
    width: 90%;
    position: relative;
}

.ser-img h4 {
    font-size: 30px;
    color: #100f0f;
    position: absolute;
    bottom: -13px;
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Blender_Pro';
}

.ser-bot-txt {
    margin-top: 30px;
}

.ser-bot-txt h3 {
    color: #100f0f;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 60px;
    position: relative;
    margin-bottom: 10px;
}

.ser-bot-txt h3::before {
    background-color: #47b5a9;
    content: '';
    width: 49px;
    height: 2px;
    left: 0;
    top: 14px;
    position: absolute;
}
.ser-bot-txt p {
    font-size: 14px;
    color: #909090;
    width: 86%;
}
/*servies end*/
footer {
    background-color: #111111;
    padding-top: 70px;
}
.ft-logo p {
    font-size: 14px;
    color: #fff;
    margin: 25px 0px 20px;
}
.use-ful-links h4 {
    font-size: 26px;
    color: #fff;
    line-height: 1;
    font-weight: 300;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    width: 65%;
    margin-bottom: 20px;
}

.use-ful-links ul li a {
    font-size: 14px;
    color: #fff;
}

.use-ful-links ul li {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.use-ful-links ul li i {
    color: #fff;
}

.use-ful-links ul li p {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    margin: unset;
}

.ft-logo h5 {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}

.ft-logo ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.use-ful-links ul li a:hover {
    color: #59b5a9;
    transition: 1s;
}
.ft-logo ul li a {
    font-size: 15px;
    color: #fff;
    background-color: #47b5a9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.ft-bot {
    padding: 20px 0px;
    text-align: center;
    border-top: 1px solid #fff;
    margin-top: 50px;
}

.ft-bot p {
    color: #fff;
    margin: unset;
}
/*footer end*/
.rp-heading {
    text-align: center;
    margin-bottom: 30px;
}

.rp-heading h2 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: unset;
}

.rp-heading p {
    font-size: 14px;
    width: 50%;
    margin: 0 auto;
}

section.recent-projects {
    padding: 100px 0px;
    padding-left: 5%;
}
.rp-slider .slick-active {
    opacity: 1;
}

.rp-slide-inner img {
    height: 480px;
    object-fit: cover;
}
.rp-card-txt {
    background-color: #fff;
    width: 73%;
    position: absolute;
    bottom: 0px;
    left: 40px;
    padding: 31px;
}

.rp-slide-inner {
    position: relative;
}

.rp-card-txt h5 {
    font-size: 35px;
    line-height: 1;
    font-family: 'Queensila';
    color: #121212;
    margin-bottom: 10px;
}

.rp-card-txt p {
    font-size: 14px;
    color: #000000;
}


.rp-slider ul.slick-dots {
    bottom: -62px;
    text-align: end;
}

.rp-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    content: '';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #909090;
    border-radius: 50%;
    opacity: 8 !important;
    border: none !important;
}

.rp-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
    background: #47b5a9 !important;
    opacity: 8 !important;
}

.rp-slider .slick-dots li.slick-active button:after {
    content: "";
    position: absolute;
    border: 1px solid #47b5a9;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    left: -7px;
    top: -8px;
}

.rp-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
}


/*ready section start*/
section.ready-to-build {
    margin-top: 100px;
    padding: 100px 0px 180px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/ready-bg.jpg);
}

.ready-txt {
    text-align: center;
}

.ready-txt h3 {
    font-size: 80px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}

.ready-txt h3 span {
    display: block;
}
a.btn-1.bot {
    background-color: #fff;
    color: #47b5a9;
}

.ready-txt p {
    font-size: 14px;
    color: #fff;
    width: 74%;
    margin: 0 auto;
    margin-bottom: 30px;
}

a.btn-1.bot::before {
    background-color: #47b5a9;
}

a.btn-1.bot::after {
    background-color: #47b5a9;
}

/* Testimonials */

.quote_img img {
    height: 60px;
    width: 70px;
    object-fit: contain;
    margin: 0 auto 30px;
    transition: all .3s ease-in;
}

.testimonial_txt p {
    transition: all .3s ease-in;
}

.testimonial_txt {
    padding: 20px 30px;
    border-radius: 0px;
    background: #ffffff;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    transition: all .3s ease-in;
    position: relative;
}

ul.client {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 10px;
}

.client img {
    /* border: 4px solid #333b3d; */
    border-radius: 50%;
    height: 70px;
    width: 70px;
    object-fit: cover;
    transition: border 0.3s ease-in;
}

ul.client h3 {
    font-size: 20px;
    color: #333b3d;
    transition: all .3s ease-in;
    margin-bottom: 10px;
    line-height: 20px;
}

ul.client p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

ul.rating {
    display: flex;
    justify-content: flex-start;
    gap: 3px;
    align-items: center;
    color: #ff9c00;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px;
    margin-top: 40px;
}

.testimonial_slider .slick-slide {
    opacity: 1;
}

.testimonial_main:hover .testimonial_txt::before,
.slick-center .testimonial_txt::before {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 55px;
    width: 80px;
    height: 40px;
    background-image: url(../images/test-sm.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial_main:hover .testimonial_txt,
.slick-center .testimonial_txt {
    background: #47b5a9;
}

.testimonial_main:hover .client img,
.slick-center .client img {
    border: 4px solid #47b5a9;
}

.testimonial_main:hover .quote_img img,
.slick-center .quote_img img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(47%) saturate(0%) hue-rotate(167deg) brightness(105%) contrast(106%);
}

.testimonial_main:hover .client h3,
.slick-center .client h3 {
    color: #59b5a9;
}

.testimonial_main:hover .testimonial_txt p,
.slick-center .testimonial_txt p {
    color: #fff;
}
.testimonial_main:hover .testimonial_txt, .slick-center .testimonial_txt ul.rating {
    color: #fff;
}

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

.heading h2 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 10px;
}

.heading p {
    font-size: 14px;
    width: 56%;
    margin: 0 auto;
}

section.testimonial.all-section-btm {
    padding-bottom: 100px;
}
/* Testimonials */
section.why-chose {
    padding: 50px;
    background-color: #fff;
    margin-top: -100px;
    position: relative;
    margin-right: -290px;
    padding-right: unset;
    width: 94%;
    margin: -121px 0 0 auto;
}

.chose-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chose-txt ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chose-txt ul li h5 {
    font-size: 16px;
    color: #000;
    margin: unset;
    font-weight: 600;
}

.chose-txt h3 {
    font-size: 80px;
    line-height: 1;
    color: #181818;
    font-weight: 300;
    margin-bottom: unset;
}
.ft-logo img {
    border-bottom: 1px solid #fff;
    padding-bottom: 18px;
}
.vid-icon {
    position: absolute;
    top: -15px;
    left: -61px;
}
.vid-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}
.chose-img {
    position: relative;
}
.ft-bo {
    padding: 10px 0px;
    text-align: center;
    border-top: 1px solid;
}
.ser-bot-txt:hover {
    background-color: #59b5a9;
    transition: 1s;
  padding:10px;
}

.ser-bot-txt:hover h3 {
    color: #fff;
}

.ser-bot-txt:hover p {
    color: #fff;
}

.ser-bot-txt:hover h3::before {
    background-color: #fff;
}
.ser-img:hover {
    box-shadow: 0 0 23px #00000059;
    transition: 1s;
}
.rp-card-txt:hover {
    background-color: #59b5a9;
    transition: 1s;
}

.rp-card-txt:hover h5 {
    color: #fff;
}

.rp-card-txt:hover p {
    color: #fff;
}
.chose-txt p {
    font-size: 14px;
    color: #000;
    width: 89%;
}