a*,
figure {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
}

input,
select {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a,
a:hover {
  color: #f07d21;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  /* outline: none; */
}

p a,
p a:hover {
  color: #f07d21;
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #30313d;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
  height: 100%;
  width: 100%;
}

body.hiddenoverflow {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.headertop {
  height: 55px;
  width: 100%;
  position: fixed;
  background: #632e7d;
  top: -55px;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.headertop .topheaderwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headertop .topheaderwrap .leftheader {
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #ffffff;
  padding: 17px 0;
}

@media screen and (max-width: 991px) {
  .headertop .topheaderwrap .leftheader .updatedate {
    display: none;
  }
}

.headertop .topheaderwrap .leftheader .social {
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .headertop .topheaderwrap .leftheader .social {
    margin-left: 0px;
  }
}

.headertop .topheaderwrap .leftheader .social li {
  display: inline-block;
  margin-right: 10px;
}

.headertop .topheaderwrap .leftheader .social li svg {
  width: 17px;
  fill: #ffffff;
}

.headertop .topheaderwrap .leftheader .social li a:hover svg {
  fill: #f07d21;
}

.headertop .topheaderwrap .rightheader a {
  font-size: 13px;
  line-height: 16px;
  color: #ffffff;
  margin-right: 5px;
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .headertop .topheaderwrap .rightheader a {
    display: none;
  }
}

.headertop .topheaderwrap .rightheader a:hover {
  color: #f07d21;
}

.headertop .topheaderwrap .rightheader a.dark {
  color: #ffffff;
  padding: 4px 6px;
  background: #000000;
  font-size: 13px;
}

.headertop .topheaderwrap .rightheader a.dark:hover {
  color: #ffffff;
}

.headertop .topheaderwrap .rightheader a.light {
  color: #30313d;
  padding: 3px 6px;
  background: #ffffff;
  font-size: 13px;
}

.headertop .topheaderwrap .rightheader a.light:hover {
  color: #30313d;
}

.headertop .topheaderwrap .rightheader span {
  width: 1px;
  height: 13px;
  display: inline-block;
  background: #ffffff;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 991px) {
  .headertop .topheaderwrap .rightheader span {
    display: none;
  }
}

.headertop .topheaderwrap .rightheader .langwrap {
  display: inline-block;
  position: relative;
}

.headertop .topheaderwrap .rightheader .langwrap::after {
  position: absolute;
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.headertop .topheaderwrap .rightheader .langwrap select {
  background: none;
  color: #ffffff;
  padding-right: 15px;
  background: #30313d;
}

@media screen and (max-width: 991px) {
  .headertop .topheaderwrap .rightheader .langwrap select {
    padding: 0 20px 0 15px;
  }
}

.headertop .topheaderwrap .rightheader .langwrap select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.headertop.sticky,
.headertop.innersticky {
  top: 0;
}

.sticky-header {
  position: fixed;
  left: 0px;
  top: 0;
  width: 100%;
  padding: 40px 0px 20px;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
}

@media screen and (max-width: 1499px) {
  .sticky-header {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .sticky-header {
    padding: 5px 0;
  }
}

.sticky-header.stable {
  opacity: 1;
  top: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sticky-header .navbar {
  padding: 0;
}

.sticky-header .opendomain {
  position: relative;
  top: -135px;
  margin-left: 30px;
  background: #f07d21;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sticky-header .opendomain {
    margin-left: 0;
  }
}

.sticky-header .opendomain.show {
  top: 0;
}

.sticky-header .navbar-brand {
  width: 115px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .sticky-header .navbar-brand {
    width: 90px;
  }
}

.sticky-header .navbar-brand svg {
  width: 100%;
}

.sticky-header .navbar-brand .st0 {
  fill: #fc9934;
}

.sticky-header .navbar-brand .st1 {
  fill: #148709;
}

.sticky-header .navbar-brand .st2 {
  fill: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sticky-header .navbar-brand .st3 {
  fill: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sticky-header .navbar-brand .st4 {
  fill: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sticky-header .navbar-brand .st5 {
  fill: #f1b57e;
}

.sticky-header .navbar-brand .st6 {
  fill: #f3dab4;
}

.sticky-header .navbar-brand .st7 {
  fill: #ebc28d;
}

.sticky-header ul.navbar-nav li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 767px) {
  .sticky-header ul.navbar-nav li.show767 {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .sticky-header ul.navbar-nav li.show991 {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .sticky-header ul.navbar-nav li.show1199 {
    display: none;
  }
}

.sticky-header ul.navbar-nav li a {
  display: block;
  padding: 10px 0;
  white-space: nowrap;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid transparent;
}

@media screen and (max-width: 1499px) {
  .sticky-header ul.navbar-nav li a {
    font-size: 16px;
  }
}

.sticky-header ul.navbar-nav li a:hover {
  color: #ffffff !important;
  border-bottom: 1px solid #ffffff;
}

.sticky-header ul.navbar-nav li a.active {
  color: #ffffff !important;
  border-bottom: 1px solid #ffffff;
}

.sticky-header ul.navbar-nav li ul {
  display: none;
  position: absolute;
  margin-top: -1px;
  top: 100%;
  background: #ffffff;
  left: 50%;
  margin-left: -110px;
  width: 220px;
  padding: 7px 15px;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(125, 125, 125, 0.4);
  box-shadow: 0px 0px 10px rgba(125, 125, 125, 0.4);
}

.sticky-header ul.navbar-nav li ul::after {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #ffffff;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sticky-header ul.navbar-nav li ul li {
  border-bottom: 1px solid #ddd;
  display: block;
  margin: 0;
}

.sticky-header ul.navbar-nav li ul li:last-child {
  border: none;
}

.sticky-header ul.navbar-nav li ul li a {
  font-size: 14px;
  padding: 8px 0;
  display: block;
  text-transform: uppercase;
  color: #000000;
}

.sticky-header ul.navbar-nav li ul li a:hover {
  color: #f07d21 !important;
}

.sticky-header ul.navbar-nav li:hover ul {
  display: block;
}

.sticky-header .megamenuopen {
  height: 24px;
  width: 26px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  position: relative;
}

.sticky-header .megamenuopen span {
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ffffff;
}

.sticky-header .megamenuopen:hover {
  border-color: #f07d21;
}

.sticky-header .megamenuopen:hover span {
  background: #f07d21;
}

.sticky-header.sticky {
  top: 55px;
  padding: 5px 0;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.sticky-header.sticky ul.navbar-nav li {
  margin-right: 15px;
}

.sticky-header.sticky ul.navbar-nav li a {
  color: #000000;
}

.sticky-header.sticky ul.navbar-nav li a:hover {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.sticky ul.navbar-nav li a.active {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.sticky .megamenuopen {
  border-color: #000000;
}

.sticky-header.sticky .megamenuopen span {
  background: #000000;
}

.sticky-header.innersticky {
  top: 55px;
  background: #ffffff;
  padding: 15px 0px;
}

@media screen and (max-width: 767px) {
  .sticky-header.innersticky {
    padding: 5px 0px;
  }
}

.sticky-header.innersticky ul.navbar-nav li a {
  color: #000000;
}

.sticky-header.innersticky ul.navbar-nav li a:hover {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.innersticky ul.navbar-nav li a.active {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.innersticky .megamenuopen {
  border-color: #000000;
}

.sticky-header.innersticky .megamenuopen span {
  background: #000000;
}

.sticky-header.sticky {
  top: 55px;
  padding: 5px 0;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.sticky-header.sticky .navbar-brand .st2 {
  fill: #010080;
}

.sticky-header.sticky .navbar-brand .st3 {
  fill: #04034d;
}

.sticky-header.sticky .navbar-brand .st4 {
  fill: #04054a;
}

.sticky-header.sticky ul.navbar-nav li {
  margin-right: 15px;
}

.sticky-header.sticky ul.navbar-nav li a {
  color: #000000;
}

.sticky-header.sticky ul.navbar-nav li a:hover {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.sticky ul.navbar-nav li a.active {
  color: #f07d21 !important;
  border-bottom: 1px solid #f07d21;
}

.sticky-header.sticky .megamenuopen {
  border-color: #000000;
}

.sticky-header.sticky .megamenuopen span {
  background: #000000;
}

.search-page .opendomain {
  display: none;
}

.sidebaroverlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sidebaroverlay.opened {
  left: 0;
}

.sidebarmenu {
  background: #ffffff;
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 45px 15px 20px;
}

@media screen and (max-width: 400px) {
  .sidebarmenu {
    right: -100%;
    width: 100%;
  }
}

.sidebarmenu.opened {
  right: 0;
}

.sidebarmenu .closesidebar {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.sidebarmenu .closesidebar svg {
  fill: #000000;
  width: 24px;
}

.sidebarmenu .closesidebar:hover svg {
  fill: #f07d21;
}

.sidebarmenu .sidebarwrap {
  height: 100%;
}

.sidebarmenu .sidebarwrap ul li {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .sidebarmenu .sidebarwrap ul li.show767 {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .sidebarmenu .sidebarwrap ul li.show991 {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .sidebarmenu .sidebarwrap ul li.show1199 {
    display: none;
  }
}

.sidebarmenu .sidebarwrap ul li a {
  font-size: 16px;
  padding: 10px 0;
  color: #000000;
  display: block;
  position: relative;
  cursor: pointer;
}

.sidebarmenu .sidebarwrap ul li a:hover {
  color: #f07d21;
}

.sidebarmenu .sidebarwrap ul li a.subnav::after {
  display: block;
  position: absolute;
  content: "";
  top: 14px;
  right: 5px;
  pointer-events: none;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.sidebarmenu .sidebarwrap ul li ul {
  border-top: 1px solid #ccc;
  display: none;
}

.sidebarmenu .sidebarwrap ul li ul li {
  position: relative;
  padding-left: 20px;
  border-color: #f4f4f4;
}

.sidebarmenu .sidebarwrap ul li ul li::after {
  position: absolute;
  top: 18px;
  left: 5px;
  width: 6px;
  height: 1px;
  background: #30313d;
  content: "";
}

.sidebarmenu .sidebarwrap ul li ul li:last-child {
  border: none;
}

.sidebarmenu .sidebarwrap ul li ul li a {
  font-size: 14px;
}

.sidebarmenu .sidebarwrap ul li.opened a.subnav::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.sidebarmenu .sidebarwrap ul li.opened ul {
  display: block;
}

section {
  padding: 110px 0;
}

.section-edit {
  padding: 10px 0;
}

@media screen and (max-width: 1499px) {
  section {
    padding: 70px 0;
  }
}

@media screen and (max-width: 991px) {
  section {
    padding: 55px 0;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.clickbtn {
  padding: 8px 20px;
  border: 2px solid #f07d21;
  color: #ffffff;
  background: #f07d21;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.clickbtn:hover {
  background: #f07d21;
  border-color: #f07d21;
  color: #ffffff;
}

.videopart {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 991px) {
  .videopart {
    height: 432px;
  }
}

@media screen and (max-width: 767px) {
  .videopart {
    height: 100vh;
  }
}

.videopart .formobile {
  display: none;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .videopart .formobile {
    display: block;
  }
}

.videopart video {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  background: #000;
}

@media screen and (max-width: 767px) {
  .videopart video {
    display: none;
  }
}

.videopart .vidoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videopart .btm_arrow {
  position: absolute;
  width: 17px;
  height: 40px;
  bottom: 2rem;
  left: 50%;
  border-radius: 10px;
  border: 2px solid #ffffff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .videopart .btm_arrow {
    display: none;
  }
}

.videopart .btm_arrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 4px;
  -webkit-animation: bannerDownArrow 1s infinite linear;
  animation: bannerDownArrow 1s infinite linear;
}

.videopart .btm_arrow small {
  position: absolute;
  top: -18px;
  font-size: 10px;
  color: #ffffff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 300;
  text-transform: uppercase;
}

@-webkit-keyframes bannerDownArrow {
  0% {
    bottom: 25px;
    opacity: 1;
  }
  100% {
    bottom: 4px;
    opacity: 0;
  }
}

@keyframes bannerDownArrow {
  0% {
    bottom: 25px;
    opacity: 1;
  }
  100% {
    bottom: 4px;
    opacity: 0;
  }
}

#scrolled {
  position: absolute;
  bottom: 50px;
}

.homecaption {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.homecaption h1 {
  font-size: 42px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 60px;
}

@media screen and (max-width: 1499px) {
  .homecaption h1 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .homecaption h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption h1 {
    font-size: 24px;
  }
}

.homecaption .findewrap {
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .homecaption .findewrap {
    display: block;
  }
}

.homecaption .selectwraper {
  background: #ffffff;
  border-radius: 5px;
  position: relative;
  width: 160px;
  min-width: 160px;
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .homecaption .selectwraper {
    min-width: 120px;
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption .selectwraper {
    width: 100%;
    margin: 0 0 10px;
  }
}

.homecaption .selectwraper:after {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #5f6368;
  border-right: 1px solid #5f6368;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .homecaption .selectwraper:after {
    top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption .selectwraper:after {
    top: 15px;
  }
}

.homecaption .selectwraper select {
  width: 100%;
  border-radius: 5px;
  padding: 20px;
  font-size: 19px;
  line-height: 29px;
}

@media screen and (max-width: 991px) {
  .homecaption .selectwraper select {
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption .selectwraper select {
    padding: 10px;
  }
}

.homecaption .selectwraper select:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.homecaption .inputwrap {
  position: relative;
  width: 100%;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .homecaption .inputwrap {
    width: 100%;
    margin: 0 0 10px;
  }
}

.homecaption .inputwrap svg {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 20px;
  fill: #5f6368;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .homecaption .inputwrap svg {
    top: 18px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption .inputwrap svg {
    top: 14px;
    left: 10px;
  }
}

.homecaption .inputwrap input {
  padding: 20px 20px 20px 60px;
  font-size: 19px;
  line-height: 29px;
  background: #ffffff;
  border-radius: 5px;
  border: none;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .homecaption .inputwrap input {
    padding: 15px 15px 15px 60px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption .inputwrap input {
    padding: 10px 15px 10px 40px;
  }
}

.homecaption .inputwrap input:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.homecaption button {
  padding: 20px 10px;
  font-size: 19px;
  line-height: 29px;
  background: #f07d21;
  color: #ffffff;
  border-radius: 5px;
  width: 160px;
  min-width: 160px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .homecaption button {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 767px) {
  .homecaption button {
    padding: 10px;
  }
}

.homecaption button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.section-heading,
.pageheading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 60px;
  padding-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  color: #30313d;
}

.section-heading.col-white,
.pageheading.col-white {
  color: #ffffff;
}

.section-heading::after,
.pageheading::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 48px;
  height: 4px;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f07d21),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    #f07d21 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.section-heading.text-center::after,
.pageheading.text-center::after {
  left: 50%;
  margin-left: -24px;
}

@media screen and (max-width: 991px) {
  .section-heading,
  .pageheading {
    font-size: 24px;
    line-height: 36px;
  }
}

.pageheading {
  font-size: 24px;
  line-height: 35px;
}

.workswrap {
  position: relative;
  text-align: center;
  display: block;
  margin-top: 30px;
}

.workswrap::after {
  width: 100%;
  left: -50%;
  content: "";
  border-bottom: 2px dashed #5f6368;
  position: absolute;
  top: 50px;
}

@media screen and (max-width: 767px) {
  .workswrap::after {
    display: none;
  }
}

.workswrap.dashhide::after {
  display: none;
}

.workswrap figure {
  display: inline-block;
  position: relative;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.workswrap figure:before,
.workswrap figure:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: "";
  background: #ffd8aa;
  border-radius: 10px;
}

.workswrap figure::after {
  z-index: 2;
  background: #f07d21;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.workswrap figure img {
  position: relative;
  z-index: 3;
}

.workswrap h3 {
  font-size: 24px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 12px;
}

.workswrap p {
  font-size: 14px;
  line-height: 21px;
  color: #30313d;
}

.workswrap:hover figure:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.whyregistry {
  background: url("../images/service-bg.html") top center repeat-x;
  overflow: hidden;
}

@media screen {
  .whyregistry {
    background-position: center -80px;
  }
}

.whyregistry-box {
  border-radius: 10px;
  background: #f07d21;
  padding: 40px 30px;
  color: #ffffff;
}

.whyregistry-box figure {
  margin-bottom: 30px;
}

.whyregistry-box figure img {
  width: auto !important;
}

.whyregistry-box h3 {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 15px;
}

.whyregistry-box p {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
}

.whyslider.owl-carousel .owl-nav {
  text-align: center;
  position: absolute;
  top: -100px;
  right: 0;
}

.whyslider.owl-carousel .owl-nav svg {
  width: 30px;
  fill: #f07d21;
}

@media screen and (max-width: 991px) {
  .whyslider.owl-carousel .owl-nav svg {
    width: 20px;
  }
}

.whyslider.owl-carousel .owl-nav .owl-prev {
  width: 48px;
  height: 48px;
  border: 2px solid #f07d21;
  background: transparent;
  border-radius: 50%;
  margin: 0 10px;
  padding: 7px 5px !important;
}

@media screen and (max-width: 991px) {
  .whyslider.owl-carousel .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    padding: 9px 7px !important;
  }
}

.whyslider.owl-carousel .owl-nav .owl-prev:hover {
  background: #f07d21;
}

.whyslider.owl-carousel .owl-nav .owl-prev:hover svg {
  fill: #ffffff;
}

.whyslider.owl-carousel .owl-nav .owl-next {
  width: 48px;
  height: 48px;
  border: 2px solid #f07d21;
  background: transparent;
  border-radius: 50%;
  margin: 0 10px;
  padding: 7px 5px !important;
}

@media screen and (max-width: 991px) {
  .whyslider.owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    padding: 9px 7px !important;
  }
}

.whyslider.owl-carousel .owl-nav .owl-next:hover {
  background: #f07d21;
}

.whyslider.owl-carousel .owl-nav .owl-next:hover svg {
  fill: #ffffff;
}

.counterwrap {
  margin-left: 20px;
  position: relative;
  z-index: 2;
  background: #f07d21;
  border-radius: 10px;
}

.counterwrap .coloredwrap {
  position: relative;
  left: -20px;
  top: -20px;
  background: #30313d;
  padding: 40px;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .counterwrap .coloredwrap .col-md-6 {
    margin-bottom: 30px;
  }
}

.counterbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 30px;
  line-height: 46px;
  font-weight: 600;
}

.counterbox img {
  margin-right: 15px;
}

.counterbox small {
  display: block;
  line-height: 1;
  font-size: 14px;
}

.faqlist li {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #e8e8e8;
  border-radius: 13px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faqlist li h3 {
  color: #000000;
  font-size: 16px;
  line-height: 23px;
  padding: 15px 20px;
  margin: 0;
  font-weight: 600;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.faqlist li h3 span {
  position: absolute;
  pointer-events: none;
  top: 16px;
  right: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #f07d21;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  color: #ffffff;
  width: 22px;
  height: 22px;
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 911px) {
  .faqlist li h3 span {
    right: 10px;
  }
}

.faqlist li .accordbody {
  border-top: 1px solid #e8e8e8;
  display: none;
  padding: 20px 0;
  margin: 0 20px;
}

.faqlist li p {
  font-size: 14px;
  line-height: 21px;
  color: #30313d;
  margin-bottom: 10px;
}

.faqlist li ul li {
  font-size: 14px;
  line-height: 21px;
  color: #30313d;
  margin-bottom: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.faqlist li ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.faqlist li ul li a {
  display: inline-block;
  color: #30313d;
}

.faqlist li ul li a:hover {
  color: #f07d21;
}

.faqlist li.opened h3 {
  color: #f07d21;
}

.faqlist li.opened h3 span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

footer {
  background: #632e7d;
  padding: 20px 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
}

footer p {
  margin: 0;
}

.backtotop {
  position: fixed;
  z-index: 99;
  bottom: -70px;
  right: 20px;
  padding: 10px;
  background: #f07d21;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.backtotop.show {
  bottom: 20px;
}

.visitors {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .visitors {
    text-align: center;
    margin-top: 10px;
  }
}

.visitors .vtext {
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
}

.visitors .kkc span span {
  margin-left: 2px;
  width: 15px;
  display: inline-block;
  text-align: center;
}

.domainpopup {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #30313d;
  z-index: 101;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.domainpopup.show {
  top: 0;
}

.domainpopup .closepopup {
  position: absolute;
  top: 20px;
  right: 30px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  padding: 13px;
  width: 50px;
  height: 50px;
}

.domainpopup .closepopup svg {
  fill: #ffffff;
  width: 20px;
}

.domainpopup .closepopup:hover {
  border-color: #f07d21;
}

.domainpopup .closepopup:hover svg {
  fill: #f07d21;
}

.intropage {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #030310;
}

.intropage img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
  -webkit-animation: zoomedin 10s linear infinite;
  animation: zoomedin 10s linear infinite;
}

.introblock {
  position: fixed;
  top: 17%;
  width: 100%;
  text-align: center;
  z-index: 5;
  color: #ffffff;
}

.introblock .clickbtn {
  padding: 17px 40px;
}

@media screen and (max-width: 1499px) {
  .introblock .clickbtn {
    padding: 12px 30px;
  }
}

.introblock p {
  font-size: 50px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .introblock p {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .introblock p {
    font-size: 30px;
  }
}

.introblock p span {
  color: #f07d21;
}

@-webkit-keyframes zoomedin {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes zoomedin {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

.innerpagebanner {
  margin-top: 162px;
  position: relative;
}

@media screen and (max-width: 1499px) {
  .innerpagebanner {
    margin-top: 130px;
  }
}

.innerpagebanner img {
  width: 100%;
  min-height: 150px;
}

.innerpagebanner .innercaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
}

.innerpagebanner .innercaption h3 {
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  font-weight: 600;
}

.innerpagebanner .innercaption .breadcrumb {
  background: #f07d21;
  padding: 5px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

@media screen and (max-width: 1499px) {
  .innerpagebanner .innercaption .breadcrumb {
    white-space: normal;
  }
}

.innerpagebanner .innercaption .breadcrumb a {
  color: #ffffff;
}

.innerpagebanner .innercaption .breadcrumb span {
  font-weight: 700;
}

.card {
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 50px 30px;
}

@media screen and (max-width: 767px) {
  .card {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
}

.card h2 {
  font-size: 20px;
}

.card ul li,
.card ol li {
  margin-bottom: 10px;
}

.searchformwrap {
  background: #f5f5f5;
  padding: 50px 0;
}

.searchformwrap .homecaption {
  position: relative;
  -webkit-transform: translate(0);
  transform: translate(0);
}

.searchformwrap .findresult {
  margin-top: 50px;
}

.searchformwrap .findresult p {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  color: #30313d;
}

.searchformwrap .findresult p strong {
  font-weight: 600;
}

.searchformwrap .findresult.available p span {
  color: #26a401;
}

.searchformwrap .findresult.notavailable p span {
  color: #a70202;
}

.searchformwrap .findresult.notavailable p.afterchoise {
  font-size: 20px;
  margin-top: 40px;
  font-weight: 400;
  color: #30313d;
}

.searchformwrap .findresult.notavailable p.afterchoise span {
  color: #f07d21;
}

.searchformwrap .suggestoptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.searchformwrap .suggestoptions a {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #f07d21;
  color: #30313d;
  font-size: 19px;
  line-height: 29px;
  background: #ffffff;
  margin: 0 8px 16px;
}

.searchformwrap .suggestoptions a:hover,
.searchformwrap .suggestoptions a.selected {
  background: #f07d21;
  color: #ffffff;
}

.tablewrap {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .tablewrap {
    overflow-x: scroll;
  }
}

.tablewrap table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .tablewrap table {
    width: 690px;
  }
}

@media screen and (max-width: 911px) {
  .tablewrap table img {
    max-width: 110px;
  }
}

.tablewrap table tr {
  border-bottom: 1px solid #dbdbdb;
}

.tablewrap table tr:last-child {
  border: none;
}

.tablewrap table tr th,
.tablewrap table tr td {
  padding: 20px 15px;
  vertical-align: middle;
  font-size: 24px;
  line-height: 35px;
  color: #30313d;
}

.tablewrap table tr th:nth-child(2),
.tablewrap table tr th:nth-child(3),
.tablewrap table tr td:nth-child(2),
.tablewrap table tr td:nth-child(3) {
  text-align: center;
}

.tablewrap table tr th:last-child,
.tablewrap table tr td:last-child {
  text-align: right;
}

.tablewrap table tr th span,
.tablewrap table tr td span {
  display: inline-block;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 300;
  background: #30313d;
  color: #ffffff;
  border-radius: 15px;
}

.tablewrap table tr th {
  font-weight: 600;
}

.tablewrap table .clickbtn {
  padding: 10px 20px;
  margin: 0;
}

.viewallresult {
  font-size: 16px;
  padding: 6px 30px;
  color: #f07d21;
  font-weight: 600;
  border: 1px solid #f07d21;
  border-radius: 5px;
  text-decoration: none;
}

.viewallresult:hover {
  background: #f07d21;
  color: #ffffff;
  text-decoration: none;
}

.resourcewraper img {
  width: 100%;
  border: 1px solid #5f6368;
}

.resourcewraper video {
  width: 100%;
  height: 350px;
  background: #000000;
}

.thumbscrollable {
  height: 400px;
}

.thumbscrollable .mCSB_container {
  padding: 1px;
}

.thumbscrollable .mb-5 {
  margin-bottom: 10px !important;
}

.thumbscrollable .row {
  margin: 0 -5px;
}

.thumbscrollable .row .col-md-6 {
  padding: 0 5px;
}

.thumbscrollable a {
  padding: 0;
  display: inline-block;
  width: 100%;
  border: 1px solid transparent;
  background: #000000;
}

.thumbscrollable a.selected {
  border: 1px solid #f07d21;
}

.thumbscrollable a.hasvideo {
  position: relative;
}

.thumbscrollable a.hasvideo::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
  content: "";
}

.thumbscrollable a video {
  width: 100%;
  background: #000000;
  height: 100px;
  margin: 0;
  padding: 0;
}

.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}

.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

.mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

@media screen and (max-width: 767px) {
  .mCSB_outside + .mCSB_scrollTools {
    right: -10px;
  }
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 0;
  border-radius: 5px;
  width: 20px;
}

@media screen and (max-width: 1199px) {
  .mCSB_scrollTools a + .mCSB_draggerContainer {
    width: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mCSB_scrollTools a + .mCSB_draggerContainer {
    width: 6px;
  }
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

@media screen and (max-width: 1199px) {
  .mCSB_scrollTools .mCSB_draggerRail {
    width: 1px;
  }
}

.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 3px;
  background-color: transparent;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
  .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 1px;
  }
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 0px;
  background-color: #cccccc;
  border-radius: 0px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #cccccc;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  background-color: #cccccc;
}
/*# sourceMappingURL=stylesheet.css.map */
