*, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input, select {
  border: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  color: #3C3C3C;
}

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

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #3C3C3C;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
  padding-top: 76px;
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.hiddenoverflow {
  overflow: hidden;
}

@media screen and (min-width: 1499px) {
  .container {
    max-width: 1420px;
  }
}

.container-fluid {
  padding: 0 110px;
}
@media screen and (max-width: 1440px) {
  .container-fluid {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 18px 0;
  background: #FFFFFF;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  header {
    padding: 5px 0px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 7px 0px;
  }
}
@media screen and (max-width: 767px) {
  header .headerlogo img {
    max-width: 150px;
  }
}

.topmenu {
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 911px) {
  .topmenu {
    position: fixed;
    top: 50px;
    right: -255px;
    width: 250px;
    flex-wrap: wrap;
    background: #FFFFFF;
    transition: all 0.2s ease-in-out;
    padding-bottom: 10px;
    height: calc(100vh - 50px);
    display: block;
    z-index: 100;
    border-left: 1px solid #eee;
  }
}
.topmenu li {
  margin-left: 30px;
  position: relative;
}
@media screen and (max-width: 911px) {
  .topmenu li {
    width: 100%;
    margin-left: 0;
  }
}
.topmenu li a {
  color: #3C3C3C;
  font-size: 16px;
  display: block;
  padding: 5px 5px;
  position: relative;
}
@media screen and (max-width: 911px) {
  .topmenu li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }
}
.topmenu li a:after {
  width: 0px;
  height: 2px;
  background: #ff0000;
  left: 50%;
  bottom: 0;
  position: absolute;
  content: "";
  transform: translateX(-50%);
  transition: all 0.1s ease-in-out;
}
.topmenu li a:hover:after, .topmenu li a.active:after {
  width: 100%;
}
.topmenu li.active a, .topmenu li:hover a {
  border-color: #FFFFFF;
}
@media screen and (max-width: 911px) {
  .topmenu li.active a, .topmenu li:hover a {
    border-color: #464d6e;
  }
}
.topmenu li.active ul li a, .topmenu li:hover ul li a {
  border-color: #464d6e;
}
.topmenu li ul {
  padding: 10px 0 0;
  border-radius: 8px;
  background: #323956;
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 9;
  width: 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 911px) {
  .topmenu li ul {
    display: block;
    position: relative;
    box-shadow: none;
    top: 0;
    padding: 10px 0px 10px 30px;
  }
}
.topmenu li ul li {
  display: block;
  margin: 0;
}
.topmenu li ul li a {
  padding: 15px;
  border-bottom: 1px solid #464d6e;
}
@media screen and (max-width: 911px) {
  .topmenu li ul li a {
    padding: 15px 10px;
  }
}
.topmenu li ul li a:hover {
  background: #ff0000;
}
.topmenu li:hover ul {
  display: block;
}
@media screen and (max-width: 911px) {
  .topmenu.opened {
    right: 0;
  }
}

.headerbtn {
  margin-left: 30px;
  display: inline-block;
  border-radius: 25px;
  padding: 8px 20px;
  color: #FFFFFF;
  background: #ff0000;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 911px) {
  .headerbtn {
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .headerbtn {
    padding: 9px 15px;
  }
}
@media screen and (max-width: 767px) {
  .headerbtn {
    padding: 6px 10px;
    font-size: 14px;
  }
}
.headerbtn:hover {
  color: #FFFFFF;
}

.bannerbtn {
  margin-right: 30px;
  display: inline-block;
  border-radius: 25px;
  padding: 15px 30px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 911px) {
  .bannerbtn {
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .bannerbtn {
    padding: 9px 15px;
  }
}
@media screen and (max-width: 767px) {
  .bannerbtn {
    padding: 10px 13px;
    font-size: 12px;
    margin-right: 6px;
  }
}
.bannerbtn:hover {
  background: #FFFFFF;
  color: #ff0000;
}
.bannerbtn.filled {
  background: #FFFFFF;
  color: #ff0000;
}
.bannerbtn.filled:hover {
  background: transparent;
  color: #FFFFFF;
}

.clickbtn {
  margin-right: 30px;
  display: inline-block;
  border-radius: 25px;
  padding: 15px 30px;
  color: #FFFFFF;
  background: #ff0000;
  border: 1px solid #ff0000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 911px) {
  .clickbtn {
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .clickbtn {
    padding: 9px 15px;
  }
}
@media screen and (max-width: 767px) {
  .clickbtn {
    padding: 10px 13px;
    font-size: 12px;
    margin-right: 6px;
  }
}
.clickbtn:hover {
  background: #FFFFFF;
  color: #ff0000;
}

.openmenu {
  width: 30px;
  height: 26px;
  border-top: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  position: relative;
  margin-left: 15px;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 911px) {
  .openmenu {
    display: block;
  }
}
.openmenu:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  height: 2px;
  width: 100%;
  background: #ff0000;
  content: "";
  transition: all 0.2s ease-in-out;
}
.openmenu:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  height: 2px;
  width: 100%;
  background: #ff0000;
  content: "";
  transition: all 0.2s ease-in-out;
}
.openmenu.active {
  border-color: transparent;
}
.openmenu.active::before {
  transform: translateY(-50%) rotate(45deg);
}
.openmenu.active::after {
  transform: translateY(-50%) rotate(-45deg);
}

h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.category-box {
  height: 40rem;
}
.category-box div {
  display: inline-block;
  width: 27rem;
  height: 27rem;
  margin: 8.5rem auto 0;
  background: #ccc;
  border-radius: 50%;
  line-height: 25rem;
  position: relative;
}
.category-box div span {
  width: 11.6rem;
  height: 11.6rem;
  line-height: 10.5rem;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  margin-left: -5.8rem;
  margin-top: -5.8rem;
  border: 6px solid #ccc;
  color: #FFFFFF;
  font-size: 14px;
}
.category-box div span.education {
  background: linear-gradient(to right, #0ca461 0%, #3fc79c 100%);
  left: 50%;
  top: -5%;
}
.category-box div span.testing {
  background: linear-gradient(to right, #e77628 0%, #fea034 100%);
  left: 103%;
  top: 31%;
}
.category-box div span.training {
  background: linear-gradient(to right, #bf3a8d 0%, #ff52ba 100%);
  left: 82%;
  top: 89%;
}
.category-box div span.conference {
  background: linear-gradient(to right, #4c4ce6 0%, #7f7ffa 100%);
  left: 19%;
  top: 90%;
}
.category-box div span.networking {
  background: linear-gradient(to right, #197488 0%, #3cbcd5 100%);
  left: -5%;
  top: 33%;
}

.maintext {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  max-width: 1200px;
  margin: 0 auto 20px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .maintext {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .maintext {
    font-size: 15px;
  }
}

#offeriengs {
  background: #e3f1f9;
}

.homebanner {
  background: #3C3C3C;
  position: relative;
  overflow: hidden;
}
.homebanner video {
  width: 100%;
}
.homebanner .bannerimg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .homebanner .bannerimg {
    width: 200%;
    margin-left: -50%;
  }
}
.homebanner .bannercaption {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 9;
}
.homebanner .bannercaption p {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .homebanner .bannercaption p {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .homebanner .bannercaption p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .homebanner .bannercaption p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .homebanner .bannercaption p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

section {
  padding-top: 110px;
}
@media screen and (max-width: 1440px) {
  section {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1199px) {
  section {
    padding-top: 60px;
  }
}
section.bs {
  padding-bottom: 110px;
}
@media screen and (max-width: 1440px) {
  section.bs {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1199px) {
  section.bs {
    padding-bottom: 60px;
  }
}
section.darksection {
  background: #E8F2FF;
}

.aboutintend {
  background: #E8F2FF;
}

.sectionheading {
  font-size: 48px;
  font-weight: 500;
  color: #3C3C3C;
}
@media screen and (max-width: 1440px) {
  .sectionheading {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .sectionheading {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .sectionheading {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sectionheading {
    font-size: 22px;
  }
}
.sectionheading span {
  color: #94ACCD;
}

.servicecardswrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .servicecardswrap {
    margin-top: 20px;
  }
}

.servicecard {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  border-radius: 20px;
  background: #FFFFFF;
  cursor: pointer;
  padding: 50px 30px;
}
@media screen and (max-width: 767px) {
  .servicecard {
    padding: 30px 15px;
  }
}
.servicecard .focusicon {
  width: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .servicecard .focusicon {
    margin-bottom: 30px;
  }
}
.servicecard .servicevisible {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.servicecard .servicevisible svg {
  width: 50px;
  min-width: 50px;
  margin-left: 20px;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}
.servicecard h3 {
  font-size: 16px;
  color: #707070;
  font-weight: 400;
}
.servicecard h3 strong {
  display: block;
  font-size: 24px;
  color: #ff0000;
  margin-bottom: 15px;
  font-weight: 500;
}
.servicecard h3 span {
  font-weight: 600;
}
.servicecard .servicescardcap {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 3;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.servicecard .servicescardcap p {
  margin: 0;
  display: none;
  transition: all 0.2s ease-in-out;
}
.servicecard:hover::after {
  opacity: 0.8;
}
.servicecard:hover .servicescardcap {
  top: 0;
}
.servicecard:hover {
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #FFEAC8 100%);
}
.servicecard:hover .servicevisible svg {
  transform: rotate(36deg);
}

.unlockbanner {
  position: relative;
  margin-top: -250px;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .unlockbanner {
    margin-top: -150px;
  }
}
@media screen and (max-width: 991px) {
  .unlockbanner {
    margin-top: -120px;
  }
}
@media screen and (max-width: 991px) {
  .unlockbanner {
    margin-top: 40px;
  }
}
.unlockbanner img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .unlockbanner img {
    width: 150%;
    margin-left: -15%;
  }
}
.unlockbanner .unlockbannercap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 90px;
}
@media screen and (max-width: 991px) {
  .unlockbanner .unlockbannercap {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .unlockbanner .unlockbannercap {
    padding: 0 15px;
  }
}
.unlockbanner .unlockbannercap h4 {
  font-size: 48px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .unlockbanner .unlockbannercap h4 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .unlockbanner .unlockbannercap h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .unlockbanner .unlockbannercap h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .unlockbanner .unlockbannercap h4 {
    font-size: 18px;
  }
}

.aboutsection {
  position: relative;
}
@media screen and (max-width: 1440px) {
  .aboutsection figure {
    text-align: center;
  }
}
.aboutsection figure img {
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  .aboutsection figure img {
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .aboutsection figure img {
    margin-bottom: 30px;
  }
}

.aboutwrap {
  padding: 50px 50px;
}
@media screen and (max-width: 1440px) {
  .aboutwrap {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .aboutwrap {
    padding: 0;
  }
}

.chooseuswraper {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .chooseuswraper {
    margin-top: 60px;
  }
}
.chooseuswraper h4 {
  position: relative;
  padding-left: 60px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .chooseuswraper h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .chooseuswraper h4 {
    margin-bottom: 20px;
  }
}
.chooseuswraper h4 span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
}
.chooseuswraper h4 strong {
  display: block;
  color: #ff0000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .chooseuswraper h4 strong {
    font-size: 20px;
  }
}
.chooseuswraper .choosepoints {
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #FFEAC8 100%);
  padding: 50px 30px;
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .chooseuswraper .choosepoints {
    padding: 30px 15px;
  }
}
.chooseuswraper .choosepoints ul {
  list-style: none;
  padding: 0;
}
.chooseuswraper .choosepoints ul li {
  display: block;
  text-align: left;
  margin-bottom: 20px;
}
.chooseuswraper .choosepoints ul li:last-child {
  margin: 0;
}
.chooseuswraper .choosepoints ul li:nth-child(even) {
  text-align: right;
}
.chooseuswraper .choosepoints ul li span {
  display: inline-block;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 500;
  background: #FFFFFF;
  color: #ff0000;
  border-radius: 40px;
}
@media screen and (max-width: 991px) {
  .chooseuswraper .choosepoints ul li span {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.mvvcards {
  padding: 0 50px;
}
@media screen and (max-width: 1199px) {
  .mvvcards {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1440px) {
  .mvvcards {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .mvvcards {
    margin-bottom: 40px;
    text-align: center;
  }
}
.mvvcards h3 {
  font-size: 40px;
  font-weight: 700;
  color: #3C3C3C;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .mvvcards h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 1199px) {
  .mvvcards h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .mvvcards h3 {
    margin-bottom: 10px;
    justify-content: center;
  }
}
.mvvcards h3 img {
  width: 40px;
  margin-right: 15px;
}
@media screen and (max-width: 1440px) {
  .mvvcards h3 img {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mvvcards h3 img {
    width: 24px;
  }
}

.contactsection {
  background: #f9f9f9;
  padding-bottom: 90px;
}
@media screen and (max-width: 1440px) {
  .contactsection {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contactsection {
    padding-bottom: 15px;
  }
}
.contactsection h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #ff0000;
  font-size: 20px;
}
.contactsection ul {
  padding: 0;
}
.contactsection ul li {
  margin: 0 0 15px;
  display: flex;
  align-items: start;
}
.contactsection ul li svg {
  width: 16px;
  fill: #ff0000;
  margin-right: 15px;
  margin-top: 5px;
}
.contactsection ul li a {
  margin-right: 10px;
}

.footerbottom {
  background: #323956;
  padding: 12px 0;
  color: #FFFFFF;
}

.footerwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footerwrap {
    flex-wrap: wrap;
    text-align: center;
  }
}
.footerwrap p {
  margin: 0;
  color: #efefef;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footerwrap p {
    margin-bottom: 15px;
    width: 100%;
  }
}

.sociallinks {
  margin: 0;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .sociallinks {
    text-align: center;
    width: 100%;
  }
}
.sociallinks li {
  display: inline-block;
  margin: 0 5px;
}
.sociallinks li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: block;
  padding: 4px 0;
  position: relative;
}
.sociallinks li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  fill: #FFFFFF;
}
.sociallinks li a:hover {
  background: #ff0000;
  border-color: #ff0000;
}
.sociallinks li a:hover svg {
  fill: #FFFFFF;
}

#backtotop {
  position: fixed;
  bottom: -50px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #ff0000;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #backtotop {
    right: 10px;
  }
}
#backtotop svg {
  fill: #ff0000;
  width: 14px;
}
#backtotop.show {
  bottom: 30px;
}
@media screen and (max-width: 1199px) {
  #backtotop.show {
    bottom: 60px;
  }
}

.industry-section {
  background: #F8FBFF;
  overflow: hidden;
}

.headingpara {
  font-size: 20px;
  padding: 0 20%;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .headingpara {
    font-size: 18px;
    padding: 0 10%;
  }
}
@media screen and (max-width: 991px) {
  .headingpara {
    font-size: 16px;
    padding: 0;
  }
}

.paratxtsap {
  font-size: 22px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .paratxtsap {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .paratxtsap {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .paratxtsap {
    margin-top: 0px;
  }
}
.paratxtsap.textcnt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paratxtsap.textcnt {
    text-align: left;
  }
}

.servicesmodel {
  width: 95%;
  max-width: 800px;
}
.servicesmodel .modal-content {
  background: #605D5D;
  border-radius: 20px;
  color: #FFFFFF;
  padding: 30px;
  line-height: 1.5;
}
.servicesmodel .modal-content .modal-header {
  border: none;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.servicesmodel .modal-content button {
  background: none;
  border: none;
  margin-left: 15px;
}
.servicesmodel .modal-content button svg {
  width: 40px;
}
.servicesmodel .modal-content .modal-title {
  display: flex;
  align-items: center;
  color: #ff0000;
  font-size: 24px;
  font-weight: 500;
}
.servicesmodel .modal-content .modal-title svg {
  width: 40px;
  margin-right: 15px;
}
.servicesmodel .modal-content .modal-body p {
  font-size: 16px;
  color: #fff;
}
.servicesmodel .modal-content .modal-body p.mainpara {
  margin-bottom: 30px;
}
.servicesmodel .modal-content .modal-body h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.servicesmodel .modal-content .modal-body ul {
  list-style: disc;
  padding-left: 20px;
}
.servicesmodel .modal-content .modal-body ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  list-style: disc;
  color: #ff0000;
}
.servicesmodel .modal-content .modal-body ul li ul li {
  list-style: circle;
}
.servicesmodel .modal-content .modal-body ul li span {
  color: #FFFFFF;
}

.gallery {
  width: 100%;
  margin-top: 40px;
}
.gallery-slider {
  width: 100%;
}
.gallery-slider .swiper-slide {
  width: auto;
  padding-bottom: 60px;
}
.gallery-slider .swiper-slide h4 {
  font-size: 16px;
  font-weight: 400;
  color: #707070;
}
@media screen and (max-width: 991px) {
  .gallery-slider .swiper-slide h4 {
    text-align: center;
  }
}
.gallery-slider .swiper-slide h4 strong {
  font-size: 24px;
  color: #ff0000;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.gallery-slider .swiper-button-prev {
  right: 55px;
  left: auto;
  top: auto;
  bottom: 0px;
  padding: 0;
  width: 55px;
  height: 55px;
}
.gallery-slider .swiper-button-prev::after {
  display: none;
}
.gallery-slider .swiper-button-prev svg {
  width: 55px;
  height: 55px;
  min-width: 55px;
}
@media screen and (max-width: 991px) {
  .gallery-slider .swiper-button-prev {
    left: 50%;
    right: auto;
    margin-left: -60px;
  }
}
.gallery-slider .swiper-button-next {
  right: 0px;
  left: auto;
  top: auto;
  width: 55px;
  height: 55px;
  bottom: 0px;
  padding: 0;
}
.gallery-slider .swiper-button-next::after {
  display: none;
}
.gallery-slider .swiper-button-next svg {
  width: 55px;
  height: 55px;
  min-width: 55px;
}
@media screen and (max-width: 991px) {
  .gallery-slider .swiper-button-next {
    left: 50%;
    right: auto;
  }
}
.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
  width: 140%;
  margin-left: -40%;
}
@media screen and (max-width: 1699px) {
  .gallery-thumbs {
    width: 125%;
    margin-left: -25%;
  }
}
@media screen and (max-width: 1440px) {
  .gallery-thumbs {
    width: 120%;
    margin-left: -20%;
  }
}
@media screen and (max-width: 991px) {
  .gallery-thumbs {
    width: 100%;
    margin-left: 0%;
    margin-bottom: 40px;
  }
}
.gallery-thumbs .swiper-slide {
  overflow: hidden;
  opacity: 0.1;
  border-radius: 30px;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img {
  width: 100%;
}

.imagecontentwraper {
  margin-top: 100px;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .imagecontentwraper {
    margin-top: 40px;
  }
}
.imagecontentwraper figure {
  text-align: center;
}
.imagecontentwraper figure img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .imagecontentwraper figure img {
    margin-bottom: 40px;
    max-width: 80%;
  }
}

.columncontent p {
  margin-bottom: 20px;
}
.columncontent ul {
  padding-left: 20px;
}
.columncontent ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.faqaccordian {
  overflow: hidden;
  padding-left: 0 !important;
}
@media screen and (max-width: 991px) {
  .faqaccordian {
    margin-top: 30px;
  }
}
.faqaccordian li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 40px 0 0;
  margin: 0;
  list-style: none !important;
}
.faqaccordian li:last-child {
  margin: 0;
}
.faqaccordian li h4 {
  font-size: 24px;
  font-weight: 500;
  padding: 30px 0;
  position: relative;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .faqaccordian li h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .faqaccordian li h4 {
    font-size: 18px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 991px) {
  .faqaccordian li h4 {
    font-size: 16px;
    padding: 20px 0;
  }
}
.faqaccordian li h4::after {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: url("../images/faq-plus.png") center center no-repeat;
}
@media screen and (max-width: 767px) {
  .faqaccordian li h4::after {
    background-size: 14px;
  }
}
.faqaccordian li .faxbodycontent {
  display: none;
}
.faqaccordian li .faxbodycontent p {
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .faqaccordian li .faxbodycontent p {
    font-size: 17px;
  }
}
@media screen and (max-width: 1440px) {
  .faqaccordian li .faxbodycontent p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .faqaccordian li .faxbodycontent p {
    font-size: 14px;
  }
}
.faqaccordian li .faxbodycontent ul {
  padding-left: 30px;
}
.faqaccordian li .faxbodycontent ul li {
  font-size: 18px;
  margin-bottom: 15px;
  border: none;
  list-style-type: disc !important;
}
@media screen and (max-width: 1440px) {
  .faqaccordian li .faxbodycontent ul li {
    font-size: 17px;
  }
}
@media screen and (max-width: 1440px) {
  .faqaccordian li .faxbodycontent ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .faqaccordian li .faxbodycontent ul li {
    font-size: 14px;
  }
}
.faqaccordian li.opened h4:after {
  background: url("../images/faq-minus.png") center center no-repeat;
}
@media screen and (max-width: 767px) {
  .faqaccordian li.opened h4:after {
    background-size: 14px;
  }
}
.faqaccordian li.hiddenlist {
  display: none;
}
.faqaccordian.forhiddenlist li.hiddenlist {
  display: block;
}

.quicktxtinfo {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .quicktxtinfo {
    margin-bottom: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .quicktxtinfo.havedes {
    align-items: start;
  }
}
.quicktxtinfo svg {
  width: 40px;
  margin-right: 15px;
  margin-top: 5px;
  min-width: 40px;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo svg {
    width: 30px;
    min-width: 30px;
  }
}
.quicktxtinfo p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo p {
    font-size: 18px;
  }
}
.quicktxtinfo p span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .quicktxtinfo p span {
    font-size: 15px;
    margin-top: 10px;
  }
}
.quicktxtinfo.normallist {
  align-items: center;
  margin-bottom: 40px;
}
.quicktxtinfo.normallist p {
  margin: 0;
}
.quicktxtinfo.normallist svg {
  margin: 0 15px 0 0;
}

.subheading {
  font-size: 24px;
  padding-bottom: 20px;
  font-weight: 600;
  color: #ff0000;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .subheading {
    font-size: 18px;
  }
}
.subheading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ff0000;
  content: "";
}

.certi_img {
  margin-top: 0px;
}
.certi_img img {
  width: 100%;
}

.sitemaplist li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}
.sitemaplist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #ff0000;
  border-top: 2px solid #ff0000;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 7px;
}

.policy-content h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
  color: #ff0000;
  padding-top: 20px;
}
.policy-content p {
  margin-bottom: 20px;
}
.policy-content a {
  color: #ff0000;
}
.policy-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.policy-content ul li {
  margin-bottom: 15px;
  list-style: disc;
}

.outer {
  margin: 0 auto;
  max-width: 800px;
}

#big .item {
  background: #ec6e46;
  padding: 120px 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
}

#thumbs .item {
  background: #C9C9C9;
  height: 70px;
  line-height: 70px;
  padding: 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#thumbs .item h1 {
  font-size: 18px;
}

#thumbs .current .item {
  background: #FF5722;
}

.owl-theme .owl-nav [class*=owl-] {
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*=owl-].disabled:hover {
  background-color: #D6D6D6;
}

#big.owl-theme {
  position: relative;
}

#big.owl-theme .owl-next, #big.owl-theme .owl-prev {
  background: #333;
  width: 22px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
}

#big.owl-theme .owl-prev {
  left: 10px;
}

#big.owl-theme .owl-next {
  right: 10px;
}

#thumbs.owl-theme .owl-next, #thumbs.owl-theme .owl-prev {
  background: #333;
}/*# sourceMappingURL=stylesheet.css.map */