/*Fonts Used*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --priFont: Poppins, Helvetica, sans-serif;
  --secFont: "Poppins", sans-serif;
  --priColor: #272c32;
  --secColor: #89abde;
  --bodyColor: #000000;
}
::selection {
  color: var(--priColor);
  background: #7db1ff;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  image-rendering: -webkit-optimize-contrast;
  -webkit-tap-highlight-color: transparent !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
}

/* HTML5 display-role reset for older browsers */
html {
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
  -webkit-appearance: none;
}

form,
label {
  -webkit-text-size-adjust: 100%;
}

mark {
  background-color: transparent;
  color: inherit;
}

/* end reset */

/*preset*/
body {
  font-family: var(--priFont);
  font-size: 18px;
  line-height: 22px;
  color: var(--bodyColor);
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed !important;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: inherit;
}

img {
  max-width: 100%;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

textarea {
  resize: vertical;
}

iframe {
  border: none;
  width: 100%;
}

ul,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

input[type="submit"] {
  cursor: pointer;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  clear: both;
  overflow: hidden;
}

.comp {
  color: var(--secColor);
  font-weight: bold;
}

.upcoming {
  color: red;
  font-style: italic;
  font-weight: bold;
}

.col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.col3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.col2 li,
.col3 li {
  display: inline-block;
  width: 100%;
}

.main_phone {
  font-weight: bold;
}

.back_top {
  display: none;
  background: #090a0b;
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
  height: 45px;
  cursor: pointer;
}

.back_top:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.back_top:hover {
  opacity: 0.7;
}

/*Heading for SEO*/
.h1_hdng {
  font-size: 55px;
  font-weight: 700;
  color: #2c2c2c;
}

/*Thumbnail Images*/
.thumb_left_dd,
.thumb_left_dr {
  float: left;
  margin: -4px 19px 10px 0;
}

.thumb_right_dd,
.thumb_right_dr {
  float: right;
  margin: -4px 0 10px 19px;
}

.thumb_center_dd,
.thumb_center_dr {
  display: block;
  margin: 10px auto;
}

/* Text Alignment */
.text_left,
.text_left p {
  text-align: left;
}

.text_right,
.text_right p {
  text-align: right;
}

.text_center,
.text_center p {
  text-align: center;
  display: block;
}

/* Forms Presets */
::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

::-moz-placeholder {
  opacity: 1;
  color: inherit;
}

:-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

:-moz-placeholder {
  opacity: 1;
  color: inherit;
}

/*end preset*/

.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hdng {
  font-family: var(--secFont);
  line-height: 100%;
  font-size: 60px;
  color: var(--secColor) !important;
  font-weight: normal;
}
.sml_txt {
  font-family: var(--priFont);
  font-size: 20px;
  color: var(--bodyColor);
  display: block;
  font-weight: normal;
}
.hdng_space {
  margin-bottom: 20px;
}
.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-container.center {
  justify-content: center;
}
.btn-container.left {
  justify-content: flex-start;
}
.btn-container .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: normal;
  color: var(--bodyColor);
  background: rgb(26 26 26 / 8%);
  min-height: 48px;
  min-width: 164px;
  width: unset;
  padding: 4px 24px;
  border-radius: 99px;
  transition: all 0s;
  user-select: none;
}
.btn-container .btn .comp {
  display: inline !important;
  font-weight: inherit !important;
  color: inherit !important;
}
.btn-container .btn.accent {
  color: #fff;
  background: var(--secColor);
}
.btn-container .btn.disabled {
  pointer-events: none;
  opacity: 0.33;
}
.btn-container .btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn-container .btn:active {
  text-decoration: none;
  opacity: 0.33;
  scale: 0.96;
}
.btn-container .btn .icon {
  font-family: FluentSystemIcons-Regular !important;
}
.btn1::after {
  position: absolute;
  right: 28px;
  background: url(images/arrow.png) no-repeat 50% center, #fff;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

/*header*/
header {
  background: #fff;
  padding: 0 15px;
}

header .wrapper {
  max-width: 1890px;
  width: 100%;
}
.header_con {
  min-height: 85px;
  padding: 0;
}
/* .main_logo { position: absolute; left: -18px; top: 0; width: 100%; max-width: 551px; background: #fff;z-index: 1;} */
.logo_holder {
  position: absolute;
  left: -18px;
  top: 0;
  width: 100%;
  max-width: 634px;
  background: #fff;
  z-index: 1;
  display: flex;
  gap: 85px;
  align-items: center;
}

#nav_area .wrapper {
  max-width: 1890px;
  width: 100%;
}
.main_logo:after {
  content: "";
  background: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -83px;
  z-index: -1;
}
.main_logo img {
  position: relative;
}
.head_info {
  /*! display: flex; */ /*! justify-content: space-between; */ /*! color:#fff; */ /*! align-items: center; */ /*! position: relative; */ /*! padding-block: 8px; */
}
.header_info {
  position: relative;
  width: 60%;
  left: 38px;
}
.header_info ul {
  display: flex;
  justify-content: space-between;
}
.header_info ul li {
  position: relative;
  padding-left: 30px;
  color: var(--bodyColor);
}
.header_info ul li a {
}
.header_info a:hover {
  text-decoration: underline;
}
.header_info h2 {
}
.hdr_mark:hover {
  text-decoration: underline;
}
.header_info h2 span {
}

.gtrans_holder {
  position: absolute;
  max-width: 99px;
  width: 100%;
  right: 0;
  bottom: 10px;
}
.gtrans {
  position: absolute;
  width: 100%;
  max-width: 99px;
  top: -55px;
}
.gt_float_switcher.notranslate {
  border-radius: 5px;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  font-weight: normal;
  font-size: 16px;
  position: static !important;
  text-align: unset !important;
  right: 0 !important;
  display: unset !important;
}
.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 10px 6px !important;
}
.gt_float_switcher .gt_options.gt-open {
  max-width: 99px !important;
}
.gt_float_switcher.notranslate {
  background: #fff !important;
  border-radius: 5px;
  position: relative;
  z-index: 999;
  box-shadow: none !important;
  outline: 1px solid #3333;
}
.gt_float_switcher-arrow {
  position: static !important;
}

.social_media h3 {
}
.social_media h3 {
  position: relative;
}
.social_media h3::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 1px;
  background: #fff;
  left: -9px;
  top: 56%;
  transform: translateY(-50%);
}
.social_media {
  display: flex;
  align-items: center;
  column-gap: 9px;
  flex-direction: row-reverse;
  color: var(--bodyColor);
}
.social_media ul li {
  display: inline-block;
  vertical-align: top;
}
.social_media ul li a {
  display: block;
}
.social_media ul li a:hover img {
  opacity: 0.5;
}

/*end header*/

/*nav*/
#nav_area {
  padding: 0 15px;
  background: var(--priColor);
  position: relative;
}
.front_page #nav_area {
  /* filter: drop-shadow(rgba(0, 0, 0, 0.05) 0px 0px 0.0625rem) drop-shadow(rgba(0, 0, 0, 0.09) 0px 0.125rem 0.25rem); */
}
.nav-menu {
  width: 100%;
}
.page_nav {
  text-align: right;
}

.page_nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.page_nav ul li a {
  display: block;
  color: #fff;
  line-height: 65px;
  padding: 0 60px;
  font-size: 18px;
}

.page_nav ul li a:hover,
.page_nav ul li a:active,
.page_nav ul li.current_page_item > a {
  background: var(--secColor);
}

.page_nav ul li:after {
  content: url(images/nav-sep.png);
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  right: -4px;
}

.page_nav ul li:last-child:after {
  display: none;
}

.page_nav ul li:last-child a {
  /*! padding-right: 0; */ /*! margin-right: 0; */
}

/* .page_nav ul li a:active::before, .page_nav ul li a:hover::before, .page_nav ul li.current_page_item>a::before { position:absolute; content:''; left:0; right:0; bottom:3px; width:100%; height:5px; background:linear-gradient(180deg,#ff0242 0,#870000 52%); border-radius:150px } */
.fixedholder {
  position: fixed !important;
  margin: 0 !important;
  top: 0;
  left: 0;
  transition: none;
  width: 100%;
  background: #fff;
  transform: unset;
}

/*second level drop down*/
.page_nav ul li:hover {
  position: relative;
  z-index: 599;
  cursor: default;
}

.page_nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 598;
  width: 200px;
  margin-top: 0;
  text-transform: none;
  text-align: center;
  font-size: 15px;
}

.page_nav ul ul li {
  float: none;
  display: block;
  font-weight: normal;
  width: 100%;
}

.page_nav ul ul li a {
  margin: 0 auto;
  padding: 0 10px !important;
}

.page_nav ul ul li:after {
  display: none;
}

.page_nav ul ul ul {
  top: 0;
  left: auto;
  right: -99.5%;
}

.page_nav ul li:hover > ul {
  display: block;
}

.page_nav ul ul a,
.page_nav ul li.current_page_item ul li a {
  background: var(--secColor);
  color: #fff;
  padding: 0;
  margin: 0 auto;
}

.page_nav ul ul a:hover,
.page_nav ul li.current_page_item ul li a:hover,
.page_nav ul ul li.current_page_item a {
  background: var(--priColor);
  text-decoration: none;
}

/*third level drop down*/
.page_nav ul ul ul {
  border-top: 0 none;
}

.page_nav ul ul li {
  position: relative;
}

.page_nav span {
  position: absolute;
  right: 25px;
  top: 32px;
  display: none;
  padding: 0;
  cursor: pointer;
  z-index: 9;
  color: #000;
  text-align: center;
}

/* Drop down icon */
.fa {
  display: block;
  margin-top: -3px;
}

.fa:before {
  position: absolute;
}

/* Navigation bar icon */
.nav_toggle_button {
  display: none;
  text-align: left;
  position: relative;
}

.nav_toggle_button.active {
  opacity: 1;
}

.nav_toggle_button i {
  cursor: pointer;
}

/*Burger Color*/
.nav_toggle_button .toggle_holder {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
}
.nav_toggle_button .hamburger {
}
.nav_toggle_button .hamburger-inner,
.nav_toggle_button .hamburger-inner:before,
.nav_toggle_button .hamburger-inner:after {
  background: var(--priColor);
}
.nav_toggle_button small {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  color: var(--priColor);
  display: block;
  text-align: center;
}

/* Default Responsive Style for Toggle Swipe Right */
.menu_slide_right {
  display: none;
}

/*Responsive burger and color*/
.menu_slide_right .hamburger-inner,
.menu_slide_right .hamburger-inner:before,
.menu_slide_right .hamburger-inner:after {
  background: var(--priColor);
}
.menu_slide_right .toggle_holder {
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translateY(-50%);
}
.menu_slide_right small {
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  display: block;
  text-align: center;
  line-height: 31px;
}

/*end nav*/

/*banner*/
#banner {
  padding: 0 15px;
  position: relative;
}
.bnr_con {
  min-height: 0;
  padding: 0;
}
.box_skitter {
}
.slider {
  width: 1920px;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 823px;
  position: relative;
  pointer-events: none;
}

.box_skitter .label_skitter {
  opacity: 1 !important;
}
.label_skitter h2 {
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 124px;
  max-width: 636px;
  line-height: 140%;
  text-align: left;
  z-index: 26;
  font-family: var(--priFont);
  opacity: 1 !important;
  text-shadow: -1px 2px 5px #1a1a1a;
}
.container_skitter .label_skitter {
  width: 1400px !important;
  margin: auto;
  height: auto;
  position: absolute;
  right: 0;
}
.rslides {
  display: none;
}
#banner .smart-slider {
  position: relative;
  overflow: hidden;
  margin: 64px auto;
  border: 1px solid #e4e4e4;
}
.mobi_ban {
  display: none;
}
.bnr_info {
  position: absolute;
  bottom: 19%;
  max-width: 525px;
  width: 100%;
}
.bnr_info h2 q {
  display: block;
}
.bnr_info p {
  color: #fff;
  line-height: 33px;
}
.bnr_info h2 {
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 38px;
  color: #fff;
  font-size: 60px;
  font-family: var(--secFont);
}
.bnr_info a:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.bnr_info a {
  margin: 35px 0 0;
}
.bnr_info a:hover {
  background: var(--thirdColor);
  color: var(--bodyColor);
}
.bnr_info h2 span q {
  background: var(--secColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bnr_info h2 span cite {
  display: block;
  color: #fff;
}
.slider::before {
  /*! content: ""; */
  background: linear-gradient(to right, #000000fa, #fff0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bnr_info small {
  font-size: 40px;
  color: #fff;
  font-weight: normal;
}
.slider video {
  height: auto;
  width: 100%;
  position: relative;
}

/*end banner*/

/*middle*/
#middle {
  padding: 0 15px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.mid_con {
  min-height: 381px;
  padding: 40px 0 0;
}
.mid_info {
  text-align: center;
  margin-bottom: 52px;
  color: #fff;
}
.mid_info h2 {
  padding-bottom: 34px;
  color: #fff;
}
.mid_info h2 small {
  color: #fff;
  text-transform: uppercase;
}
.mid-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-items: center;
  row-gap: 60px;
}
.mid-card {
  text-align: center;
  max-width: 326px;
  width: 100%;
  min-height: 254px;
  color: #fff;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  box-shadow: rgba(0, 62, 155, 0.1) 0px 1px 1px 0px inset, rgba(50, 87, 93, 0) 0px 50px 100px -20px, rgba(0, 62, 155, 0.3) 0px 30px 60px -30px;
}
.mid-card figure {
}
.mid-card h3 {
  font-size: 20px;
  font-family: var(--priFont);
  padding-block: 25px;
  color: var(--bodyColor);
  line-height: 140%;
}
.mid-card h3 span {
  display: block;
  line-height: 140%;
}
.mid-card .btn1 {
  max-width: 186px;
  height: 50px;
  line-height: 50px;
  background: none;
  border: 1px solid #c50808;
  margin: 25px auto;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-transform: uppercase;
}
.mid-card .btn1:hover {
  transform: scale(0.9);
}
.mid-card h3 small {
  display: block;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--secFont);
}

.mid-card:hover {
  background: var(--secColor);
}
.mid-card:hover a:after {
  background: url(images/arrow.png) no-repeat 50% center, #fff;
}
.mid-card:hover h3 {
  color: #fff;
}
.mid-card:hover figure {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.mid-card a {
  position: relative;
  margin: 10px 0;
}
.mid-card a:after {
  position: absolute;
  background: url(images/arrow-white.png) no-repeat 50% center, var(--secColor);
  content: "";
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 50%;
}
/*middle*/

/*main*/
#main_area {
  padding: 30px 25px 0px !important;
  position: relative;
  background: #fff;
  display: none;
}
.main_con {
  min-height: 711px;
  padding: 0;
  overflow: hidden;
}
main {
  float: right;
  width: 100%;
  max-width: 636px;
  text-align: left;
  padding-top: 183px;
}
main .h1_title {
  line-height: 100%;
  font-size: 50px;
  font-family: var(--secFont);
  font-weight: bold;
  margin-bottom: 47px;
}
main .h1_title small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 0;
}
main .h1_title span {
  display: block;
  padding-bottom: 22px;
}
main p {
  margin-bottom: 39px;
  font-family: var(--priFont);
  line-height: 169%;
}
main ol {
  padding-left: 20px;
  margin-bottom: 25px;
}
main ul li {
  position: relative;
}
main .bullet {
  padding: 0;
  margin-bottom: 25px;
}
main .bullet li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
main .bullet li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 3px;
  top: 9px;
  background: var(--priColor);
}
main a {
  font-weight: bold;
  color: var(--bodyColor);
  text-decoration: none;
}
main a:hover {
  color: #000;
  text-decoration: underline;
}

.intro_txt {
  text-align: center;
  width: 80%;
  margin: 0 auto 25px;
  padding: 15px;
  font-weight: bold;
  font-size: 22px;
  border-bottom: 3px solid var(--secColor);
}

/*end main*/

/*sidebar*/

.sidebar {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  top: 50%;
  max-width: 642px;
  height: 531px;
  transform: translateY(-50%);
}
.sidebar_img img {
  border-radius: 65px;
}
.sidebar-img-small img {
  border-radius: 25px;
}
.sidebar_img1 {
  position: absolute;
  right: 0;
  height: 477px;
  width: 71%;
  overflow: hidden;
}
.sidebar-img-small {
  position: absolute;
  right: 0;
  bottom: 0;
}
/*end sidebar*/

/*bottom*/
.btm1_con {
  min-height: 458px;
  padding: 91px 0 0;
}
.btm1_info {
  display: flex;
  align-items: last baseline;
  justify-content: space-between;
}
.btm1_info h2 {
}
.btm1_info h2 small {
}
.btm1-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 23px;
  justify-items: center;
  row-gap: 60px;
  position: absolute;
  top: 51%;
  flex-wrap: wrap;
  z-index: 1;
}
.btm1-card {
  box-shadow: rgba(0, 62, 155, 0.1) 0px 1px 1px 0px inset, rgba(50, 87, 93, 0) 0px 50px 100px -20px, rgba(0, 62, 155, 0.3) 0px 30px 60px -30px;
  min-height: 517px;
  position: relative;
  max-width: 326px;
  text-align: center;
  border-radius: 35px;
  background: #fff;
}
.btm1-card figure img {
  border-radius: 35px 35px 0 0;
}
.btm1-card h3 {
  font-size: 20px;
  font-family: var(--priFont);
  padding-block: 25px;
  color: var(--bodyColor);
  line-height: 140%;
  min-height: 120px;
  place-content: center;
}
.btm1_details p {
  width: 80%;
  margin: 0 auto 22px;
  line-height: 160%;
}
.btm1-card h3 small {
  display: block;
  line-height: 140%;
}
.btm1-card h3 small {
  display: block;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--secFont);
}
.btm1-card:hover {
  background: var(--secColor);
}
.btm1-card:hover p {
  color: #fff;
}
.btm1-card:hover h3 {
  color: #fff;
}
.btm1-card:hover a:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.btm1-card a:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.btm1-card a {
  width: 200px;
  background: var(--secColor);
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: auto;
}
.btm1-card:hover a {
  background: #fff;
  color: var(--secColor);
}

#bottom2 {
  padding: 0 15px;
  position: relative;
  background: var(--thirdColor);
}
.btm2_con {
  min-height: 925px;
  padding: 436px 0 38px 0;
  position: relative;
}
.btm2_info h2 {
  padding-bottom: 31px;
  line-height: 100%;
}
.btm2_info p {
  line-height: 35px;
}
.btm2_info {
  max-width: 583px;
  width: 100%;
}
.btm2_info a:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.btm2_info a {
  width: 200px;
  background: var(--secColor);
  position: absolute;
  margin: 75px 0;
}
.btm2_info:hover a {
}
.btm2_sideimage {
  position: absolute;
  right: 0;
  z-index: 1;
  width: 100%;
  max-width: 840px;
  height: 504px;
  overflow: hidden;
  bottom: 0;
}
.btm2-img-bg img {
  border-radius: 65px;
}
.btm2_img img {
}
.btm2-img-bg {
  position: absolute;
  right: 0;
}
.btm2_img {
  position: absolute;
  left: 0;
  bottom: 0;
}

#bottom3 {
  padding: 0 15px;
  background: #fff;
}
.btm3_con {
  min-height: 499px;
  text-align: center;
  padding: 90px 0;
}
.btm3_info {
  text-align: center;
}
.btm3_info h2 span {
  display: block;
  background: var(--secColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.btm3_info h2 {
  padding-bottom: 44px;
  line-height: 100%;
}
.btm3_info p {
  line-height: 35px;
  padding-bottom: 41px;
}
.btm3-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-items: center;
  row-gap: 60px;
}
.btm3-card {
  text-align: center;
  max-width: 346px;
  width: 100%;
  min-height: 352px;
  color: #fff;
  position: relative;
  background: red;
}
.btm3-card figure {
  background: #26235c;
  width: 84px;
  height: 84px;
  place-content: center;
  margin: 0 auto;
}
.btm3-card h3 {
  font-size: 23px;
  font-family: var(--secFont);
  padding-block: 25px;
}
.btm3-card h3 span {
  display: block;
  line-height: 140%;
}
.btm3-card .btn1 {
  max-width: 186px;
  height: 50px;
  line-height: 50px;
  background: none;
  border: 1px solid #c50808;
  margin: 25px auto;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-transform: uppercase;
}
.btm3-card .btn1:hover {
  transform: scale(0.9);
}

.disclaimer p {
  text-align: left;
}
.captcha_disclaimer {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  position: relative;
  align-items: center;
}
.captcha_submit {
  display: flex;
  column-gap: 15px;
  width: 100%;
  justify-content: end;
}
.disclaimer {
  width: 100%;
}
.disclaimer a:hover {
  text-decoration: underline;
}
.btmform {
}
.btmform form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 25px;
}
.btmform form > * {
  font-size: 20px;
  font-family: var(--priFont);
}
.btmform form .form_fullname,
.btmform form .form_email {
  border: 1px solid #b2b2b2;
  width: 30%;
  min-height: 60px;
  padding: 0 20px;
  color: #b2b2b2;
  background: #fff;
  font-size: 18px;
  border-radius: 50px;
}
.btmform form .txtmessage {
  border: 1px solid #b2b2b2;
  width: 37%;
  min-height: 60px;
  padding: 20px 0 0 20px;
  color: #b2b2b2;
  background: #fff;
  font-size: 18px;
  border-radius: 50px;
}

.btmform form .form_btn {
  border: none;
  width: 200px;
}
.btmform form .form_btn .btmform form .form_btn:after {
}
.btmform form .form_btn::after {
  position: absolute;
  right: 28px;
  background: url(images/arrow.png) no-repeat 50% center, #fff;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

#bottom4 {
  padding: 0;
}
.btm4_con {
  min-height: 521px;
  padding: 0;
}
.map_con {
  max-width: 1920px;
  width: 100%;
}
.map_con iframe {
  height: 521px;
  width: 1920px;
}
#bottom4 .wrapper {
  max-width: 1920px;
}
/*end bottom*/

/*footer*/
footer {
}
.footer_main {
}
.footer_top {
  background: #fff;
  padding: 0 15px;
  display: none;
}
.footer_top_con {
  min-height: 0;
  padding: 0;
  margin-top: -251px;
  background: var(--priColor);
  z-index: 1;
  position: relative;
  border-radius: 65px;
}
.footer_holder {
  display: flex;
  justify-content: space-between;
  padding: 51px 144px 51px 51px;
  border-radius: 65px;
}

.contact_info {
  max-width: 369px;
}
.contact_info h2 small {
  display: block;
}
.contact_info h2 span {
  display: block;
  font-weight: bold;
  margin-top: 25px;
  letter-spacing: -3px;
}
.contact_info ul {
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact_info ul li {
  line-height: 33px;
  display: block;
  vertical-align: top;
  position: relative;
  padding-top: 14px;
}
.contact_info ul li address {
  display: inline-block;
}
.contact_info ul li span {
  display: block;
}
.contact_info ul li a[href^="tel:"] {
  color: inherit;
}
.contact_info ul li a:hover {
  text-decoration: underline;
}
.contact_ul ul li:last-child {
  padding-bottom: 0;
}
.contact_details {
  color: #fff;
  max-width: 520px;
  width: 100%;
}
.contact_details h2 small {
  display: block;
}
.contact_details h2 span {
  display: block;
  font-weight: bold;
  margin-top: 25px;
  letter-spacing: -3px;
}
.contact_ul ul {
  margin: 0 0 0;
  padding: 0;
  list-style: none;
}
.contact_ul ul li {
  line-height: 33px;
  display: block;
  vertical-align: top;
  position: relative;
  padding-left: 70px;
  padding-bottom: 43px;
  color: var(--bodyColor) !important;
}
.contact_ul ul li address {
  display: inline-block;
}
.contact_ul ul li span {
  display: block;
}
.contact_ul ul li a[href^="tel:"] {
  color: inherit;
}
.contact_ul ul li a:hover {
  text-decoration: underline;
}
.contact_ul ul li:before {
  content: "";
  top: 39%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
}

.contact_info p {
  line-height: 33px;
  padding-block: 23px;
  color: var(--bodyColor) !important;
}

.footer_logo {
}
.footer_logo figure img {
  /*! border-radius: 45px; */
}
.footer_logo_con {
  max-width: 271px;
  width: 100%;
  margin-left: 70px;
}

.footer_btm {
  background: var(--priColor);
  padding: 0 15px;
  position: relative;

}

  /* border-bottom: 17px solid var(--secColor) */

.footer_btm_con {
  min-height: 400px;
  padding: 0;
  place-content: center;
}
.footer_nav {
  margin: 0;
  padding: 0;
  min-height: 90px;
  border-bottom: 1px solid #ffffff69;
  margin-bottom: 50px;
}
.footer_nav ul {
  margin: auto 0;
  padding: 0;
  text-align: center;
  list-style: none;
}
.footer_nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.footer_nav ul li a {
  display: block;
  padding: 0 72.9px 0;
  font-size: 18px;
  color: #fff;
  font-family: var(--priFont);
}
.footer_nav ul li:first-child a {
}
.footer_nav ul li:last-child a {
  /*! padding-right: 0; */
}
.footer_nav ul li a:hover,
.footer_nav ul li a:active,
.footer_nav ul li.current_page_item a {
  text-decoration: underline;
}
.footer_nav ul li:after {
  /*! content: ""; */
  width: 1px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: -3px;
  background: #fff;
  position: absolute;
}
.footer_nav ul li:last-child:after {
  display: none;
}
.footer_pp {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.copyright a:before {
  content: "\2022";
  left: -31px;
  top: 0;
  position: absolute;
}
/* .copyright a:after { content: "\2022"; right: -10px; top: 0; position: absolute; } */
.copyright {
  text-align: center;
  color: #fff;
  float: right;
  font-size: 18px;
  margin-top: -80px;
  margin-right: 70px;
  font-family: var(--priFont);
  line-height: 1.4;
}
.do-not-sell a::before {
display: none;
}
.copyrigh_text:hover {
  text-decoration: none !important;
}
.copyright a {
  margin: 0 10px 0 38px;
  position: relative;
}
.copyright a:hover {
  text-decoration: underline;
}

.copyright q {
  display: block;
  margin: 0;
}

/**Resources**/
.resources {
}
.resources a {
  display: block;
  font-weight: bold;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.resources a:hover {
  padding-left: 2px;
  text-decoration: none !important;
  color: var(--secColor);
}
.resources ul,
.resources li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.resources ul li {
  margin-bottom: 8px;
  padding: 12px;
  background: #fafdfe;
  border: 1px solid #ececec;
}
.resources ul li:before {
  content: "";
}
.resources ul li:after {
  content: "";
}
.resources ul li a span {
  font-size: 11px;
  color: #666666;
  letter-spacing: 1px;
  display: block;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/* IE 8 */
.lt-ie8 .dang-ie {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #00abdd;
}
.message {
  text-align: center;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}
.inner-message {
  position: relative;
  top: -20%;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.inner-message img {
  position: relative;
  left: 0;
}
.inner-message a.download {
  display: block;
  width: 300px;
  padding: 10px;
  color: #fff;
  margin: 2em auto;
  border: 1px solid #fff;
}
.terms {
  color: #fff;
  font-size: 13px;
  padding: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.terms a {
  color: #fff;
  font-weight: 700;
}
.lt-ie8 .protect-me {
  display: none;
}

/* Sitemap Style */
.sitemap {
  list-style-type: none;
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 3px;
  -moz-column-gap: 3px;
  column-gap: 3px;
}
.sitemap li {
  counter-increment: step-counter;
  overflow: hidden;
}
.sitemap li {
  padding: 5px 15px;
  background: #e3e3e3;
}
.sitemap li:nth-child(odd) {
  background: #f2f2f2;
}
.sitemap li a {
  display: block;
}
.sitemap li a:before {
  content: counter(step-counter) ". ";
}

/* Pages under Certain Parent Pages */
.sitemap ul {
  margin-top: 5px;
}
.sitemap ul li:nth-child(odd) {
  background: #e3e3e3;
}
.sitemap ul li:nth-child(even) {
  background: #f2f2f2;
}
.sitemap ul li {
  counter-increment: sub-counter;
}
.sitemap ul li a:before {
  content: counter(step-counter) "." counter(sub-counter) " ";
}

/* Breadcrumb Styling */
#main_area #breadcrumbs {
  display: none;
}
#breadcrumbs {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: rgb(255 255 255 / 50%);
  background: rgb(255 255 255 / 4%);
  padding: 2px 10px;
  margin: 16px auto 0;
  border-radius: 4px;
  border: none;
  width: max-content;
  max-width: 100%;
}
#breadcrumbs span .comp {
  font-weight: inherit !important;
}
#breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#breadcrumbs a {
  color: rgb(255 255 255 / 66%) !important;
  font-weight: 400 !important;
}
#breadcrumbs a:hover {
  color: var(--priColor) !important;
  text-decoration: none !important;
}
#breadcrumbs .breadcrumb_last {
  color: rgb(255 255 255 / 42%);
  cursor: default;
}
/* End Breadcrumb Styling */

/* Non-home */
.non_ban {
  position: relative;
}
.non_ban_img {
  width: 1920px;
  margin-left: 50%;
  transform: translateX(-50%);
  display: none;
}
.non_ban_img img {
  vertical-align: middle;
  height: auto;
}
.page_title {
  text-align: center;
  width: 100%;
  z-index: 2;
  position: relative;
  bottom: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
  padding: 32px 15px;
  background: var(--priColor);
  color: #fff;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_title::before {
  content: "";
  pointer-events: none;
  position: absolute;
  background: linear-gradient(0deg, rgb(61 80 109 / 90%) 0, rgb(137 171 222 / 66%) 100%), var(--priColor) url(images/thumbnails/biography-bg-img.jpg) center top / cover no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 100%;
  z-index: -1;
}
.page_title .h1_title {
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

/* Form Activation Style (Recaptcha & Prompt Message) */
.FormReq {
  box-shadow: 0 0 3px #d92800 !important;
  border: 1px solid #d92800 !important;
}
.hidden-field {
  display: none;
}
.captcha-box {
  margin-top: 20px;
}
.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}
#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -78px 0 0 0 !important;
  width: 302px !important;
  height: 76px !important;
  z-index: -999999;
  opacity: 0;
}
#error-msg {
  position: fixed;
  z-index: 9999;
  border: 1px solid;
  background: rgb(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#error-msg .message {
  border: 1px solid;
  width: 500px;
  margin: 9% auto;
  background: #fff;
  position: relative;
  padding: 188px 10px 25px 10px;
  border-radius: 20px;
  max-width: 95%;
}
#error-msg .message span:nth-child(1) {
  font-weight: bold;
  color: #ca4b4b;
  font-size: 25px;
  line-height: 20px;
}
#g-recaptcha-response .message span:nth-child(1) {
  font-weight: 900;
  color: #ca4b4b;
  font-size: 32px;
  line-height: 40px;
}
#success {
  position: fixed;
  z-index: 9999;
  background: rgb(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#recaptcha-error {
  position: fixed;
  z-index: 9999;
  border: 1px solid;
  background: rgb(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.message {
  border: 1px solid;
  width: 500px;
  margin: 9% auto;
  max-width: 95%;
  border-radius: 20px;
  padding: 188px 10px 25px 10px;
  background: #fff;
  position: relative;
}
.message span:nth-child(1) {
  font-weight: 900;
  color: #31af90;
  font-size: 26px;
  line-height: 27px;
}
.message span:nth-child(3) {
  font-size: 25px;
  line-height: 30px;
  color: #000;
}
.message span:nth-child(5) {
  line-height: 40px;
  font-size: 18px;
  color: #000;
}
.close,
.rclose,
.error-close {
  position: absolute;
  right: 24px;
  top: 10px;
  font-size: 30px;
  font-family: open sans;
  cursor: pointer;
  color: #333 !important;
}
#error-msg p,
#success .message p {
  font-size: 30px !important;
}
.fail-check::after {
  content: url("images/wrong-icon.png");
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
}
.success-check:after {
  content: url("images/success-icon.png");
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
}
#invalid-msg {
  display: none;
  background: #fcecec;
  padding: 10px;
  color: #ca4b4b;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
}
/* End Form Activation Styling */

.gt_float_switcher .gt_options {
  background: white;
}
.privacy_span {
  color: red;
  display: inline-block;
}
.privacy_list {
  padding-left: 20px;
}
.privacy_list li::marker {
  font: bold 20px/100% var(--secFont);
}
.privacy_list h2 {
  font: bold 20px/100% var(--secFont);
  margin: 30px auto 20px;
}

/* Dark Mode */
html[data-dracula-scheme="dark"] .bnr_info h2 span q,
html[data-dracula-scheme="dark"] .mid_con section span,
html[data-dracula-scheme="dark"] .btm1_info span,
html[data-dracula-scheme="dark"] .btm2_info h2 span,
html[data-dracula-scheme="dark"] .btm3_info h2 span {
  -webkit-text-fill-color: unset;
  background: none !important;
}

/* .dark-mode .logo_slide_right { filter: drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff); } 
.dark-mode .main_logo { filter: drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff)  drop-shadow(0 0 .8px #fff); }  */

/* Delete After Use */
/* body::before{ content: ''; background: url(screenshot.png) no-repeat; width: 100%; height: 100%; position: absolute; top: 0; left: 0; pointer-events: none; opacity: 0.9; } */

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  gap: 10px;
  border-radius: 50%;
}
.owl-carousel .owl-dots button.owl-dot {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
}
.owl-carousel .owl-dots button.owl-dot span {
  padding: 0;
  margin: 0;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #869791 !important;
}

/* Non Home */
.nh_title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 20px;
}
.nh_h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.main-list {
  list-style-type: disc;
  margin-left: 20px;
}
.main-list > li {
  margin-bottom: 10px;
}
.sub-list {
  list-style-type: circle;
  margin-left: 20px;
}
.grid_col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
.nh_map iframe {
  max-width: 1200px;
  width: 100%;
  height: 500px;
}
.cky-revisit-bottom-left {
  bottom: 95px !important;
  left: 15px !important;
}
.dracula-toggle-wrap.floating.position-right {
  left: 15px !important;
  width: 3% !important;
}

/* Non Home */

.publication_title,
.publication_title3,
.publication_title4 {
  text-align: center;
}
.publication_title h3,
.publication_title3 h3,
.publication_title4 h3 {
  font-size: 18px;
  margin: 0;
  font-weight: normal !important;
  padding-top: 5px;
}
.publication_title h2,
.publication_title3 h2,
.publication_title4 h2 {
  margin: 0;
  line-height: 134%;
  text-decoration: underline;
}
.publication_title,
.publication_title3,
.publication_title4 {
  margin-top: 120px;
}
.publication_title.mb-48 {
  margin: 0 0 48px;
}
.gallery_con h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.gallery_con ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
.gallery_con ul li {
  max-width: 662px;
  width: 100%;
}
.gallery_con ul li h2 {
  text-align: center;
  font-size: 20px;
}

.heading-text {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  width: 980px;
  max-width: 100%;
  margin: 0 auto 24px;
}
.heading-text.w-100 {
  width: 100%;
}
.heading-text.center {
  text-align: center;
}
.p-content {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
}
.p-content.w-100 {
  width: 100%;
}
.p-content.center {
  text-align: center;
}
.bullet.p-content.center li {
  width: max-content;
  margin-inline: auto;
}
.section {
  position: relative;
  z-index: 0;
}
.section.pt-512 {
  padding-top: 512px;
}
.section.pt-256 {
  padding-top: 256px;
}
.section.pt-128 {
  padding-top: 128px;
}
.section.pt-96 {
  padding-top: 63px;
}
.section.pt-64 {
  padding-top: 64px;
}
.section.pt-32 {
  padding-top: 25px;
}
.section.pb-512 {
  padding-bottom: 512px;
}
.section.pb-256 {
  padding-bottom: 256px;
}
.section.pb-128 {
  padding-bottom: 128px;
}
.section.pb-96 {
  padding-bottom: 63px;
  margin-left: 63px;
  margin-right: 63px;
}
.section.pb-64 {
  padding-bottom: 63px;
}
.section.pb-32 {
  padding-bottom: 55px;
}
.section.accented,
.section.accented .comp,
.section.accented .col-container .content h2,
.section.accented .heading-text {
  color: #fff !important;
}
.section.accented::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 100%;
  background: var(--secColor);
  z-index: -1;
}
.section.accented.gray,
.section.accented.gray .comp,
.section.accented.gray .col-container .content h2,
.section.accented.gray .heading-text {
  color: var(--bodyColor) !important;
}
.section.accented.gray::before {
  background: #f6f6f6;
}
.section-divider {
  position: relative;
}
.section-divider::before,
.section-divider.opaque::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 46px;
  mask: var(--curve-divider) no-repeat 100% 100%;
}
.section-divider::before {
  background: #fff;
}
.section-divider.navy-blue::before {
  background: var(--secColor);
}
.section-divider.opaque::after {
  background: rgba(62, 171, 157, 0.04);
}
.section.accented .bullet li::before {
  background: #fff;
}
.section.accented.gray .bullet li::before {
  background: var(--bodyColor);
}
.col-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 96px;
  text-align: center;
}
.col-container.row-reverse {
  flex-direction: row-reverse;
}
.col-container.top {
  align-items: flex-start;
}
.col-container .thumb {
  position: relative;
  flex-shrink: 0;
  width: 600px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.col-container .thumb img,
.col-container .thumb iframe {
  border-radius: 16px;
}
.col-container .content.full {
  width: 100%;
}
.col-container .content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 24px;
}
.col-container .content h2 small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 8px;
}
.col-container .content p {
  margin: 0;
}

.post-password-form {
  margin: 96px auto;
  width: 400px;
  max-width: 100%;
  padding: 32px;
  border-radius: 6px;
  border: 1px solid rgb(209, 213, 219);
}
.post-password-form label {
  font-size: 16px;
  color: #909090;
}
.post-password-form input[name="post_password"] {
  display: flex;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgb(209, 213, 219);
  min-height: 44px;
  padding: 6px 16px;
  font-size: 16px;
  font-family: var(--priFont);
}
.post-password-form input[name="post_password"]:focus-visible {
  border: 1px solid var(--priColor);
  outline: 1px solid var(--priColor);
}
.post-password-form input[type="submit"] {
  display: flex;
  width: 100%;
  min-height: 44px;
  background: var(--secColor);
  border-radius: 6px;
  border: none;
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  font-size: 16px;
  font-family: var(--priFont);
}
.post-password-form input[type="submit"]:hover {
  opacity: 0.8;
}
.post-password-form input[type="submit"]:active {
  opacity: 0.33;
  scale: 0.96;
}
.post-password-form p:first-child {
  position: relative;
  font-size: 16px;
  margin-bottom: 42px;
}
.post-password-form p:first-child::before {
  content: "\f00e1";
  font-family: FluentSystemIcons-Regular !important;
  font-size: 64px;
  color: var(--priColor);
  text-align: center;
  display: block;
  line-height: normal;
  margin-bottom: 24px;
}
.post-password-form p:nth-child(2) {
  margin-bottom: 0;
}

.boxlist-icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.boxlist-icon .item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 24px 24px;
  width: 442px;
  max-width: 100%;
}
.boxlist-icon .item.max-content {
  width: max-content;
}
.boxlist-icon.grow .item {
  flex-grow: 1;
  flex-shrink: 1;
}
.boxlist-icon .item .icon {
  font-family: FluentSystemIcons-Regular !important;
  font-size: 42px;
  font-weight: 400;
  line-height: normal;
  color: var(--priColor);
  user-select: none;
}
.boxlist-icon .item p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--bodyColor);
  margin: 0;
}
.boxlist-icon .item p a,
.boxlist-icon .item p .main_phone {
  font-weight: 400;
}
.boxlist-icon .item .bullet {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  color: var(--priColor);
  margin: 0;
}
.boxlist-icon .item .bullet li {
  padding-left: 18px;
}
.boxlist-icon .item .bullet li::before {
  width: 7px;
  height: 7px;
  left: 0;
  top: 8px;
}

body .uwy.userway_p2 .userway_buttons_wrapper {top: unset !important; right: unset !important; bottom: 215px !important; transform: none !important; left: 34px !important; }
