@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
  --color-mode: "light";
  --color-primary: #5869da;
  --color-secondary: #2d3d8b;
  --color-success: #09815c;
  --color-danger: #e3363e;
  --color-warning: #e38836;
  --color-info: #4da7d4;
  --color-light: #f8f9f9;
  --color-grey: #f7f8f9;
  --color-dark: #000c2d;
  --color-muted: #687385;
  --color-white: #ffffff;
  --primary-border-color: #9b9b9b;
  --secondary-border-color: #f0f8ff;
  --mutted-border-color: #eaecee;
  --box-shadow-normal: 0 10px 10px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 4px 60px 0 rgba(0, 0, 0, 0.2);
  --button-shadow-color-normal: hsla(0, 0%, 42.4%, 0.2);
  --button-shadow-color-hover: hsla(0, 0%, 42.4%, 0.3);
}
html {
  font-size: 62.5%;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  transition: opacity 0.2s ease-in-out 0s;
  font-family: "Open Sans", sans-serif;
  color: #000;
  padding-top: 120px;
  font-size: 1.6rem;
  line-height: 1.7;
}
* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: "Montserrat", sans-serif !important;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: #00a2ff;
  cursor: pointer;
}
textarea:focus,
input:focus {
  outline: none;
}

/* Header css start -------------------------------------*/
.main-header {
  opacity: 1;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  position: fixed;
  box-sizing: border-box;
  border-bottom: 1px solid #d8d8d8;
  z-index: 100;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  height: 120px;
  display: flex;
  align-items: center;
}

.header {
  box-sizing: border-box;
  padding: 0 15px;
  height: 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 1640px;
  position: relative;
  z-index: 20;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  display: block;
  height: 40px;
  width: auto;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.header ul {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.header .main-nav ul li:not(:last-child) {
  margin-right: 40px;
}
.header ul li a {
  text-decoration: none;
  padding: 0;
  position: relative;
  border-left: medium none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.15s ease-in-out;
  color: #000;
}
.header ul li a:hover {
  color: #ff5d00;
}
.header > div,
.header > a {
  flex: 0 0 33.33%;
}
.main-menu {
  justify-content: center;
}
.button-menu {
  justify-content: flex-end;
}
.button-menu li + li {
  margin-left: 15px;
}
.header .button-menu > li > a {
  border-radius: 30px;
  z-index: 1;
  text-transform: uppercase;
  transition: 0.6s;
  background: #00a2ff;
  padding: 12px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 0;
}
.header .button-menu > li > a:hover {
  background-color: #ff5d00;
  color: #fff;
}
/* Header css end -------------------------------------*/

/* Blog Listing css start ----------------------------- */
.container {
  max-width: 1496px;
  margin: 0 auto;
}
.blog-header-banner {
  margin: 10rem 0;
}
.blog-header-banner .tilte-date {
  margin-bottom: 7rem;
}
.blog-header-banner .tilte-date .category-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.blog-header-banner .tilte-date .category-date span {
  font-size: 1.8rem;
  font-weight: 600;
}
.blog-header-banner .tilte-date .category-date a {
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #00a2ff;
  font-weight: 500;
}
.blog-header-banner .tilte-date .title {
  font-size: 3rem;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.blog-header-banner .tilte-date .title:hover {
  color: #ff5d00;
}
.blog-header-banner .blog-image {
  border-radius: 4rem;
  overflow: hidden;
  display: flex;
}
.blog-header-banner .blog-image img {
  width: 100%;
  transition: 0.3s;
}
.dates-list {
  position: relative;
}
.dates-list .publish-date {
  display: none;
  position: absolute;
  top: 2.8rem;
  margin-right: 0;
  background-color: #00a2ff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  min-width: 220px;
  z-index: 9;
}
.dates-list .updated-date:hover + .publish-date {
  display: flex;
}
figure {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Blog Listing css end ----------------------------- */

/* Category Listing Tab css start ----------------------------- */
.container-1640 {
  max-width: 1640px;
  margin: 0 auto;
}
.category-listing-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6rem;
  margin-top: 5rem;
  border-bottom: 1px solid #e9e9e9;
  gap: 5rem;
}
.category-listing-tab ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 25rem);
  overflow: auto;
  padding-bottom: 5px;
}
.category-listing-tab ul li a {
  padding: 1rem 1.5rem;
  color: #000;
  font-family: "Montserrat", sans-serif;
  border-radius: 2.5rem;
  white-space: nowrap;
  display: block;
}
.category-listing-tab ul li a.current-page {
  background-color: #ff5d00;
  color: #fff;
}
.category-listing-tab ul li a:hover {
  color: #ff5d00;
}
.category-listing-tab ul li a.current-page:hover {
  color: #fff;
}
.search-btn {
  /* background-color: #eeeeee; */
  /* padding: 1rem 2rem; */
  color: #000;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0;
  position: relative;
  width: 20rem;
}
.search-btn > input {
  border: none;
  border-bottom: 1px solid #707070;
  font-size: 16px;
  color: #000;
  font-family: "Open Sans", sans-serif;
  padding: 0 2rem 1rem 0;
  font-weight: 600;
  width: 100%;
}
.search-btn > input::placeholder {
  text-transform: uppercase;
}
.search-btn button {
  position: absolute;
  right: 0;
  bottom: 1rem;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Category Listing Tab css end ----------------------------- */

/* Blog Listing css Start ----------------------------- */
.container-1150 {
  max-width: 1150px;
  margin: 6rem auto;
}
.blog-card:not(:last-child) {
  margin: 0 0 6rem;
}
.blog-card-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.blog-card-inner .blog-image {
  width: 48%;
  display: flex;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid transparent;
}
.blog-card-inner .blog-image img {
  width: 100%;
  transition: 0.3s;
}
.blog-card-inner .blog-image:hover {
  /*transform: scale(1.1);*/
  border-radius: 1rem;
  border-color: #f2f2f2;
}
.blog-inner-detail {
  width: calc(52% - 3rem);
}
.blog-inner-detail .tilte-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.blog-inner-detail .tilte-date a {
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #00a2ff;
  font-weight: 500;
}
.blog-inner-detail .tilte-date span {
  font-size: 1.8rem;
  font-weight: 600;
}
.blog-inner-detail .title {
  font-size: 2.2rem;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}
.blog-inner-detail a:hover .title {
  color: #ff5d00;
}
.blog-inner-detail p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  margin: 15px 0 0;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cta-image {
  border-radius: 2.5rem;
  overflow: hidden;
  display: flex;
}
.cta-image img {
  width: 100%;
}
.blueHead-table tr th {
  background: #00a2ff;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
/* Blog Listing css end ----------------------------- */

/* Pagination css start ----------------------------- */
.pagination {
  list-style: none;
  padding: 0;
  margin: 2rem 0 14rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main_home_page .pagination {
  margin: 2rem 0;
}
.pagination li a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #e4e4e4;
  color: #000;
  font-family: "Montserrat", sans-serif;
}
.pagination li a.active,
.pagination li a:hover {
  background-color: #ff5d00;
  color: #fff;
}
/* Pagination css end ----------------------------- */

/* Contact Form css start ----------------------------- */
.contact-sec {
  position: relative;
  z-index: 1;
  margin-top: 10rem;
}
.contact-form-bg {
  background-color: #008bdb;
  border-radius: 4rem;
  display: flex;
}
.form-left-sec {
  width: 63.7%;
  padding: 6rem;
}
.section-title h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5rem;
}
.contact-form-bg .form .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.contact-form-bg .form .row .col-lg-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 15px;
}
.contact-form-bg .form .row .col-lg-12 {
  flex: 0 0 auto;
  width: 100%;
  padding: 0 15px;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  height: 6rem;
  background-color: rgb(255 255 255 / 0.8%);
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 10px;
  padding: 15px 25px;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.form-control::placeholder {
  color: rgb(255 255 255 / 64%);
}
.form-control:focus {
  border: 1px solid rgb(255 255 255 / 100%);
}
.d-none {
  display: none;
}
.checkbox-group {
  position: relative;
}
.form-checkbox-label {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
}
.checkbox-group .form-checkbox-label {
  padding-left: 3.3rem;
  margin: 0;
  display: inline-block;
}
.checkbox-group .form-checkbox-label:after,
.checkbox-group .form-checkbox-label:before {
  content: "";
  position: absolute;
  border-radius: 0;
  top: 0px;
  line-height: normal;
}
.checkbox-group .form-checkbox-label:after {
  height: 16px;
  width: 16px;
  border: 1px solid #ffffff;
  left: 0;
  top: 7px;
}
.checkbox-group input:checked ~ .form-checkbox-label:after {
  border-color: #fff;
  background: #fff;
}
.checkbox-group input:checked ~ .form-checkbox-label:before {
  content: "✔";
  z-index: 8;
  left: 4px;
  color: #008bdb;
  font-size: 12px;
  top: 7px;
}
.form-checkbox-link {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
.btn {
  background-color: #fff;
  color: #008bdb;
  border: 1px solid #008bdb;
  border-radius: 30px;
  min-width: 14rem;
  height: 6rem;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.contact-form-bg .btn {
  margin-top: 2.5rem;
}
.mt-2 {
  margin-top: 1.5rem;
}
.about-project-upload {
  position: relative;
}
.enqiry-file-upload {
  position: absolute;
  right: 1rem;
  top: 0;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.enqiry-file-upload label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.remove-file-btn {
  background-color: transparent;
  border: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  padding: 0;
  margin-right: -2rem;
  color: #fff;
}
.attech-size {
  display: flex;
  align-items: center;
}
textarea {
  resize: none;
}
#textarea {
  overflow-y: hidden;
  padding-right: 7rem;
  min-height: 6rem;
}
.form-captcha {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
}
.form-captcha input {
  width: 8rem;
}
.invalid-feedback,
.invalid-feedbacks {
  display: block;
  color: #ff5d00;
  margin: 5px 0 0;
}
.overlay {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.39);
  height: 100%;
  width: 100%;
  z-index: 99999;
}
.overlay:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.39);
  height: 100%;
  width: 100%;
  z-index: 99999;
}
div#attachPreviewDiv,
div#attachPreviewDivs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  background-color: rgb(255 255 255 / 0.8%);
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 10px;
  padding: 15px 25px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
/* Contact Form css end ----------------------------- */

/* Client testimonails css start ----------------------------- */
.testimonail-right-sec {
  background-color: #00a2ff;
  width: 36.3%;
  border-radius: 0rem 4rem 4rem 0rem;
  padding: 70px;
}
.testimonail-right-sec .testimonail-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonail-right-sec .testimonail-header img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.swiper-slide {
  text-align: center;
  font-size: 1.8rem;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* -webkit-align-items: center;
  align-items: center; */
}
.client-details {
  text-align: left;
}
.client-details h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
.client-details p {
  margin: 0;
  color: #fff;
}
.block-bx > p {
  text-align: left;
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
}
.testimonail-header {
  margin-bottom: 30px;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: #40b9ff;
  border-radius: 0;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #ffffff;
}
/* Client testimonails css end ----------------------------- */

/* Footer css start ----------------------------- */
.footer-area-new {
  background: #2b2c2c url(../images/footer-bg.jpg) no-repeat center center/cover;
  padding-top: 44rem;
  margin-top: -34rem;
  position: relative;
  z-index: 0;
}
.footer-area-new .container {
  padding: 0 15px;
  max-width: 1640px;
}
.footer-area-new .row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}
.footer-area-new .col-lg-12 {
  flex: 0 0 auto;
  width: 100%;
}
.footer-area-new .col-xl-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.footer-area-new div[class*="col-"] {
  padding: 0 15px;
}
.footer-area-new .col-md-6 {
  flex: 0 0 auto;
  width: 50%;
}
.footer-area-new .col-xl-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.footer-area-new .sayHello-link {
  display: flex;
  width: 100%;
  gap: 2rem;
}
.footer-area-new .sayHello-link .emailid-row {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}
.footer-area-new .sayHello-link .emailid-row a {
  display: inline-block;
}
.footer-area-new .sayHello-link .emailid-row a .small-text {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  text-transform: none;
  text-transform: initial;
}
.footer-area-new .sayHello-link .emailid-row a .large-text {
  font-size: 3rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.36);
  transition: 0.3s;
}
.footer-area-new .sayHello-link .emailid-row a:hover .large-text {
  color: rgba(255, 255, 255, 0.8);
}
.footer-area-new .saprator-footer {
  width: 100%;
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0)
  );
  margin: 70px 0;
}
.footer-area-new .contactInfo-list h3 {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-area-new .address-box {
  margin: 15px 0;
  width: 100%;
}
.footer-area-new .d-flex {
  display: flex !important;
}
.footer-area-new .align-items-center {
  align-items: center !important;
}
.footer-area-new .address-box .country-name {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  margin-left: 15px;
}
.footer-area-new .address-box .country-address {
  font-size: 16px;
  color: #fff;
  margin: 15px 0;
}
.stay-call {
  cursor: pointer;
}
.footer-area-new .text-white {
  color: #fff;
}
/* Footer css end ----------------------------- */

/* Footer Social css start ----------------------------- */
.footer-area-new .about-social-links {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 20px 0;
  margin-top: 20px;
}
.footer-area-new .about-social-links .footer-links-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  column-gap: 38px;
  row-gap: 10px;
}
.footer-area-new .about-social-links .footer-links-list li {
  position: relative;
}
.footer-area-new .about-social-links .footer-links-list a {
  color: #fff;
  font-size: 1.8rem;
  transition: 0.3s;
}
.footer-area-new .about-social-links .footer-links-list a:hover {
  color: #ff5d00;
}
.footer-area-new
  .about-social-links
  .footer-links-list
  li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -18px;
  width: 2px;
  top: 4px;
  bottom: 4px;
  background-color: #fff;
}
.footer-area-new .about-social-links .footer-socials-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  gap: 20px;
}
.footer-area-new .about-social-links .footer-socials-list li a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s;
}
.footer-area-new
  .about-social-links
  .footer-socials-list
  .facebook-icon-link:hover {
  background: #365196;
}
.footer-area-new
  .about-social-links
  .footer-socials-list
  .twitter-icon-link:hover {
  background: #1da1f2;
}
.footer-area-new
  .about-social-links
  .footer-socials-list
  .instagram-icon-link:hover {
  background: rgb(100, 41, 209);
  background: linear-gradient(
    -45deg,
    rgb(100, 41, 209) 0%,
    rgb(217, 66, 161) 50%,
    rgb(232, 175, 102) 100%
  );
}
.footer-area-new
  .about-social-links
  .footer-socials-list
  .linkedin-icon-link:hover {
  background: #0a66c2;
}
.footer-area-new .about-social-links .footer-socials-list li a:hover {
  border: 0;
}
/* Footer Social css end ----------------------------- */

/* Copyright css start ----------------------------- */
.copyright-area-section {
  background-color: rgba(0, 0, 0, 0.16);
  padding: 25px 15px;
}
.copyright-area-section p {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
/* Copyright css end ----------------------------- */

/* Detail Page css start ----------------------------- */
.blog-detail-page .container {
  max-width: 1640px;
}
.detail-header-banner {
  margin: 4.5rem 0;
}
.detail-header-banner .blog-image:hover img {
  transform: unset;
}
.detail-header-banner .tilte-date .title:hover {
  color: unset;
}
.blog-info-author {
  margin: 2.5rem 0 0;
  display: flex;
  gap: 5.5rem;
}
.blog-info-author a,
.blog-info-author span {
  color: #000000;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.updated-date {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-info-author a:hover {
  color: #ff5d00;
}
.blog-info-author > *:not(:last-child):before {
  content: "";
  position: absolute;
  right: -40px;
  top: 13px;
  width: 2.5rem;
  height: 1px;
  display: block;
  /* background-color: #707070; */
}
.blog-detail-inner {
  display: flex;
  gap: 3.8rem;
}
.left-sidebar {
  width: 37.6rem;
  position: sticky;
  top: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 100vh;
  overflow-y: auto;
}
/* .sidebar-item {
  padding: 3rem 2.5rem 2.5rem;
  border: 1px solid #f5f5f5;
  position: relative;
} */
.sidebar-item:not(:last-child) {
  margin-bottom: 3rem;
}
/* .sidebar-item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background-color: #00a2ff;
} */
.sidebar-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.sidebar-item .ez-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-item .ez-toc-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.sidebar-item .ez-toc-list li a {
  color: #000000;
  position: relative;
  display: block;
  font-size: 13px;
}
.sidebar-item .ez-toc-list li a:hover {
  color: #ff5d00;
}
.sidebar-item .ez-toc-list li.active a {
  padding-left: 2rem;
}
.sidebar-item .ez-toc-list li.active a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background-color: #ff5d00;
}
div#ez-toc-container .ez-toc-title,
div#ez-toc-container .cssicon,
div#ez-toc-container .cssiconcheckbox,
div#ez-toc-container input {
  display: none !important;
}
div#ez-toc-container .cssicon {
  display: none;
}
.stay-connected {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.stay-connected li a {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stay-connected li a.facebook-icon {
  background-color: #1877f2;
  color: #fff;
}
.stay-connected li a.twitter-icon-link {
  background-color: #1d9bf0;
  color: #fff;
}
.stay-connected li a.youtube-icon-link {
  background-color: #dc0000;
  color: #fff;
}
.stay-connected li a.linkedin-icon-link {
  background-color: #0274b3;
  color: #fff;
}
.stay-connected li a.instagram-icon-link {
  background: rgb(100, 41, 209);
  background: linear-gradient(
    -45deg,
    rgb(100, 41, 209) 0%,
    rgb(217, 66, 161) 50%,
    rgb(232, 175, 102) 100%
  );
  color: #fff;
}
.blog-description {
  width: calc(100% - 37.6rem + 3.8rem);
}
.blog-description p {
  color: #000000;
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.7;
}
.blog-description p + p {
  margin-top: 3rem;
}
.blog-description h2 {
  font-size: 2.6rem;
  margin: 5rem 0 2.5rem;
  text-align: left !important;
}
.blog-description h3 {
  font-size: 2.4rem;
  margin: 5rem 0 2.5rem;
}
.blog-description h4 {
  font-size: 2rem;
  margin: 5rem 0 2.5rem;
  font-weight: 600;
}
.blog-description h5 {
  font-size: 1.8rem;
  margin: 5rem 0 2.5rem;
  font-weight: 600;
}
.blog-description img {
  width: 100%;
  height: auto;
  border-radius: 4rem;
  margin: 4rem 0;
}
.blog-description ol {
  padding-left: 3rem;
  margin: 2.5rem 0;
}
.blog-description ol > li {
  color: #000000;
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.7;
}
.blog-description ol > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.blog-description > ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
}
.blog-description > ul li {
  color: #000000;
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.7;
  position: relative;
  padding-left: 3rem;
}
.blog-description > ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.blog-description > ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  background-color: #00a2ff;
}
.blog-description iframe {
  width: 100%;
  margin: 4rem 0;
}
.popup-open-form {
  display: block;
  margin: 4rem 0;
}
.popup-open-form img {
  margin: 0;
}
.blog-description img + h4,
.blog-description img + h5,
.blog-description img + h3 {
  margin-top: 0;
}

.accordion-cls {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}
.accordion-cls li {
  padding: 0 !important;
}
.accordion-cls li:before {
  display: none;
}
.accordion-cls li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.accordion-cls .toggle {
  position: relative;
  font-weight: 500;
  display: block;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  font-size: 2.2rem;
  color: #000 !important;
  text-decoration: none;
  background: #f6f6f6;
  box-shadow: 0 0 0 0 rgb(0 153 255 / 40%);
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  text-align: left !important;
}
.accordion-cls .toggle:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.95' height='10.85' viewBox='0 0 18.95 10.85'%3E%3Cpath id='Vector' d='M18.95 2.725l-8.4 8.425a.871.871 0 0 1-.325.212 1.148 1.148 0 0 1-.75 0 .871.871 0 0 1-.325-.212L.725 2.725a1.187 1.187 0 0 1-.35-.875A1.227 1.227 0 0 1 .75.95 1.208 1.208 0 0 1 2.5.95L9.85 8.3 17.2.95A1.171 1.171 0 0 1 18.062.6a1.214 1.214 0 0 1 .888.375 1.208 1.208 0 0 1 0 1.75Z' transform='translate(-0.375 -0.575)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1.5rem;
  transition: 0.3s;
  /* filter: brightness(0) invert(1); */
}
.accordion-cls .toggle.active:after {
  transform: rotate(-180deg);
}
.accordion-cls .toggle:hover {
  color: #00a2ff !important;
}
.accordion-cls .inner {
  display: none;
  border-top: 0;
  margin: 0;
  font-size: 1.8rem;
  padding: 0 15px !important;
  line-height: 1.4;
}
.accordion-cls .inner br {
  margin: 1rem 0 0;
}
.blog-description .accordion-cls li:not(:last-child) {
  margin-bottom: 3rem;
}
.ctaopen {
  display: flex;
  align-items: center;
  margin: 4rem 0;
}
.ctaopen img {
  margin: 0;
}
.blog-description .aligncenter {
  text-align: center;
  width: auto !important;
  margin: 4rem auto;
  display: block;
  max-width: 100% !important;
}
/* Detail Page css end ----------------------------- */

/* Author css start ----------------------------- */
.author-box {
  background-color: #f7f7f7;
  border-radius: 2.5rem;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.7rem;
  margin-top: 5rem;
}
.author-box > a {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
}
.author-box > a img {
  margin: 0;
}
.author-box .descripition-author {
  width: calc(100% - 12.7rem);
}
.author-box .descripition-author h3 {
  font-size: 2.4rem;
  padding-bottom: 2.4rem;
  margin: 0 0 2rem;
  font-weight: 600;
  border-bottom: 1px solid #d2d2d2;
}
.author-box .descripition-author p {
  font-size: 2.2rem;
}
.author-box .descripition-author .author-social {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.author-box .descripition-author .author-social a {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00a2ff;
  color: #fff;
}
.author-box .descripition-author .author-social a.linkedin-icon {
  background-color: #1d9bf0;
}
.author-box .descripition-author .author-social a.instagram-icon {
  background: rgb(100, 41, 209);
  background: linear-gradient(
    -45deg,
    rgb(100, 41, 209) 0%,
    rgb(217, 66, 161) 50%,
    rgb(232, 175, 102) 100%
  );
}
.author-box .descripition-author .author-social a.twitter-icon {
  background-color: #1d9bf0;
}
/* Author css end ----------------------------- */

/* Realted Post css start ----------------------------- */
.related-post {
  margin: 12rem 0;
}
.related-post .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.related-post .row .col-lg-12 {
  width: 100%;
}
.related-post .row .col-lg-4 {
  width: calc(100% / 3 - 2rem);
}
.blog-post-col {
  display: block;
  color: #000;
}
.blog-post-col img {
  width: 100%;
  margin: 0;
  border-radius: 2.5rem;
}
.blog-post-col .blog-detail {
  margin: 2.5rem 0 0;
}
.blog-post-col .blog-detail .post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 2rem;
}
.blog-post-col .blog-detail .post-info span {
  font-size: 14px;
  font-weight: 600;
}
.blog-post-col .blog-detail .blog-title {
  font-size: 2.2rem;
  margin: 0;
  transition: 0.3s;
}
.blog-post-col:hover .blog-detail .blog-title {
  color: #ff5d00;
}
.blog-post-col .blog-detail .post-info span:first-child {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.img-fluid {
  max-width: 100%;
}
.related-post h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
}
.related-post .text-center {
  text-align: center;
}
/* Realted Post css start ----------------------------- */

/* Search Page css start ----------------------------- */
.search-header {
  margin: 10rem 0;
}
.search-result {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #9e9e9e;
}
.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e9e9e9;
}
.search-bar .title {
  font-size: 5rem;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-weight: 500;
}
/* Search Page css start ----------------------------- */

/* Author Page css start ----------------------------- */
.author-detail-page {
  padding: 0 0 4rem;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 4rem;
}
.author-detail-page > a {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  overflow: hidden;
}
.author {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #9e9e9e;
}
.author-detail-page .descripition-author .author-social {
  justify-content: flex-start;
  margin-bottom: 2.3rem;
}
.author-detail-page .descripition-author h3 {
  border-bottom: 0;
  padding-bottom: 0;
}
.mb-10 {
  margin-bottom: 10rem;
}
/* Author Page css start ----------------------------- */

/* Go to top button css start ----------------------------- */

.scroll-up {
  position: fixed;
  right: 5rem;
  bottom: 8rem;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  z-index: 99999;
  box-shadow: 0 0 10px 0 #e6e6e6;
  color: #00a2ff;
  display: none;
  align-items: center;
  justify-content: center;
}
.scroll-up.active {
  display: flex;
}

.mobile-header {
  display: none;
}

/* Popop Modal form css start */
.modal {
  display: none;
  position: fixed;
  z-index: 9999999999 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #008bdb;
  padding: 40px;
  border-radius: 30px;
  position: relative;
  width: 94%;
}
.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.modal-content h2 {
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0 25px;
  text-align: center;
}
.modal-content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #fff;
  cursor: pointer;
}
.modal-content form .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.modal-content form .row .col-lg-12 {
  width: 100%;
  padding: 0 15px;
}
.modal-content form .row .col-lg-6 {
  width: 50%;
  padding: 0 15px;
}
.modal-content form .btn {
  margin-top: 2rem;
}
.modal-content form .text-center {
  text-align: center;
}
/* Popop Modal form css end */

/* Custom scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb {
  background: #ff5d00;
  border-radius: 20px;
}
body::-webkit-scrollbar {
  width: 10px;
}
/* Custom scrollbar css end */

/* Table css start */
table {
  caption-side: bottom;
  border-collapse: collapse;
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin: 5rem 0 2rem;
  color: #212529;
  vertical-align: top;
}
.blog-description table {
  border: 1px solid #e8e8e8;
}
tbody,
td,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
table tr:nth-child(odd) {
  background: #fff;
}
table tr:nth-child(2n) {
  background: #f6f6f6;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
td {
  border-width: 0 1px 1px 0;
  padding: 10px;
}
table > :not(caption) > * > * {
  padding: 10px;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
table thead tr th {
  background-color: #00a2ff;
  color: #fff;
}
strong,
strong b,
b strong {
  font-weight: 600;
}
.blog-description table td {
  vertical-align: middle;
}
.blog-description table ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 15px;
}
.blog-description table ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.blog-description table ul li:before {
  width: 6px;
  height: 6px;
  background: #000;
  content: "";
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 11px;
}
/* Table css end */

.all-list-dropdown {
  display: none;
}

/* Whatsapp Css start*/
.whatup-button {
  position: fixed;
  left: 2rem;
  bottom: 2.5rem;
  z-index: 9999;
  transition: 0.3s;
}
.whatup-button a {
  display: flex;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}
.whatup-button a:hover {
  animation: zoom-in-zoom-out 1s ease infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* Whatsapp Css end*/

/* Calendly Modal CSS start */
.calendly-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 3rem;
  outline: 0;
  max-width: 1100px;
  padding: 2rem 3rem;
  margin: 3rem auto;
  max-height: calc(100vh - 6rem);
  overflow: hidden;
}
.calendly-bx iframe {
  width: 100%;
  min-width: 320px;
  height: 73vh;
}
.calendly-modal .close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  background-color: red;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transition: 0.3s;
}
.calendly-modal .close:hover {
  opacity: 0.8;
}
.calendly-modal h2 {
  color: #000;
  margin-bottom: 0;
  padding: 0 4rem;
}
.overflow-hideen {
  overflow: hidden;
}
/* Calendly Modal CSS end */

.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 16px;
}

/* Copy pase disable css */

* {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -webkit-touch-callout: none; /* iOS Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
/* Copy pase disable css end */

/* Order changes css */
.main_home_page main {
  display: flex;
  flex-direction: column;
}
.main_home_page main > * {
  width: 100%;
}

p[align="justify"] {
  text-align: left;
}

/* 404 Page */
.error-area {
  text-align: center;
  padding: 5rem 0 0;
}
.error-area .m-auto {
  margin: 0 auto;
  max-width: 600px;
  padding: 0 15px;
  position: relative;
}
.error-area .error-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-weight: 700;
  font-size: 25rem;
  z-index: -1;
  color: #f1f4f8;
}
.error-area h2 {
  font-size: 3rem;
  color: #c1002b;
  margin-top: 5rem;
}
.error-area p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.error-area img {
  max-width: 70%;
  margin: 0 auto;
}

.error-area .btn {
  background-color: #00a2ff;
  color: #FFF;
  border: 2px solid #00a2ff;
  padding: 8px 24px;
  margin-top: 30px;
  transition: .3s;
}
.error-area .btn:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}






/* Black Friday */
.black-friday-bx {
  position: fixed;
  transform: translateY(-100%);
  transition: .8s ease-out;
  top: -4px;
  right: 10px;
  max-width: 120px;
  z-index: 999;
  pointer-events: none;
}
.black-friday-bx img {
  width: 100%;
}
.black-friday-bx.active {
  transform: none;
}
.black-friday-bx .close-btn {
  position: absolute;
  right: 7px;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #262626;
  z-index: 999;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  border-radius: 50%;
}
.black-friday-bx .close-btn:hover {
  background-color: #E31617;
  color: #FFF;
}
.black-friday-bx a {
  display: flex;
}

/* Snowfall */
#snowfall-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.snowflake {
  font-size: 5vw;
  position: absolute;
}
.small-snowflake {
  font-size: 16px !important;
  position: absolute;
  transform: scale(2);
}

.big-snowflake {
  font-size: 24px !important;
  position: absolute;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .black-friday-bx {
    max-width: 80px;
    z-index: 99;
    top: 40px;
  }
  .black-friday-bx.fixed {
    transform: translateY(-100%);
  }
}



.blog-description .faq-list-design {

    list-style: none;

    padding: 0;

    margin: 2.5rem 0

}
 
.blog-description .faq-list-design li:not(:last-child) {

    margin-bottom: 1rem !important

}
 
.blog-description .faq-list-design li {

    color: #000;

    font-size: 18px;

    margin: 0;

    line-height: 1.7;

    position: relative;

    padding-left: 3rem !important

}
 
.blog-description .faq-list-design li:before {

    content: "";

    position: absolute;

    left: 0;

    top: 12px;

    width: 10px;

    height: 10px;

    background-color: #00a2ff;

    display: block!important

}
 

