@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=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


@font-face {
  font-family: 'Albra';
  src: url('../fonts/AlbraBold.eot');
  src: url('../fonts/AlbraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AlbraBold.woff2') format('woff2'),
    url('../fonts/AlbraBold.woff') format('woff'),
    url('../fonts/AlbraBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/***** General CSS *****/

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

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-weight: 500;
  color: #787878;
  line-height: 27px;
  font-size: 14px;
}


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

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  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;
}

.btn.btn_blue {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 20px;
  color: #fff;
  margin: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #0963AB;
  background: #0963AB;
  /* width: 212px; */
  /* height: 50px; */
  gap: 13px;
}

.btn.btn_blue i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 25px;
  color: #000;
  transform: rotate(-28deg);
}

.btn.btn_blue:focus,
.btn.btn_blue:hover {
  background-color: #fff;
  color: #0963AB;
  border-color: #0963AB;
}

.btn.btn_blue:hover i {
  background: #0963AB;
  color: #fff;
}


img.pull-left,
.imgOverlay.pull-left {
  margin: 0 30px 20px 0;
}

img.pull-right {
  margin: 0 0 20px 30px;
}

.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: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

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

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

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

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

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}


form input[type="text"],
form input[type="password"],
form select,
form input[type="email"],
form input[type="url"],
form input[type="number"],
form textarea,
form input[type="tel"] {
  border: 1px solid #494949;
  background-color: #fff;
  font-size: 16px;
  line-height: 20px;
  color: #575757;
  height: 55px;
  margin-bottom: 40px;
  width: 100%;
  padding: 0px 15px;
  border-radius: 10px;
}

form textarea {
  padding: 10px;
  height: 167px;
}

input[type="submit"] {
  color: #fff;
  background-color: #33458d;
  height: 55px;
  padding: 0px 65px;
  font-size: 12px;
  line-height: 20px;
  border: 2px solid #33458d;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

input[type="submit"]:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  background-color: #fff;
  color: #33458d;
  border-color: #33458d;
}

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

input[type="checkbox"],
input[type="radio"] {
  margin: 0 10px 20px 0;
}

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

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

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

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

.main_head {
  margin: 0 0 50px;
}

.main_head h3 {
  font-size: 40px;
  line-height: 46px;
  color: #000000;
  font-weight: 400;
  margin: 0 0 10px;
}

.main_head h3 strong {
  font-weight: 800;
  color: #0963AB;
}


.main_head p {
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  font-weight: 300;
}


/*banner css start */
.main_banner {
  padding: 5% 0;
}

.banner_text h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 19px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  background: #0963AB;
  padding: 0;
  display: flex;
  width: fit-content !important;!i;!;
  height: 40px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 10px;
}

.banner_text h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 40px;
  line-height: 55px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 15px;
}

.banner_text p {
  font-weight: 500;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
}


.banner_text {
  position: relative;
}


.banner_btn {
  display: flex;
  gap: 20px;
  margin: 40px 0 0;
}

.banner_form {position: relative;z-index: 0;}
.banner_form form {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    z-index: 0;
    box-shadow: 0px 0px 166.24px 0px #0963ABb8;
}


.call_to i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0963AB;
  border-radius: 25px;
  color: #ffffff;
}

.call_to:hover i {
  background: #0963AB00;
  color: #fff;
  border: 1px solid #0963AB;
}

.call_to {
  width: 215px;
  display: inline-flex;
  gap: 10px;
}

.call_to .textd {
  display: flex;
  flex-direction: column;
}

.textd span {
  color: #fff;
  font-size: 16px;
  position: relative;
  font-family: "K2D", serif;
  margin-left: 47px;
}

.textd span:after {
  position: absolute;
  content: '';
  top: 10px;
  left: -45px;
  background: #fff;
  height: 2px;
  width: 40px;
  display: flex;
  align-items: center;
  bottom: 0;
}

.textd small {
  font-size: 15px;
  font-family: "K2D", serif;
  font-weight: 400;
  color: #fff;
}

.main_banner {
  padding: 0% 0 5%;
  background: url(../images/banner.webp);
  background-size: cover;
  background-position: top;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.main_banner .container {
  position: relative;
  z-index: 5;
}

.main_banner:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
}


.banner_form h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 25px;
  line-height: 29px;
  color: #0963AB;
  font-weight: 600;
  margin: 0 0 13px;
}


.banner_form button {
  border: 0;
  display: flex;
  width: 100%;
  height: 55px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: #0963AB;
  border: 1px solid #0963AB;
  transition: all 0.5s ease-in-out;
}

.banner_form button:hover {
  color: #0963AB;
  background: #fff;
  border: 1px solid #0963AB;
}

.banner_form .iti {
  position: relative;
  display: flex;
  margin: 0 0 30px;
}

.banner_form .iti__selected-flag {
  background: #0963AB;
  border-radius: 8px;
}


.logo_slider {
  background: #0963AB;
  z-index: 5;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 110px;
  padding: 0;
  display: flex;
  align-items: center;
  display:none;
}

.blogslid2 .slick-slide img {
  width: auto;
  margin: 0 auto;
  display: block;
  border-radius: 40px;
  object-fit: fill;
  height: 70px;
}


/*services sec css staret */

.services_sec {
  padding: 5% 0;
}


.ser_text {
  background: #0963AB;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  position: relative;
  height: 240px;
  overflow: hidden;
  z-index: 4;
  width: 100%;
  margin: 0 0 20px;
  transition: all 0.5s ease-in-out;
}

.ser_text:hover {
  background: #fff;
  box-shadow: 0px 0px 40px #D8DEE7;
  border: 1px solid #D8DEE7;
}

.ser_text:hover h3 {
  color: #0963AB;
}

.ser_text:hover p {
  color: #222E3E;
}

.ser_text:hover img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4036%) hue-rotate(233deg) brightness(96%) contrast(131%);
}

.ser_text h2 {
  font-size: 124px;
  line-height: 35px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #ffffff1f;
  position: absolute;
  right: -6px;
  top: 25px;
  font-family: 'Albra';
}


.ser_text h3 {
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 15px;
  font-family: 'Albra';
}


.ser_text h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 15px;
}


.ser_text p {
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  font-family: "K2D", serif;

}


.ser_text h3 img {
  margin: 0 10px 0 0;
}


.another .textd span {
  color: #222E3E;
  font-size: 16px;
  position: relative;
  font-family: "K2D", serif;
  margin-left: 47px;
}

.another .textd span:after {
  background: #222E3E;
}

.another .textd small {
  color: #222E3E;
  font-size: 18px;
}

.another .call_to:hover i {
  background: #0963AB00;
  color: #0963AB;
  border: 1px solid #0963AB;
}


/*about sec css start  */
.about_sec {
  position: relative;
  padding: 5% 0;
}

.about_sec .btn.btn_red:last-child {
  background: #ffffff00;
  color: #0963AB;
  border: 1px solid #0963AB;
}

.about_sec .btn.btn_red:last-child:hover {
  background: #0963AB;
  color: #fff;
}


.about_sec h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 34px;
  line-height: 36px;
  color: #000;
  font-weight: 300;
  margin: 0 0 15px;
}

.about_sec h3 span {
  font-weight: 400;
  color: #000;
}

.about_sec h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 50px;
  line-height: 55px;
  color: #0963AB;
  font-weight: 600;
  margin: 0 0 15px;
}


.about_list a {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}

.about_list a i {
  color: #0963AB;
}


.about_sec:before {
  position: absolute;
  content: '';
  left: 0px;
  width: 704px;
  height: 757px;
  background: url(../images/texture.webp) no-repeat;
  bottom: 0px;
  display: flex;
  align-items: center;
  z-index: -1;
}

.about_img img {
  border-radius: 10px;
}

.about_text {
  padding: 0 10% 0 5%;
}

.about_text h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 19px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  background: #0963AB;
  padding: 0;
  display: flex;
  width: 133px;
  height: 33px;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 10px;
}


/*book_sehlf_sec css start */
/* Style the tab */
.tabination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book_sehlf_sec .tab {
  /* overflow: hidden; */
  border: 0;
  background-color: #ffffff;
  border-radius: 50px;
  width: 72%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  margin: 0 auto 5%;
  padding: 0 10px;
}


/* Style the buttons that are used to open the tab content */

.book_sehlf_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 41px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 60px;
}


/* Change background color of buttons on hover */

.book_sehlf_sec .tab button:hover {
  background-color: #0963AB;
  color: #fff;
}


/* Create an active/current tablink class */

.book_sehlf_sec .tab button.active {
  background-color: #0963AB;
  color: #fff;
}


/* Style the tab content */

.book_sehlf_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}

.tabcontent.active {
  display: block;
}

.book_sehlf_sec {
  padding: 5% 0;
  background: #0963AB;
}

.book_sehlf_sec h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px;
}

.book_sehlf_sec .main_head h3 {
  font-size: 38px;
  line-height: 46px;
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 10px;
}

.book_sehlf_sec .main_head p {
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
}

.book_img a img {
  width: 100% !important;
  position: relative;
  z-index: 5;
}

.book_img {
  margin: 40px 0 50px;
  position: relative;
}

.book_img:after {
  position: absolute;
  content: '';
  top: 12px;
  right: 19px;
  height: 235px;
  width: 235px;
  background: #e0d2fd;
  border-radius: 200px;
}

.main_head {
  margin: 0 0 50px;
}

.book_sehlf_sec .banner_btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 6% 0 0;
}

.book_sehlf_sec {
  padding: 5% 0;
  background: #0963AB;
}

.white .btn.btn_blue {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 20px;
  color: #0963AB;
  margin: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  background: #fff;
  width: 212px;
  height: 50px;
  gap: 14px;
}

.white .btn.btn_blue i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0963AB;
  border-radius: 25px;
  color: #ffffff;
  transform: rotate(-28deg);
}

.white .btn.btn_blue:focus,
.white .btn.btn_blue:hover {
  background-color: #fff;
  color: #0963AB;
  border-color: transparent;
}

.white .btn.btn_blue:hover i {
  background: #0963AB;
  color: #fff;
  border: 1px solid #fff;
}


.cre_div {
  width: 450px;
  height: 409px;
  transform: skew(-7deg);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 137px 50px 50px;
  background: linear-gradient(to right, rgb(217 217 217 / 98%) 21%, rgba(255, 255, 255, 0) 100%);
}

.rev_text {
  transform: skew(7deg);
}


.rev_text h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 70px;
  line-height: 75px;
  color: #0963AB;
  font-weight: 600;
  margin: 0 0 15px;
}


.rev_text h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #0963AB;
  font-weight: 600;
  margin: 0 0 15px;
}

.rev_text p {
  font-weight: 500;
  color: #494949;
  font-size: 15px;
  line-height: 27px;
}


.cre_div.active {
  background: #0963AB;
}

.cre_div.active .rev_text h3,
.cre_div.active .rev_text h4,
.cre_div.active .rev_text p {
  color: #fff;
}

.main_heading {
  margin: 0 0 5%;
}

.creative_sec {
  padding: 5% 0;
  overflow:hidden;
}


/*testimonial css start*/
.testimonial_sec {
  padding: 5% 0;
  background: #0963AB;
  display:none;
}

.vertical-slider {
  position: relative;
}

.vertical-slider .slick-list {
    height: 430px !important;
}

.vertical-slide {
  background: #fff;
  padding: 10px 30px 10px 30px;
  border-radius: 12px;
  position: relative;
  width: 520px !important;
  transition: 0.5s;
}

.vertical-slider .slick-slide {
  display: flex;
  justify-content: center;
  transition: 0.5s;
}

.vertical-slider .slick-current+.slick-slide {
  position: relative;
  top: -95px;
  left: -20px;
}

.vertical-slider .slick-current {
  position: relative;
  top: 0;
  z-index: -1;
}

.vertical-slider .slick-current+.slick-slide+.slick-slide {
  position: relative;
  top: -170px;
  z-index: -1;
}


.test_text .main_heading h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 25px;
  color: #0963AB;
  font-weight: 500;
  background: #ffffff;
  padding: 0;
  display: flex;
  width: 164px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 10px;
}


.test_user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


.star_div {
  display: inline-flex;
  gap: 10px;
  margin: 0 0 30px;
}


.star_div a {
  color: #FFC700;
  font-size: 20px;
  display: inline-flex;
}

.test_user img {
  margin: 0 15px 0 0px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 2px;
  width: 70px;
  height: 70px;
}

.test_user h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 16px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 0;
  padding: 15px 0 0;
}

.test_user p {
  font-weight: 500;
  color: #00B4D8;
  line-height: 27px;
  font-size: 12px;
  margin: 0 0 0;
}


.qoute_site {
  position: relative;
}

.qoute_site::before {
  content: "";
  background-image: url("../images/qoute.webp");
  height: 289px;
  width: 400px;
  position: absolute;
  top: -61px;
  left: -90px;
  background-size: 100%;
}

.qoute_main {}

.qoute_main {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

.qoute_main .test_user h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 40px;
  line-height: 16px;
  color: #222E3E;
  font-weight: 600;
  margin: 0 0 0;
  padding: 25px 0 0;
}


.qoute_main .test_user img {
  /* float: left; */
  margin: 0 15px 0 0px;
  border: 0;
  border-radius: 0;
  padding: 2px;
  width: 100px;
  height: 95px;
}

.qoute_main .test_user p {
  font-weight: 500;
  color: #222E3E;
  line-height: 27px;
  font-size: 20px;
  margin: 20px 0 0;
}

.qoute_main p {
  font-weight: 500;
  color: #222E3E;
  font-size: 15px;
  line-height: 20px;
  margin: 10px 0 0;
}


.vertical-slider .slick-current+.slick-slide .qoute_main .test_user p,
.vertical-slider .slick-current+.slick-slide .test_user h5 {
  color: #0963AB;
}

.vertical-slider .slick-current+.slick-slide p {
  color: #808080;
}

.vertical-slider .slick-current+.slick-slide .qoute_main {
  background: #fff;
  /* margin: -20px 0 0; */
  position: relative;
  z-index: 5;
}

.qoute_site .slick-active {
  opacity: 1;
}

.test_text h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 40px;
  line-height: 45px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 8px;
}

.test_text p {
  font-weight: 500;
  color: #ffffff;
  line-height: 23px;
  font-size: 14px;
}


/*form sec css start */

.form_sec {
  padding: 5% 0;
}


.form_sec .main_head h3 {
  font-size: 35px;
  line-height: 45px;
  color: #000000;
  font-weight: 400;
  margin: 0 0 0px;
}


.form_mein {
    border: 1px solid #0963AB;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 0;
    position: relative;
    border-radius: 30px;
    background: #F7F7F7;
}
.form_mein input[type="text"],
.form_mein input[type="password"],
.form_mein input[type="email"],
.form_mein input[type="url"],
.form_mein input[type="number"],
.form_mein textarea,
.form_mein input[type="tel"] {
  background-color: #fff;
  font-size: 18px;
  line-height: 20px;
  color: #575757;
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0px 15px;
  border-radius: 50px;
  border: 0;
  border: 1px solid #B2B2B2;
}


.form_mein textarea {
  padding: 10px;
  height: 210px;
  resize: none;
  border-radius: 10px;
}

.form_mein h3 {
  font-size: 48px;
  line-height: 34px;
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 0px;
  position: relative;
  z-index: 5;
  text-align: center;
}

.form_head {
  padding: 10px 0 80px;
}

.form_mein:after {
  position: absolute;
  content: '';
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/shutter.webp) no-repeat;
  height: 140px;
  top: 0;
  left: 0;
  background-size: 100%;
  z-index: 0;
}

.form_mein .btn.btn_black {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 10px;
  color: #fff;
  margin: 0 0 -24px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #000;
  background: #000;
  width: 100%;
  height: 49px;
  gap: 0;
}


.form_mein .btn.btn_black i {
  width: 56px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 25px;
  color: #000;
}

.form_mein .btn.btn_black:focus,
.form_mein .btn.btn_black:hover {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

.form_text p {
  width: 60%;
}

.form_mein .btn.btn_black:hover i {
  background: #000;
  color: #fff;
}

.form_mein:before {
  position: absolute;
  content: '';
  top: 80px;
  left: -380px;
  width: 540px;
  height: 560px;
  background: url(../images/hand.webp) no-repeat;
  z-index: -1;
  background-size: 78%;
}


/*faq sec css start */
.faq_sec {
  padding: 5% 0;
}

.faq_sec .main_heading h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  background: #00b4d8;
  padding: 0;
  display: flex;
  width: 164px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 10px;
  margin: 0 auto 20px;
}


.faq_sec .main_heading p {
  font-weight: 500;
  color: #808080;
  font-size: 15px;
  line-height: 27px;
  margin: 0 0 50px;
}

.faq_div .accordion-button {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 25px;
  color: #ffffff !important;
  font-weight: 500;
}

.animator-btn a,
.main_slider .carousel-caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox
}


.faq_div .accordion-item {
  background-color: #00b4d800;
  border-bottom: 0;
  border: 0;
  margin: 0 0 30px;
}

.faq_div .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 0%)
}

.faq_div .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.accordion-button.collapsed {
  background: #353535 !important;
}

.faq_div .accordion-item .accordion-button {
  border-radius: 0px !important;
  margin: 0 0 0px;
  border: 0;
  background: #0963AB;
}

.faq_div .accordion-button:focus {
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%)
}


.faq_sec .accordion-button::after {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-left: auto;
  content: "";
  background-image: url("../images/plus.webp");
  background-repeat: no-repeat;
  background-size: 80%;
  transition: transform 0.2s ease-in-out;
  background-color: #e5f7fb00;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 2px 3px;
  filter: invert(1);
}

.faq_sec .banner_btn {
  display: flex;
  gap: 20px;
  margin: 40px auto 0;
}

.faq_head h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 25px;
  line-height: 29px;
  color: #0963AB;
  font-weight: 500;
  margin: 0 0 13px;
}


.faq_head h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 10px;
}


/*footer css start */


.footerSec {
  background: #121212;
  padding: 4% 0 0;
  position: relative;
  overflow: hidden;
}

.footerSec:after {
  position: absolute;
  content: '';
  top: 0px;
  right: 0;
  width: 320px;
  height: 375px;
  background: url(../images/shade.webp) no-repeat;
  z-index: 9;
  background-size: 84%;
  background-position: top right;
}


.footerSec h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 38px;
  line-height: 45px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 30px;
}

.foot_eamil a {
  color: #fff;
  display: flex;
  font-size: 16px;
  line-height: 27px;
  font-family: 'K2D';
  transition: all 0.5s ease-in-out;
}

.foot_eamil a:hover {
  color: #0963AB;
}


.social_btn {
  display: flex;
  margin: 30px 0 0;
  gap: 10px;
}


.social_btn a {
  font-size: 14px;
  color: #fff;
  width: 130px;
  height: 42px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #fff;
  justify-content: space-between;
  padding: 0 10px;
}

.social_btn a:hover {
  border: 1px solid #0963AB;
  color: #0963AB;
}


.social_btn a span {
  display: flex;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 10px;
}


.social_btn a .blue {
  background: #0963AB;
}

.social_btn a:hover .blue {
  color: #0963AB;
}


.foot_links h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}


.foot_links a {
  font-size: 13px;
  color: #fff;
}

.foot_links a:hover {
  color: #0963AB;
}


.term_list {
  display: flex;
  gap: 20px;
}

.term_list a,
.pin {
  color: #fff;
  font-size: 14px;
  line-height: 27px;
  font-family: 'K2D';
  transition: all 0.5s ease-in-out;
  position: relative;
}

.term_list a:hover,
.pin:hover {
  color: #0963AB;
}

.term_list a:after {
  position: absolute;
  content: '';
  top: 8px;
  right: -10px;
  height: 10px;
  width: 1px;
  background: #fff;
}

.term_list a:last-child:after {
  display: none;
}


.copy {
  font-size: 13px;
  color: #fff;
}
html{
 /* overflow-x:  hidden; */
 }

 .faq_div p {
    line-height: 25px;
 }
 
.contact-info-box h4{
    font-size: 26px;
    line-height: 32px;
    color: #0963AB;
    text-transform: capitalize;
    margin: 0px 0 15px;
}
.contact-info-box a{
    font-size: 18px;
    line-height: 24px;
    color: #0A2840;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    text-transform: unset;
}
.contact-info-box a:hover{
    color: #2a95d4;
    transform: translateX(10px);
}
.contact-info-box a i{
    background-color: #2a95d424;
    color: #0963AB;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #0963AB;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin: 0 10px 0 0;
}
.contact-info-box p{
    color: #0A2840;
    display: flex;
    align-items: center;
}
.contact-info-box p i{
    background-color: #2a95d424;
    color: #2a95d4;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #2a95d4;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin: 0 10px 0 0;
} 

/*modal css*/

.comodal {
    border-radius: 0 !important;
    border: #0963AB 3px solid;
    padding: 15px;
    background: #fff;
}

.pop-upform h2 {
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    line-height: unset;
    color: #0963AB;
    margin: 0 0 15px;
}

.pop-upform p {
    text-align: center;
}

.m-header {
    border-bottom: 0px;
    justify-content: right;
    padding-bottom: 0px;
}

.close-btn {
    position: relative;
    border-radius: 0;
    width: 30px;
    height: 30px;
    background: #f77223;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #fff 3px solid;
    box-shadow: #00000082 0 0 6px;
}

.btn-close1 {
    padding: 0px !important;
    margin: 0px !important;
    --bs-btn-close-bg: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0px;
}

.btn-close1 i {
    color: #fff;
}

.form21 .form-group {
    position: relative;
}

.form21 ::placeholder {
    font-size: 16px;
    color: #000 !important;
    font-weight: 300 !important;
}

.form21 input {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    border: #dcdcdc 1px solid !important;
    padding: 10px 10px 10px 40px !important;
    background: #fafafa !important;
    color: #757575 !important;
    font-weight: 300 !important;
    border-radius: 0px !important;
    height: 40px;
    margin: 0 !important;
}

.form21 input:focus {
    box-shadow: none !important;
    border-color: #0963AB !important;
}

.form21 .message {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    border: #dcdcdc 1px solid !important;
    padding: 7px 10px 10px 40px !important;
    background: #fafafa !important;
    color: #757575 !important;
    font-weight: 300 !important;
    border-radius: 0px !important;
    margin-bottom: 15px;
    resize:none;
}

.form21 .message:focus {
    box-shadow: none !important;
    border-color: #0963AB !important;
}

.activatenow {
    display: block;
    margin: auto;
    background: #0963AB;
    padding: 6px 40px;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    border: 0px;
    border: 2px solid #0963AB;
    font-family: "Poppins", sans-serif;
}

.form-btns {
    justify-content: center;
    display: flex;
}

.chatting-btn {
    background: #f77223;
    border-radius: 0px;
    padding: 6px 15px;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

.icons01 {
    position: absolute;
    left: 13px;
    top: 12px;
    /*color: #757575;*/
    color: #0963AB;
    font-size: 14px;
}

.icons02 {
    position: absolute;
    left: 21px;
    top: 18px;
    color: #757575;
    font-size: 14px;
}