
/* font-family: 'Lato', sans-serif;
font-family: 'Lexend Deca', sans-serif;
font-family: 'Metrophobic', sans-serif; */

.font-lato {
  font-family: 'Lato', sans-serif;
}

.font-metrophobic {
  font-family: 'metropolisregular';
}

.font-queens {
  font-family: 'queens_trialbold';
}

@font-face {
  font-family: 'metropolisbold';
  src: url('../fonts/metropolis-bold.woff2') format('woff2'),
       url('../fonts/metropolis-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolismedium';
  src: url('../fonts/metropolis-medium.woff2') format('woff2'),
       url('../fonts/metropolis-medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisregular';
  src: url('../fonts/metropolis-regular.woff2') format('woff2'),
       url('../fonts/metropolis-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'queens_trialbold';
  src: url('../fonts/queenstrial-bold.woff2') format('woff2'),
       url('../fonts/queenstrial-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body {
  color: #0E1C38;
  font-family: 'metropolisregular';
  font-size: 18px;
  line-height: 26px;
}

.fontsize-20 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.fontsize-16{
  font-size: 16px;
  line-height: normal;
}

.placeholder-white::placeholder {
  color: #FFF;
  opacity: 1; /* Firefox */
}

input {
  border: 0;
}

input:focus, textarea:focus {
  border: 0;
  outline: none;
}

input[type=text]:focus, input[type=email]:focus {
  background-color: lightblue;
  
}

textarea:focus {
  background-color: lightblue;
}


button,.btn {
  font-weight: 600;
  font-family: 'metropolisregular';
  border:0;
  outline: none;
  font-size: 18px;
  line-height: 28px;
  border-radius: 10px;
}

button:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.btn {
  padding: 10px 28.203px 10px 28.55px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 9.28px;
  border-radius: 10px;
  align-items: center;
}

.btn-primary { 
background: #004CFF;
}

.btn-primary:hover {
background: #0022D2;
}


.btn-white { 
background: #fff;
color: #004CBD;
}

.btn-white:hover {
background: #DFECFF;
}

.btn-dark { 
  border: 2px solid #222;
  background: #0E1C38;
  color: #fff;
  }
  
  .btn-dark:hover {
  background: #DFECFF;
  color: #0E1C38;
  }

  .btn-transparent {   
    border: 2px solid #0E1C38;
    color:#0E1C38;
  }
    
  .btn-transparent:hover {
    background: #0E1C38;
    color: #fff;
    
  }

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
}

h1 {
  font-size:60px;
  line-height: 70px;
}

h2 {
  font-size: 36px;
  line-height: 40px;
}

h3 {
  font-size: 26px;
  line-height: 40px;
}

h4, .h4{
  font-size: 27px;
  line-height: 38px;
  font-weight: bold;
}

h5, .h5{
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}

.mt-60 {
  margin-top: 80px !important;
}





#text-scrolling   .scrolling-text--inner {
  font-size: 14px;
  line-height: 15px;
  }

  #text-scrolling {background-color:#fef5ed ;
    background: #0022D2;
  padding: 9px 0;
  }

  .scrolling-text--item span {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1); 
}
  .scrolling-text {
  background-color: transparent;
  color: #fff;
  position: relative;
  background-size: cover;
  display: flex;
  align-items: center; }

  .scrolling-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  background: transparent }

  .scrolling-text-uppercase--true {
  text-transform: uppercase; 
}
  .scrolling-text--inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 10; 
}
  .scrolling-text--inner.direction-left > div {
  animation: scrollText-left var(--marquee-speed) linear infinite; 
}
  .scrolling-text--inner.direction-right > div {
  animation: scrollText-right var(--marquee-speed) linear infinite; 
}
  .scrolling-text--inner > div {
  display: flex;
  align-items: center;
  flex-shrink: 0; 
}
  .scrolling-text--item {
  display: inline-flex;
  align-items: center;
  padding: 0 30px; 
}
  .scrolling-text--link {
  display: inline-flex;
  align-items: center; 
}
  .scrolling-text--link span {
  transform-origin: left bottom; 
}
  .scrolling-text--link:hover {
  color: #000; 
}
  .scrolling-text--link:hover span {
  transform: skew(-10deg, 0); 
}
  .scrolling-text--image {
  margin-right: 40px;
  object-fit: cover; 
}
  .scrolling-text--image--small {
  width: 50px;
  height: 50px; 
}
  .scrolling-text--image--medium {
  width: 100px;
  height: 100px; 
}
  .scrolling-text--image--large {
  width: 200px;
  height: 200px; 
}
  @keyframes scrollText-left {
  0% {
  transform: translateX(0%); 
}
  100% {
  transform: translateX(-100%); 
} }
  @keyframes scrollText-right {
  0% {
  transform: translateX(-100%); 
}
  100% {
  transform: translateX(0%); 
} }

.logo{
text-align: center;
text-decoration: none ;
}


.tagline {
  font-size: 12px;
  color: #004CBD;
  line-height: normal;
  margin-top: 8px;
}

.menu-section {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}

.menu-section a.active {
  text-decoration: none;
  font-weight: 600;
  color: #00212C;
  border: 2px solid #00212C;
  border-radius: 12px;
  padding: 6px 17px;
}



.banner-content {
  display: flex;
  justify-content: space-between;
}

.home-banner {
  background: #004CFF;
  color: #fff;
  padding: 140px 0;
  height: 83vh;
}

.banner-text {
 max-width: 600px;
 margin-right: 130px;
}

.my-40 {
  margin: 40px 0;
}

.watch-video {
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
}

.watch-video:hover {
  color: #000;
}

.watch-video:hover img{
  filter: invert();
}

section {
  /* margin-top: 122px; */
  margin-top:90px;
}

.text-primary {
  color: #0E1C38 !important;
}

.small, small {
  font-size:14px;
}

.text-small {
  color: #0022D2;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.text-small:before{
 position: absolute;
 content: '';
left: 0;
width: 12px;
height: 12px;
background-color: #0022D2;
border-radius: 2px;

}

ol.order-list {
  list-style: none;
  counter-reset: item; 
  margin: 0;
  padding: 0;
  margin-top: 100px;

}

ol.order-list li {
  counter-increment: item;
  margin-bottom: 20px; 
  font-weight: 600; 
}

ol.order-list li:before {
  margin-right: 12px;
  content: counter(item);
  background:#DFECFF;
  border-radius:5px;
  color: #000272;
  width: 36px;
  height: 23px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

ol.order-list li a{ 
  color: #0E1C38;
  text-decoration: none;
  line-height: 52px;
  position: relative;
}

ol.order-list li a::before{ 
  position: absolute;
  content: '';
  width: 2px;
  height: 30px;
  background-color: #DFECFF;
  left: -31px;
  top: 29px;
}


ol.order-list li:last-child a::before{ 
 display: none;
}

.rounded-4 {
  border-radius:20px;
}

.lh-40 {
  line-height: 40px !important;
}

.text-dark {
  color:#0E1C38;
}

.pt-15 { padding-top:15px;}

.mt-20 {
  margin-top:20px;
}

.mt-30 {
  margin-top:30px;
}

.mt-40 {
  margin-top:40px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-25 {
  margin-top: 25px;
}

/* Accordian css Start */
#accordionExample { margin-bottom: 45px;}
#accordionExample .accordion-item{
	background-color: transparent;
	border-bottom: 1px solid #D9D9D9 !important;
}

#accordionExample .accordion-item .accordion-header .accordion-button{
	border-color: #fff !important;
}

.accordion-button:not(.collapsed) {
   box-shadow: none;
}

.accordion-button {
    transition: none;   
    padding-left:0px;
  }

.accordion-button.collapsed {
  border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
  color: #0E1C38 ;
  background-color: #FCFAF2 ;
}
.accordion-button:not(.collapsed)::after {   
    width: 10px;
    height: 2px;
    background: #000;   
    right: 23px  
}
.accordion-button::after { 
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  content: "";
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #FCFAF2 ;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 1px;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-width: 1px;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

.accordion-collapse {
  border: solid rgba(67, 67, 67, 0.125);
  border-width: 0 1px;
  
}

.accordion-body {
  padding: 1rem 0rem; 
}

.accordion-flush .accordion-button {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item:first-of-type .accordion-button {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-flush .accordion-item
{
    box-shadow: 0 0 6px 0 #c3c3c3 !important;
}
/* accordian css end */


.me-3 {
  margin-right: 0.7rem!important;
}

.grid-accordian {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 14rem;
}


.sky-blue-bg {
  background: #F6F9FC;
  padding: 65px 0;
}

.box {
  padding: 16px;
  font-family: 'Lexend Deca', sans-serif;
  border-radius:6px;
  background: #FFF;
  box-shadow: 0px 1px 5px 0px rgba(33, 51, 67, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: background-color 0.5s ease-out 100ms;
  cursor: pointer;
}

.box:hover, .box:hover {
  background-color:#0068B1;
  color: #fff;
}

.box:hover .box-title {
  color: #fff;
}

.box-title {
  color: #0068B1;
  line-height: 28px;
}

.pb-5 {padding-bottom: 5px !important;}
.pt-3 {padding-bottom: 3px !important;}

.sky-blue-bg h2 {
  font-size: 32px;
  font-family: 'Lexend Deca', sans-serif;
  line-height: 44px;
}

.box-dec {
  padding: 0 20px;
  line-height: 20px;
}



/* ................... Blue bg................. */


.blue-bg {
  background:#0022D2;
  padding: 60px 0;
  color: #fff;
  
}

.blue-bg h2{ 
  margin-bottom: 45px;
}

.blue-bg img {
  float:inline-end;
}

.ms-20 {
  margin-left: 20px !important;
}

.me-20 {
  margin-right: 20px !important;
}

.dropbox img{
  transition: transform 0.6s; 
}

/*.dropbox img:hover{
   transform: rotateY(45deg);
}
*/
.bg-unset
{
  background: unset !important;
}
.blue-color
{
  color: #0022D2;
}
.grid-accordian img
{
  width: 40px;
}

/* Powerful, easy section */

.powerful-boxes .box{
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
  padding: 30px 15px;
}

.powerful-boxes .box .box-title{
  margin: 0;
  font-weight: bold;
  padding-top: 15px;
  line-height: 40px;
  color: #0E1C38; 
}

.powerful-boxes .box:hover {
  color: #fff;
  background-color:#2E475D;
}

.powerful-boxes .box:hover .box-title{
  color: #fff;
}


/* Grow Business */
.grow-business {
  position: relative; 
  background: url(../images/grow-business-bg.png) center top no-repeat; 
  background-size: cover; 
  height: 560px;   
  display: flex;
  align-items: center;
}

.grow-business h2 {
  margin-bottom: 25px;
}

.grow-business a:last-child{
  margin-left: 15px;
}

.subcribe-section {
  /* background-color: #004CFF; */
  background-color: #0E1C38;
  padding: 150px 0;
}

.subcribe-section h2 {
  margin-bottom: 20px;
}

.subcribe-section .btn
{
  /* background-color: #212529; */
}


/* Footer start */
footer {
  padding-top: 100px;
}

.footer-logo {
  margin-bottom: 24px;
}

footer p {
  color: #6F6F6F;
  font-size: 14px;
  line-height: 22px;
}

.footer-title {
  color: #222;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 22px;
padding-bottom: 10px;
}

footer .footer-social {
  margin-bottom: 35px;
}

footer ul li a, footer a {
  color: #6F6F6F;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
}

.footer-social {
  margin: 0;
  padding: 0;
}

.footer-social li{
  list-style: none;
  display: inline-block;
  padding-right:2px;
}

.footer-social a svg{
  transition: 0.3s;
}

.footer-social a:hover svg{ 
  filter: invert();
}

footer .contact a {
  line-height: 20px;
}

.copyright {
  background: #F6F6F6;
  color: #222;
line-height: 22px;
margin-top: 100px;
padding: 24px 0;
font-size: 14px;
}

.footer-link {
  margin: 0;
}

textarea:focus, input:focus{
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.connect-form {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
}

.connect-form textarea {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
}

.connect-form button {
  grid-column: 3 / 4;
}

.list-3-columns {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 30px;
  padding: 0;
}

.list-3-columns li {
  list-style: none;
}

.list-3-columns a{
  text-decoration: none;
  color: #0E1C38;
  font-size: 17px;
  font-weight: 500;
}

.list-3-columns a:hover{
  color:#004CFF;
}

.blue-heading-section {
  background: #F6F9FC;
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0;
}

.row-gap {
  display: grid;
  grid-column-gap:4rem;
}

.contact-icon img {
  width: 64px;
  height: 90px;
}

ol.oreder-list-without-line .button {
  margin-left: 48px;
}



/* Industries css */


ol.oreder-list-without-line {
  list-style: none;
  counter-reset: item; 
  margin: 0;
  padding: 0;
  margin-top: 100px;
}

ol.oreder-list-without-line.exclusive-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 2rem;
}

ol.oreder-list-without-line li {
  counter-increment: item;
  margin-bottom: 10%; 
  font-weight: 600; 
  /* font-size: 24px; */
}

ol.oreder-list-without-line li p {
  font-size: medium;
  line-height: 20px;
  font-weight: normal;
  padding-left: 48px;
  margin-top:10px;
}

ol.oreder-list-without-line li:last-child{
  margin-bottom: 5%;
}

ol.oreder-list-without-line li:before {
  margin-right: 12px;
  content: counter(item);
  background:#DFECFF;
  border-radius:5px;
  color: #000272;
  width: 36px;
  height: 23px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

ol.oreder-list-without-line .buttons { 
  margin-top: 1.5rem;
  padding-left: 42px;
}

ol.oreder-list-without-line .buttons a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 30px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #0E1C38;
  font-size: 18px;
  font-weight: 400;
  margin-left: 12px;
}

ol.oreder-list-without-line .buttons a:hover {
  background-color:#004CFF;
  color:#fff
}

ol.oreder-list-without-line.for-business {
margin: 0;
margin-top: 30px;
}

ol.oreder-list-without-line.for-business li:before {
  margin-right: 12px;
  content: counter(item);
  background: #DFECFF;
  border-radius: 5px;
  color: #000272;
  width: 36px;
  height: 23px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

ol.oreder-list-without-line.for-business li ul{
  margin: 0;
  padding: 0;
  padding-left: 68px;
}

ol.oreder-list-without-line.for-business li li:before {
  content: none;
}

ol.oreder-list-without-line.for-business li {
  content: none;
  padding-top: 20px;
}


ol.oreder-list-without-line.for-business li p {
  padding-left:55px;
}

ol.oreder-list-without-line.for-business li div{
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
  margin-left: 55px;
}

ol.oreder-list-without-line.for-business li div p {
  padding-left: 0;
}

ol.oreder-list-without-line.for-business li div::before  {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background-color: #000;
  border-radius: 100%;
  top: 9px;
  left: 0;
}

ol.oreder-list-without-line.for-business li p { 
 
  margin-top: 0;
  margin-bottom: 0;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap:1rem;
  justify-content: center;
}

.button-grid a {
  display: flex !important;
align-items: center;
  justify-content: center;
}

.menu-section a.contact {
  display: none;
}




/* Responsive start */
@media only screen and (max-width: 1024px) {
  
  .home-banner {
    padding: 10% 0;
  }
  
  h1 {
    font-size: 40px;
    line-height: normal;
  }

  .banner-text {
    max-width: 325px;
    margin-right: 0;
}

.banner-text .mt-4 {
  margin: 20px 0;
}

.fontsize-20 {
  font-size: 16px; 
  line-height: 20px;
}

section {
  margin-top: 80px;
}

h2 {
  font-size: 30px;
  line-height: normal;
}
ol.order-list {
   margin-top:0px;
}

ol.order-list li a {
  font-size: 16px;
}


.business-people {
  margin-top: 20px;
}

.grid-accordian { 
  grid-column-gap: 2rem;
}

.mt-30 {
  margin-top: 25px;
}

.mt-40 {
  margin-top: 25px;
}

.grow-business {
   height: 430px;
}

.subcribe-section {
  padding: 70px 0;
}

.btn {
  padding: 8px 10px 8px 10px;
}

button, .btn { 
  font-size: 15px;
  line-height: 15px;
}

footer {
  padding-top: 70px;
}
.copyright {
  margin-top: 40px;
}
  
}


@media only screen and (max-width: 767px) {

  ol.oreder-list-without-line.exclusive-service {
    display: block;
  }

 .mt-60 {
    margin-top: 50px !important;
}

  .list-3-columns {
    grid-template-columns: repeat(1, 1fr);
  }
  marquee {   
    font-size: 13px;
    padding: 12px 0;   
    line-height: 10px;
}

.logo {
  margin-left: 15px;
}

.logo img{ max-width: 170px;}
.footer-logo {
   max-width: 180px;
}

footer .pt-5 {
  padding-top: 1rem!important;
}

.tagline {
  font-size: 9px; 
  margin-top: 5px;
}

.menu-section {
  padding: 10px 0;
}

.banner-content {
  flex-direction: column;
}

.fontsize-16 {
  font-size: 14px;
}

h1 {
  font-size: 30px;
}

h2, .sky-blue-bg h2 {
  font-size: 25px;
  line-height: 30px;
}


h3 {
  font-size: 20px;
  line-height: 25px;
}


.my-40 {
  margin: 20px 0;
}

section {
  margin-top: 40px;
}

.grid-accordian { 
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap:0;
}

.sky-blue-bg { 
  padding: 40px 0;
}

.ms-20 {
  margin-left: 0px !important;
}

.grow-business {
  height: 210px;
}

.blue-bg, .subcribe-section { 
  padding: 10% 0; 
}

footer {
  padding-top:40px;
}

ol.order-list li {
  margin-bottom: 0;
}

ol.order-list li a::before {
  height: 15px; 
  top: 26px;
}

.input-group svg {
  display: none;
}

.footer-title {
  padding-top:25px;
}

footer .footer-social {
  margin-bottom: 0;
}

footer ul li:last-child a{
  line-height: normal;
}

#text-scrolling   .scrolling-text--inner {
  font-size: 12px;
  line-height: 13px;
  }

  #text-scrolling {
  padding:3px 0;
  }

  .connect-form {   
    grid-template-columns: repeat(1, 1fr) ;
    
}

.connect-form textarea {
  grid-column: auto;
}

.connect-form button {
  grid-column: 1;
  width: 100px;
}



}


/* ------------About Page------------ */
.inner-banner {
  background: url(../images/about-bg.png) right top no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: center;
  height: 340px;
  position: relative;
}

.about-bg::before{
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  background: url(../images/inner-bg.png) center top no-repeat;
  height: 100%;
  width: 100%;
}

.banner-content {
  position: relative;
}

.mt-128 {
  margin-top: 128px;
}

.blue-circle {
  background-color: #0022D2;
}


@media only screen and (max-width:1024px) {
  .inner-banner {   
    height:250px;   
  }

  .mt-128 {
    margin-top:100px;
  }

  
  .mt-128 {
    margin-top:50px;
  }


}

@media only screen and (max-width:767px) {

  ol.oreder-list-without-line {   
    margin-top: 40px;
}

.blue-heading-section {
  padding-top: 40px;
  padding-bottom: 40px;
}


  .inner-banner {
    height: 150px;
}

  h5, .h5 {
    font-size: 18px; line-height: normal;
  }

h4, .h4 {
    font-size: 20px;
    line-height: 24px;
}

.grow-business h2,  .subcribe-section h2{
  font-size: 20px;
  line-height: 24px;
}

.blue-icon img {
  max-width: 60px;
  height: auto;
}
}




.blog-main-page .box-section
{
  box-shadow: 0px 1px 5px 0px rgba(33, 51, 67, 0.12);
  border-radius: 6px;
  margin: 15px 10px;
}
.blog-main-page .box-section .text-section
{
 padding: 20px;
}
.blog-main-page .box-section h5 a
{
  color: #000000;
  text-decoration: none;
}
.blog-details-page .img-section img
{
  width: 100%;
}

/* FAQ Page CSS */
.faq-page-section .accordion-collapse
{
  padding: 0 15px;
}
.faq-page-section .accordion-flush .accordion-item .accordion-button
{
  padding: 15px 15px;
}



.about-title-section
{
  padding-top: 80px;
  padding-bottom: 80px;
}


.fontsize-20
{
  font-size: 20px;
}
.accordion-button::after
{
  right: 20px;
}



@media only screen and (max-width: 1200px) {
  .menu-section a.contact {
    display: none;
  }
}
