@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik";
  text-transform: capitalize;
}

p,
ul {
  font-family: "Rubik";
  margin: 0;
  padding: 0;
  list-style: none;
}

span,
input,
textarea,
a,
button {
  font-family: "Rubik";
  margin: 0;
  padding: 0;
}

a:hover {
  color: inherit;
}

body {
  overflow-x: hidden;
  background: #fefefe;
  font-family: "Rubik";
}

main {
  overflow: hidden;
}
.group_btn{
  display: flex;
  justify-content: start;
}
.group_btn .website-main-buttons{
  margin: 0;
}
.group_btn .blu{
  background: #4186de !important; 
}
.group_btn .tiffancy{
  background: #48d9bb !important;
}
a,
button,
input,
textarea:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-group input[type="number"] {
  -moz-appearance: textfield;
}


::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background:#2474bb;
  border: 1px solid #fff
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px
}



/*Website Custom Style Css For Single Items Start Here*/
/*Heading & Para Style Css*/
.heading-one {
  font-size: 45px;
  line-height: 53px;
}

.heading-two {
  font-size: 42px;
  line-height: 49px;
}

.heading-three {
  font-size: 35px;
  line-height: 42px;
}

.heading-four {
  font-size: 30px;
  line-height: 37px;
}

.heading-five {
  font-size: 24px;
  line-height: 31px;
}

.heading-six {
  font-size: 20px;
  line-height: 26px;
}

p {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
}

li {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 5px;
}

/*Heading & Para Style Css*/

/*Buttons Style Css*/
.website-main-buttons {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn {
  background: #13d8b9;
  color: #ffffff;
  border: 2px solid #13d8b9;
  font-size: 16px;
  border-radius: 30px;
  padding: 12px 34px;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 23px;
}

.website-main-buttons .call-button-new {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #4785ff;
  position: relative;
  padding-bottom: 10px;
}

.website-main-buttons .call-button-new:after {
  content: "";
  border: 1px solid #4785ff;
  width: 100%;
  height: 0;
  left: 0;
  position: absolute;
  bottom: 0;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.website-main-buttons a.read-more-btn:after,
.website-main-buttons button.popup-btn:after,
.website-main-buttons button.chat-btn:after,
.website-main-buttons a.call-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #2474bb;
  width: 0;
  height: 100%;
  margin: auto;
  transition: 0.5s all;
  z-index: -1;
  border-radius: 30px;
}

.website-main-buttons a.read-more-btn:hover:after,
.website-main-buttons button.popup-btn:hover:after,
.website-main-buttons button.chat-btn:hover:after,
.website-main-buttons a.call-btn:hover:after {
  width: 100%;
}

/*Buttons Style Css*/

/*Website Custom Style Css For Single Items End Here*/

/*Header Css Start Here*/
header {
  background: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  /* box-shadow: 0 10px 12px -10px #041838; */
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  padding: 20px 0px;
}

header nav.navbar {
  padding: 7px 0;
  justify-content: space-between;
}

header nav.navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

header nav.navbar .navbar-brand .logo {
  width: 200px;
  margin: 0;
  transition: all 0.5s ease-in-out;
  display: block;
}

.main-header .header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.main-header .header-btn .head-icon {
  background: #13d8b9;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.main-header .header-btn .head-icon i {
  color: white;
  font-size: 22px;
}

.main-header .header-btn .header-btn-cont {}

.main-header .header-btn .header-btn-cont span {
  color: #38393e;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
}

.main-header .header-btn .header-btn-cont h5 {
  color: #3184da;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
}

/*Header Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 --------------------- Home Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Css Start Here*/
section.banner-main-sec {
  padding: 127px 0 0px;
  position: relative;
  z-index: 1;
}

.banner-main-sec .banner-main-content {}

.banner-main-sec .banner-main-content .heading-six {
  color: #2474bb;
  font-weight: 600;
}

.banner-main-content .heading-one {
  color: #101218;
}

.banner-main-content p {
  color: #38393e;
}

.banner-main-content .website-main-buttons {
  margin: 30px 0 0;
}

.banner-main-sec .banner-right-content {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.banner-right-content .ban-right-left-content {
  width: 45%;
}

.banner-right-content .ban-right-left-content .ban-rg-box {
  background: #ad172e;
  border-radius: 12px;
  text-align: center;
  padding: 40px;
  width: 100%;
}

.banner-right-content .ban-right-left-content .ban-rg-box .heading-five {
  color: white;
}

.banner-right-content .ban-right-left-content .ban-rg-box p {
  color: white;
  font-size: 16px;
  line-height: 23px;
}

.banner-right-content .ban-right-left-content .ban-rg-box img {
  margin-top: 30px;
  width: auto;
}

.banner-right-content .ban-right-left-content .banner-rg-img {
  width: 100%;
  margin-top: 10px;
}

.banner-right-content .ban-right-left-content .banner-rg-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-right-content .ban-right-right-content {}

.banner-right-content .ban-right-right-content .ban-rg-box-count {
  background: #2f87df;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 10px;
}

.banner-right-content .ban-right-right-content .ban-rg-box-count .heading-five {
  color: white;
}

.banner-right-content .ban-right-right-content .ban-rg-box-count .heading-five i {
  color: #f9be25;
}

.banner-right-content .ban-right-right-content .ban-rg-box-count p {
  color: #FFF;
  font-size: 25px;
}

.banner-right-content .ban-right-right-content .banner-rg-img {
  margin-bottom: 10px;
}

.banner-right-content .ban-right-right-content .banner-rg-img img {
  width: 100%;
  height: 392px;
  object-fit: cover;
}

.banner-right-content .ban-right-right-content .ban-rg-box-count:nth-child(3) {
  background: #13d8b9;
  margin-bottom: 0;
  margin-top: 20px;
  border-radius: 12px 12px 0 0;
}

.banner-brands {
  display: flex;
  align-items: center;
  margin: 80px 0 20px 0;
}

.banner-brands .banner-brands-item {
  margin: 0 20px 0 0;
}

.banner-brands .banner-brands-item img {
  width: 100%;
  height: 40px;
  object-fit: scale-down;
  margin: 0 0 5px 0;
}

/*Banner Main Section Css Start Here*/

/*Contact Form Flex Section Css Start Here*/
section.contact-form-wrap {
  background: #2f87df;
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

.contact-form-wrap .contact-form-head {}

.contact-form-head .heading-one {
  color: #fff;
  margin: 0px;
}

.contact-form-wrap .contact-form-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.contact-form-flex form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-form-flex .form-group {
  margin: 0 5px 0;
}

.contact-form-flex .form-group input {
  background: transparent;
  color: #000;
  border: none;
  border-bottom: 1px solid #fff !important;
  font-size: 16px;
  width: auto;
  height: 50px;
  line-height: 23px;
  padding: 10px 10px;
  border-radius: 0px;
}

.contact-form-flex .form-group input::placeholder {
  color: #fff;
  font-size: 16px;
}

.contact-form-flex .form-group button.submit-btn {
  background: #13d8b9;
  color: #fff;
  border: 2px solid #13d8b9;
  font-size: 18px;
  height: 45px;
  border-radius: 30px;
  padding: 24px 57px;
  margin: 0 0px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

/*Contact Form Flex Section Css End Here*/

/* About Section CSS Start Here */
section.abt-sec-main {
  padding: 50px 0px;
}

.abt-sec-main .abt-sec-main-content {}

.abt-sec-main-content .heading-six {
  color: #2f87df;
  text-transform: uppercase;
}

.abt-sec-main-content .heading-one {
  color: #101218;
}

.abt-sec-main-content .abt-sec-lft-box {
  display: grid;
  grid-template-columns: 45% 45%;
  align-items: center;
  justify-content: left;
  column-gap: 55px;
  row-gap: 40px;
  margin-top: 30px;
}

.abt-sec-main-content .abt-sec-lft-box .abt-box-content {}

.abt-sec-main-content .abt-sec-lft-box .abt-box-content .heading-five {
  color: #4f4f4f;
}

.abt-sec-main-content .abt-sec-lft-box .abt-box-content p {
  color: #38393e;
  font-size: 16px;
  line-height: 23px;
}

.abt-sec-main .abt-sec-rg-main {
  position: relative;
  z-index: 1;
  width: 70%;
  margin: auto;
  transition: all 0.5s ease-in-out;
}

.abt-sec-main .abt-sec-rg-main:after {
  content: "";
  background: #b4fff3;
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: -25px;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.abt-sec-main .abt-sec-rg-main:hover:after {
  background: #13d8b9;
}

.abt-sec-main .abt-sec-rg-main img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 75%;
}

.abt-sec-rg-main .abt-rg-btm-text {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 15px;
}

.abt-sec-rg-main .abt-rg-btm-text .ban-rg-box-count {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt-sec-rg-main .abt-rg-btm-text .ban-rg-box-count .heading-five {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.abt-sec-rg-main .abt-rg-btm-text .ban-rg-box-count .heading-five span {
  color: #1a1b1d;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

.abt-sec-rg-main .abt-rg-btm-text .ban-rg-box-count p {
  color: #1a1b1d;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
  margin: 0;
}

.abt-sec-rg-main:hover .abt-rg-btm-text .ban-rg-box-count .heading-five span,
.abt-sec-rg-main:hover .abt-rg-btm-text .ban-rg-box-count p {
  color: white;
}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn .head-icon {
  background: #13d8b9;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn .head-icon i {
  color: white;
  font-size: 22px;
}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn .header-btn-cont {}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn .header-btn-cont span {
  color: #1a1b1d;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.abt-sec-rg-main .abt-rg-btm-text a.header-btn .header-btn-cont h5 {
  color: #1a1b1d;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}

.abt-sec-rg-main:hover .abt-rg-btm-text a.header-btn .head-icon {
  background: #2f87df;
}

.abt-sec-rg-main:hover .abt-rg-btm-text a.header-btn .header-btn-cont span,
.abt-sec-rg-main:hover .abt-rg-btm-text a.header-btn .header-btn-cont h5 {
  color: white;
}

.abt-sec-main .arrow {
  border: 1px solid #d2d2d2;
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.abt-sec-main .arrow:after {
  content: "";
  border: 1px solid #d2d2d2;
  position: absolute;
  width: 14px;
  right: -2px;
  transform: rotate(145deg);
  top: 3px;
}

.abt-sec-main .arrow:before {
  content: "";
  border: 1px solid #d2d2d2;
  position: absolute;
  width: 15px;
  right: -3px;
  transform: rotate(30deg);
  top: -5px;
}

.abt-sec-main .abt-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.abt-sec-main .abt-bottom-flex .website-main-buttons {
  margin: 0;
}

.abt-sec-main .abt-bottom-flex .abt-btm-text {
  width: 50%;
}

.abt-sec-main .abt-bottom-flex .abt-btm-text p {
  margin: 0;
  
}

/*Contact Form Flex Section Css End Here*/

/* Limitation Section CSS Start Here */
section.limitation-section {
  background: #2f87df;
  padding: 31px 0px;
  border-radius: 0px 15px 15px 0px;
}

.limitation-section .limit-sec-img {}

.limitation-section .limit-sec-img img {

border-left: 20px solid #fff;

width: 500px;

margin: 0 auto;

display: block;
}

.limitation-section .limitation-sec-content {}

.limitation-section .limitation-sec-content .heading-one {
  color: white;
}

.limitation-section .limitation-sec-content p {
  color: white;
  width: 80%;
}

.limitation-section .limitation-sec-content .arrow {
  border: 1px solid #fff;
  width: 78%;
  margin-top: 40px;
  position: relative;
}

.limitation-section .limitation-sec-content .arrow:before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  width: 15px;
  right: -3px;
  transform: rotate(30deg);
  top: -5px;
}

.limitation-section .limitation-sec-content .arrow:after {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  width: 14px;
  right: -2px;
  transform: rotate(145deg);
  top: 3px;
}

.limitation-section .limitation-sec-content .website-main-buttons .call-button-new {
  color: white;
  text-decoration: underline;
  padding: 0;
}

.limitation-section .limitation-sec-content .website-main-buttons .call-button-new::after {
  display: none;
}

/* Limitation Section CSS End Here */

/* Portfolio Section CSS Start Here */
section.portfolio-sec-main {
  padding: 50px 0px;
  background-color: #ddfffa;
}

.portfolio-sec-main .portfolio-sec-content {}

.portfolio-sec-content .heading-six {
  color: #2f87df;
  text-transform: uppercase;
}

.portfolio-sec-content .heading-one {
  color: #161616;
}

.portfolio-sec-content .arrow {
  border: 1px solid #161616;
  width: 85%;
  margin-top: 40px;
  position: relative;
}

.portfolio-sec-content .arrow:before {
  content: "";
  border: 1px solid #161616;
  position: absolute;
  width: 15px;
  right: -3px;
  transform: rotate(30deg);
  top: -5px;
}

.portfolio-sec-content .arrow:after {
  content: "";
  border: 1px solid #161616;
  position: absolute;
  width: 14px;
  right: -2px;
  transform: rotate(145deg);
  top: 3px;
}

.portfolio-sec-main .portfolio-slide-content {}

.portfolio-sec-main .portfolio-slide-content .slider-products {}

.portfolio-slide-content .slider-products .porfolio-main-content-books {
  display: flex !important;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.porfolio-main-content-books .portfolio-books-img {
  width: 65%;
}

.porfolio-main-content-books .portfolio-books-img img {
  width: 260px;
  height: 383px;
  object-fit: contain;
}

.porfolio-main-content-books .portfolio-books-content {}

.porfolio-main-content-books .portfolio-books-content .heading-two {
  color: #4f4f4f;
}

.porfolio-main-content-books .portfolio-books-content p {
  color: #38393e;
}

.porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {}

.porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img {
  width: auto;
}

.porfolio-main-content-books .portfolio-books-content .ban-rg-box-count {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.porfolio-main-content-books .portfolio-books-content .ban-rg-box-count .heading-five {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.porfolio-main-content-books .portfolio-books-content .ban-rg-box-count .heading-five span {
  margin-right: 30px;
  font-size: 29px;
  color: #4f4f4f;
  line-height: 36px;
}

.porfolio-main-content-books .portfolio-books-content .ban-rg-box-count p {
  margin: 0;
  color: #4f4f4f;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.porfolio-main-content-books .portfolio-books-content .website-main-buttons {
  margin-top: 30px;
}

.porfolio-main-content-books .portfolio-books-content .website-main-buttons .call-button-new {
  font-size: 22px;
  line-height: 29px;
  text-decoration: underline;
  color: #2f87df;
}

.porfolio-main-content-books .portfolio-books-content .website-main-buttons .call-button-new:after {
  display: none;
}

.portfolio-books-nav.slick-current img {
  border-color: #2f87df;
}

.portfolio-books-nav img {
  border: 1px solid #ddfffa;
  padding: 7px;
  border-radius: 10px;
  width: 145px;
  height: 207px;
}

.portfolio-sec-main .portfolio-slide-content .slider-nav {}

.portfolio-sec-main .portfolio-slide-content .slider-nav button.slick-prev.slick-arrow {
  display: none;
}

.portfolio-sec-main .portfolio-slide-content .slider-nav button.slick-arrow {
  position: absolute;
  background: none;
  border: none;
  font-size: 0;
  right: 0;
  top: 50%;
  z-index: 9;
}

.portfolio-sec-main .portfolio-slide-content .slider-nav button.slick-arrow.slick-next::before {
  font-family: "Font Awesome 6 Pro";
  background: #13d8b9;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  line-height: 25px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  content: "\f105";
}

.portfolio-sec-main .portfolio-slide-content .slider-nav button.slick-arrow.slick-next:hover::before {
  background: #2474bb;
}

/* Portfolio Section CSS End Here */

/* About Second Section CSS Start Here */

section.abt-sec-second-main {
  padding: 70px 0px 50px;
}

.abt-sec-second-main .abt-second-main-img {
  display: flex;
  justify-content: start;
  align-items: center;
}

.abt-sec-second-main .abt-second-main-img img {
  width: 70%;
}

.abt-sec-second-main .abt-second-content-main {}

.abt-sec-second-main .abt-second-content-main .heading-six {
  color: #2f87df;
  text-transform: uppercase;
}

.abt-sec-second-main .abt-second-content-main .heading-one {
  color: #101218;
}

.abt-sec-second-main .abt-second-content-main p {
  color: #38393e;
}

.abt-sec-second-main .abt-second-content-main .arrow {
  border: 1px solid #4f4f4f;
  width: 90%;
  margin-top: 40px;
  position: relative;
}

.abt-sec-second-main .abt-second-content-main .arrow:before {
  content: "";
  border: 1px solid #4f4f4f;
  position: absolute;
  width: 15px;
  right: -3px;
  transform: rotate(30deg);
  top: -5px;
}

.abt-sec-second-main .abt-second-content-main .arrow:after {
  content: "";
  border: 1px solid #4f4f4f;
  position: absolute;
  width: 14px;
  right: -2px;
  transform: rotate(145deg);
  top: 3px;
}

.abt-sec-second-main .abt-second-content-main .website-main-buttons .call-button-new {
  text-decoration: underline;
  padding: 0;
}

.abt-sec-second-main .abt-second-content-main .website-main-buttons .call-button-new::after {
  display: none;
}

/* About Second Section CSS End Here */

/*Customer FeedBack Section Css Start Here*/
section.customer-feedback-wrap {
  background: #ececec;
  padding: 100px 75px 150px;
}

.customer-feedback-wrap .customer-feedback-head {
  margin: 0 0 50px;
}

.customer-feedback-wrap .customer-feedback-head .heading-six {
  color: #2f87df;
  text-transform: uppercase;
}

.customer-feedback-head .heading-one {
  color: #101218;
  margin: 0 0 20px;
}

.customer-feedback-wrap .customer-feedback-inner {}

.customer-feedback-inner .feedback-inner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}

.feedback-inner-head .feedback-inner-left {
  display: flex;
  align-items: center;
}

.feedback-inner-left span {
  color: #13d8b9;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 10px 0 0;
}

.feedback-inner-left .rating-star-icons {
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
  filter: brightness(0) saturate(100%) invert(61%) sepia(72%) saturate(565%) hue-rotate(120deg) brightness(100%) contrast(85%);
}

.feedback-inner-left small {
  color: #13d8b9;
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  margin: 10px 0 0;
}

.feedback-inner-head .feedback-inner-right {
  display: flex;
  align-items: center;
}

.feedback-inner-right small {
  color: #13d8b9;
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  margin: 10px 5px 0 0;
}

.feedback-inner-right img {
  width: 104px;
}

.customer-feedback-inner .customer-feedback-slider {}

.customer-feedback-slider .slick-arrow {
  bottom: -50px;
  position: absolute;
  background: none;
  border: none;
  font-size: 0;
  z-index: 9;
}

.customer-feedback-slider .slick-prev {
  left: 45%;
}

.customer-feedback-slider .slick-prev::before {
  content: "\f104";
}

.customer-feedback-slider .slick-next {
  right: 45%;
}

.customer-feedback-slider .slick-next::before {
  content: "\f105";
}

.customer-feedback-slider .slick-prev::before,
.customer-feedback-slider .slick-next::before {
  font-family: "Font Awesome 6 Pro";
  background: #13d8b9;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  line-height: 25px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.customer-feedback-slider .slick-arrow:hover::before {
  background: #2474bb;
}

.customer-feedback-slider .feedback-slider-box {
  border-radius: 20px;
  box-shadow: 0 0px 20px -20px #000000;
  padding: 55px 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  user-select: text;
  margin: 140px 15px;
  background: #fff;
}

.customer-feedback-slider .feedback-slider-box.slick-active {
  filter: blur(4px);
}

.customer-feedback-slider .feedback-slider-box.slick-slide.slick-current.slick-active.slick-center {
  filter: blur(0px);
  transform: scaleY(1.1) scaleX(1.3) translateY(-80px);
  z-index: 9;
  background: #fff;
}

.feedback-slider-box .feedback-slider-flx {
  display: grid;
  grid-template-columns: 20% 80%;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.feedback-slider-box .feedback-slider-detail {
  margin: 0;
}

.feedback-slider-content p {
  color: #1a1b1d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  padding: 0px;
  margin-bottom: 10px;
  min-height: 120px;
  max-height: 130px;
  overflow-y: auto;
}

.feedback-slider-content p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 0px;
}

.feedback-slider-content p::-webkit-scrollbar {
  width: 3px;
  background: #13d8b9;
  border-radius: 0px;
}

.feedback-slider-content p::-webkit-scrollbar-thumb {
  background-color: #2474bb;
  border-radius: 0px;
}

.feedback-slider-box .feedback-slider-flx .feedbacl-author-img {}

.feedback-slider-box .feedback-slider-flx .feedbacl-author-img img {}

.feedback-slider-box .feedback-slider-detail .feedback-autor-name {}

.feedback-slider-box .feedback-slider-detail .feedback-autor-name .heading-five {
  color: #000;
}

.feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon img {}

.feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-slider-btm-content {}

.feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-slider-btm-content p {
  color: #868686;
  font-size: 12px;
  line-height: 12px;
  margin: 0;
  font-weight: 400;
}

/*Customer FeedBack Section Css End Here*/

/*FAQS Section Css Start Here*/
section.faqs-sec-wrap {
  padding: 50px 0;
}

.faqs-sec-wrap .faqs-sec-head {
  margin: 0 0 50px;
}

.faqs-sec-head .heading-one {
  color: #222222;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.faqs-sec-item .accordion .accordion-item {
  margin: 0 0 10px;
  border-radius: 0px;
  background: transparent;
  border: none;
}

.faqs-sec-item .accordion-item .accordion-header button.accordion-button {
  background: transparent;
  color: #292929;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  border-bottom: 1px solid #2f87df;
  box-shadow: none;
  border-radius: 0;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  margin: 0;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  background: #2f87df;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 100%;
  text-align: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
  color: #787878;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
  padding: 20px 10px;
  border-radius: 0px;
}

/*FAQS Section Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css End Here -----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Footer Css Start Here*/
footer.footer-main-sec {
  position: relative;
  z-index: 1;
}  
.footer-main-sec .footer-top {
  background: #2f87df;
  padding: 50px 0;
}  
.footer-logo-area .footer-logo {
  width: 100%;
  position: relative;
}   
.footer-logo-area .footer-logo:after {
  left: auto;
  right: -12%;
}  
.footer-logo-area .footer-logo img {
  display: flex;
  justify-content: center;
  width: 250px;
}  
.footer-logo-area .footer-logo p{
  color: #fff;
  font-size: 16px;
  padding: 20px 0 0;
}
.footer-bottom .footer-copyright {
  text-align: center;
  padding: 10px 0px;
}  
.footer-copyright p {
  color: #292929;
  margin: 0;
}
.footer-info-area h4 {
  color: #ffffff;
  margin: 0 0 20px;
}
.footer-info-area ul {
  display: flex;
  flex-direction: column;
}
.footer-info-area ul li {
  margin: 0 0 15px;
}
.footer-info-area ul li p {
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
}
.footer-info-area ul li p i {
  background: #332f29;
  color: #48e0bb;
  font-size: 16px;
  /* border: 2px solid #3293fc; */
  font-weight: 600;
  width: 32px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0 7px 0 0;
  border-radius: 5px;
}
.footer-info-area ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 0;
  text-transform: lowercase;
  display: flex
;
  align-items: center;
  transition: all .3s ease-in-out;
}
.footer-info-area ul li a i {
  background: #332f29;
  color: #48e0bd;
  font-size: 16px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
  margin: 0 7px 0 0;
  border-radius: 5px;
}
.footer-form-list .form-group {
  margin: 0 0 5px 0;
}
.footer-form-list .form-group input {
  background: #fff;
  color: #041838;
  font-size: 14px;
  width: 100%;
  padding: 7px 7px;
  border-radius: 5px;
  border: none;
}
.footer-form-list .form-group textarea {
  background: #fff;
  color: #041838;
  font-size: 14px;
  width: 100%;
  height: 72px;
  resize: none;
  border: none;
  border-radius: 5px;
  padding: 10px 10px;
}
.footer-form-group-last button {
  background: #48e0bd;
  color: #fff;
  font-size: 14px;
  width: 100%;
  border-radius: 50px;
  margin: 0;
  text-transform: capitalize;
  outline: 0;
  transition: all .3s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 9px 10px;
  border: none;
}
.footer-links-area h3 span {
  background: #332f29;
  color: #58e0c6;
  font-weight: 700;
  padding: 5px 13px;
  font-size: 20px;
  margin: 0 10px;
  border-radius: 10px;
}
.footer-links-area h3 {
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-align: center;
}

::-webkit-scrollbar {
  width: 10px
  }
  ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #13D8B9;
  border: 1px solid #fff
  }
  ::-webkit-scrollbar-track {background-color: #ebebeb17;border-radius: 10px}
/*Footer Css End Here*/


@media only screen and (min-width: 1400px) and (max-width: 1649px) {
  .footer-logo-area .footer-logo {
    overflow: hidden;
  }

  section.customer-feedback-wrap {
    padding: 100px 20px;
  }

  .customer-feedback-slider .feedback-slider-box {
    padding: 25px 20px;
  }

  .feedback-slider-box .feedback-slider-flx {
    gap: 10px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
    gap: 5px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon img {
    width: 40%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-logo-area .footer-logo {
    overflow: hidden;
  }

  section.customer-feedback-wrap {
    padding: 100px 20px;
  }

  .customer-feedback-slider .feedback-slider-box {
    padding: 25px 20px;
  }

  .feedback-slider-box .feedback-slider-flx {
    gap: 10px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
    gap: 5px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon img {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  /* Home Page CSS Responsive Start Here */
  .heading-one {
    font-size: 33px;
    line-height: 40px;
  }

  .heading-four {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-three {
    font-size: 30px;
    line-height: 37px;
  }

  .heading-two {
    font-size: 29px;
    line-height: 36px;
  }

  .contact-form-wrap .contact-form-flex {
    display: block;
  }

  .contact-form-flex form {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .contact-form-head .heading-one {
    text-align: center;
    margin-bottom: 10px;
  }

  section.customer-feedback-wrap {
    padding: 100px 50px;
  }

  .feedback-slider-box .feedback-slider-flx {
    display: block;
  }

  .customer-feedback-slider .feedback-slider-box {
    padding: 50px 15px;
  }

  .abt-sec-main .abt-sec-rg-main {
    width: 85%;
  }

  .customer-feedback-slider .slick-prev {
    left: 25%;
  }

  .customer-feedback-slider .slick-next {
    right: 25%;
  }

  .footer-logo-area .footer-logo {
    overflow: hidden;
  }

  .footer-logo-area .footer-logo:before,
  .footer-logo-area .footer-logo:after {
    width: 40%;
  }

  .feedback-slider-box .feedback-slider-flx .feedbacl-author-img {
    margin-bottom: 10px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
    display: block;
  }

  /* Home Page CSS Responsive End Here */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Home Page CSS Responsive Start Here */
  .heading-one {
    font-size: 33px;
    line-height: 40px;
  }

  .heading-four {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-three {
    font-size: 30px;
    line-height: 37px;
  }

  .heading-two {
    font-size: 29px;
    line-height: 36px;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    padding: 10px;
  }

  .contact-form-wrap .contact-form-flex {
    display: block;
  }

  .contact-form-flex form {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .contact-form-head .heading-one {
    text-align: center;
    margin-bottom: 10px;
  }

  section.customer-feedback-wrap {
    padding: 100px 50px;
  }

  .feedback-slider-box .feedback-slider-flx {}

  .customer-feedback-slider .feedback-slider-box {
    padding: 50px 75px;
  }

  .customer-feedback-slider .slick-prev {
    left: 25%;
  }

  .customer-feedback-slider .slick-next {
    right: 25%;
  }

  .footer-logo-area .footer-logo {
    overflow: hidden;
  }

  .footer-logo-area .footer-logo:before,
  .footer-logo-area .footer-logo:after {
    width: 40%;
  }

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0;
  }

  /* Footer Responsive Css End Here */
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 175px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Home Page CSS Responsive Start Here */
  .heading-one {
    font-size: 33px;
    line-height: 40px;
  }

  .heading-four {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-three {
    font-size: 30px;
    line-height: 37px;
  }

  .heading-two {
    font-size: 29px;
    line-height: 36px;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    padding: 10px;
  }

  header nav.navbar {
    justify-content: space-between;
  }

  header nav.navbar .navbar-brand .logo {
    margin-bottom: 15px;
  }

  .contact-form-wrap .contact-form-flex {
    display: block;
  }

  .contact-form-flex form {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .abt-sec-main .abt-sec-rg-main {
    width: 85%;
  }

  .limitation-section .limit-sec-img {
    margin-bottom: 15px;
  }

  .portfolio-slide-content .slider-products .porfolio-main-content-books {
    display: block !important;
  }

  .porfolio-main-content-books .portfolio-books-img {
    width: 50%;
    margin-bottom: 20px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    width: 100%;
  }

  .abt-sec-second-main .abt-second-main-img {
    justify-content: center;
  }

  .feedback-slider-box .feedback-slider-flx {
    display: block;
  }

  .customer-feedback-slider .feedback-slider-box {
    padding: 55px;
    margin: 50px 15px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
    gap: 10px;
  }

  .customer-feedback-slider .slick-next {
    right: 0;
  }

  .customer-feedback-slider .slick-prev {
    left: 0;
  }

  .footer-logo-area .footer-logo:before,
  .footer-logo-area .footer-logo:after {
    width: 35%;
  }

  section.customer-feedback-wrap {
    padding: 100px 25px 100px;
  }

  .footer-logo-area .footer-logo {
    overflow: hidden;
  }
  
  .subscribe__modal .modal-dialog {
    width: 500px !important;
    min-width: 500px !important;
   }

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0;
  }

  .footer-bottom .footer-copyright {
    text-align: center;
  }

  /* Footer Responsive Css End Here */
}

@media only screen and (min-width: 300px) and (max-width: 575px) {
  .modal-body-form h3 {
    font-size: 25px !important;
    line-height: 32px !important;
  }

  html #staticBackdrop .modal-dialog {
    max-width: 300px !important;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/
  /*Header Responsive Css Start Here*/
  header nav.navbar {
    padding: 10px 0;
  }

  header nav.navbar .navbar-brand .logo {
    width: 130px;
  }

  .main-header .header-btn {
    gap: 12px;
  }

  .main-header .header-btn .head-icon {
    width: 32px;
    height: 32px;
  }

  .main-header .header-btn .head-icon i {
    font-size: 18px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Home Page CSS Responsive Start Here */
  .heading-one {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-four {
    font-size: 20px;
    line-height: 27px;
  }

  .heading-three {
    font-size: 22px;
    line-height: 29px;
  }

  .heading-two {
    font-size: 21px;
    line-height: 28px;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons button.chat-btn,
  .website-main-buttons a.call-btn {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  header nav.navbar {
    justify-content: space-between;
  }

  header nav.navbar .navbar-brand .logo {
    margin-bottom: 15px;
  }

  .website-main-buttons {
    display: block;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  .banner-brands {
    margin: 40px 0px;
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .banner-main-sec .banner-right-content {
    display: block;
  }

  .banner-right-content .ban-right-left-content {
    width: 100%;
    margin-bottom: 10px;
  }

  .banner-right-content .ban-right-right-content {
    margin-bottom: 10px;
  }

  .contact-form-wrap .contact-form-flex {
    display: block;
  }

  .contact-form-flex form {
    display: block;
  }

  .contact-form-flex .form-group input {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-form-flex .form-group button.submit-btn {
    width: 100%;
  }

  .abt-sec-main-content .abt-sec-lft-box {
    display: block;
  }

  section.abt-sec-main {
    text-align: center;
  }

  .abt-sec-main .abt-sec-rg-main {
    width: 100%;
  }

  .abt-sec-rg-main .abt-rg-btm-text {
    display: block;
  }

  .abt-sec-rg-main .abt-rg-btm-text .ban-rg-box-count {
    justify-content: center;
  }

  .abt-sec-rg-main .abt-rg-btm-text a.header-btn {
    justify-content: center;
    margin-top: 10px;
  }

  .abt-sec-main .abt-bottom-flex {
    display: block;
  }

  .abt-sec-main .abt-bottom-flex .abt-btm-text {
    width: 100%;
    margin-top: 15px;
  }

  section.limitation-section {
    padding: 31px 31px 31px 0px;
  }

  .limitation-section .limit-sec-img img {
    margin-bottom: 10px;
  }

  .limitation-section .limitation-sec-content {
    text-align: center;
  }

  .limitation-section .limitation-sec-content p {
    width: 100%;
  }

  .limitation-section .limitation-sec-content .arrow {
    width: 100%;
  }

  .portfolio-slide-content .slider-products .porfolio-main-content-books {
    display: block !important;
  }

  .porfolio-main-content-books .portfolio-books-img {
    width: 100%;
    margin-bottom: 10px;
  }

  .porfolio-main-content-books .portfolio-books-content {
    text-align: center;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    display: flex;
    justify-content: center;
  }

  .porfolio-main-content-books .portfolio-books-content .ban-rg-box-count {
    display: block;
  }

  .porfolio-main-content-books .portfolio-books-content .ban-rg-box-count .heading-five span {
    margin-right: 15px;
  }

  .abt-sec-second-main .abt-second-main-img img {
    width: 100%;
  }

  .abt-sec-second-main .abt-second-content-main {
    text-align: center;
  }

  section.customer-feedback-wrap {
    padding: 50px 25px 100px;
  }

  .customer-feedback-wrap .customer-feedback-head {
    text-align: center;
    margin-bottom: 30px;
  }

  .customer-feedback-inner .feedback-inner-head {
    display: block;
  }

  .feedback-inner-head .feedback-inner-left {
    justify-content: center;
  }

  .feedback-inner-head .feedback-inner-right {
    justify-content: center;
    margin-top: 10px;
  }

  .customer-feedback-slider .feedback-slider-box {
    padding: 30px;
    margin: 70px 5px;
  }

  .feedback-slider-box .feedback-slider-flx {
    display: block;
  }

  .feedback-slider-box .feedback-slider-flx .feedbacl-author-img {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .feedback-slider-box .feedback-slider-detail {
    text-align: center;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-autor-name .heading-five {
    font-size: 19px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex {
    display: block;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon {
    display: block;
    margin-bottom: 10px;
  }

  .feedback-slider-box .feedback-slider-detail .feedback-slider-icon-flex .feedback-trustpilot-icon img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
  }

  .customer-feedback-slider .slick-next {
    right: 0;
  }

  .customer-feedback-slider .slick-prev {
    left: 0;
  }

  .footer-logo-area .footer-logo:after,
  .footer-logo-area .footer-logo:before {
    display: none;
  }

  header {
    padding: 10px 0px;
  }

  .website-main-buttons .call-button-new {
    display: flex;
    justify-content: center;
  }

  .portfolio-books-nav img {
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  
  .subscribe__modal .modal-dialog {
    width: 300px !important;
    min-width: 300px !important;
    margin: 0 auto;
}

.subscribe__modal .modal-content .modal-body img {
    top: -40px !important;
    width: 45% !important;
}

.subscribe__modal .modal-content .modal-body {
    padding: 20px 8px 23px !important;
}

.subscribe__modal .modal-content .modal-body h3 {
    font-size: 30px !important;
}

.subscribe__modal .modal-content .modal-body h5 {
    font-size: 23px !important;
    line-height: 30px !important;
}

.subscribe__modal .modal-content .modal-body p {
    font-size: 20px !important;
    line-height: 27px !important;
}

.subscribe__modal .modal-content .modal-body form button {
    width: 100% !important;
}

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Footer Responsive Css Start Here */
  .footer-main-sec .footer-top {
    padding: 30px 0;
  }

  .footer-bottom .footer-copyright {
    text-align: center;
  }

  /* Footer Responsive Css End Here */
}