*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* global Variable */
:root {
  /* Color */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-main: #4731d4;
  --color-secondary: #fa602d;
  --gradient-color: linear-gradient(258.95deg, #4731d4 20.12%, #654dff 71.39%);

  /* Font weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
}

::selection {
  color: var(--color-white);
  background: var(--color-secondary);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.3;
  font-family: "Figtree", sans-serif;
}

/* Component */
h1 {
  font-size: 40px;
  color: var(--color-white);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: 30px;
}
p {
  font-size: 16px;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  display: inline-block;
}

/* Heading */
.subheading {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-semiBold);
  color: rgba(0, 0, 0, 0.5);
  position: relative;
}
.subheading::after {
  content: "";
  position: absolute;
  background-color: var(--color-secondary);
  width: 80px;
  height: 1px;
  display: inline-block;
  margin: 11px 8px;
}
.heading {
  font-weight: var(--fw-bold);
  padding-bottom: 20px;
}

/*  button */
.main-btn a {
  background-color: var(--color-secondary);
  text-decoration: none;
  color: var(--color-white);
  font-size: 18px;
  font-weight: var(--fw-medium);
  padding: 7px 30px;
  border-radius: 20px;
  transition: 0.5s;
}
.main-btn a:hover {
  outline: 1px solid var(--color-white);
  outline-offset: 5px;
}

/*  ==================  Nav Section Open ======================  */

.headerWrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--gradient-color);
  overflow: hidden;
}
.headerWrapper .navbar {
  padding: 0;
}
.headerWrapper .navbar-brand {
  font-size: 25px;
  font-weight: var(--fw-black);
}
.headerWrapper .navbar-brand span {
  color: var(--color-white);
}
.headerWrapper .offcanvas-body {
  background: var(--gradient-color);
  isolation: isolate;
}

.headerWrapper .navbar-nav {
  text-align: center;
}

.headerWrapper .navbar-nav .nav-link {
  font-size: 25px;
  color: var(--color-white);
  line-height: 2.1;
}

.headerWrapper .offcanvas-header .offcanvas-title {
  font-size: 25px;
  font-weight: var(--fw-black);
}
.headerWrapper .offcanvas-header .offcanvas-title span {
  color: var(--color-secondary);
}
.headerWrapper .navbar-btn {
  text-align: center;
}
.headerWrapper .navbar-btn a {
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--color-white);
  font-weight: var(--fw-medium);
  text-decoration: none;
  color: var(--color-white);
  font-size: 18px;
  padding: 7px 30px;
  border-radius: 20px;
  transition: 0.5s;
}
.headerWrapper .navbar-btn a:hover {
  outline: 1px solid var(--color-main);
  outline-offset: 5px;
}
.headerWrapper .navbar .navbar-toggler {
  border: none;
}
.headerWrapper .navbar .navbar-toggler i {
  font-size: 30px;
  color: var(--color-white);
}
.headerWrapper .navbar .navbar-toggler:focus {
  box-shadow: unset;
}
.headerWrapper .navbar .navbar-brand  img {
  width: 100%;
  max-width: 140px;
}

 .headerWrapper .navbar  .offcanvas-header {
   background: var(--gradient-color);
}

.headerWrapper .navbar  .offcanvas-header .offcanvas-title img{
  width: 100%;
  max-width: 100px;
}



  /*  ==================  Nav Section Close ======================  */

/*  ==================  Hero Section Open ======================  */
.heroWrapper {
  background: var(--gradient-color);
  padding-top:120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.heroWrapper .fancyDesign {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: radial-gradient(
    var(--color-main) 30%,
    var(--color-secondary) 70%
  );
  right: 0;
  top: 20%;
  filter: blur(3px);
  box-shadow: 1px 0 4px rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.heroWrapper .fancyDesign1 {
  animation: heroFancy1 10s linear infinite;
}

.heroWrapper .fancyDesign2 {
  left: 50%;
  bottom: -20px;
  animation: heroFancy2 5s linear infinite;
}

.heroWrapper .fancyDesign3 {
  left: 0;
  bottom: 10%;
  height: 150px;
  width: 150px;
  animation: heroFancy2 7s linear infinite;
}

@keyframes heroFancy1 {
  0% {
    right: 0;
    top: 0;
    opacity: 0.4;
  }

  75% {
    right: 20%;
    top: 40%;
    opacity: 0.8;
  }
  90% {
    right: 0;
    top: 40%;
    opacity: 0.4;
  }

  100% {
    right: 0;
    top: 0;
  }
}

@keyframes heroFancy2 {
  0% {
    left: 0;
    top: 0;
    opacity: 0.4;
  }

  75% {
    left: 50%;
    top: 40%;
    opacity: 0.8;
  }
  90% {
    left: 0;
    bottom: 40%;
  }

  100% {
    left: 0;
    top: 0;
    opacity: 0.4;
  }
}

.heroWrapper .heroWrapper__left h1 {
  line-height: 1;
}

.heroWrapper .heroWrapper__left p {
  font-size: 20px;
  color: var(--color-white);
  padding-top: 12px;
}
.heroWrapper .heroWrapper__right img {
  width: 100%;
  max-width: 500px;
  transition: all 0.4s ease;
  animation: heroImg 3s linear infinite;
}

@keyframes heroImg {
  0% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.heroWrapper .heroSocial ul {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.heroWrapper .heroSocial ul li {
  padding-right: 10px;
}

.heroWrapper .heroSocial ul li a {
  color: var(--color-white);
  font-size: 20px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.heroWrapper .heroSocial ul li a:hover {
  border: 2px solid var(--color-secondary);
  transform: rotate(360deg);
  color: var(--color-secondary);
}

/* Hero Animation Open */
.bubble {
  border-radius: 50%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2),
    inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
  height: 100px;
  width: 100px;
  position: absolute;
  animation: animateBubble 15s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  z-index: -1;
  opacity: 0.3;
}
.x1 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 5%;
  transform: scale(0.6);
}

.x2 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 80%;
  transform: scale(0.4);
}

.x3 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  transform: scale(0.7);
}

.x4 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 20%;
  top: 0%;
  transform: scale(0.3);
}

.x5 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  transform: scale(0.5);
}

.x6 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0%;
  transform: scale(0.5);
}

.x6 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0%;
  transform: scale(0.8);
}

.x8 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 65%;
  top: 70%;
  transform: scale(0.3);
}

.x9 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 90%;
  top: 50%;
  transform: scale(0.6);
}

.x10 {
  animation: animateBubble 25s linear infinite,
    sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  transform: scale(0.3);
}

@keyframes animateBubble {
  0% {
    margin-top: 400px;
  }
  100% {
    margin-top: -40%;
  }
}

@keyframes sideWays {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

/* Hero Animation Close */

/*  ==================  Hero Section Close ======================  */

/*  ==================  About us  Section Open ======================  */

.aboutWrapper {
  margin-top: 40px;
  position: relative;
}
.aboutWrapper .aboutWrapper-left {
  padding-bottom: 20px;
}

.aboutWrapper .aboutWrapper-left .icon-box {
  margin-top: 40px;
}
.aboutWrapper .aboutWrapper-left .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  transition: 0.5s;
}

.aboutWrapper .aboutWrapper-left .icon-box .icon i {
  color: var(--color-secondary);
  font-size: 30px;
}
.aboutWrapper .aboutWrapper-left .icon-box .title {
  margin-left: 85px;
  font-weight: var(--fw-semiBold);
  margin-bottom: 10px;
  font-size: 18px;
}

.aboutWrapper .aboutWrapper-left .icon-box .description {
  margin-left: 85px;
  font-size: 16px;
}

.aboutWrapper .aboutWrapper-left .icon-box:hover .icon {
  background-color: var(--color-secondary);
  transition: 0.5s ease;
}
.aboutWrapper .aboutWrapper-left .icon-box:hover .icon i {
  color: var(--color-white);
  transition: 0.5s ease;
}

.aboutWrapper .aboutWrapper-right {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  background-color: var(--color-main);
  position: relative;
}

.aboutWrapper .aboutWrapper-right .playbutton {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 50%;
}

.aboutWrapper .aboutWrapper-right .playbutton a {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--color-main) 50%,
   rgba(250, 96, 45,0.4) 52%
  );
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--color-white);
}

.aboutWrapper .aboutWrapper-right .playbutton a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.aboutWrapper .aboutWrapper-right .playbutton a::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(250, 96, 45,1);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.aboutWrapper .aboutWrapper-right .playbutton a:hover::after {
  border-left: 15px solid var(--color-main);
  transform: scale(20);
}

.aboutWrapper .aboutWrapper-right .playbutton a:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*  ==================  About us  Section Close ======================  */

/*  ==================  Services  Section Open ======================  */
.servicesWrapper {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.servicesWrapper .servicesWrapper__heading {
  text-align: center;
}

.servicesWrapper .heading {
  color: var(--color-white);
}

.servicesWrapper .subheading {
  color: var(--color-white);
}

.servicesWrapper .subheading::after {
  background-color: var(--color-white);
}

.servicesWrapper .servicesWrapper__box {
  background-color: var(--color-white);
  border: 5px solid transparent;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.servicesWrapper .servicesWrapper__box:hover {
  transform: translateY(-15px);
  border-bottom: 5px solid var(--color-secondary);
  -webkit-box-shadow: -3px -4px 35px -19px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -3px -4px 35px -19px rgba(0, 0, 0, 0.75);
  box-shadow: -3px -4px 35px -19px rgba(0, 0, 0, 0.75);
}

.servicesWrapper .servicesWrapper__box .servicesWrapper__box--icon {
  text-align: center;
  margin-bottom: 20px;
}

.servicesWrapper
  .servicesWrapper__box
  .servicesWrapper__box--icon
  .services-icon {
  font-size: 40px;
  height: 100px;
  width: 100px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  line-height: 100px;
}

.servicesWrapper .servicesWrapper__box .servicesWrapper__box--title {
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.servicesWrapper .servicesWrapper__box .servicesWrapper__box--descraption {
  color: var(--color-black);
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.servicesWrapper .servicesWrapper__box .servicesWrapper__box--link {
  text-align: center;
  margin-top: 20px;
}

.servicesWrapper .servicesWrapper__box .servicesWrapper__box--link a {
  color: var(--color-secondary);
  font-weight: var(--fw-semiBold);
}

/*  ==================  Services  Section Close ======================  */

/*  ==================  Testimonials  Section Open ======================  */

.testimonialsWrapper {
  margin-top: 30px;
}

.testimonialsWrapper .testimonialsWrapper__heading {
  text-align: center;
}
.testimonialsWrapper .testimonialsWrapper--item {
  background-color: var(--color-white);
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 30px 10px;
  border-radius: 15px;
}
.testimonialsWrapper .testimonialsWrapper--item img {
  width: 100%;
  max-width: 100px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonialsWrapper .testimonialsWrapper--item .client-info h3 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: var(--fw-semiBold);
}
.testimonialsWrapper .testimonialsWrapper--item .client-info h4 {
  font-size: 15px;
  font-weight: var(--fw-light);
}
.testimonialsWrapper .testimonialsWrapper--item .client-info .rating i {
  color: #ffc107;
  font-size: 16px;
}

.testimonialsWrapper .testimonialsWrapper--item p {
  margin-top: 20px;
}
.testimonialsWrapper .testimonialsWrapper--item i {
  color: var(--color-main);
  font-size: 20px;
}

.testimonialsWrapper .testimonialsWrapper--item .fa-quote-left {
  position: relative;
  left: -5px;
  display: inline-block;
}

.testimonialsWrapper .testimonialsWrapper--item .fa-quote-right {
  position: relative;
  right: -5px;
  top: 3px;
  display: inline-block;
}

/* Slick Dot */

.testimonialsWrapper .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.testimonialsWrapper .slick-dots li {
  margin: 0 0.25rem;
}

.testimonialsWrapper .slick-dots li button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: 1px solid var(--color-main);
  border-radius: 100%;
}
.testimonialsWrapper li.slick-active button {
  background-color: var(--color-main);
}

/*  ==================  Testimonials  Section Close ======================  */

/*  ==================  Portfolio  Section Open ======================  */
.portfolioWrapper {
  margin-top: 70px;
}

/*  ==================  Portfolio  Section Close ======================  */

/*  ==================  Our Clients  Section open ======================  */

.clientsWrapper {
  margin-top: 30px;
}

.clientsWrapper .clientsJs {
  margin-top: 50px;
}
.clientsWrapper .clientsLogo {
  margin-right: 80px;
  flex-shrink: 0;
}
.clientsWrapper .clientsLogo img {
  opacity: 0.4;
  transition: 0.5s ease;
  cursor: pointer;
}

.clientsWrapper .clientsLogo img:hover {
  opacity: 1;
}

/*  ==================  Our Clients  Section Close ======================  */

/*  ==================  CTA Section Open  ======================  */

.ctaWrapper {
  margin-top: 70px;
}

.ctaWrapper .ctaInner {
  background: var(--gradient-color);
  border-radius: 15px;
  margin-bottom: -30px;
  padding: 30px;
}

.ctaWrapper .ctaInner h3 {
  width: 100%;
  font-size: 25px;
  font-weight: var(--fw-semiBold);
  color: var(--color-white);
  padding-bottom: 15px;
}

.ctaWrapper .ctaInner p {
  color: var(--color-white);
  padding-bottom: 15px;
}

/*  ==================  CTA Section Close ======================  */

/*  ==================  Footer  Section Open  ======================  */

.footerWrapper {
  background-color: var(--color-black);
}

.footerWrapper .footerWrapperWrapper__list {
  padding-top: 100px;
  padding-bottom: 70px;
}
.footerWrapper .footerWrapper__info {
  margin-top: 30px;
}
.footerWrapper .footerWrapper__info .footer-logo .navbar-brand img{
  width: 100%;
  max-width: 150px;
}


.footerWrapper .footerWrapper__info h3 {
  color: var(--color-white);
  font-size: 25px;
  font-weight: var(--fw-semiBold);
  padding-bottom: 15px;
}
.footerWrapper .footerWrapper__info p {
  color: var(--color-white);
  padding-top: 15px;
}
.footerWrapper .footerWrapper__info ul.footer-nav li {
  position: relative;
  line-height: 2;
}
.footerWrapper .footerWrapper__info.infoWithArrow ul.footer-nav li::before {
  content: "\f054";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  color: var(--color-secondary);

}
.footerWrapper .footerWrapper__info ul.footer-nav li a {
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.footerWrapper .footerWrapper__info.infoWithArrow  ul.footer-nav li a {

  padding-left: 20px;

}
.footerWrapper .footerWrapper__info ul.footer-nav li a:hover {
  color: var(--color-secondary);
}
.footerWrapper .heroSocial ul {
  display: flex;
  margin-top: 35px;
}
.footerWrapper .heroSocial ul li {
  padding-right: 15px;
}
.footerWrapper .heroSocial ul li a {
  color: var(--color-white);
  font-size: 16px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.footerWrapper .heroSocial ul li a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: rotate(360deg);
}
/*  ==================  Footer  Section Close ======================  */

/*  ==================  Footer Bar  Section Open  ======================  */

.footerBar {
  background-color:var(--color-white);
  padding-top: 18px;
  padding-bottom: 18px;
}

.footerBar p {
  margin-bottom: 0;
  color: var(--color-black);
}
.footerBar p a {
  color: var(--color-main);
  transition: all 0.4s ease;
}
.footerBar p a:hover {
  text-decoration: underline;
}
.footerBar .developLogo {
  width: 100%;
  max-width: 60px;
  transition: all 2s;
}

.footerBar .developLogo:hover {
  transform: rotate(360deg);
}

/*  ==================  Footer Bar  Section Close ======================  */


/*
============================ ****************
        ------------- CONTACT PAGE
============================ ****************
*/



/*  ==================  Home Contact area Section Open ======================  */

.contactwrapper {
  margin-top: 70px;
  margin-bottom: 70px;
  position: relative;
}

.contactwrapper .contactWrapper__left {
  background: var(--gradient-color);
  padding: 20px;
  border-radius: 15px 15px 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contactwrapper .contactWrapper__left .contact--info {
  background-color: var(--color-white);
  border-radius: 15px;
  display: flex;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}

.contactwrapper .contactWrapper__left .contact--info:last-child {
  margin-bottom: 0;
}

.contactwrapper .contactWrapper__left .contact--info i {
  font-size: 20px;
  color: var(--color-white);
  float: left;
  width: 44px;
  height: 44px;
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  flex-shrink: 0;
}

.contactwrapper .contactWrapper__left .contact--info h4 {
  color: var(--color-black);
  font-weight: var(--fw-semiBold);
  font-size: 20px;
}
.contactwrapper .contactWrapper__left .contact--info p {
  margin-bottom: 0;
}
.contactwrapper .contactWrapper__left .contact--info a {
  color: var(--color-black);
  font-size: 16px;
}

.contactwrapper .contactWrapper__right {
  background-color: var(--color-white);
  padding: 30px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
  height: 100%;
}
.contactwrapper .form-check {
  padding-left: 0;
}
.contactwrapper .form-check input {
  display: none;
}
.contactwrapper .form-check label {
  position: relative;
  cursor: pointer;
}
.contactwrapper .form-check label::before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--color-black);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.contactwrapper .form-check input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 4px;
  height: 8px;
  width: 15px;
  border-left: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(-40deg);
  background-color: transparent;
  transition: all 0.8s;
}

.contactwrapper .contactWrapper__right .submit-btn {
  background-color: var(--color-main);
  text-decoration: none;
  color: var(--color-white);
  font-size: 22px;
  letter-spacing: 2px;
  padding: 10px 35px;
  border-radius: 35px;
  transition: 0.5s;
  border: 0;
}
.contactwrapper .contactWrapper__right .submit-btn:hover {
  outline: 1px solid var(--color-main);
  outline-offset: 5px;
}

.contactwrapper .contactWrapper__right .form-control {
  transition: all 0.7s ease-in-out;
}
.contactwrapper .contactWrapper__right .form-control:focus {
  box-shadow: unset;
  outline: none;
  border: 1px solid var(--color-main);
  background-color: rgba(38, 222, 129, 0.1);
}


.contactwrapper .contactBgImg {
  position: fixed;
  z-index: -1;
}

.contactwrapper .contactBgImg.contactBgImg-left{
  top: 0;
  left: 0;
}


.contactwrapper .contactBgImg.contactBgImg-right{
  top: 0;
  right: 0;
}

/*  ==================  Home Contact area Section Close ======================  */


/*  ==================  PAGE HEADER Section OPEN ======================  */

.breadcumb-wrapper {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--color-main);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-top: 50px;
}
.breadcumb-title {
  font-size:30px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--color-white);
  margin: -0.17em 0 -0.26em 0;
}

.breadcumb-menu {
  display: flex;
  margin-top: 20px;
}
.breadcumb-menu li {
  padding-right: 10px;
}
.breadcumb-menu li, .breadcumb-menu a{
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
}


/*  ==================  PAGE HEADER Section CLOSE ======================  */




.servicesWrapper.servicesPage {
  margin-top: 0;
}



/* Blog page */

.blogWrap {
  margin-top: 50px;
}

.blogWrap__box {
  background-color: #e3deff;
  padding: 20px;

}

.blogWrap__box .BlogImage {
  width: 100%;
  min-height: 220px;
  max-height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.blogWrap__box .BlogImage a{
  width: 100%;
}
.blogWrap__box .BlogImage img{
  width: 100%;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover;
  transition: all 3s ease-in-out;
}
.blogWrap__box:hover .BlogImage img {
  transform: scale(2);

}


.blogWrap__box h3{
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
}

.blogWrap__box .servicesWrapper__box--link a{
  color: var(--color-secondary);
  font-weight: var(--fw-semiBold);
}


.blogDetail {
  margin-top: 50px;
}



.blogDetail .blogDetail__left img {
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-top: 20px;
}


.blogDetail__right {
  position: sticky;
  width: 100%;
  top: 100px;
}

.blogDetail__right h3{
  font-weight: var(--fw-bold);
  padding-bottom: 20px;
}


.relatedBlogBox {
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all .5s ease-in-out;
}

.relatedBlogBox img {
  width: 150px;
  height: 100px;
  object-fit: cover;
}
.relatedBlogBox a > h4{
  color: var(--color-black);
  font-size:20px;
}

.relatedBlogBox:hover {
  background-color: var(--color-main);
}

.relatedBlogBox:hover a > h4 {
   color: var(--color-white);
}