/* https://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /* font-family: "Source Sans Pro,sans-serif"; */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  /* font-family: "Open Sans", sans-serif;
  color: #243040;
  background-color: #ffffff; */
}

body,
html {
  overflow-x: hidden;
}

a {
  color: #9cb3a8;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
main {
  position: relative;
  z-index: 2;
  /* fix bug on iOS */
  /* height: 100vh;
  overflow-y: auto; */
  -webkit-overflow-scrolling: touch;
  padding: 200px 5%;
  background-color: rgb(247, 199, 35);
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

/* main h1,
main p {
  text-align: center;
}
main h1 {
  font-size: 2.6rem;
  margin-bottom: 1em;
}
main p {
  font-family: "Merriweather", serif;
  color: #d6dfdb;
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.6;
} */
.navigation-is-open main {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

@media only screen and (min-width: 768px) {
  main {
    padding: 120px 10%;
  }

  /* main h1 {
    font-size: 3.6rem;
  }
  main p {
    font-size: 2rem;
  } */
}

.cd-nav-trigger {
  position: fixed;
  z-index: 3;
  left: 5%;
  top: 20px;
  height: 54px;
  width: 54px;
  background-color: #243040;
  border-radius: 50%;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}

.cd-nav-trigger .cd-nav-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

.cd-nav-trigger .cd-nav-icon::before,
.cd-nav-trigger .cd-nav-icon:after {
  /* upper and lower lines of the menu icon */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s, top 0.3s;
  -moz-transition: -moz-transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::after {
  top: 2px;
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::before {
  top: -2px;
}

.cd-nav-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.cd-nav-trigger circle {
  /* circle border animation */
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  -moz-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

.navigation-is-open .cd-nav-trigger {
  /* rotate trigger when navigation becomes visible */
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::after,
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s;
  -moz-transition: -moz-transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::after,
.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::before {
  top: 0;
}

.navigation-is-open .cd-nav-trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  -moz-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    top: 40px;
  }
}

.cd-nav {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0) !important;
  opacity: 0.9 !important;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.7s;
  -moz-transition: visibility 0s 0.7s;
  transition: visibility 0s 0.7s;
}

.cd-nav .cd-navigation-wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 5% 40px calc(5% + 80px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.navigation-is-open .cd-nav {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.navigation-is-open .cd-nav .cd-navigation-wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}

.cd-nav h2 {
  position: relative;
  margin-bottom: 1.7em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #080b0f;
  text-transform: uppercase;
}

.cd-nav h2::after {
  /* bottom separation line */
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 1px;
  width: 60px;
  background-color: currentColor;
}

.cd-nav .cd-primary-nav {
  margin-top: 60px;
}

.cd-nav .cd-primary-nav li {
  margin: 1.6em 0;
}

.cd-nav .cd-primary-nav a {
  font-family: "Merriweather", serif;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.cd-nav .cd-primary-nav a.selected {
  color: #ffffff;
}

.no-touch .cd-nav .cd-primary-nav a:hover {
  color: #ffffff;
}

.cd-nav .cd-contact-info {
  margin-top: 80px;
}

.cd-nav .cd-contact-info li {
  font-family: "Merriweather", serif;
  margin-bottom: 1.5em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.3);
}

.cd-nav .cd-contact-info a {
  color: #ffffff;
}

.cd-nav .cd-contact-info span {
  display: block;
}

.cd-nav .cd-contact-info li,
.cd-nav .cd-contact-info a,
.cd-nav .cd-contact-info span {
  font-size: 1.6rem;
}

@media only screen and (min-width: 1170px) {
  .cd-nav .cd-navigation-wrapper {
    padding: 62px 20%;
  }

  .cd-nav .cd-navigation-wrapper::after {
    clear: both;
    content: "";
    display: table;
  }

  .cd-nav .cd-half-block {
    width: 50%;
    float: left;
  }

  .cd-nav .cd-primary-nav {
    margin-top: 0;
  }

  .cd-nav h2 {
    font-size: 1.5rem;
    margin-bottom: 5.6em;
  }

  .cd-nav .cd-primary-nav li {
    margin: 2em 0;
  }

  .cd-nav .cd-primary-nav a {
    font-size: 4.4rem;
  }

  .cd-nav .cd-contact-info {
    margin-top: 120px;
    text-align: right;
  }

  .cd-nav .cd-contact-info li {
    margin-bottom: 2.4em;
  }

  .cd-nav .cd-contact-info li,
  .cd-nav .cd-contact-info a,
  .cd-nav .cd-contact-info span {
    font-size: 2rem;
  }
}

.no-js main {
  height: auto;
  overflow: visible;
}

.no-js .cd-nav {
  position: static;
  visibility: visible;
}

.no-js .cd-nav .cd-navigation-wrapper {
  height: auto;
  overflow: visible;
  padding: 100px 5%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/* =======================================fisrt================================ */
/* @import url("https://fonts.googleapis.com/css?family=Oswals:500,600,700"); */
.thirdsection {
  -moz-box-direction: normal !important;
  -moz-box-orient: vertical !important;
  background-color: rgb(247, 199, 35) !important;
  /* min-height: 100vh !important; */
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 60px;
}

.mainhd {
  text-align: center;
  font-family: Source Sans Pro, sans-serif;
  font-size: 80px !important;
  font-weight: 200 !important;
}

.mainpera {
  text-align: center;
  margin-top: 30px;
  font-size: 25px;
  color: black;
  font-weight: initial;
  font-family: Source Sans Pro, sans-serif;
}

.mainperasec {
  text-align: center;
  /* margin-top: 30px; */
  font-size: 25px;
  font-weight: initial;
  color: black;
  font-family: Source Sans Pro, sans-serif;
}

.mainpageundersec {
  margin-top: 50px;
  margin-bottom: 1px;
}

.mainpageunpera {
  color: black;
  height: 29px;
  font-size: 15px !important;
  text-align: center !important;
  font-weight: bold !important;
  font-family: Source Sans Pro, sans-serif;
}

.mainpageunperasec {
  margin: 15px 0px 0px !important;
  font-size: 13px !important;
  text-align: center !important;
  min-height: 35px !important;
  color: black;
  font-family: Source Sans Pro, sans-serif;
}

.mainunderimage {
  width: 70px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.services {
  background: white;
}

.service-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #272833;
  line-height: 70px;
  position: relative;
}

.service-icon span.fa {
  font-size: 25px;
  color: #ead032;
  line-height: 70px;
}

.service-grid h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
}

.service-grid p {
  color: #f2f0e780;
}

/* ======================secsection====================== */

.secsectionmainhd {
  font-size: 45px !important;
  margin-top: 60px;
  text-align: center !important;
  font-family: Source Sans Pro, sans-serif;
  font-weight: bold;
}

.secsectionmainpera {
  font-size: 25px !important;
  margin: 15px 0px 0px;
  text-align: center !important;
  font-family: Source Sans Pro, sans-serif;
}

.mainpagecardsec {
  margin-top: 70px;
}

html,
body {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  /* background: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400; */
}

.wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.container-fostrap {
  display: table-cell;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}

.fostrap-logo {
  width: 100px;
  margin-bottom: 15px;
}

h1.heading {
  color: #fff;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  color: #505050;
}

@media (min-width: 450px) {
  h1.heading {
    font-size: 3.55em;
  }
}

@media (min-width: 760px) {
  h1.heading {
    font-size: 3.05em;
  }
}

@media (min-width: 900px) {
  h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
}

.card {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 2px;
  /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s; */
}

.card:hover {
  /* box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.img-card {
  /* width: 100%;
  height: 200px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: block;
  overflow: hidden; */
  width: 60%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 58%;
  border: 6px solid rgb(249, 213, 83);
}

.img-card img {
  /* width: 60%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 58%;
  border: 6px solid rgb(249, 213, 83); */
}

.card-content {
  padding: 15px;
  text-align: left;
}

.secndcardmainhd {
  font-weight: 600 !important;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  min-height: 30px;
  cursor: pointer !important;
  color: rgb(0, 0, 0) !important;
  font-family: Source Sans Pro, sans-serif;
}

.card-read-more {
  border-top: 1px solid #d4d4d4;
}

.card-read-more a {
  text-decoration: none !important;
  padding: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.secndcardmainpera {
  text-align: center;
  justify-content: center;
  min-height: 50px !important;
}

/* ==============================thirdsection======================================== */

.thirdsectionhd {
  font-size: 30px !important;
  margin-top: 50px;
  font-weight: 600;
  text-align: center;
  color: rgb(0, 0, 0) !important;
  font-family: Source Sans Pro, sans-serif;
}

.thirdsectionsubhd {
  text-align: center !important;
  font-weight: bold !important;
  font-size: 18px !important;
  color: rgb(0, 0, 0) !important;
  font-family: Source Sans Pro, sans-serif;
  margin-top: 25px;
}

.thirdsectionsubpera {
  margin: 7px 0px 0px !important;
  font-size: 15px !important;
  text-align: center !important;
  font-weight: 500 !important;
  font-family: Source Sans Pro, sans-serif;
  cursor: pointer !important;
  color: rgb(0, 0, 0) !important;
}

.thirdsectionsecsubpera {
  margin: 7px 0px 0px !important;
  font-size: 13px !important;
  text-align: center !important;
  font-weight: 500 !important;
  color: rgb(0, 0, 0) !important;
  font-family: Source Sans Pro, sans-serif;
}

.thirdsectionsubsubhd {
  margin: 20px 0px 0px !important;
  font-size: 16px !important;
  text-align: center !important;
  font-weight: bold !important;
  color: rgb(0, 0, 0) !important;
  font-family: Source Sans Pro, sans-serif;
}

.fourthsection {
  -moz-box-align: center !important;
  -moz-box-pack: center !important;
  -moz-box-direction: normal !important;
  -moz-box-orient: vertical !important;
  padding: 70px 70px 50px !important;
  background-color: rgb(0, 0, 0) !important;
  display: flex !important;
  /* flex-direction: column !important; */
  justify-content: center !important;
  align-items: center !important;
}

.footerbtn {
  -moz-box-align: center !important;
  display: flex !important;
  align-items: center !important;
  background-color: rgb(247, 199, 35) !important;
  padding: 0px 25px !important;
  border-radius: 15px !important;
  justify-content: center !important;
  align-items: center !important;
  margin: auto !important;
  display: flex !important;
  border: 1px solid black !important;
  color: black !important;
  font-size: 45px !important;
  font-family: Source Sans Pro, sans-serif;
  font-weight: 100 !important;
}

.footerpera {
  color: rgb(255, 255, 255) !important;
  margin: 10px 0px 0px !important;
  text-align: center;
  font-family: Source Sans Pro, sans-serif;
}

/* ==================================================== */
body {
  margin: 0;
}

.navbarfirstpage {
  position: relative;
  z-index: 2;
  /* height: 100vh; */
  padding: 3%;
  background-color: rgb(247, 199, 35);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  float: left;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
  text-decoration: none !important;
}

.overlay-content {
  position: relative;
  /* top: 25%; */
  width: 100%;
  text-align: center;
  margin-top: 30px;
  text-decoration: none !important;
}

.overlay a {
  padding: 8px;
  text-decoration: none !important;
  font-size: 36px;
  color: white;
  display: block;
  font-size: 23px !important;
  font-weight: 400 !important;
  font-family: Source Sans Pro, sans-serif;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: white;
  width: 400px;
}

.overlay .closebtn {
  position: absolute;
  top: 35px;
  right: 85px;
  font-size: 36px;
  text-decoration: none !important;
  background-color: rgb(247, 199, 35) !important;
  color: rgb(0, 0, 0) !important;
  border-radius: 50% !important;
  cursor: pointer;
  width: 60px !important;
  height: 60px !important;
  text-align: center;
  /* border-radius: 50% !important;
  background-color: white !important;
  padding: 10px !important;
  color: black;
  width: 48px !important;
  height: 50px !important; */
}

@media screen and (max-height: 450px) {
  /* .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 7px;
    right: 72px;
  } */
}

.opennav {
  float: right;
  -moz-box-align: center !important;
  -moz-box-pack: center !important;
  border-radius: 50% !important;
  background-color: rgb(0, 0, 0) !important;
  padding: 10px !important;
  color: white;
  width: 48px !important;
  height: 50px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  margin-right: 40px;
  position: fixed;
}

.mainpagefirstcontnt {
  margin-top: 65px;
}

/* ======================================================= */

@import "compass/css3";

body,
html {
  margin: 0;
  font-family: Source Sans Pro, sans-serif;
  background: #000;
}

.overlaynavbarlink ul {
  margin: 150px auto 0;
  padding: 0;
  list-style: none;
  display: table;
  /* width: 500px; */
  text-align: center;
}

.overlaynavbarlink li {
  /* display: table-cell; */
  position: relative;
  padding: 3px 0;
}

.overlaynavbarlink a {
  color: #fff;
  /* text-transform: uppercase; */
  text-decoration: none;
  letter-spacing: 0.1em;

  display: inline-block;
  padding: 15px 13px;
  position: relative;
}

.overlaynavbarlink a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  background: rgb(247, 199, 35);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.overlaynavbarlink a:hover:after {
  width: 100%;
  left: 0;
}

@media screen and (max-height: 300px) {
  .overlaynavbarlink ul {
    margin-top: 40px;
  }
}

.movtotopbtn {
  background-color: black;
  width: 47px;
  text-align: center;
  padding-left: 15px;
  padding-bottom: 9px;
  padding-top: 9px;
  border-radius: 42px;
  color: white;
}

/* ====================================responsivetchnology========================== */

@media (max-width: 1199px) and (min-width: 992px) {
  .img-card {
    width: 70%;
    /* height: 200px; */
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .img-card {
    width: 95%;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 767px) and (min-width: 680px) {
  .img-card {
    width: 32%;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 679px) and (min-width: 600px) {
  .img-card {
    width: 37%;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 599px) and (min-width: 500px) {
  .img-card {
    width: 45%;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 499px) and (min-width: 400px) {
  .img-card {
    width: 58%;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 399px) and (min-width: 300px) {
  .img-card {
    width: 65%;
    height: 165px;
    /* height: 200px; */
  }

  .secndcardmainhd {
    font-size: 16px;
    text-align: center;

  }
}

/* ====================================responsivetchnology========================== */

@media (max-width: 767px) and (min-width: 550px) {
  .secsectionmainhd {
    font-size: 22px !important;
    margin-top: 25px;
    text-align: center !important;
    font-family: Source Sans Pro, sans-serif;
    font-weight: bold;
  }

  .mainpagecardsec {
    margin-top: 30px;
  }

  .secsectionmainpera {
    font-size: 22px !important;
  }

  /* ====================frst=================== */
  .mainpageunpera {
    font-size: 14px !important;
  }

  .mainpera {
    font-size: 20px;
  }

  .mainperasec {
    font-size: 19px;
  }

  .mainhd {
    font-size: 70px !important;
    font-weight: 200 !important;
  }
}

@media (max-width: 549px) and (min-width: 350px) {
  .secsectionmainhd {
    font-size: 17px !important;
    margin-top: 40px;
    text-align: center !important;
    font-family: Source Sans Pro, sans-serif;
    font-weight: bold;
  }

  .mainpagecardsec {
    margin-top: 27px;
  }

  .secsectionmainpera {
    font-size: 19px !important;
    margin: 5px 0px 0px;
    text-align: center !important;
    font-family: Source Sans Pro, sans-serif;
  }

  /* ==========================frst================ */
  .mainpageunpera {
    font-size: 14px !important;
  }

  .mainpera {
    font-size: 18px;
    margin-top: 20px;
  }

  .mainperasec {
    font-size: 17px;
  }

  .mainpageundersec {
    margin-top: 45px;
    margin-bottom: 1px;
  }

  .overlay a {
    font-size: 21px !important;
  }

  .blockquotepagesechead {
    font-size: 15px !important;
  }
}

@media (max-width: 349px) and (min-width: 300px) {
  .secsectionmainhd {
    font-size: 18px !important;
    margin-top: 40px;
    text-align: center !important;
    font-family: Source Sans Pro, sans-serif;
    font-weight: bold;
  }

  .mainpagecardsec {
    margin-top: 27px;
  }

  .secsectionmainpera {
    font-size: 16px !important;
    margin: 5px 0px 0px;
    text-align: center !important;
    font-family: Source Sans Pro, sans-serif;
  }

  /* ============================================ */
  .mainpera {
    font-size: 17px;
    margin-top: 21px;
  }

  .mainperasec {
    font-size: 17px;
  }

  .mainhd {
    font-size: 65px !important;
    font-weight: 200 !important;
  }

  .mainpageundersec {
    margin-top: 45px;
    margin-bottom: 1px;
  }

  .mainpageunpera {
    font-size: 13px !important;
  }

  .overlay a {
    font-size: 18px !important;
  }

  .blockquotepagesechead {
    font-size: 15px !important;
  }
}

/* ===================firstpagerespnsv================================= */

@media (max-width: 950px) and (min-width: 768px) {
  .mainpageunpera {
    font-size: 13px !important;
  }

  .mainpera {
    font-size: 22px;
  }

  .mainperasec {
    font-size: 22px;
  }
}

/* ======================================================softwaresection========================= */
.softwarenavbar {
  position: relative;
  z-index: 2;
  /* height: 100vh; */
  padding: 10px;
  background-color: rgb(247, 199, 35);
}

.softwarepagefirstcontnt {
  margin-top: 65px;
}

.softwarepagemainhd {
  font-family: Source Sans Pro, sans-serif;
  font-size: 58px !important;
  font-weight: 500 !important;
  margin-top: -73px;
  margin-left: 1%;
  margin-bottom: -4px;
}

.softwarepagesecsectioncont {
  margin-top: 50px;
}

.softwarepagesecsecfrsthd {
  font-size: 30px;
  max-width: 630px;
  line-height: 40px;
  font-weight: bold;
  color: black;
  /* font-family: Source Sans Pro, sans-serif; */
}

.softwarepagesecsecimg {
  max-width: 230px !important;
  margin: auto !important;
  margin-top: 25px !important;
}

.softwarepagesecsecfrstimg {
  width: 100% !important;
}

/* ==================================================================== */
.secsectionsoftware {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
  margin-bottom: 20px;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

[class*="col-"] {
  margin-bottom: 30px;
}

.content {
  height: 100%;
  padding: 20px 20px 20px;
  color: #fff;
}

.colour-1 {
  background: rgb(54, 69, 79) !important;
  color: #fff;
  border-radius: 20px;
  /* width: 106%; */
}

.colour-6 {
  background: rgb(247, 199, 35) !important;
  width: 100%;
  /* height: 55vh; */
  border-radius: 20px;
}

.content h3 {
  margin-top: 0px;
  font-weight: 300;
}

/* h1 {
  font-weight: 300;
  margin-bottom: 40px;
} */
.secsectionsoftwarehd {
  color: rgb(247, 199, 35) !important;
  font-size: 22px !important;
  /* margin: 0px !important; */
  text-transform: uppercase !important;
  font-weight: bold !important;
}

.secsectionsoftwarepara {
  color: rgb(255, 255, 255) !important;
  font-size: 15px !important;
  margin: 5px 0px 0px !important;
}

.secsectionsoftsubpara {
  color: rgb(255, 255, 255) !important;
  font-size: 22px !important;
  margin: 0px !important;
  max-width: 200px !important;
}

.softwarepagebtn {
  float: right;
  margin-top: -57px;
  background-color: rgb(247, 199, 35) !important;
  text-transform: uppercase;
  padding: 10px 20px !important;
  font-size: 18px !important;
  color: rgb(0, 0, 0) !important;
  font-weight: bold !important;
  font-size: 18px !important;
}

.softwarescreenfrsthd {
  margin: 0px !important;
  font-size: 35px !important;
  font-weight: bolder !important;
  color: black;
}

.softwarescreenfrstpera {
  /* margin: 0px !important; */
  font-size: 15px !important;
  color: black;
  font-weight: bold !important;
  margin-bottom: 13px;
}

/* ============================================================================== */

/* body {
  padding: 2rem 0rem;
} */
.avatar {
  border: 0.3rem solid rgba(black, 0.3);
  margin-top: -6rem;
  margin-bottom: 1rem;
  max-width: 9rem;
}

.spftwarethirdpeoplehd {
  font-size: 40px !important;
  margin: 0px !important;
  font-weight: bolder !important;
  color: black;
  text-align: center !important;
}

.spftwarethirdpeopleprofl {
  margin-top: 0%;
}

/* ================================================================ */

.profile-card-1 {
  font-family: "Open Sans", Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  color: black;
  text-align: center;
  /* height: 100vh; */
  border: none;
}

.profile-card-1 .background {
  width: 100%;
  vertical-align: top;
  opacity: 0.9;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: scale(1.8);
  transform: scale(2.8);
}

.profile-card-1 .card-content {
  width: 100%;
  padding: 15px 25px;
  position: absolute;
  left: 0;
  top: 30%;
}

.profile-card-1 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 73%;
  left: 50%;

  opacity: 1;

  border: 2px solid black;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.profile-card-1 h2 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 25px;
}

.profile-card-1 h2 small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}

.profile-card-1 i {
  display: inline-block;
  font-size: 16px;
  color: black;
  text-align: center;
  border: 1px solid black;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0 5px;
}

.profile-card-1 .icon-block {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  margin-top: 15px;
}

.profile-card-1 .icon-block a {
  text-decoration: none;
}

.profile-card-1 i:hover {
  background-color: black;
  color: #2e3434;
  text-decoration: none;
}

.spftwarethirdpeoplename {
  margin: -15px 0px 0px !important;
  font-size: 20px !important;
  text-align: center !important;
  font-weight: bold !important;
}

.spftwarethirdpeopleper {
  margin: 10px 0px 0px !important;
  font-size: 15px !important;
  text-align: center !important;
}

.profile-card-2 {
  font-family: "Open Sans", Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  color: black;
  text-align: center;
  height: 100vh;
  border: none;
}

.profile-card-2 .background {
  width: 100%;
  vertical-align: top;
  opacity: 0.9;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: scale(1.8);
  transform: scale(2.8);
}

.profile-card-2 .card-content {
  width: 100%;
  padding: 15px 25px;
  position: absolute;
  left: 0;
  top: 30%;
}

.profile-card-2 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 73%;
  left: 50%;

  opacity: 1;

  border: 2px solid black;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.profile-card-2 h2 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 25px;
}

.profile-card-2 h2 small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}

.profile-card-2 i {
  display: inline-block;
  font-size: 16px;
  color: black;
  text-align: center;
  border: 1px solid black;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0 5px;
}

.profile-card-2 .icon-block {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  margin-top: 15px;
}

.profile-card-2 .icon-block a {
  text-decoration: none;
}

.profile-card-2 i:hover {
  background-color: black;
  color: #2e3434;
  text-decoration: none;
}

.spftwarethirdsubper {
  margin: 15px 0px !important;
  font-size: 15px !important;
  text-align: justify !important;
  min-height: 90px !important;
}

/* ===============================res=========================== */
@media (max-width: 1192px) and (min-width: 992px) {
  .secsectionsoftwarehd {
    font-size: 17px !important;
  }

  .colour-1 {
    width: 102%;
  }

  .secsectionsoftsubpara {
    font-size: 18px !important;
  }

  .softwarepagebtn {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }

  .blockquotepagesechead {
    font-size: 13px !important;
  }

  .blockquotepagesecpera {
    font-size: 13px !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .softwarepagesecsecfrsthd {
    font-size: 26px;
  }

  .secsectionsoftwarehd {
    font-size: 14px !important;
  }

  .secsectionsoftwarepara {
    font-size: 14px !important;
  }

  .secsectionsoftsubpara {
    font-size: 17px !important;
  }

  .softwarescreenfrstpera {
    font-size: 13px !important;
    margin-bottom: 34px;
  }

  .softwarescreenfrsthd {
    font-size: 30px !important;
  }

  .spftwarethirdpeopleprofl {
    column-count: 2;
  }

  .profile-card-2 {
    margin-top: 35px;
  }

  .spftwarethirdsubper {
    text-align: justify !important;
  }

  .spftwarethirdpeoplehd {
    font-size: 40px !important;
  }

  .spftwareprfpagesec {
    column-count: 2;
  }

  .profilesecprof {
    margin-top: 35px;
  }

  .spftwareprfpagesubpera {
    margin-top: 15px;
    font-size: 15px !important;
    text-align: justify !important;
    min-height: 90px !important;
  }

  .lastpagelastsechd {
    font-size: 35px !important;
  }

  /* .firstseccardarea {
    column-count: 2;
  } */
}

@media (max-width: 767px) and (min-width: 500px) {
  .softwarepagesecsecfrsthd {
    font-size: 25px;
  }

  .profile-card-2 {
    margin-top: -255px;
  }

  .spftwarethirdpeoplehd {
    font-size: 36px !important;
  }

  .spftwarethirdsubper {
    text-align: justify !important;
    word-spacing: -2px !important;
  }

  .social-circle li a {
    margin-bottom: -4% !important;
  }

  .spftwareprfpagesec {
    margin-top: 10px !important;
  }

  .lastpagelastsechd {
    font-size: 35px !important;
  }

  .thirdsectionhd {
    font-size: 25px !important;
  }

  .thirdsectionsubhd {
    font-size: 15px !important;
  }

  .thirdsectionsubsubhd {
    font-size: 14px !important;
  }
}

@media (max-width: 499px) and (min-width: 350px) {
  .softwarepagesecsecfrsthd {
    font-size: 23px;
    line-height: 35px;
  }

  .profile-card-2 {
    margin-top: -200px;
  }

  .spftwarethirdsubper {
    text-align: justify !important;
    word-spacing: -2px !important;
  }

  .spftwarethirdpeoplehd {
    font-size: 35px !important;
  }

  .spftwareprfpagesec {
    margin-top: 30px !important;
  }

  .social-circle li a {
    margin-bottom: -5% !important;
  }

  .lastpagelastsechd {
    font-size: 29px !important;
  }

  .thirdsectionhd {
    font-size: 25px !important;
  }

  .thirdsectionsubhd {
    font-size: 15px !important;
  }

  .thirdsectionsubsubhd {
    font-size: 14px !important;
  }

  .footerpera {
    margin: 10px -24px 0px !important;

    font-size: 13px !important;
  }
}

@media (max-width: 349px) and (min-width: 300px) {
  .softwarepagesecsecfrsthd {
    font-size: 21px;
    line-height: 34px;
  }

  .profile-card-2 {
    margin-top: -182px;
  }

  .spftwarethirdsubper {
    text-align: justify !important;
    word-spacing: -2px !important;
  }

  .spftwarethirdpeoplehd {
    font-size: 35px !important;
  }

  .spftwareprfpagesec {
    margin-top: 30px !important;
  }

  .social-circle li a {
    margin-bottom: -5% !important;
  }

  .lastpagelastsechd {
    font-size: 26px !important;
  }

  .thirdsectionhd {
    font-size: 25px !important;
  }

  .thirdsectionsubhd {
    font-size: 15px !important;
  }

  .thirdsectionsubsubhd {
    font-size: 14px !important;
  }

  .footerpera {
    margin: 10px -24px 0px !important;

    font-size: 13px !important;
  }
}

/* =================================================== */
@media (max-width: 767px) and (min-width: 600px) {
  .softwarescreenfrsthd {
    font-size: 30px !important;
  }

  .softwarescreenfrstpera {
    font-size: 14px !important;
  }

  .secsectionsoftware {
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .secsectionsoftwarehd {
    font-size: 20px !important;
  }

  .secsectionsoftsubpara {
    font-size: 19px !important;
  }

  .softwarepagebtn {
    margin-top: -52px;
    font-size: 15px !important;
  }
}

@media (max-width: 599px) and (min-width: 400px) {
  .colour-6 {
    column-count: 2;
  }

  .softwarescreenfrsthd {
    font-size: 26px !important;
  }

  .softwarescreenfrstpera {
    font-size: 12px !important;
  }

  .secsectionsoftware {
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .secsectionsoftwarehd {
    font-size: 18px !important;
  }

  .secsectionsoftsubpara {
    font-size: 19px !important;
  }

  .softwarepagebtn {
    margin-top: -52px;
    font-size: 14px !important;
  }
}

/* ============================================== */
@media (max-width: 399px) and (min-width: 300px) {
  .colour-6 {
    column-count: 2;
  }

  .softwarescreenfrsthd {
    font-size: 25px !important;
  }

  .softwarescreenfrstpera {
    font-size: 10px !important;
  }

  .secsectionsoftware {
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .secsectionsoftwarehd {
    font-size: 17px !important;
  }

  .secsectionsoftsubpara {
    font-size: 15px !important;
  }

  .softwarepagebtn {
    margin-top: 10px;
    padding: 10px 20px !important;
    float: left;
    margin-bottom: 0px !important;
    margin-top: 10px !important;
    font-size: 12px !important;
  }
}

/* ========================================lastsec================= */


.image--cover {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 20px;
  justify-content: center;
  border: 3px solid black !important;
  align-items: center;

  display: flex;

  margin: auto;
  object-fit: cover;
  object-position: center right;

}

.spftwareprfpagesec {
  margin-top: 60px;
}

.spftwareprfpagehd {
  margin: 15px 0px 0px !important;
  font-size: 20px !important;
  text-align: center !important;
  font-weight: bold !important;
}

.spftwareprfpagepera {
  margin: 10px 0px 0px !important;
  font-size: 15px !important;
  text-align: center !important;
}

.spftwareprfpagesubpera {
  margin-top: 15px;
  font-size: 15px !important;
  text-align: center;
  min-height: 90px !important;
}

/* ============================================================================== */

ul.social-network {
  list-style: none;
  display: inline;
  margin-left: 0 !important;
  padding: 0;
  /* float: right; */
}

ul.social-network li {
  display: inline;
  margin: 0 5px;
}

/* .social-network a.icoYt:hover {
  background-color: #e52d27;
} */

.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 40px;

  height: 40px;
  font-size: 20px;
  background-color: #1f2027;
  justify-content: center;

  margin: auto;
  margin-bottom: 7%;
  display: flex;

  align-items: center;
}

.social-circle li i {
  margin: 0;
  line-height: 50px;
  text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 3.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.8s;
}

.social-circle i {
  color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

/* ======================================================================= */
/* body {
  padding: 40px 0;
} */

/* .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}

.grid > article {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.grid > article img {
  max-width: 100%;
}

.grid .text {
  padding: 20px;
  background-color: black;
  color: white;
}

.lastpagesechead {
  font-size: 17px;
  font-weight: 600;
  margin-top: -9px;
}
.lastpagesecpera {
  font-size: 15px;
  margin-bottom: -11px;
} */
.lastpagelastsec {
  margin-bottom: 55px !important;
}

.lastpagelastsechd {
  font-size: 40px;
  margin: 0px !important;
  font-weight: bolder !important;
  text-align: center;
  margin-bottom: 40px !important;
}

.card-footer {
  background-color: black;
  color: white;
  padding-bottom: 40px;
  /* margin-top: 10px !important; */
}

.backgroundcardimag {
  background: url(https://picsum.photos/600/400?image=1083);
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* =============================================================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}

.grid>article {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
  height: 33vh;
}

.grid>article img {
  max-width: 100%;
}

.grid .text {
  padding: 20px;
  background-color: black;
  color: white;
}

.lastpagesechead {
  font-size: 17px;
  font-weight: 600;
  margin-top: -9px;
}

.lastpagesecpera {
  font-size: 15px;
  margin-bottom: -11px;
}

.lastpagelastsec {
  margin-bottom: 55px !important;
}

/* .lastpagelastsechd {
  font-size: 45px !important;
  margin: 0px !important;
  font-weight: bolder !important;
  text-align: center;
  margin-bottom: 40px !important;
} */
.card-footer {
  background-color: #000000b3;
  color: white;
  padding-bottom: 40px;

  margin-top: 62px;
}

.backgroundcardimag {
  background: url(https://picsum.photos/600/400?image=1083);
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.card {
  /* background: url(https://picsum.photos/600/400?image=1083);
  width: 100%;
  height: 100%; */
  width: 100%;
}

.blockquote {
  background: url(..//images/b1.JPG);
  width: 100%;
  height: 100%;
background-repeat: no-repeat;
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.blockquoteone {
  background: url(..//images/b2.JPG);
  width: 100%;
  height: 100%;
 background-repeat: no-repeat;
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.blockquotetwo {
  background: url(..//images/b3.JPG);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  align-items: center;
  /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.blockquotethree {
  background: url(../images/b4.JPG);
  width: 100%;
  height: 100%;
background-repeat: no-repeat;
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.blockquotefour {
  background: url(..//images/b5.JPG);
  width: 100%;
  height: 100%;
 background-repeat: no-repeat;
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.blockquotefive {
  background: url(../images/b6.JPG);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  padding: 1px 0px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: 0px solid #eee !important;
}

.cardblockquotegd {
  margin-top: 160px;
  background-color: #000c;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
}

.blockquotepagesechead {
  font-size: 17px;
  font-weight: 600;
  margin-top: 1px;
  text-align: left;

  margin-left: 20px;
}

.blockquotepagesecpera {
  font-size: 15px;
  font-weight: 100;
  margin-top: 1px;
  text-align: left;

  margin-left: 20px;
  /* margin-bottom: -11px; */
}

@media (max-width: 991px) and (min-width: 733px) {
  .firstseccardarea {
    column-count: 2;
  }
}

/* ===================================================================== */

.wrapper {
  /* padding: 100px; */
}

.image--cover-fist {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 20px;
  justify-content: center;
  border: 5px solid rgb(247, 199, 35) !important;
  align-items: center;

  display: flex;

  margin: auto;
  object-fit: cover;
  /* object-position: center right; */
  -webkit-box-align: center !important;
  -webkit-box-pack: center !important;
  border-radius: 50% !important;
  transition: -ms-transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s, transform 0.2s ease 0s !important;
}

.image--cover-help {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 20px;
  justify-content: center;
  border: 5px solid rgb(247, 199, 35) !important;
  align-items: center;

  display: flex;

  margin: auto;
  object-fit: cover;
  /* object-position: center right; */

}

.image--cover-help1 {
  
  height: 200px;
 
  margin: 20px;
  justify-content: center;
  border: 5px solid rgb(247, 199, 35) !important;
  align-items: center;

  display: flex;

  margin: auto;
  object-fit: cover;
  /* object-position: center right; */

}
.image--cover-fist:hover {
  transform: scale(1.2) !important;
}

/* ************************** */

.knowmore {
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none !important;


}

/* *********How can we hwlp******** */
.help-txt {
  font-size: 45px !important;
  margin: 0px !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

.thin-font {
  font-weight: 100 !important;
  font-size: 25px !important;
}

.smallcard {
  background-color: rgb(245, 244, 244);
  height: 100% !important;
  min-height: 120px !important;
  border-left: 8px solid rgb(247, 199, 35) !important;
  border-radius: 10px !important;
  padding-top: 20px;
  
}
.aboutspace{
  word-spacing: 5px;
 text-align: justify;
 font-size: 18px;
 font-weight: 300 !important;
 font-family: 'Source Sans Pro,sans-serif';
}
.card-style{
  background-color: rgb(245, 244, 244);
  height: 360px;
  text-align: center;
  padding:110px;
  font-family: 'Source Sans Pro,sans-serif';
  font-size: 30px;
  font-weight: bold;
}
.secndcardmainpera1{
  text-align: center;
  justify-content: center;
}
.secsectionmainhd1{
  font-size: 45px !important;
  
  text-align: center !important;
  font-family: Source Sans Pro, sans-serif;
  font-weight: bold;
}
.thirdsection1{
  -moz-box-direction: normal !important;
  -moz-box-orient: vertical !important;
  background-color: rgb(247, 199, 35) !important;
  /* min-height: 100vh !important; */
  display: flex !important;
  flex-direction: column !important;
  
}
.disp{
  display: flex !important;
    /* margin: 15px 0px !important; */
}
.disp1{
  -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 0.4 1 0% !important;
    background-color: rgb(247, 199, 35) !important;
    border-radius: 20px 0px 0px 20px !important;
    padding: 20px !important;
}
.disp2{
  flex: 1 1 0% !important;
    background-color: rgb(54, 69, 79) !important;
    color: rgb(255, 255, 255) !important;
    padding: 20px !important;
    border-radius: 0px 20px 20px 0px !important;
    height: inherit;
}
.p1{
  color: rgb(255, 255, 255) !important;
    font-size: 18px !important;
    margin: 0px !important;
}
.p01{
  margin: 0px !important;
  font-size: 35px !important;
  font-weight: bolder !important;
  text-transform: uppercase !important;

}
.p02{
  margin: 0px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}
@media (max-width: 767px){
  .disp2{
    border-radius: 0px 0px 20px 20px !important;
}
}
@media (max-width: 767px)
{
.disp1{
    border-radius: 20px 20px 0px 0px !important;
    flex: 1 1 0% !important;
}}
@media (max-width: 767px)
{
.disp{
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    flex-direction: column !important;
}
}
.process{
  font-size: 25px !important;
        margin: 15px 0px 0px !important;
        text-align: center !important;
        max-width: unset !important;
}
.left{
  -webkit-box-align: center !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgb(247, 199, 35) !important;
    border-radius: 20px 0px 0px 20px !important;
    padding: 20px !important;
    flex: 0.2 1 0% !important;
    align-items: center !important;
}
.left1{
  margin: 0px !important;
    font-size: 35px !important;
    font-weight: bolder !important;
    text-transform: uppercase !important; 
}
.right{
  color: rgb(255, 255, 255) !important;
    font-size: 18px !important;
    margin: 0px !important;
    text-transform: uppercase !important;
}
.right1{
  color: rgb(255, 255, 255) !important;
    font-size: 18px !important;
    margin: 5px 0px 0px !important;
}
._jro6t0 {
  display: flex !important;
} 
._91uhfto {
  -webkit-box-align: center !important;
  -webkit-box-direction: normal !important;
  -webkit-box-orient: vertical !important;
  display: flex !important;
  flex-direction: column !important;
  background-color: rgb(247, 199, 35) !important;
  border-radius: 20px 0px 0px 20px !important;
  padding: 20px !important;
  flex: 0.2 1 0% !important;
  align-items: center !important;
}
._y3k9sm {
  margin: 0px !important;
  font-size: 35px !important;
  font-weight: bolder !important;
  text-transform: uppercase !important;
}
._n3isaeh {
  flex: 1 1 0% !important;
  background-color: rgb(54, 69, 79) !important;
  color: rgb(255, 255, 255) !important;
  padding: 20px !important;
  border-radius: 0px 20px 20px 0px !important;
}
._1uo9yo8 {
  color: rgb(255, 255, 255) !important;
  font-size: 18px !important;
  margin: 0px !important;
  text-transform: uppercase !important;
}

._eb41yqu {
  color: rgb(255, 255, 255) !important;
  font-size: 18px !important;
  margin: 5px 0px 0px !important;
}
.MuiGrid-spacing-xs-2 > .MuiGrid-item {
  padding: 8px;
}
._1jrxk4m {
  max-width: 600px !important;
  margin: 30px 0px !important;
}
.MuiGrid-spacing-xs-2 {
  width: calc(100% + 16px);
  margin: -8px;
}
.modal-content  {
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border-radius: 20px !important; 
}
.image--cover1{
  width: 380px;
  height: 380px;
  border-radius: 50%;
  margin: 20px;
  justify-content: center;
  
  align-items: center;
  margin-top: 20px !important;
  display: flex;
  background-color: rgb(247, 199, 35) ;
  margin: auto;
  object-fit: cover;
  object-position: center right;

}