@import url(../fonts/fonts.css);

/*Common CSS start*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
source,
span,
strike,
strong,
tbody,
tdvideo,
tfoot,
th,
thead,
tt,
u,
ul,
var {
  background: 0 0;
  border: 0 none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  font-style: normal
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

img {
  vertical-align: top
}

embed {
  vertical-align: top
}

article,
aside,
audio,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
meter,
nav,
output,
progress,
section,
source,
video {
  display: block
}

mark,
rp,
rt,
ruby,
summary,
time {
  display: inline
}

input,
textarea {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0
}

iframe {
  border: 0;
  margin: 0;
  padding: 0
}

input,
select,
textarea {
  margin: 0;
  padding: 0
}

fieldset,
img {
  border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: 400
}

li {
  list-style: none
}

caption,
th {
  text-align: left
}

q:after,
q:before {
  content: ''
}

abbr,
acronym {
  border: 0;
  font-variant: normal
}

sup {
  vertical-align: top
}

sub {
  vertical-align: bottom
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit
}

legend {
  color: #000
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0
}

a {
  outline: 0;
  text-decoration: underline;
  -moz-outline: none
}

a:hover {
  text-decoration: none;
  cursor: pointer
}

a.nounderline,
a:active.nounderline,
a:link.nounderline,
a:visited.nounderline {
  text-decoration: none
}

a:hover.nounderline {
  text-decoration: underline
}

a img {
  border: none;
  text-decoration: none
}

img {
  border: none;
  text-decoration: none
}

button,
label {
  cursor: pointer;
  font-family: Mulish, sans-serif, Verdana
}

input:focus,
select:focus,
textarea:focus {
  outline: 0
}

select::-moz-focus-inner {
  border: 0;
  outline: 0
}

option::-moz-focus-inner {
  border: 0;
  outline: 0
}

input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0
}

input[type=button]:focus,
input[type=submit]:focus {
  outline: 0
}

fieldset {
  border: none
}

* {
  box-sizing: border-box
}

img:not([src]):not([srcset]) {
  visibility: hidden
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  height: auto
}

:focus {
  outline: 0
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #151515;
  background: #fff;
  scroll-behavior: smooth;
  font-weight: 400;
}

.containerFluid {
  width: 100%;
}

.containerBox {
  width: 100%;
  max-width: 100%;
  padding: 0px 0px;
  box-sizing: border-box;
  margin: 0px auto;
}

.containerInr {
  padding: 0px 50px;
}

.padLftRmv {
  padding-left: 0px !important;
}

.padRitRmv {
  padding-right: 0px !important;
}


/*Header css start*/
.header {
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
}

.main-wrp {
  width: 100%;
  padding-top: 120px;
}

.headerCont {
  padding: 15px 0px;
  width: 1280px;
  max-width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerTop {
  width: 100%;
  background: #151515;
}

.topNav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;
}

.topNavLink {
  width: auto;
  display: block
}

.topNavLink ul {
  padding: 0px;
  display: flex;
  align-items: center;
}

.topNavLink li {
  padding: 0px 0px 0 40px;
}

.topNavLink li a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-family: 'Thunder';
  letter-spacing: 1px;
  position: relative;
}

.topNavLink li a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -3px;
  height: 1px;
  width: 100%;
  background: #fff;
  transition: all .4s ease;
  transform: scaleX(0);
}

.topNavLink li a:hover:after {
  background: #fff;
  transform: scaleX(1);
}




.searchBox {
  width: 20px;
  margin-right: 20px;
}

.searchIcon {
  width: 22px;
  height: 22px;
  display: block;
  background: url("../images/search-icon.svg") no-repeat 0px 0px;
  cursor: pointer;
}

.menuIcon {
  width: 30px;
  height: 25px;
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menuIconMob {
  width: 30px;
  height: 30px;
  display: none;
  background: url("../images/menu-mob-icon.svg") no-repeat 0px 0px;
  cursor: pointer;
}

.headerBtm {
  width: 100%;
  position: relative;
  background: #34328F;
}

.logoNavBox {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 125px;
}

.logo img {
  width: 100%;
  height: auto;
}

.navRit {
  padding: 0px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
}

.naviagtionBox {
  padding: 0px;
}

.naviagtionBox ul {
  display: flex;
}

.naviagtionBox li {
  padding: 0px 15px;
}

.naviagtionBox li a {
  font-size: 17px;
  color: #151515;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Thunder';
  position: relative;
  letter-spacing: 1px;
  height: 46px;
  display: flex;
  align-items: center;
}

.naviagtionBox li a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 12px;
  height: 1px;
  width: 100%;
  background: #000;
  transition: all .4s ease;
  transform: scaleX(0);
}

.naviagtionBox li a:hover:after {
  background: #000;
  transform: scaleX(1);
}

.mobNav {
  display: none;
}

.activeNav {
  font-family: 'ThunderMed' !important;
  font-weight: 600;
  position: relative;
}

/*.activeNav::before{content: '';  border: solid #fff;border-width: 0 8px 8px 0;display: inline-block;padding: 6px;transform: rotate(45deg);-webkit-transform: rotate(45deg); position: absolute; left: 50%; bottom: -7px; margin-left: -5px;}*/
.srchMenuCol {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.hideNav {
  display: none;
}

.srchWrp {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9999;
  display: none;
  transition: all 0.3s ease-in;
}

.srchWrpInr {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topSrchBox {
  width: 700px;
}

.whitSrch .srchBox {
  background: none;
  border: #fff 1.5px solid;
}

.whitSrch .srchFild {
  color: #fff;
}

.whitSrch .srcBtn {
  color: #050505;
  background: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  width: 120px;
  position: relative;
  height: 43px;
  right: -2px;
  border-top-left-radius: 0px !important;
  border: 0px;
}

.blckSrch .srchBox {
  background: none;
  border: #050505 1.5px solid;
}

.blckSrch .srchFild {
  color: #050505;
}

.blckSrch .srcBtn {
  color: #fff !important;
  background: #050505;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  width: 100px;
  position: relative;
  height: 43px;
  right: -1px;
}

.bannerSrch .srchFild::placeholder {
  color: #fff;
  opacity: 1;
}

.srchFild {
  background: none;
  border: 0px;
  font-size: 15px;
  color: #000;
  height: 32px;
  padding: 0px 20px;
  width: 72%;
}

.srchBox {
  width: 100%;
  height: 44px;
  border: #C1C1C1 1px solid;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slick-next.slick-disabled {
  opacity: 0.3
}

.slick-prev.slick-disabled {
  opacity: 0.3
}

.headerBg {
  background: #34328F !important;
  box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.75);
}

.menuClose {
  width: 46px;
  height: 46px;
  background: url("../images/close-menu.svg") no-repeat 0px 0px;
  background-size: 100%;
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
  cursor: pointer;
}

.srcBtn {
  width: 50px;
  height: 40px;
  background: url("../images/search-btn-icon.svg") no-repeat center center;
  border: 0px;
  outline: 0px;
}


/*Common css start*/
.inputFiled {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  background: #fff;
  border: #C4C4C4 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  color: #555555;
  border-radius: 20px;
  border-top-left-radius: 0px !important;
}

.textareaFild {
  width: 100%;
  height: 120px;
  padding: 5px 10px;
  background: #fff;
  border: #C4C4C4 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  color: #555555;
  border-radius: 20px;
  border-top-left-radius: 0px !important;
  resize: none;
}

.slectList {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  border: #C4C4C4 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  color: #555555;
  border-radius: 20px;
  border-top-left-radius: 0px !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/arrow-drop.svg) 95% center no-repeat #fff;
}

.chkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom: 0px !important;
  cursor: pointer !important;
  font-size: 18px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #555555 !important;
  font-family: 'robotoregular' !important;
}

.chkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #f6f6f6;
  border: #C4C4C4 1px solid;
  border-radius: 2px;
}

.chkbox:hover input~.checkmark {
  background-color: #f6f6f6;
}

.chkbox input:checked~.checkmark {
  background-color: #f6f6f6;
}

.chkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.chkbox input:checked~.checkmark:after {
  display: block;
}

.chkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #276EF1;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn {
  min-width: 150px;
  padding: 0px 30px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34328F;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-top-left-radius: 0px !important;
  border: 0px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  border-radius: 30px;
  border-top-right-radius: 0px !important;
  border-top-right-radius: 30px !important;
  background: #C45EF0 !important;
}

.whitBtn:hover {
  background: #C45EF0 !important;
  color: #fff !important;
}


.outlineBtn {
  border: #fff 1px solid;
  background: none !important;
}

.breadcrumbsBox {
  width: 100%;
  background: #fff;
}

.breadcrumbsLink {
  height: 50px;
  display: flex;
  align-items: center;
}

.breadcrumbsLink ul {
  display: flex;
}

.breadcrumbsLink li {
  padding-right: 20px;
  color: #717171;
  font-size: 18px;
  font-weight: 500;
}

.breadcrumbsLink li a {
  text-decoration: none;
  color: #34328F;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
}

.breadcrumbsLink li a::after {
  content: '';
  border: solid #717171;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 20px;
}

.hdRow {
  width: 100%;
  padding-bottom: 30px;
}

.titleHd {
  font-size: 50px;
  line-height: 48px;
  color: #1A1A1A;
  font-family: 'ThunderMed';
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 25px;
  position: relative;
}

.titleHd::before {
  content: '';
  width: 4px;
  height: 36px;
  background: #C45EF0;
  display: block;
  left: 0px;
  top: 0px;
  position: absolute;
}

.titleHd::after {
  content: '';
  width: 4px;
  height: 36px;
  background: #C45EF0;
  display: block;
  left: 6px;
  top: 0px;
  position: absolute;
}

.titleHd i {
  display: inline-block;
  width: 4px;
  height: 36px;
  background: #C45EF0;
  display: block;
  left: 12px;
  top: 0px;
  position: absolute;
}

.sectionTitle {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: #151515 1px solid;
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  color: #151515;
  text-transform: uppercase;
  position: relative;
}

.sectionTitle span {
  display: inline-block;
  position: relative;
}

.sectionTitle span::after {
  content: '';
  width: 100%;
  height: 7px;
  background: #151515;
  display: block;
  left: 0px;
  bottom: -19px;
  position: absolute;
  border-radius: 10px;
}

.subHd {
  font-size: 18px;
  color: #151515;
  line-height: 21px;
  padding-left: 25px;
  padding-bottom: 20px;
}

.whtHd {
  color: #fff !important;
}

.whitBtn {
  background: #fff !important;
  color: #1A1A1A !important
}

.noLftLine {
  padding-left: 0px !important;
}

.noLftLine::before {
  display: none;
}

.noLftLine::after {
  display: none;
}

.blckBg {
  background: #151515
}

.blueBg {
  background: #34328F;
}

.lightblueBg {
  background: #37AAE1;
}

.padLft {
  padding-left: 25px !important;
}

.btnWrp {
  width: 100%;
  display: flex;
  padding-top: 30px;
}

.centerBtn {
  justify-content: center;
}

.commonRow {
  width: 100%;
}

.ourServiesCont {
  width: 100%;
}

.sectionRow {
  padding-bottom: 40px;
}

.boxInner {
  padding: 40px 0px;
}

.padLftRmv {
  padding-left: 0px !important;
}

.padRitRmv {
  padding-right: 0px !important;
}

.blckText {
  color: #151515 !important
}

.fildRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.fildCol {
  width: 48%;
}

.colFldful {
  width: 100% !important;
}

.fildCol label {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: block;
  padding-bottom: 7px;
  cursor: default;
}

.fildbox {
  width: 100%;
}

.pageTitle {
  width: 100%;
  padding: 15px 0px 25px 0px;
}

.pageTitle h1 {
  font-size: 40px;
  line-height: 42px;
  color: #fff;
  font-family: 'ThunderMed';
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pageTitle p {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  width: 50%;
}

.alignCenter {
  text-align: center
}


/*Home page css start*/
.homePage .headerBtm {
  background: none;
}

.homePage .main-wrp {
  padding-top: 40px;
}

.slick-dots {
  bottom: 30px !important;
}

.slick-active button {
  width: 50px !important;
  height: 12px !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
}

.slick-dots li button::before {
  display: none !important;
}

.slick-prev,
.slick-next {
  width: 40px !important;
  height: 40px !important;
  background: #34328F !important;
  border-radius: 50%;
}

.thumRowBox .slick-next,
.newsThumSlider .slick-next {
  right: -40px;
}

.thumRowBox .slick-prev,
.newsThumSlider .slick-prev {
  left: -40px;
}

.slick-prev::before,
.slick-next::before {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  font-size: 0px !important;
  opacity: 1 !important;
}

.slick-prev::before {
  transform: rotate(136deg) !important;
  -webkit-transform: rotate(136deg) !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.bannerBox {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.bannerBox img {
  width: 100%;
}

.heroBanner {
  width: 100%;
}

.heroBanner .slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.heroBanner .slick-dots li button {
  border: #fff 2px solid;
  width: 12px;
  height: 12px;
  background: #7dbdf1;
  border-radius: 50%;
  font-size: 0px !important;
}

.bannerCont {
  width: 100%;
  position: relative;
}

.bannerContBox {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.bannerText {
  width: 500px;
}

.bannerText h2, .bannerText h1 {
  font-size: 60px;
  line-height: 56px;
  color: #fff;
  font-family: 'ThunderMed';
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

.bannerText h2 i, .bannerText h1 i {
  content: '';
  width: 15px;
  height: 40px;
  background: #C45EF0;
  display: inline-block;
  transform: skewX(-20deg);
  margin-left: 20px;
}

.bannerText p {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  padding-bottom: 20px;
}

.bannerBtn {
  width: 100%;
  display: flex;
  align-items: center;
}

.heroBanner .slick-dots {
  width: 200px;
}

.heroBanner .slick-next {
  right: 20px;
  top: inherit !important;
  bottom: 10px;
}

.heroBanner .slick-prev {
  right: 80px;
  left: inherit !important;
  z-index: 1;
  top: inherit !important;
  bottom: 10px;
}

.thumRowBox {
  width: 100%;
}

.thumBox {
  width: 100%;
}

.thumBoxInr {
  padding: 0px 7px;
  position: relative;
}

.thumBoxInr a {
  text-decoration: none;
}

.thumImg {
  width: 100%;
  overflow: hidden;
}

.thumImg img {
  width: 100%;
  transition: all 0.5s ease;
}

.thumImg img:hover {
  transform: scale(1.2, 1.2);
}

.thumCont {
  padding: 15px 0px 0 0;
}

.thumCont h3 {
  font-size: 24px;
  line-height: 25px;
  color: #151515;
  padding-bottom: 15px;
  font-family: 'ThunderMed';
  font-weight: 600;
  letter-spacing: 1px;
}

.thumCont h3 a {
  color: #151515;
}

.thumCont p {
  color: #151515;
  font-size: 14px;
  line-height: 19px;
}

.thumCont li {
  padding-bottom: 4px;
  color: #fff;
  font-size: 13px;
}


.thumImgTheme {
  width: 100%;
  position: relative;
}

.thumImgTheme::after {
  content: '';
  width: 104px;
  height: 123px;
  background: #C45EF0;
  display: block;
  left: -44px;
  top: -63px;
  position: absolute;
  transform: rotate(47deg);
  z-index: 1;
}

.thumImgTheme::before {
  content: '';
  width: 125px;
  height: 148px;
  background: #C45EF0;
  display: block;
  right: -73px;
  bottom: -48px;
  position: absolute;
  transform: rotate(34deg);
  z-index: 1;
}

.overText .thumCont {
  position: absolute;
  left: 0px;
  bottom: 15px;
  width: 100%;
  padding: 0px 80px 0px 15px;
  box-sizing: border-box;
}

.overText .thumCont h3 {
  color: #fff !important;
  padding-bottom: 0px !important;
  font-size: 18px !important;
  line-height: 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: normal;
}

.arrowThum {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: 28px;
  bottom: 15px;
  z-index: 2
}


.partnerOcean {
  background: #37AAE1
}

.ptnrCount {
  padding: 0px 35px;
  display: flex;
  justify-content: space-between;
}

.ptnrCol {
  width: 24%;
  height: 126px;
  transform: skewX(-20deg);
  position: relative;
}

.ptnrBox {
  background: #151515;
  padding: 20px;
}

.ptnrBox .ptnrNoBox {
  width: 100%;
  font-size: 55px;
  color: #fff;
  font-family: 'Thunder';
  font-weight: 600;
  font-style: italic;
  text-align: center;
  transform: skewX(20deg);
  padding-bottom: 3px;
}

.ptnrBox .ptnrNoBox sub {
  font-size: 15px;
  position: relative;
  top: -10px;
  left: 5px;
  letter-spacing: 1px;
}

.ptnrBox .ptnrNameBox {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  transform: skewX(20deg);
}

.brandRow {
  width: 100%;
}

.brandBox {
  width: 100%;
}

.brandBox ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0px -15px;
}

.brandBox li {
  width: 20%;
  padding: 0px 15px 40px 15px;
  box-sizing: border-box;
}

.brandBox li span {
  display: inline-block
}

.testimonialsRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.testimonialsText {
  width: 45%;
}

.testimonialsText h3 {
  font-family: 'ThunderMed';
  font-weight: 600;
  font-size: 45px;
  line-height: 46px;
  padding-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonialsText h4 {
  font-size: 20px;
  padding-bottom: 5px;
}

.testimonialsText p {
  font-size: 16px;
}

.testimonialsImg {
  width: 40%;
}

.testimonialsSlider {
  width: 100%;
}

.testimonialsSlider .slick-next {
  right: -45px;
}

.testimonialsSlider .slick-prev {
  left: -45px;
}


.hmNews {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hmNewsThum {
  width: 32%;
  margin-bottom: 25px;
}

.hmNewsThumInr {
  padding: 20px;
  background: #fff;
}

.hmNewsThumInr a {
  text-decoration: none;
}

.hmNewsThumInr h3 {
  color: #34328F;
  font-size: 18px;
  line-height: 21px;
  padding-bottom: 10px;
  min-height: 55px;
}

.hmNewsThumInr p {
  color: #151515;
  font-size: 14px;
  text-align: right;
}


.contImgRow {
  width: 100%;
  display: flex;
  align-items: center
}

.contImgRow .imgCol {
  width: 55%;
}

.imgCurveLft {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 46% 100%);
}

.imgCurveRit {
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
}

.imgCurveLftTop {
  clip-path: polygon(0 0, 59% 0, 100% 100%, 0% 100%);
}



.contImgRow .textCol {
  width: 45%;
}

.shrtDscBox {
  position: relative;
}

.shrtDscBox p {
  font-size: 16px;
  line-height: 21px;
  padding-top: 10px;
  color: #fff;
}

.themeWhite {
  position: relative;
}

.themeWhite::before {
  content: '';
  width: 100%;
  height: 50px;
  background: #fff;
  display: block;
  right: 0px;
  top: 0px;
  position: absolute;
  z-index: 0
}

.themeWhite::after {
  content: '';
  width: 100%;
  height: 50px;
  background: #fff;
  display: block;
  right: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 0
}

.themeWhite .imgCol {
  position: relative;
  z-index: 2;
}



/*Inner page css start*/
.commonCont {
  width: 100%;
}

.commonCont h3 {
  font-size: 25px;
  line-height: 26px;
  padding-bottom: 25px;
  color: #000;
  font-weight: 600;
}

.commonCont p {
  font-size: 16px;
  line-height: 23px;
  padding-bottom: 20px;
  color: #000;
}

.commonCont p strong {
  font-weight: bold;
  text-decoration: none;
}

.commonCont p a {
  color: #0514C4;
  text-decoration: none;
}

.commonCont ul {
  list-style: disc;
  padding-left: 14px;
  padding-bottom: 10px;
}

.commonCont li {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 10px;
  list-style: disc;
}

.dateMin {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.dateMinCol {
  color: #fff;
  font-size: 14px;
}

.brdCumSpace {
  padding-top: 30px;
}

.bannerCenterCont .bannerText {
  width: 80%;
  margin: 0px auto;
  text-align: center;
}

.bannerCenterCont .bannerBtn {
  justify-content: center;
}

.bannerCenterCont .btn {
  margin: 0px 10px;
}

.oderChange .imgCol {
  order: 1;
}

.oderChange .textCol {
  order: 2;
}

.lftRitRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.lftRitRow .lftCol {
  width: 65%;
}

.lftRitRow .ritCol {
  width: 30%;
}

.trackingBox {
  border-bottom: #000 1.5px solid;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.trackingBox ul {
  list-style: decimal !important;
  padding-top: 10px;
  padding-left: 20px;
}

.trackingBox li {
  list-style: decimal !important
}

/*Inner page css end*/

/*About us page css start*/
.timeLineBox {
  width: 100%;
  display: flex;
  align-items: center
}

.timeLineSlider {
  width: 200px;
}

.timeLineRit {
  width: 600px;
}

.timeLineCont {
  width: 100%;
}

.timeLineCont p {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  padding-left: 25px;
  padding-top: 10px;
}

.uprCase {
  text-transform: uppercase;
}

.timeLineCont .uprCase {
  padding-top: 0px !important;
  padding-bottom: 15px;
}

.timeLineText {
  color: #D0D0D0;
  font-size: 20px;
  padding: 15px 0px;
  cursor: pointer;
}

.timeLineSlider .slick-center .timeLineText {
  color: #fff;
  font-weight: 700;
  font-size: 23px;
}

.timeLineSlider .slick-prev {
  width: 25px;
  height: 20px !important;
  left: 5px !important;
  top: -15px !important;
  background: none !important;
}

.timeLineSlider .slick-prev::before {
  transform: rotate(136deg) !important;
  -webkit-transform: rotate(-135deg) !important;
}

.timeLineSlider .slick-next {
  width: 25px;
  height: 20px !important;
  left: 5px !important;
  bottom: 0px !important;
  background: none !important;
  top: inherit !important
}

.timeLineSlider .slick-next::before {
  transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
}

.contentBanner {
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
}

.videoPopup {
  width: 100%;
  background: #000;
}

.videoPopup iframe {
  width: 100%;
  height: 480px;
}

.videoPopupWrp .overlayCont {
  height: auto;
}

/*About us page css start*/

/*Service page css start*/
.premiumOfrBox {
  padding-bottom: 10px !important;
}

.premiumOfr {
  width: 100%;
  display: flex;
  flex-wrap: wrap
}

.premiumOfr .thumBox {
  width: 33%;
  margin-bottom: 30px;
}

.premiumOfr {
  width: 100%;
}

.thumBg .thumCont {
  background: #37AAE1;
  padding: 25px 15px 15px 15px;
}

.thumBg h3 {
  color: #fff;
}

.thumBg p {
  color: #fff;
  padding-bottom: 10px;
}

.thumCont h4 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 10px;
}

.readMore {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.readMore::after {
  content: '';
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 4px;
}

.readMoreBlue {
  color: #34328F;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.readMoreBlue::after {
  content: '';
  border: solid #34328F;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 4px;
  margin-top: 25px;
}

.scheduleFrm {
  width: 100%;
}

.scheduleFrm .fildRow {
  justify-content: flex-start;
}

.scheduleFrm .fildCol {
  width: 30%;
  margin-right: 20px;
}

.scheduleFrm .fildCol label {
  color: #fff;
}

.connectWithUs .hdRow {
  padding-bottom: 0px;
}

.chooseUs .thumCont h3 {
  min-height: 65px;
}

.chooseUs .thumCont p {
  min-height: 60px;
}

.checkSchedule .fildRow {
  align-items: flex-end;
}

.caseStudieSider {
  width: 100%;
}

.caseStudieSider .slick-next {
  right: 5px !important;
}

.caseStudieSider .slick-prev {
  left: 5px !important;
}

/*Service page css end*/


/*Leadership page css start*/
.subTitleHd {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.ldrTeam {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.ldrTeam .thumBox p {
  color: #fff
}

.ldrTeam .thumBox h3 {
  text-transform: uppercase
}

.ldrTeam .thumBox {
  width: 33%;
  margin-bottom: 30px;
}

.floaterBox {
  width: 50px;
  background: #37AAE1;
  position: fixed;
  right: 0px;
  top: 30%;
  z-index: 99999;
  transform: skew(0deg, -20deg);
}

.floaterBox ul {
  transform: skew(0deg, 20deg);
}

.floaterBox li {
  width: 100%;
}

.floaterBox li a {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: #151515 1px solid;
}

.floaterBox li a i {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floaterBox li a i img {
  width: auto
}

.floaterBox li:last-child a {
  border-bottom: 0px;
}

/*Leadership page css end*/

/*GlobalReach page css start*/
.globalReachRow {
  width: 100%;
}

.globalReachHd {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: #151515 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.globalReachSection {
  position: relative;
}

.globalReachSection::before {
  content: '';
  width: 100%;
  height: 400px;
  display: block;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.mapBox {
  width: 100%;
  padding-bottom: 40px;
  position: relative;
}

.mapImg {
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
}

.mapImg img {
  width: 100%;
}

.slctRegion {
  width: 180px;
}

.contactDtlsRow {
  width: 100%;
}

.contactDtlsRow h3 {
  color: #fff;
  font-size: 45px;
  line-height: 45px;
  padding-bottom: 10px;
  font-family: 'ThunderMed';
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contactDtlsCont {
  width: 100%;
  padding: 15px 0px;
  border-bottom: #fff 1px solid;
  margin-bottom: 15px;
  display: flex;
}

.contactDtlsCont h4 {
  color: #C45EF0;
  font-size: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  width: 300px;
}

.contactDtlsbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contactDtlsbox .contactDtlsCol:nth-child(1) {
  width: 40%
}

.contactDtlsbox .contactDtlsCol:nth-child(2) {
  width: 23%
}

.contactDtlsbox .contactDtlsCol:nth-child(3) {
  width: 20%
}

.contactDtlsbox .contactDtlsCol:nth-child(4) {
  width: 40%
}

.contactDtlsCol h5 {
  color: #fff;
  font-size: 17px;
  padding-bottom: 10px;
  font-weight: 600;
}

.contactDtlsCol p {
  color: #fff;
  font-size: 15px;
  line-height: 21px;
  padding-bottom: 5px;
  font-weight: 400;
}

.srvicList {
  width: 100%;
}

.srvicList ul {
  display: flex;
  flex-wrap: wrap
}

.srvicList li {
  width: 47%;
  font-size: 14px;
  color: #fff;
  padding-bottom: 5px;
}

.srvicList li a {
  color: #fff;
  text-decoration: underline;
}

.contactDtlsItem {
  width: 100%;
}

.contactDtlsItem .contactDtlsCont {
  display: inherit;
  border-bottom: #1A1A1A 1px solid;
}

.rignsSrvclist .contactDtlsCont h4 {
  font-size: 18px;
  color: #1A1A1A;
}

.rignsSrvclist .contactDtlsCol h5 {
  color: #1A1A1A;
  font-size: 16px;
}

.rignsSrvclist .contactDtlsCol:nth-child(1) {
  width: 40%
}

.rignsSrvclist .contactDtlsCol:nth-child(2) {
  width: 30%
}

.rignsSrvclist .contactDtlsCol:nth-child(3) {
  width: 25%
}

.rignsSrvclist .contactDtlsCol p {
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #1A1A1A;
}

.servicePopupCont {
  width: 100%;
}

.servicePopup {
  padding: 0px 30px
}

.servicePopup p {
  font-size: 15px;
  line-height: 22px;
  color: #1A1A1A;
  padding-bottom: 20px;
}

.contactDtlsRow .contactDtlsCont:last-child {
  border-bottom: 0px !important;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/*GlobalReach page css end*/

/*Customer speak page css start*/
.tstmnlMore {
  width: 100%;
  display: flex;
  padding: 30px 0px;
  flex-wrap: wrap;
}

.tstmnlMore .thumBox {
  width: 50%;
  margin-bottom: 10px;
}

.tstmnlBtn {
  padding-top: 0px !important;
}

.customerThumRow {
  width: 100%;
  display: flex;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.customerThumRow {
  width: 100%;
  display: flex;
}

.customerThumRow .thumBox .thumBoxInr {
  padding: 0 15px 0 0 !important;
}

.customerThumRow .thumCont h3 {
  color: #fff;
  font-family: 'Inter', sans-serif !important;
  font-size: 17px;
  line-height: 22px;
}

.customerThumRow .thumCont p {
  color: #fff;
}

/*Customer speak page css start*/

/*News page css start*/
.newsBanner {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: #151515 1px solid;
  padding-bottom: 40px;
}

.newsBanner .thumCont {
  background: #C45EF0;
  padding: 15px 25px;
}

.newsBanner .thumCont p {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  padding-bottom: 15px;
}

.thumImg .newsBannerImg {
  width: 100%;
}

.newsDate {
  width: 100%;
  padding-bottom: 15px;
  color: #717171;
  font-size: 14px;
}

.newsThumSlider {
  width: 100%;
}

.newsDtls {
  width: 100%;
  border-bottom: #1A1A1A 1px solid;
  padding-bottom: 10px;
}

/*News page css End*/

/*Disclosures page css start*/
.ritInrBox {
  padding: 20px 15px;
  background: #37AAE1;
}

.ritInrBox h3 {
  color: #fff;
  padding-bottom: 10px;
  font-size: 25px;
  font-family: 'Thunder';
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.ritList {
  width: 100%
}

.ritList li {
  padding: 0px;
}

.ritList li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  border-bottom: #fff 1px solid;
}

.ritList li:last-child a {
  border-bottom: 0px !important;
  ;
}

.ritList li span {
  padding-right: 10px;
  display: inline-block;
}

.downlaodIcon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../images/downlaod-icon.svg") no-repeat 0px 0px;
}

.arrowIcon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../images/arrow-icon.svg") no-repeat center center;
}

/*Disclosures page css end*/

/*Faqs page css start*/
.faqBox {
  width: 100%;
}

.faqTopicList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.faqTopicList .thumBox {
  width: 50%;
  margin-bottom: 30px;
}

.faqSrchRow {
  width: 100%;
  border-bottom: #151515 1.5px solid;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.faqSrchRow p {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 15px;
}

.faqSrchBox {
  width: 500px;
}

.faqSrchBox .srchBox {
  border-top-left-radius: 0px !important;
}

.faqAcdBox {
  width: 100%;
}

.faqAcdBox h4 {
  color: #151515;
  font-size: 20px;
  font-weight: 400;
  height: 45px;
  display: flex;
  align-items: center;
  border-bottom: #000 1px solid;
  cursor: pointer;
  justify-content: space-between;
  padding-right: 10px;
}

.faqAcdBox h4::after {
  content: '';
  border: solid #151515;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.accActive::after {
  padding: 5px;
  transform: rotate(-135deg) !important;
  -webkit-transform: rotate(-135deg) !important;
}

.faqAnsr {
  width: 100%;
  padding-top: 15px;
  display: none;
  border-bottom: #000 1px solid;
}

.faqAnsr p {
  color: #717171;
  font-size: 16px;
  line-height: 23px;
  padding-bottom: 15px;
}

.accActive {
  border-bottom: 0px !important;
}

.faqBox .thumCont h3 {
  padding-bottom: 10px !important;
  font-family: 'Thunder' !important;
  font-weight: 600 !important;
  font-size: 25px !important;
}

/*Faqs page css end*/

/*Get in touch page css start*/
.formBox {
  width: 100%;
}

.contactDtls {
  width: 100%;
  padding-bottom: 30px;
}

.contactDtls h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 10px;
}

.contactDtls p {
  font-size: 15px;
  color: #fff;
  line-height: 21px;
  padding-bottom: 3px;
}

/*Get in touch page css end*/

/*Tracking page css start*/
.trackingBanner .bannerText {
  width: 100%;
}

.trackingBanner .bannerContBox {
  display: inherit;
  padding-top: 40px;
}

.trackSrch {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.trackSrch .srchBox {
  background: #fff;
  border-top-left-radius: 0px !important;
}

.trackSrch .srcBtn {
  background: #37AAE1;
  color: #fff;
  border-top-left-radius: 20px !important;
}

.trackSrch .srchFild {
  color: #151515;
}

/*Tracking page css end*/

/*Contact us page css start*/
.contactMapDlts .contactDtlsCont h4 {
  color: #fff
}

.contactFrm {
  width: 100%;
  padding-bottom: 40px;
}

.contactFrm .fildCol {
  width: 32%;
}

.contactInfrm {
  width: 100%;
}

.contactInfrmDlts {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contactInfrmCol {
  width: 45%;
}

.contactInfrmCol h4 {
  color: #000000;
  font-family: 'Thunder';
  letter-spacing: 1px;
  padding-bottom: 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 10px;
}

.contactInfrmCol p {
  color: #000000;
  padding-bottom: 15px;
  font-size: 16px;
}

.contactInfrmCol p strong {
  font-weight: 600;
}

/*Contact us page css start*/

.searchContBox {
  width: 100%;
  min-height: 400px;
}

.searchFildRow {
  width: 100%;
  padding-bottom: 30px;
}

.searchFild {
  width: 600px;
  position: relative;
}

.searchInpuut {
  width: 100%;
  height: 44px;
  padding: 0px 50px 0px 20px;
  background: #fff;
  border: #C1C1C1 1px solid;
  box-sizing: border-box;
  font-size: 16px;
  color: #555555;
  border-radius: 22px;
  border-top-left-radius: 0px !important;
}

.searchButton {
  width: 50px;
  height: 40px;
  background: url("../images/search-page-icon.png") no-repeat center center;
  border: 0px;
  outline: 0px;
  position: absolute;
  right: 0px;
  top: 2px;
}

.searchContBox h2 {
  font-size: 25px;
  padding-bottom: 25px;
  color: #000;
}

.searchListRow {
  width: 100%;
}

.searchListBox {
  width: 100%;
  padding-bottom: 30px;
}

.searchListBox h3 {
  font-size: 18px;
  padding-bottom: 15px;
  color: #000;
}

.searchListBox p {
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 15px;
  color: #000;
}

.srchReadMore {
  color: #34328F;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.srchReadMore::after {
  content: '';
  border: solid #34328F;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: -15px;
  top: 8px;
}

/*Footer Css start*/
.ftrBg {
  background: #000;
}

.ftrTop {
  width: 100%;
  padding: 30px 0px;
  display: flex;
}

.ftrCol {
  width: 24%;
}

.ftrLink {
  padding: 0px;
}

.ftrLink h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 20px;
}

.ftrLink h5 a {
  color: #fff;
  text-decoration: none;
}

.ftrLink ul {
  padding: 0px;
}

.ftrLink li {
  padding: 0 0 12px 0;
}

.ftrLink li a {
  font-size: 14px;
  padding: 5px 0px;
  color: #C7C7C7;
  text-decoration: none;
  position: relative;
}

.ftrLink li a:hover {
  color: #fff;
}

.ftrLink li a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 100%;
  background: #fff;
  transition: all .4s ease;
  transform: scaleX(0);
}

.ftrLink li a:hover:after {
  background: #fff;
  transform: scaleX(1);
}

.hdLink a {
  font-weight: 500 !important;
  font-size: 18px !important
}

.heaOfc {
  width: 100%;
  padding-bottom: 10px;
}

.heaOfc p {
  font-size: 14px;
  line-height: 19px;
  color: #C7C7C7;
  padding-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.socialLink {
  width: 100%;
}

.socialLink ul {
  display: flex;
  align-items: center;
}

.socialLink li {
  margin-right: 6px;
  padding-bottom: 0px;
}

.socialLink a {
  width: 32px;
  display: block;
  padding: 0px !important;
}

.socialLink li a::after {
  display: none !important
}

.socialLink a img {
  width: 100%
}

.in-icon {
  background-position: -60px 0px !important;
}

.y-icon {
  background-position: -122px 0px !important;
}

.ftrBtm {
  width: 100%;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: #C7C7C7 1px solid;
}

.ftrBtm ul {
  padding: 0px;
  display: flex;
}

.ftrBtm li {
  padding: 0px 15px;
  font-size: 16px;
  color: #C7C7C7;
  border-right: #C7C7C7 1px solid;
}

.ftrBtm li a {
  font-size: 16px;
  padding: 5px 0px;
  color: #C7C7C7;
  text-decoration: none;
}

.ftrBtm li:first-child {
  padding-left: 0px !important;
}

.ftrBtm li:last-child {
  border-right: 0px !important;
}

.bcktoTop {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-right: 40px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background: url("../images/back-to-top.png") no-repeat right 0px;
}

/*Footer Css end*/

/*Popup Css start*/
.overlayBox {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
  left: 0px;
  top: 0px;
  display: none;
}

.overlayInr {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.closePopup {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0px;
  top: -50px;
  background: url("../images/popup-close.svg") no-repeat 0px 0px;
  background-size: 100%;
  cursor: pointer;
}

.overlayCont {
  width: 1000px;
  background: #fff;
  position: relative;
  height: 80vh;
}

.popupCont {
  padding: 20px 25px;
}

.ScrolBox {
  overflow-y: auto;
  height: calc(100vh - 200px);
}

.ScrolBox::-webkit-scrollbar {
  width: 6px;
  margin: 10px 0
}

.ScrolBox::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 10px
}

.ScrolBox::-webkit-scrollbar-thumb {
  background: #37AAE1;
  border-radius: 10px
}

@supports (scrollbar-color:red blue) {
  .ScrolBox {
    scrollbar-color: #C45EF0 #ccc;
    scrollbar-width: thin;
  }
}

/*Popup Css end*/

#views-exposed-form-search-page-1 .js-form-type-textfield label {
  display: none !important
}

#views-exposed-form-search-block-1 {
  display: flex;
  justify-content: space-between;
}

#views-exposed-form-search-block-1 .js-form-type-textfield {
  width: 80%
}

#views-exposed-form-search-block-1 .js-form-type-textfield .srchFild {
  height: 42px;
  width: 100%
}

.topSrchBox .views-exposed-form {
  width: 100%;
}

.faqSrchBox .views-exposed-form {
  width: 100%;
}

#views-exposed-form-search-block-1 .form-actions .srcBtn {
  text-indent: -9px;
}

.searcTracking #views-exposed-form-search-block-1 .form-actions .srcBtn {
  text-indent: 0px !important;
}

.sectionTitle.whtHd span::after {
  background: #fff !important;
}

.sectionTitle.whtHd {
  border-bottom: #fff 1px solid !important;
}

.form-item--error-message {
  width: 100%;
  padding-top: 3px;
  color: red;
}

#edit-comments--description {
  padding-top: 5px;
}

.servicesContact .btnWrp .btn {
  margin-left: 25px;
}

.ldrDetls h3 {
  padding-left: 25px;
}

.ldrDetls p {
  padding-left: 25px;
}

.ldrDetls .btnWrp {
  width: auto;
  padding-left: 25px;
}

.blogMoreBtn {
  padding-bottom: 40px;
}

.errorBox {
  width: 100%;
  padding: 100px 0px;
}

.errorBox h2 {
  font-size: 60px;
  line-height: 62px;
  color: #000;
  font-weight: 600;
  font-family: 'ThunderMed';
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.errorBox h3 {
  font-size: 100px;
  line-height: 110px;
  color: #34328F;
  font-weight: 600;
  font-family: 'ThunderMed';
  text-align: center;
  text-transform: uppercase;
}

.faqSrchRow #views-exposed-form-search-block-1 .form-actions .srcBtn {
  text-indent: -99999999px;
}

.ourldrBnr .subTitleHd {
  padding-left: 25px;
}

.ourldrBnr .shrtDscBox p {
  padding-left: 25px;
}

.ourldrBnr .btn {
  margin-left: 25px;
}

.faqSrchBox form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faqSrchBox .srcBtn {
  text-indent: -999999999px;
}

.lgFrm {
  width: 100%;
  max-width: 450px;
  margin: 100px auto;
}

.lgFrm .readMore::after {
  display: none;
}

.lgFrm .fildCol {
  width: 100%;
  margin-bottom: 20px;
}

.lgFrm .titleHd {
  margin-bottom: 10px;
}

#edit-submit {
  background: none;
  color: #fff;
}