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

:root {
  --radius: 12vmin;
  --frame-size: calc(var(--radius) / 3);
  --d-outer: calc(var(--radius) * 2);
  --d-inner: calc(var(--d-outer) - var(--frame-size));
  --font-size: calc(var(--radius) / 10);
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: #ffffff;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p {
  margin: 0;
  font-size: 1.025rem;
  line-height: 1.83em;
  color: #777777;
}

h1,
h2,
h3 {
  color: #000000;
}

::placeholder {
  text-transform: capitalize;
  color: #777777;
  font-size: 1rem;
}

.themeBtn {
  display: inline-block;
  background-color: #011689;
  border: 0;
  border-radius: 100px;
  color: #ffffff;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.themeBtn:hover {
  color: #ffffff;
  background-color: #f9b202;
}
.btnAlt {
  background-color: #f9b202;
}
.btnAlt:hover {
  background-color: #011689;
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

.section {
  padding: 5rem 0;
  position: relative;
}

.subHeadingTop {
  font-size: 1.063rem;
  color: #f9b202;
  text-transform: uppercase;
  font-weight: 500;
}

.subHeading {
  font-size: 2.813rem;
  font-weight: 600;
}

.subHeading span {
  font-weight: 300;
  font-style: italic;
}

figure {
  margin: 0;
}


.darkBg .subHeadingTop {
  position: relative;
  display: inline-block;
}

.darkBg .subHeadingTop:before,
.darkBg .subHeadingTop:after {
  content: "";
  position: absolute;
  top: 50%;
  background: #fff;
  height: 2px;
  width: 50px;
  transform: translateY(-50%);
}

.darkBg .subHeadingTop:after {
  right: -60px;
}

.darkBg .subHeadingTop:before {
  left: -60px;
}

.darkBg .subHeading {
  margin-bottom: 4rem;
}

.darkBg{
  background-color: #242331;
}

.darkBg .subHeadingTop,
.darkBg .subHeading {
  color: #fff;
}

/* Header CSS Starts */

.topHeader {
  height: 50px;
  display: flex;
  align-items: center;
  background: #0c253e;
}

.cDetails {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cDetails a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
}

.socialIcons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.socialIcons a {
  color: #fff;
  height: 28px;
  width: 28px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.navbar-nav {
  gap: 1.5rem;
}

.mainHeader .navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  font-size: 1.125rem;
  transition: 0.3s all ease-in-out;
}

.mainHeader .navbar-nav .nav-link.active {
  font-weight: bold;
}

.mainHeader .navbar-nav .nav-link:hover {
  font-weight: bold;
}

/* Header CSS Ends */

/* Main Banner CSS Starts */

.mainBanner {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.bannerContent .themeBtn {
  padding: 1rem 4rem;
  margin-top: 1rem;
}

.bannerContent h3 {
  color: #fff;
  font-size: 1.625rem;
}

.bannerContent h1 {
  font-size: 3.625rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.bannerContent p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Main Banner CSS Ends */

/* About Section CSS Starts */
.circle {
  position: relative;
  width: var(--d-outer);
  height: var(--d-outer);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  position: absolute;
  width: 70px;
  height: 70px;
  background: url("../images/video-icon.png");
  background-size: contain;
  border-radius: 50%;
  background-repeat: no-repeat;
}
.text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
  text-transform: uppercase;
  font-weight: bold;
}
.text p {
  color: #000;
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.text p span {
  position: absolute;
  left: 50%;
  font-size: 1rem;
  transform-origin: 2px var(--radius);
  font-family: "Montserrat";
}

.abtContent .bigFont {
  font-size: 1.375rem;
  font-weight: 600;
  color: #f9b202;
  margin: 0;
}

.abtContent .bigFont span {
  font-size: 5.438rem;
  display: block;
  margin-bottom: 2rem;
}

.abtContent p {
  margin-bottom: 2rem;
}

.abtContent .themeBtn {
  padding: 1rem 3rem;
}

.aboutExtContent h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.aboutExtContent p {
  margin-bottom: 2rem;
}

.aboutSection .subHeading {
  margin-bottom: 4rem;
}
/* About Section CSS Ends */

/* Services Section CSS Starts */


.slideContent {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
  margin: 0.5rem;
  border-radius: 15px;
  transition: 0.5s;
}

.slideContent .imgContainer {
  background: #011689;
  padding: 1rem;
  height: 80px;
  width: 80px;
  margin: auto;
  border-radius: 100%;
}

.slideContent p {
  font-size: 1.125rem;
}

.slideContent h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 0;
  padding: 0 2rem;
}

.slideContent p {
  font-size: 0.875rem;
}

.slideContent a {
  color: #f9b202;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

.slideContent a i {
  margin: 0;
  transition: 0.3s all ease-in-out;
}

.slideContent a:hover i {
  margin-left: 0.5rem;
}


.serviceSlideMain .slick-slide:nth-child(even) {
  margin-top: 3rem;
}


.slideBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.slideBtn a {
  color: #fff;
  font-size: 1.3rem;
  border: 1px solid #fff;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideBtn a:hover {
  color: #f9b202;
  border-color: #f9b202;
}
/* Services Section CSS Ends */

/* Trust Section CSS Starts */
.trustImg {
  position: relative;
}

.trustImg p {
  position: absolute;
  bottom: 3rem;
  background: #f9b202;
  right: -5rem;
  text-align: center;
  padding: 2rem;
  color: #fff;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.563rem;
  line-height: 1.7;
}

.trustImg p span {
  font-size: 2.5rem;
  display: block;
  font-weight: bold;
}

.progressMain {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.cardMain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
}

.cardMain .percent {
  position: relative;
}

.cardMain svg {
  position: relative;
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}

.cardMain svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #011689;
  stroke-width: 7;
  stroke-linecap: round;
}

.cardMain svg circle:last-of-type {
  stroke-dasharray: 500px;
  stroke-dashoffset: calc(500px - (360px * var(--percent)) / 100);
  stroke: #BBBBBB;
}

.cardMain .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cardMain .number h3 {
  font-weight: 500;
  font-size: 1.563rem;
}

.cardMain .title h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
p.trustTxt {
  font-size: 1.125rem;
  margin: 2rem 0;
  color: #000;
}

.extBtnsTrust {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.extBtnsTrust .themeBtn {
  padding: 1rem 3rem;
  text-transform: uppercase;
}

.extBtnsTrust a.phBtn i {
  background: #f9b202;
  height: 65px;
  width: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
a.phBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.563rem;
  font-weight: bold;
  color: #000;
}

a.phBtn:hover {
  color: #011689;
}
/* Trust Section CSS Ends */


/* How It Works Section CSS Starts */
figure.mapBg {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: -1;
} 
.howItWorksSection {
  z-index: 1;
  padding-bottom: 0;
}

.howItWorksSection .subHeading {
  margin-bottom: 2rem;
}

.btnGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.btnGroup .btnAlt {
  padding: 1rem 3rem;
  text-transform: uppercase;
}

.btnGroup .btnTransparent {
  background: transparent;
  border: 1px solid #fff;
  text-transform: uppercase;
  padding: 1rem 3rem;
}

.btnGroup .btnTransparent:hover {
  background: #f9b202;
  border-color: #f9b202;
}

.howItWorkContent ol{
  list-style: none;
  counter-reset: item;
  padding: 0;
}

.howItWorkContent ol li{
  counter-increment: item;
  position: relative;
}
.howItWorkContent ol li:before{
  content: counter(item);
  color: white;
  position: absolute;
  left: -12px;
  font-size: 1rem;
  font-weight: bold;
}

.howItWorkContent .extContent {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.howItWorkContent .extContent h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.howItWorkContent .extContent p {
  color: #D2D2D2;
  line-height: 1.125rem;
}

.howItWorkContent ol li + li {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.howItWorkContent .extContent figure {
  height: 70px;
  width: 70px;
  background: #F9B202;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  flex: 0 0 70px;
}

.help-right{
  position: relative;
}
.help_spinner {
  background: white;
  width: 234px;
  height: 234px;
  border-radius: 50%;
  position: absolute;
  top: -24px;
  right: 0;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateText 10s linear infinite;
}
.help_spinner img {
  animation: rotateText 10s linear infinite;
}

.helpbar-main p {display: flex;align-items: center;justify-content: space-between;max-width: 78%;font-size: 1.125rem;color: #000000;font-weight: 600;}

.helpbar-main p small {
    font-size: 1rem;
    font-weight: 500;
}

.Helpinner-bars {}

.Helpinner-bars .helpbar-main:last-child p {
    max-width: 86%;
}

.helpbar-main {
    margin-bottom: 1rem;
}
.heipSection .row {
  align-items: center;
}
.innerTeams{
  position: relative;
  text-align: center;
}
.innerTeams img{}
.innerTeams .sharedetails{
  background: #011689;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 6.5rem;
  right: 1.25rem;
  border-radius: 10px;
}
.innerTeams h5{
    font-size: 1.375rem;
    font-weight: 700;
    padding-top: 1.125rem;
}
.innerTeams small{
    color: #011689;
    font-size: 1rem;
    font-weight: 600;
}

.FeedbackSection h4.subHeadingTop {
  color: #f9b202;
  text-transform: uppercase;
  font-weight: 500;
}

.FeedbackSection h4.subHeadingTop:before ,.FeedbackSection h4.subHeadingTop:after {
  display: none;
}


.innerReviews {
  background: #1D1B2A;
  padding: 2.5rem 2.188rem;
  border-radius: 1rem;
  margin: 1rem;
}

.review-heads {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.review-heads p {
  color: white;
  font-size: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2C2C2C;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}
.star-rating small {
  font-size: 14px;
  color: white;
  font-weight: 400;
}
.BlogMain{padding: 0 2.133rem 1.125rem;background: white;box-shadow: 0px 0px 4px -2px #000000;border-radius: 20px;transition: 0.5s;border: 1px solid transparent;}
.BlogMain img{
    margin-top: -5rem;
    margin-bottom: 1rem;
}
.BlogMain .blogtxt{
}
.BlogMain .blogtxt h6{
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;

}
.BlogMain .blogtxt  p{
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  margin-bottom: 1rem;
}
.BlogMain .blogtxt  a{
  color: #232F3E;
  font-weight: 600;
  font-weight: 14px;
}
.blosSection .row{
  padding-top: 8rem;
}
.MainCOntactForm{}
.MainCOntactForm input{
  border: none;
  border-bottom: 1px solid #707070;
  border-radius: 0;
  height: 3.75rem;
}
.MainCOntactForm textarea{
  border: none;
  border-bottom: 1px solid #707070;
  border-radius: 0;
}
.MainCOntactForm input::placeholder,
.MainCOntactForm textarea::placeholder{
  color: #777777;
  font-size: 1rem;
  font-weight: 500;
}
.MainCOntactForm .form-group {
  margin-bottom: 1rem;
}
.MainCOntactForm .themeBtn{
  margin-top: 3.125rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.MainCOntactForm input:focus ,
.MainCOntactForm textarea:focus {
    box-shadow: none;
    border-color: #011689;
}
.ContactSection .row{
  align-items: center;
}

footer{
  background: #002060;
  padding: 4.375rem 0;
}

footer .socialIcons {
  justify-content: left;
}
.footerLogoSide>a{
  display: block;
  margin-bottom: 1.25rem;
}
.footerLogoSide p{
  font-size: 1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}
.footerlinks{}
.footerlinks h4{
  font-size: 1.875rem;
  color: white;
  margin-bottom: 2.188rem;
}
.footerlinks ul{}
.footerlinks ul li {
  margin-bottom: 13px;
}
.footerlinks ul li a{
  font-size: 1rem;
  color: white;
  font-weight: 400;

}
.footerlinks ul li a{}
.socialArea ul li a span {
  width: 2.188rem;
  height: 2.188rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-radius: 5px;
}

.socialArea ul li a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.socialArea ul li {
  margin-bottom: 1.875rem;
}
.copyrights{
  background: #000;
  padding: 1.5rem 0 1.25rem;
  text-align: center;
}
.copyrights p{
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: normal;
}


.slideContent:hover {
  background: #011689;
}

.slideContent:hover .imgContainer {
  background: #f9b409;
}

.slideContent:hover h4 ,
.slideContent:hover p {
  color: white;
}

.innerTeams .sharedetails:hover {
  background: #f9b00f;
}
.BlogMain:hover {
  border: 1px solid #1d1b2a;
}
/* How It Works Section CSS Ends */


/* inner Page css :start */

.innerBanner{
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}
.InnerBanner_Txt h1{
  font-size: 6.25rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.servicesectionTwo .slideContent{
  box-shadow: 0px 0px 9px -4px #000;
  padding: 2rem 0.9rem;
}
.servicesectionTwo .row {
  justify-content: center;
  gap: 2rem 0rem;
}
.servicesectionTwo .slideContent .imgContainer svg {
  width: 43px;
  height: 43px;
}

.servicesectionTwo .slideContent .imgContainer svg path , .servicesectionTwo .slideContent .imgContainer svg polygon {
  fill: white !important;
}



.blogsectionTwo .row div:nth-child(4)  .BlogMain ,
.blogsectionTwo .row div:nth-child(5)  .BlogMain ,
.blogsectionTwo .row div:nth-child(6)  .BlogMain 

{
  margin-top: 7.5rem;
}


.ReviewBanner{
  background: url(../images/testimonial-ban.jpg) no-repeat;
  background-size: cover;
}
.ReviewSectionTwo{}

.innertestimonial {
  padding: 2.188rem 1.125rem;
  text-align: center;
  box-shadow: 0px 0px 6px -3px #000;
  background: white;
  margin-bottom: 3rem;
  border-radius: 5px;
}

.innertestimonial h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.6rem;
}

.innertestimonial p {
  font-size: 1.125rem;
  font-weight: 300;
}

.innertestimonial span {
  background: #011689;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  margin-top: 1rem;
}



.innerfaqs .accordion{
    margin-top: 2rem;
}
.innerfaqs h6{
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
  padding-bottom: 1rem;
  position: relative;
}
.innerfaqs h6:before{
  content: '';
  position: absolute;
  background: #F9B202;
  width: 8rem;
  height: 3px;
  bottom: 0;
  border-radius: 20px;
}
.innerfaqs .accordion-item  .accordion-header{
    background: white;
    border: none;
}
.innerfaqs  .accordion-item .accordion-header button{
    font-size: 1.125rem;
    color: black;
    font-weight: 500;
    height: 70px;
    background: white;
    border: 1px solid  #E3E3E3;
    border-radius: 5px;
}

.innerfaqs  .accordion-item .accordion-body p{
  font-size: 1rem;
  font-weight: 400;
}


.innerfaqs .accordion-item {
  margin-bottom: 1rem;
  border: none;
}

.innerfaqs .accordion-item .accordion-header button:focus {
  outline: none;
  box-shadow: none;
}


.innerfaqs .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.stars-icon i {
  color: #ffb704;
}


.BooksectionTwo{}
.BooksectionTwo{}
.innerauthor{}
.innerauthor .accordion-item  .accordion-header{
  background: white;
  border: none;
}
.innerauthor .accordion-item .accordion-header button{
  font-size: 1.125rem;
  color: black;
  font-weight: 500;
  background: white;
  border: 1px solid  #E3E3E3;
  border-radius: 5px;
}

.innerauthor .accordion-item .accordion-header button:focus {
  outline: none;
  box-shadow: none;
}
.innerauthor .accordion-item .accordion-header .accordion-button:not(.collapsed)::after{
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}
.innerauthor h4{
    font-size: 2.188rem;
    color: black;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.innerauthor i{
    font-size: 1.25rem;
    color: #011689;
    background: white;
    border: none;
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.innerauthor span{
    font-size: 1.125rem;
    color: #011689;
    font-weight: 600;
    display: block;
}
.innerauthor p{margin-top: 1.25rem;font-size: 1.125rem;font-weight: 400;}

.innerauthor strong{
    font-weight: 600;
    color: #011689;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.innerauthor small{
    font-size: 1.125rem;
    font-weight: 500;
    color: black;
    display: block;
    margin-bottom: 0.5rem;
}

.innerauthor .accordion-item .accordion-body p{
  font-size: 1rem;
  font-weight: 400;
}
.BooksectionTwo .main-head,
.chapterSection .main-head{
  margin-bottom: 2.5rem;
}
.BooksectionTwo .main-head .subHeading {
  text-transform: uppercase;
}

.TeamVideoSection{


}


.innerTeamvideo a.videoPart {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  bottom: 0;
  right: 0;
}


.innerTeamvideo a.videoPart span {
  width: 5.938rem;
  height: 5.938rem;
  border-radius: 50%;
  background: #F9B202;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerTeamvideo {
  position: relative;
}

.aboutinnersection .abtContent p{
  margin: 0;
}
.aboutinnersection .abtContent .abt-dark{
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.aboutinnersection .row{
  align-items: center;
}
.abt-side{
  position: relative;
}

.abt-side figure img {
  border-radius: 50%;
}
.abt-side figure:before{
  content:'';
  position: absolute;
  background: transparent;
  border: 2px dashed #F9B202;
  width: 605px;
  height: 605px;
  border-radius: 50%;
  top: -20px;
  left: 40px;
  animation: rotates-new infinite 6s linear;
}
.abt-side figure:after{
  content:'';
  position: absolute;
  background: transparent;
  width: 645px;
  height: 645px;
  border: 2px dashed #002060;
  border-radius: 50%;
  left: 20px;
  top: -40px;
  animation: rotates-new infinite 2s linear;
}
.aboutinnersection {
  overflow: hidden;
} 
.abt-side figure{
  position: relative;
  text-align: center;
}


.aboutinnersection .abtContent .themeBtn {
  margin-top: 1.25rem;
}


@keyframes rotates-new {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.servicePgsectionTwo{}
.servicePgsectionTwo .zigzaq-rows{
  flex-direction: row-reverse;
}
.servicePgsectionTwo .row + .row{
  
padding-top: 3.125rem;
}
.servicePgsectionTwo .row{
  align-items: center;
}
.inner-ser{}
.inner-ser h4{
    font-size: 2.188rem;
    font-weight: 600;
    color: #242331;
    margin-bottom: 1.875rem;
}
.inner-ser p{
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}
.inner-ser .themeBtn{}
.innerBlogmains {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.innerBlogmains img {}

.innerBlogmains .blogstxt {
  padding: 1.875rem 1.563rem 1.25rem;
}

.innerBlogmains .blogstxt h6 {
  font-size: 1.5rem;
  font-weight: 600;
}

.innerBlogmains .blogstxt p {
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  line-height: inherit;
  margin-bottom: 1rem;
}

.innerBlogmains .blogstxt .date-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #D6D6D6;
}

.innerBlogmains .blogstxt .date-time span {font-size: 14px;color: #777777;}

.innerBlogmains .blogstxt .date-time span i {
  margin-right: 5px;
  color: #011689;
}
.TouchContactSec{
    padding: 6.25rem 0;
}

.touch-lefts{}
.touch-lefts h2{
    color: #242331;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
}
.touch-lefts ul{}
.touch-lefts ul li{}
.touch-lefts ul li a{
    display: block;
    background: #F7F7F7;
    margin-bottom: 1.25rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.touch-lefts ul li a span{
    width: 3.375rem;
    height: 3.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #011689;
    border-radius: 50%;
}
.touch-lefts ul li a span img{}
.touch-lefts ul li a strong{
    font-size: 1.125rem;
    color: #242331;
    font-weight: 500;
}
.touch-lefts ul li a strong small{
    font-size: 15px;
    color: #777777;
    font-weight: 400;
    display: block;
}
.touch-lefts h4{
  font-size: 1.25rem;
  color: #242331;
  font-weight: 600;
  margin-top: 2.5rem;
}
.touch-lefts .socialLInks{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.touch-lefts .socialLInks li{}
.touch-lefts .socialLInks li a{
  width: 40px;
  height: 40px;
  background: #011689;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.touch-lefts .socialLInks li a i{}

.contactPgform{
    padding: 60px 40px;
    border: 1px solid #C5C5C5;
    border-radius: 10px;
}
.contactPgform .contactformmain .form-group{
  margin-bottom: 1rem;
}
.contactPgform .contactformmain input{
  background: #F7F7F7;
  width: 100%;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  border:none;
}


.contactPgform .contactformmain textarea{
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  background: #F7F7F7;
  width: 100%;
  border:none;
}
.contactPgform .contactformmain input::placeholder{
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}
.contactPgform .contactformmain textarea::placeholder{
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}
.contactPgform .contactformmain .themeBtn{
    width: 100%;
}

.chapterSection{
  background: #242331;
  padding: 6.25rem 0 5rem;
}
.chapterSection .main-head h2{
  color: white;
  text-transform: uppercase;
  
}

.innerchapters {
  background: black;
  padding: 3.5rem 1.875rem 2.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 270px;
}
.innerchapters span{
    background: #F9B202;
    border-radius: 0px 0px 0px 78px;
    width: 82px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.innerchapters span img{
    margin-left: 20px;
}
.innerchapters h4{
  font-size: 1.363rem;
  font-weight: 600;
  color: white;
}
.innerchapters p{
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.read_device .subHeading{
  text-transform: uppercase;
  margin-bottom: 2rem;

}
.read_device .abtContent p{
  font-size: 1.375rem;
}


.appointmentSection{
  padding-bottom: 0;
}
.appointmentain{
  background: #F4F6F9;
  border-radius: 10px;
  padding: 3.125rem 1.875rem;
}
.appointform{}
.appointform label{
  color: #242331;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.appointform select{
  background: white;
  border-radius: 10px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  height: 3.125rem;
  border: none;

}
.appointform select option{
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}
.appointform input{
  background: white;
  border-radius: 10px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  height: 3.125rem;
  border: none;
}
.appointform textarea{
  background: white;
  border-radius: 10px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  border: none;
}
.appointform input::placeholder,
.appointform textarea::placeholder{
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}
.appointmentSection .row{
  align-items: center;
}


.cntctmap {
    padding-top: 2rem;
}
/* inner Page css :end */
.innerfaqs .accordion {
  display: flex;
  flex-wrap: wrap;
}

.innerfaqs .accordion .accordion-item {
  flex: 0 0 50%;
  padding: 0 12px;
}