@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --black: #272626;
  --blue: #5271ff;
  --lightBlueBg: #eef1ff;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: var(--black);
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

header {
  padding: 10px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99;
}

.fixed{
  box-shadow: 0px 1px 2px rgba(17, 17, 18, 0.2);
}

.container {
  padding: 0% 5%;
  max-width: inherit;
  width: 100%;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 145px;
  display: block;
}

.logo img{
  width: 100%;
}

.blueBtn {
  background: var(--blue);
  border-radius: 30px;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  display: table;
  vertical-align: middle;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.blueBtn:hover {
  background: #000;
}

.navigation a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  margin: 0px 15px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding: 3px 0px;
}

.navigation a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
  z-index: 1;
  background: #000;
}

.navigation a:hover::after, .navigation a.active::after {
  width: 100%;
}
.navigation a:hover, .navigation a.active {
  color: #000;
}

.bannerCont {
  max-width: 530px;
  margin: 0 auto;
  padding: 70px 25px;
}

.mainHeading {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 14px;
  line-height: 22px;
}

.blueBtn.iconBtn {
  padding-right: 40px;
}

.blueBtn.iconBtn svg {
  position: absolute;
  width: 30px;
  height: auto;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.blueBtn.iconBtn:hover svg path {
  fill: #000;
}

.lightBg {
  background: var(--lightBlueBg);
}

h2 {
  color: var(--black);
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

#clientele h2 {
  margin-bottom: 25px;
}

.p_top {
  padding-top: 55px;
}

.p_bottom {
  padding-bottom: 55px;
}

.whyUsCont p:last-child {
  margin-bottom: 0px;
}

.list {
  border-bottom: 1px solid rgba(39, 38, 38, 0.53);
}

h3 {
  font-weight: bold;
}

.whyUsList li p:last-child,
.whyUsList h3:last-child {
  margin-bottom: 0px;
}

.whyUsList li.list {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.headData {
  display: flex;
  align-items: start;
}

.headData img {
  transform: translateY(4px);
}

img.symbolIcon,
.whyUsList h3 {
  display: block;
}

img.symbolIcon {
  width: 10px;
  height: auto;
  margin-right: 15px;
}

.packageList {
  border: 1px solid rgba(17, 17, 18, 0.4);
  padding: 10px;
  height: 100%;
}

.packageList .row {
  height: 100%;
}

.packageData ul {
  padding-top: 10px;
}

.packageData li {
  margin-bottom: 20px;
  position: relative;
  /* list-style-type: disc; */
  padding-left: 20px;
}

.packageData li::before {
  content: "•";
  display: block;
  font-size: 25px;
  line-height: 0.6;
  position: absolute;
  left: 0px;
  top: 0px;
}

.packageData .blueBtn {
  bottom: 0px;
}

.packageData {
  padding-top: 15px;
  padding-bottom: 30px;
}

.packageList img {
  object-fit: cover;
}

#clientele .swiper-slide {
  display: flex;
  height: auto;
  width: auto;
  align-items: center;
  /* padding: 0px 50px; */
  /* transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1) !important; */
}

a.socialIcon{
  display: inline-block;
  vertical-align: top;
}


a.linkedIn svg path{
  /* stroke: var(--black); */
  fill: var(--black);
}

a.linkedIn:hover svg path{
  fill: var(--blue);
}

a.insta svg path{
  stroke: var(--black);
  /* fill: var(--black); */
}

a.insta:hover svg path{
  stroke: var(--blue);
}

#clientele .swiper-slide img {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 50px;
  margin-top: auto;
  margin-bottom: auto;
}

#themes .container.themesCont {
  padding-right: 0px;
}

.prev,
.next {
  width: 50px;
  height: 50px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: inline-flex;
  margin-left: 8px;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 9;
}

.prev:hover,
.next:hover {
  background: var(--blue);
}

.prev:hover svg path,
.next:hover svg path {
  fill: #fff;
}

.prev svg,
.next svg {
  width: 40%;
  height: auto;
  display: block;
  margin: auto;
}

.swiper-button-disabled,
.swiper-button-disabled:hover {
  opacity: 0.3;
  background: none !important;
}

.swiper-button-disabled:hover svg path {
  fill: var(--blue) !important;
}

.themesCont .swiper-slide p {
  font-size: 1rem;
  /*font-weight: bold;*/
  margin-top: 15px;
}

#themes {
  position: relative;
}

#themes::before {
  display: block;
  content: "";
  height: 70%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--lightBlueBg);
  z-index: -1;
}

.founderName {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.designation {
  font-size: 14px;
  font-weight: 400;
}

#easyForm {
  background: var(--lightBlueBg);
}

.form-floating{
  margin-bottom: 1.5rem;
}

.form-floating .form-control {
  background: none;
  border: none;
  border-radius: 0px;
  padding-left: 0px;
  padding-right: 0px;
  border-bottom: 1px solid #ccc;
}

.form-floating label {
  padding-left: 0px;
  padding-right: 0px;
}

.form-floating.selected label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.form-control:focus, .form-control.active{
  box-shadow: none;
  border-bottom: 1px solid #000;
  font-weight: 600;
}

.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after{
  background: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.footerTag{
  font-size: 30px;
  color: var(--blue);
  font-weight: 700;
}

.footerLogo, .footerTag{
    margin-bottom: 1rem;
  }

.footerCol svg{
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: auto;
  margin-right: 7px;
}

.footerCol span{
  display: inline-block;
  vertical-align: middle;
}

.footerCol a, .privacyCol a{
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}

.footerCol span, .privacyCol{
  font-size: 13px;
}

.border-b-black{
  border-bottom: 1px solid var(--black);
}

.menuIcon{
  display: none;
}

.closeBtn{
  display: none;
}

.founderImgCont {
    margin-bottom: 15px;
}

.glowCir{
background: #5271FF;
background: radial-gradient(circle,rgba(82, 113, 255, 1) 0%, rgba(82, 113, 255, 0) 72%, rgba(82, 113, 255, 0) 92%);
width: 300px;
height: 300px;
position: fixed;
border-radius: 50%;

z-index: 0;

}

.glow_1{
top: 75px;
left: -100px;
opacity: 0.8;
}

.glow_2{
top: 400px;
right: -100px;
opacity: 0.4;
}

.bannerSection{
  /* position: -webkit-sticky;
  position: sticky;
  top: 0; */
  background: #fff;
}

/* section{
  position: sticky;
  top: 0px;
} */

.packages, #clientele, #founders, #themes{
  background: #fff;
}

.whatsappIcon{
  position: fixed;
  bottom: 220px;
  right: 60px;
  z-index: 2;
  width: 35px;
}

.whatsappIcon img{
  width: 100%;
  height: auto;
}

.selectPackage::after{
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  border-left: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: rotate(-45deg);
  right: 3px;
  top: 17px;
  position: absolute;
  pointer-events: none;
}

/* #package{
  padding:5px 10px;
} */


/*********** media for desktop ***********/

@media (min-width: 1300px) {

  .selectPackage::after{

  width: 0.5vw;
  height: 0.5vw;
  right: 0.3vw;
  top: 1.2vw;
}

  .whatsappIcon{
          bottom: 3vw;
        right: 1.5vw;
        width: 3.5vw;
}

  .footerCol span, .privacyCol{
    font-size: 1vw;
  }
  .footerCol svg{
  height: 1.1vw;
  width: auto;
  margin-right: 0.5vw;
}
  .footerLogo, .footerTag{
    margin-bottom: 2vw;
  }
  .footerTag{
    font-size: 2.1vw;
  }
  .founderName {
    margin-bottom: 0.8vw;
    font-size: 1.5vw;
  }
  .designation {
    font-size: 1.1vw;
  }

  .founderImgCont {
    margin-bottom: 2vw;
  }
  .themesCont .swiper-slide p {
    font-size: 1.5vw;
    margin-top: 1.1vw;
  }
  .prev,
  .next {
    width: 3.2vw;
    height: 3.2vw;
    margin-left: 0.5vw;
  }
  .packageListCont {
    margin-bottom: 2.8vw;
  }
  #clientele .swiper-slide img {
    max-width: 10.5vw;
    max-height: 5vw;
    min-height: 2vw;
    width: auto;
  }

  .packageData .blueBtn {
    left: 1.1vw;
  }
  .packageList {
    padding: 1vw;
  }

  .packageData ul {
    padding-top: 1vw;
  }

  .packageData li {
    margin-bottom: 1.5vw;
    padding-left: 1.5vw;
    font-size: 1vw;
  }

  .packageData li::before {
    font-size: 1.6vw;
    line-height: 0.8;
  }

  /*************************************/

  .packageData h3 {
    margin-bottom: 1vw;
  }
  .packageData {
    padding-top: 2vw;
    padding-bottom: 2.7vw;
  }
  .ps-vw-4 {
    padding-left: 1.1vw;
  }
  .packageList {
    padding: 0.8vw;
  }
  img.symbolIcon {
    width: 0.6vw;
    margin-right: 0.8vw;
  }
  .whyUsList li.list {
    padding-bottom: 1.1vw;
  }
  h3 {
    font-size: 1.5vw;
    letter-spacing: -0.5px;
  }
  .p_top {
    padding-top: 5vw;
  }

  .p_bottom {
    padding-bottom: 5vw;
  }

  h2 {
    font-size: 2.5vw;
    margin-bottom: 1.3vw;
  }

  #clientele h2 {
    margin-bottom: 4vw;
  }
  #themes h2 {
    margin-bottom: 2vw;
  }
  p {
    font-size: 1vw;
    line-height: 1.6vw;
    margin-bottom: 1.1vw;
  }

  #why_us p {
    line-height: 1.7vw;
  }

  .blueBtn.iconBtn {
    padding-right: 3vw;
  }

  .blueBtn.iconBtn svg {
    width: 2vw;
    right: 0.3vw;
  }

  .mainHeading {
    font-size: 2.9vw;

    margin-bottom: 1.25vw;
  }
  .bannerCont {
    max-width: 38vw;
    padding: 7vw 0vw;
  }
  header {
    padding: 1vw 0vw;
  }

  .navigation a {
    margin: 0vw 1.1vw;
  }
  .navigation a,
  .blueBtn {
    font-size: 0.95vw;
  }

  .container {
    padding: 0vw 5vw;
  }
  .logo {
    max-width: 13.61vw;
  }
  .blueBtn {
    border-radius: 1.9vw;
    padding: 0.8vw 1.25vw;
    font-size: 1vw;
  }
}

/********** media for tab and mob ***********/

@media (max-width: 991px) {
  .p_bottom{
    padding-bottom: 35px;
  }
  .p_top{
    padding-top: 35px;
  }
  .packageListCont{
    margin-bottom: 20px;
  }
  .closeBtn{
    display: block;
    width: 25px;
  }

  .closeBtn svg{
    width: 100%;
    height: auto;
    fill: white;
  }
  .mobContactBtn{
    max-width: 150px;
    margin-top: 2rem !important;
  }
  .navigation{
    position: fixed;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: var(--black);
    right: -100%;
    top: 0%;
    padding-top: 40px;
    padding-left: 40px;
    z-index: 999;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .navigation a{
    color: #fff;
    display: block;
    padding: 15px 0px;
    font-size: 16px;
    margin: 0px;
  }

  .navigation a:hover, .navigation a.active{
    color: #fff;
  }

  .closeBtn{
    margin-bottom: 30px;
  }

  .menuIcon{
    width: 50px;
    display: block;
    margin-left: auto;
  }
  .menuIcon span{
    display: block;
    margin-bottom: 5px;
    border-radius: 3px;
    background: var(--black);
    height: 2px;
  }

  .menuIcon span:last-child{
    margin-bottom: 0px;
  }

  #why_us p br {
    display: none;
  }
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .headData {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .prev,
  .next {
    width: 30px;
    height: 30px;
  }

  .footerCol{
    margin-bottom: 15px;
  }

  .packageList .col-sm-4{
  height: 150px;
}
.navigation a:hover::after, .navigation a.active::after{
  display: none;
}
.whatsappIcon {
    bottom: 20px;
    right: 10px;
    width: 25px;
}
}
