@charset "UTF-8";
/*
Theme Name: HansIT
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: At HansIT, we are driven by innovation and committed to delivering impactful, customer focused solutions for your ongoing success.
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 0802.79
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: -

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1â€“H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */
/* Categories 01 to 03 are the basics. */
@import url(assets/css/bootstrap.min.css);
@import url(assets/css/bootstrap-icons.min.css);
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --c1: #0a0a0a;
  --c2: #ffffff;
  --c3: #273f4f;
  --f1: "Lato", sans-serif;
  --f2: "PT Serif", sans-serif;
  --f3: "bootstrap-icons";
}

.post-navigation {
  display: none !important;
}

.custom-post-navigation .post-navigation {
  display: block !important;
}
.custom-post-navigation .post-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

body {
  font: 400 16px/24px var(--f1);
  color: var(--c1);
}
body.home .preloader {
  display: flex;
}
body.admin-bar header {
  top: 32px;
}
body .pagination:empty {
  display: none;
}
body .pagination {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0;
  padding: 0;
}
body .pagination .page-numbers {
  width: 45px;
  height: 45px;
  background-color: #ebebeb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 16px/20px var(--f1);
  color: var(--c1);
  text-decoration: none;
  position: relative;
}
body .pagination .page-numbers:hover {
  background-color: var(--c3);
  color: var(--c2);
}
body .pagination .page-numbers.dots {
  background: none;
  pointer-events: none;
  color: var(--c1);
}
body .pagination .page-numbers.current {
  background: var(--c3);
  color: var(--c2);
}
body .pagination .page-numbers.prev {
  font-size: 0;
}
body .pagination .page-numbers.prev::before {
  content: "\f284";
  position: absolute;
  font: 500 16px "bootstrap-icons";
}
body .pagination .page-numbers.prev::before {
  content: "\f284";
}
body .pagination .page-numbers.next {
  font-size: 0;
}
body .pagination .page-numbers.next::before {
  content: "\f284";
  position: absolute;
  font: 500 16px "bootstrap-icons";
}
body .pagination .page-numbers.next::before {
  content: "\f285";
}
body.pageload-body {
  overflow: hidden;
}
body.fixed-bar header {
  position: fixed;
  background-color: var(--c2);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
body.fixed-bar header .navbar .container {
  border: 0;
  background: none;
  padding: 0 15px;
  box-shadow: none;
}

a, .btn, button {
  transition: 0.3s linear;
}

.mb24 {
  margin-bottom: 24px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt30 {
  padding-top: 30px !important;
}

figure {
  margin: 0 !important;
}

/* HTML: <div class="loader"></div> */
.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  background-color: var(--c2);
  z-index: 999999;
}
.preloader img {
  width: 200px;
}
.preloader .loader {
  --r1: 154%;
  --r2: 68.5%;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, var(--c3) 80%), radial-gradient(var(--r1) var(--r2) at bottom, var(--c3) 79.5%, rgba(0, 0, 0, 0) 80%), radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, var(--c3) 80%), #ccc;
  background-size: 50.5% 220%;
  background-position: -100% 0%, 0% 0%, 100% 0%;
  background-repeat: no-repeat;
  animation: l9 2s infinite linear;
}

@keyframes l9 {
  33% {
    background-position: 0% 33%, 100% 33%, 200% 33%;
  }
  66% {
    background-position: -100% 66%, 0% 66%, 100% 66%;
  }
  100% {
    background-position: 0% 100%, 100% 100%, 200% 100%;
  }
}
.btn-theme {
  border: 0;
  padding: 0;
}
.btn-theme .wp-block-button__link {
  min-width: 100px;
  font: 400 16px var(--f1);
  padding: 12px 24px;
  background-color: var(--c3) !important;
  color: var(--c2) !important;
  border-radius: 40px;
}
.btn-theme .wp-block-button__link.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
.btn-theme .wp-block-button__link.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
.btn-theme .wp-block-button__link .link_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 22px;
  transition: 0.3s linear;
}
.btn-theme .wp-block-button__link .link_wrapper .link_text {
  transition: 0.3s linear;
}
.btn-theme .wp-block-button__link .link_wrapper .link_text.second {
  transform: translateY(40%);
  color: var(--c3);
}
.btn-theme .wp-block-button__link:hover .link_wrapper .link_text {
  transform: translateY(-100%) !important;
  color: var(--c3);
}
.btn-theme .wp-block-button__link .link_wrapper .link_text {
  color: var(--c2) !important;
}

.btn-white {
  border: 0;
  padding: 0;
}
.btn-white .wp-block-button__link {
  min-width: 100px;
  font: 400 16px var(--f1);
  padding: 14px 24px;
  background-color: #ebebeb !important;
  color: var(--c1) !important;
  border-radius: 40px;
}
.btn-white .wp-block-button__link.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
.btn-white .wp-block-button__link.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
.btn-white .wp-block-button__link .link_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 22px;
  transition: 0.3s linear;
}
.btn-white .wp-block-button__link .link_wrapper .link_text {
  transition: 0.3s linear;
}
.btn-white .wp-block-button__link .link_wrapper .link_text.second {
  transform: translateY(40%);
  color: var(--c3);
}
.btn-white .wp-block-button__link:hover .link_wrapper .link_text {
  transform: translateY(-100%) !important;
  color: var(--c3);
}
.btn-white .wp-block-button__link .link_wrapper .link_text {
  color: var(--c1) !important;
}

.list-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list-custom li {
  position: relative;
  padding: 0 0 0 30px;
}
.list-custom li::before {
  content: "\f633";
  font: 500 13px var(--f3);
  position: absolute;
  top: 7px;
  left: 3px;
  color: var(--c2);
  z-index: 99;
}
.list-custom li::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--c3);
  border-radius: 25px;
  position: absolute;
  top: 3px;
  left: 0;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 99999;
}
header .navbar {
  padding: 8px;
}
header .navbar .container {
  justify-content: space-between;
  padding: 8px 18px;
  border-radius: 56px;
  background-color: #f7f7f7;
  border: 1px solid #ebebeb;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
header .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
header .navbar .navbar-brand img {
  height: 25px;
}
header .navbar .navbar-collapse {
  justify-content: space-between;
}
header .navbar .navbar-collapse .navbar-flex {
  margin: 0 0 0 50px;
}
header .navbar .navbar-collapse .navbar-flex .navbar-nav .nav-item:nth-last-of-type(1), header .navbar .navbar-collapse .navbar-flex .navbar-nav .nav-item:nth-last-of-type(2) {
  display: none;
}
header .navbar .navbar-collapse .navbar-nav {
  gap: 35px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font: 400 16px var(--f1);
  color: var(--c1);
  padding: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .link_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 22px;
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .link_wrapper .link_text {
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .link_wrapper .link_text.second {
  transform: translateY(40%);
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .link_wrapper .link_text {
  transform: translateY(-100%) !important;
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active .link_wrapper .link_text {
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn {
  padding: 10px 24px;
  min-width: auto;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white {
  font: 400 16px var(--f1);
  background-color: #ebebeb !important;
  color: var(--c1) !important;
  border-radius: 40px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white .link_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 22px;
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white .link_wrapper .link_text {
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white .link_wrapper .link_text.second {
  transform: translateY(40%);
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white:hover .link_wrapper .link_text {
  transform: translateY(-100%) !important;
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-white .link_wrapper .link_text {
  color: var(--c1) !important;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme {
  font: 400 16px var(--f1);
  background-color: var(--c3) !important;
  color: var(--c2) !important;
  border-radius: 40px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme .link_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 22px;
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme .link_wrapper .link_text {
  transition: 0.3s linear;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme .link_wrapper .link_text.second {
  transform: translateY(40%);
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme:hover .link_wrapper .link_text {
  transform: translateY(-100%) !important;
  color: var(--c3);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.btn-theme .link_wrapper .link_text {
  color: var(--c2) !important;
}
header .navbar .navbar-collapse .header-right .navbar-nav {
  gap: 20px;
}

footer {
  padding: 80px 0 0;
}
footer .logo img {
  height: 35px;
  margin: 0 0 20px;
}
footer .logo p {
  color: #4d4d4d;
  margin: 0;
}
footer .logo ul {
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
}
footer .logo ul li a {
  font-size: 20px;
  color: var(--c1);
}
footer .logo ul li a:hover {
  color: var(--c3);
}
footer article h5 {
  font: 700 16px var(--f1);
  color: #4d4d4d;
  margin: 0 0 20px;
}
footer article ul {
  margin: 0;
}
footer article ul li a.nav-link {
  font: 400 14px var(--f1);
  text-decoration: none;
  color: var(--c1);
}
footer article ul li a.nav-link:hover {
  color: var(--c3);
}
footer article ul li + li {
  margin: 15px 0 0;
}
footer .footer-bottom {
  border-top: 1px solid #e6e6e6;
  font: 400 14px var(--f1);
  color: var(--c1);
  padding: 30px 0;
  margin: 40px 0 0;
  text-align: center;
}

section.dp {
  padding: 80px 0;
}
section.dp .shead {
  max-width: 800px;
  margin: 0 auto 50px;
}
section.dp .shead.sdesign {
  max-width: 900px;
}
section.dp .shead.sdesign .ul {
  max-width: 900px;
}
section.dp .shead h3 {
  font: 400 48px/58px var(--f2);
  margin: 0 0 24px;
}
section.dp .shead p {
  font: 400 16px/24px var(--f1);
  margin: 0;
}
section.graybg {
  background-color: #ebebeb;
}
section.darkbg {
  background: url(assets/images/bg1.png) no-repeat 0 0/cover;
  text-align: center;
  color: var(--c2);
  position: relative;
}
section.darkbg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
section.darkbg .container {
  position: relative;
}
section.darkbg article {
  max-width: 1000px;
  margin: auto;
}
section.darkbg article h3 {
  font: 400 48px/58px var(--f2);
  margin: 0 0 20px;
}
section.darkbg article p {
  max-width: 600px;
  margin: 0 auto 30px;
}
section.darkbg.staybg article p {
  max-width: 800px;
}
section.darkbg .btn-sec {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner {
  padding: 125px 0 30px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  position: relative;
}
section.banner .circle {
  position: absolute;
  bottom: -30vh;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 130vw;
  height: 100vw;
  background: radial-gradient(circle at 25% 30%, rgba(39, 63, 79, 0.18) 0%, transparent 50%), radial-gradient(circle at 75% 70%, rgba(39, 63, 79, 0.12) 0%, transparent 55%), linear-gradient(135deg, #f2f6f9 0%, #e9f0f5 100%);
  border-radius: 50% 50% 0 0;
  will-change: clip-path, transform;
  /* Smooth initial half circle */
  clip-path: circle(45% at 50% 100%);
}
section.banner .banner-img {
  margin: 40px 0 0;
}
section.banner .banner-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
}
section.banner .banner-caption {
  max-width: 800px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 9;
}
section.banner .banner-caption .ver {
  max-width: 380px;
  padding: 8px;
  background-color: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
}
section.banner .banner-caption .ver .bi {
  font-size: 20px;
}
section.banner .banner-caption h1 {
  font: 400 56px/65px var(--f2);
  color: var(--c1);
  margin: 0;
}
section.banner .banner-caption p {
  font: 400 18px/26px var(--f1);
  margin: 25px 80px;
  color: #4d4d4d;
}
section.banner .banner-caption .btn-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
section.banner.ibanner {
  height: 100vh;
  display: flex;
  align-items: center;
}
section.banner.ibanner .banner-caption {
  max-width: none;
  text-align: left;
  margin: 0 75px 0 0;
}
section.banner.ibanner .banner-caption p {
  margin: 25px 0 0;
}
section.banner.ibanner .isec {
  overflow: hidden;
  width: 50%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
}
section.banner.ibanner .isec img {
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0% 0% 0% auto;
  object-fit: cover;
  object-position: 0px -60px;
  transition: 0.3s linear;
}
section.banner.ibanner .isec img:hover {
  transform: scale(1.1);
}
section.banner.hbanner .banner-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section.s1 a {
  color: var(--c3);
}
section.s1 strong {
  font-weight: 600;
}
section.s1 #legalHead {
  display: none;
}
section.s1 article h3 {
  font: 500 24px/34px var(--f2);
}
section.s1 article p {
  font-size: 16px;
}
section.s1 article ul {
  padding: 0 0 0 15px;
}
section.s1 article ul li {
  font-size: 16px;
}
section.s1 article ul li + li {
  margin: 8px 0 0;
}
section.s1 article {
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
section.s1 article figure {
  height: 100%;
}
section.s1 article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}
section.s1 article figure img:hover {
  transform: scale(1.1);
}
section.s1 article.csec {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 16px;
  color: var(--c2);
}
section.s1 article.csec h5 {
  font: 400 48px/60px var(--f1);
}
section.s1 article.csec h5 strong {
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: 400;
}
section.s1 article.csec p {
  margin: 0;
}
section.s1 article.csec.blkbg {
  background-color: var(--c1);
}
section.s1 article.csec.themebg {
  background-color: var(--c3);
}
section.s1 article.csec.bg {
  background: #ebebeb url(assets/images/bg.png) 0 0;
  background-size: 15px;
  justify-content: center;
  gap: 25px;
}
section.s1 article.csec.bg * {
  color: #4d4d4d;
}
section.s1 article.csec.bg p {
  font: 400 18px/27px var(--f1);
}
section.s1 article.csec.bg .testi {
  font: 600 16px/24px var(--f1);
  display: flex;
  gap: 16px;
}
section.s1 article.csec.bg .testi strong {
  font-weight: 400;
}
section.s1.is1 article {
  min-height: 340px;
}
section.s1.is1 article h5 {
  line-height: 55px;
}
section.s2 .row > div:nth-last-of-type(1) article, section.s2 .row > div:nth-last-of-type(2) article, section.s2 .row > div:nth-last-of-type(3) article {
  margin: 0;
}
section.s2 article {
  border-radius: 16px;
  overflow: hidden;
  background-color: #f3f3f3;
  margin: 0 0 24px;
  padding: 20px;
}
section.s2 article .isec {
  overflow: hidden;
  border-radius: 16px;
}
section.s2 article .isec img {
  width: calc(100% + 40px);
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.3s linear;
  transform: translate3d(-30px, 0, 0) scale(1.12);
}
section.s2 article .isec img:hover {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
section.s2 article .csec {
  margin: 15px 0 0;
}
section.s2 article .csec h4 {
  font: 600 20px/30px var(--f1);
}
section.s2 article .csec p {
  margin: 0;
  /*height: 48px;
  overflow: hidden;*/
}
section.s3 {
  min-height: 550px;
  display: flex;
  align-items: center;
}
section.s3 .carousel {
  width: calc(100% - 300px);
  margin: auto;
}
section.s3 .carousel .carousel-item .para {
  font: 400 46px/56px var(--f1);
  color: var(--c2);
  text-align: center;
}
section.s3 .carousel .carousel-item .media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--c2);
  margin: 30px 0 0;
  text-align: left;
}
section.s3 .carousel .carousel-item .media .media-left img {
  width: 56px;
  height: 56px;
  border-radius: 56px;
}
section.s3 .carousel .carousel-item .media .media-body h5 {
  font: 600 16px/24px var(--f1);
  margin: 0;
}
section.s3 .carousel .carousel-item .media .media-body p {
  margin: 0;
}
section.s3 .carousel .carousel-control-prev,
section.s3 .carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background-color: var(--c2);
  color: var(--c1);
  border-radius: 48px;
  opacity: 1;
  font-size: 19px;
  top: calc(50% - 24px);
}
section.s3 .carousel .carousel-control-prev {
  left: -150px;
}
section.s3 .carousel .carousel-control-next {
  right: -150px;
}
section.s4 .ul {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  display: flex;
  gap: 50px;
  text-align: left;
  flex-wrap: wrap;
}
section.s4 .ul > div {
  max-width: 180px;
}
section.s4 .ul > div img {
  width: 50px;
}
section.s4 .ul > div h4 {
  font: 600 16px/24px var(--f1);
  margin: 10px 0 0;
}
section.s4 .isec {
  width: calc(100% - 200px);
  margin: auto;
  background-color: var(--c3);
  padding: 64px 64px 0;
  border-radius: 16px;
}
section.s4 .isec img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
section.s5 article {
  position: relative;
}
section.s5 article .isec {
  overflow: hidden;
  border-radius: 16px;
}
section.s5 article .isec img {
  width: calc(100% + 40px);
  height: 270px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.3s linear;
  transform: scale(1.12);
}
section.s5 article:hover .isec img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
section.s5 article .csec {
  margin: 20px 0 0;
}
section.s5 article .csec .catddate {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--c2);
  font: 400 13px/20px var(--f1);
  margin: 0 0 15px;
}
section.s5 article .csec .catddate h4 {
  padding: 4px 12px;
  border-radius: 16px;
  background-color: var(--c3);
  font: 400 13px/20px var(--f1);
  margin: 0;
}
section.s5 article .csec .catddate span {
  font: 600 14px/21px var(--f1);
  color: var(--c1);
}
section.s5 article .csec h5 {
  font: 400 24px/33px var(--f2);
}
section.s5 article .csec .readmore {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0;
}
section.s7 article {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
}
section.s7 article .isec {
  height: 100%;
}
section.s7 article .isec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.s7 article .csec {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 12px;
  border-radius: 16px;
  color: var(--c1);
  min-height: 134px;
}
section.s7 article .csec h5 {
  font: 600 20px/30px var(--f1);
}
section.s7 article .csec p {
  margin: 0;
}
section.s8 .shead {
  max-width: 800px;
  margin: auto;
}
section.s8 ul {
  max-width: 800px;
  margin: 50px auto;
  display: flex;
  gap: 50px;
  text-align: left;
}
section.s8 ul li img {
  width: 50px;
  filter: brightness(0) invert(1);
}
section.s8 ul li h4 {
  font: 600 16px/24px var(--f1);
  margin: 10px 0 0;
}
section.s8 .isec img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 50px;
}
section.s8 .isec article {
  display: flex;
  gap: 20px;
  text-align: left;
}
section.s8 .isec article h5 {
  font: 600 48px/58px var(--f1);
}
section.s8 .isec article p {
  margin: 0;
}
section.s9 .shead {
  max-width: none;
  margin: 0;
}
section.s9 .shead p + p {
  margin: 15px 0 0;
}
section.s10 article {
  position: relative;
  height: 385px;
  margin: 0 0 63px;
}
section.s10 article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
section.s10 article .csec {
  background-color: #ebebeb;
  border-radius: 16px;
  padding: 15px 25px;
  position: absolute;
  bottom: -39px;
  left: calc(50% - 144.28px);
  min-width: 275px;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
section.s10 article .csec h4 {
  font: 700 16px/24px var(--f1);
  margin: 0;
}
section.s10 article .csec p {
  margin: 0;
}
section.s10 article .csec .linkedin {
  font-size: 25px;
  color: var(--c1);
}
section.s11 .container {
  max-width: 1200px;
}
section.s11 article {
  background-color: #ebebeb;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 32px;
}
section.s11 article h4 {
  font: 500 20px/28px var(--f1);
  color: #4d4d4d;
  padding: 0 0 25px;
  margin: 0 0 25px;
  border-bottom: 1px solid #b9b9b9;
}
section.s11 article .getstarted {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #b9b9b9;
}
section.s11 article .getstarted h5 {
  font: 400 56px/67px var(--f1);
  color: var(--c1);
}
section.s11 article .getstarted h5 em {
  font-style: normal;
}
section.s11 article .getstarted h5 span {
  font-size: 25px;
  line-height: 30px;
  display: inline-block;
  margin: 0 0 0 14px;
}
section.s11 article .getstarted p {
  font-size: 16px;
  color: #4d4d4d;
  margin: 0 0 30px;
}
section.s11 article .getstarted .btn {
  width: 100%;
}
section.s11 article ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 225px;
}
section.s11 article ul li {
  position: relative;
  font: 400 16px/24px var(--f1);
  color: #4d4d4d;
  padding: 0 0 0 35px;
}
section.s11 article ul li::before {
  content: "\f633";
  font: 500 17px var(--f3);
  position: absolute;
  top: 4px;
  left: 4px;
  color: var(--c2);
  z-index: 99;
}
section.s11 article ul li::after {
  content: "";
  width: 25px;
  height: 25px;
  background-color: var(--c3);
  border-radius: 25px;
  position: absolute;
  top: 1px;
  left: 0;
}
section.s11 article.darkbg {
  background: url(assets/images/bg1.png) no-repeat 0 0/cover;
}
section.s11 article.darkbg h4, section.s11 article.darkbg .getstarted h5, section.s11 article.darkbg .getstarted p, section.s11 article.darkbg ul li {
  color: var(--c2);
}
section.s11 article.darkbg .btn-theme .wp-block-button__link {
  background-color: #ebebeb !important;
  color: var(--c1) !important;
}
section.s11 article.darkbg .btn-theme .wp-block-button__link .link_wrapper .link_text {
  color: var(--c1) !important;
}
section.s12 .shead {
  max-width: 500px;
  margin-left: 0;
}
section.s12 .shead h3 {
  font-size: 35px;
  line-height: 45px;
}
section.s12 .form-section form {
  max-width: 520px;
}
section.s12 .form-section form .form-group {
  margin: 0 0 25px;
}
section.s12 .form-section form .form-group .icon-input {
  position: relative;
}
section.s12 .form-section form .form-group .icon-input::before {
  content: "";
  background: url(assets/images/user.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  position: absolute;
  top: 11px;
  right: 0;
  z-index: 9;
}
section.s12 .form-section form .form-group .icon-input.email::before {
  background: url(assets/images/email.svg) no-repeat;
  background-size: 22px;
}
section.s12 .form-section form .form-group .icon-input.phone::before {
  background: url(assets/images/phone.svg) no-repeat;
  background-size: 22px;
}
section.s12 .form-section form .form-group .icon-input.msg::before {
  background: url(assets/images/msg.svg) no-repeat;
  background-size: 22px;
}
section.s12 .form-section form .form-group .form-control {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border-radius: 0;
  padding: 10px 0;
}
section.s12 .form-section form .form-group textarea.form-control {
  height: 120px;
  resize: none;
}
section.s12 .form-section form .form-btn .btn {
  width: 100%;
  max-width: 240px;
}
section.s12 .contact-info .media {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
section.s12 .contact-info .media .media-left .bi {
  font-size: 27px;
  color: var(--c3);
  position: relative;
  top: 12px;
}
section.s12 .contact-info .media .media-body p {
  font-size: 16px;
  margin: 0 0 5px;
}
section.s12 .contact-info .media .media-body h5, section.s12 .contact-info .media .media-body h5 a {
  font-size: 20px;
  font-weight: 600;
  color: var(--c1);
  text-decoration: none;
}
section.s12 .contact-info .media + .media {
  margin: 20px 0 0;
}
section.s13:hover .isec::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
section.s13:hover .isec img {
  transform: scale(1.1);
}
section.s13 .isec {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
section.s13 .isec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  z-index: 9999;
}
section.s13 .isec img {
  width: 100%;
  border-radius: 16px;
  transition: 0.3s linear;
}
section.s14 .row {
  margin: 0;
}
section.s14 .row > div {
  padding: 0;
}
section.s14 .isec {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  height: 670px !important;
}
section.s14 .isec img {
  width: 300px !important;
  object-fit: cover;
  height: 640px !important;
  transition: 0.3s linear;
}
section.s14 .isec figure:first-child img {
  height: 500px !important;
}
section.s14 .csec {
  background: url(assets/images/bg1.png) no-repeat 0 0/cover;
  color: var(--c2);
  position: relative;
  width: 100%;
  padding: 100px 80px;
  margin: 0 0 0 -18px;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
section.s14 .csec::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
section.s14 .csec .shead {
  position: relative;
}
section.s14.csecdiv .csec {
  margin: 0 -18px 0 0;
  border-radius: 16px 0 0 16px;
}
section.s14.csecdiv .isec figure img {
  transition: 0.3s linear;
  width: 300px !important;
}
section.s14.csecdiv .isec figure:first-child img {
  height: 650px !important;
}
section.s14.csecdiv .isec figure:last-child img {
  height: 500px !important;
}
section.s14.csecdiv:hover .isec figure img {
  transition: 0.3s linear;
}
section.s14.csecdiv:hover .isec figure:first-child img {
  height: 670px !important;
}
section.s14.csecdiv:hover .isec figure:last-child img {
  height: 550px !important;
}
section.s14:hover .isec figure:first-child img {
  height: 550px !important;
}
section.s14:hover .isec figure:last-child img {
  height: 670px !important;
}
section.s15 .shead {
  display: block;
  margin: 0 0 50px;
}
section.s15:hover .isec::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
section.s15:hover .isec img {
  transform: scale(1.1);
}
section.s15 .isec {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
section.s15 .isec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  z-index: 9999;
}
section.s15 .isec img {
  width: 100%;
  border-radius: 16px;
  transition: 0.3s linear;
}
section.s15 .csec {
  margin: 0 0 0 60px;
}
section.s15 .csec h4 {
  font: 400 35px/45px var(--f2);
  margin: 0 0 50px;
}
section.s15 .csec p {
  font-size: 16px;
  margin: 0;
}
section.lbanner {
  padding: 150px 0 30px;
}
section.legalsec .banner {
  display: none !important;
}
section.legalsec aside {
  max-width: calc(100% - 30px);
  position: sticky;
  top: 70px;
}
section.legalsec aside ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  top: 50px;
}
section.legalsec aside ul li a {
  background-color: #f7f6f8;
  font: 500 15px/24px var(--f1);
  color: var(--c3);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  display: block;
  position: relative;
  padding: 12px 20px;
  border: 1px solid #e2e2e2;
  border-radius: 30px;
}
section.legalsec aside ul li a.active, section.legalsec aside ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}
section.legalsec aside ul li a {
  /*&::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background-color: var(--c3);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
  }
  &.active,
  &:hover {
      color: var(--c3);
      &::after {
          transform: scaleX(1);
      }
  }*/
}
section.legalsec .legal-content {
  background-color: #f7f6f8;
  padding: 30px;
  border-radius: 16px;
}
section.legalsec .legal-content a {
  color: var(--c3);
}
section.legalsec .legal-content strong {
  font-weight: 600;
}
section.legalsec .legal-content #legalHead {
  display: none;
}
section.legalsec .legal-content article h3 {
  font: 500 24px/34px var(--f2);
}
section.legalsec .legal-content article p {
  font-size: 16px;
}
section.legalsec .legal-content article ul {
  padding: 0 0 0 15px;
}
section.legalsec .legal-content article ul li {
  font-size: 16px;
}
section.legalsec .legal-content article ul li + li {
  margin: 8px 0 0;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  section.s14 .isec img {
    width: calc(50% - 24px);
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  section.s14 .isec img {
    width: calc(50% - 24px);
  }
  section.s14.csecdiv .isec {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  header .navbar .navbar-toggler {
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  header .navbar .navbar-toggler .navbar-toggler-icon {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  header .navbar .navbar-collapse .navbar-flex {
    padding: 25px 0;
    margin: 0;
  }
  header .navbar .navbar-collapse .navbar-nav {
    gap: 25px;
  }
  footer {
    padding: 80px 0 0;
  }
  footer .logo {
    margin: 0 0 24px;
  }
  footer article {
    margin: 0 0 24px;
  }
  footer article h5 {
    font-size: 20px;
  }
  section.dp .shead h3 {
    font-size: 35px;
    line-height: 45px;
  }
  section.s4 .isec {
    width: 100%;
    padding: 15px 15px 0;
  }
  section.s4 ul {
    gap: 0;
  }
  section.s4 ul li {
    flex: 0 0 auto;
    width: 50%;
    padding: 15px;
  }
  section.banner .banner-caption .ver {
    font-size: 14px;
  }
  section.banner .banner-caption h1 {
    font-size: 40px;
    line-height: 50px;
  }
  section.banner .banner-caption p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  section.banner.ibanner .row > div {
    width: 100%;
  }
  section.banner.ibanner .isec img {
    position: static;
    width: 100%;
    height: 250px;
    border-radius: 16px;
  }
  section.banner.ibanner {
    height: auto;
    padding-top: 90px;
  }
  section.banner.ibanner .banner-caption {
    margin: 0;
  }
  section.banner.ibanner .banner-caption p {
    font-size: 16px;
  }
  section.banner.ibanner .isec {
    margin: 24px 0 0;
  }
  section.s1 .row > div:nth-of-type(1), section.s1 .row > div:nth-of-type(3), section.s1 .row > div:nth-of-type(6) {
    display: none;
  }
  section.s1 article.csec {
    height: auto;
  }
  section.s1 article.csec.themebg {
    margin: 24px 0;
  }
  section.s2 article {
    margin: 0 0 24px !important;
  }
  section.s3 .carousel {
    width: 100%;
  }
  section.s3 .carousel .carousel-item .para {
    font-size: 25px;
    line-height: 40px;
  }
  section.s3 .carousel .carousel-control-prev {
    left: 0;
  }
  section.s3 .carousel .carousel-control-next {
    right: 0;
  }
  section.s14 {
    padding: 0;
  }
  section.s14 .row {
    justify-content: center;
  }
  section.s14 .row > div {
    width: 100%;
  }
  section.s14 .row > div:first-child {
    display: none;
  }
  section.s14 .csec {
    margin: 0 !important;
    border-radius: 16px !important;
    padding: 30px;
  }
  section.s14.csecdiv .csec {
    margin: -20px 0 20px !important;
  }
  section.s14.csecdiv .row > div:first-child {
    display: block;
  }
  section.s14.csecdiv .row > div:last-child {
    display: none;
  }
  section.s15 .csec {
    margin: 24px 0 0 0;
  }
  section.s15 .csec h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 24px;
  }
  section.s11 article {
    margin: 0 0 24px;
  }
  section.s12 .contact-info {
    margin: 35px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  section.banner.ibanner {
    padding: 65px 0 0;
  }
  section.banner.ibanner .row > div {
    width: 50%;
  }
  section.banner.ibanner .isec {
    margin: 0;
  }
  section.banner.ibanner .isec img {
    position: static;
    height: calc(100vh - 300px);
    border-radius: 0;
    object-position: initial;
  }
  section.s14 {
    padding: 60px 0 !important;
  }
  section.s14 .row > div {
    display: block !important;
  }
  section.s14 .isec img {
    width: calc(50% - 15px);
  }
  section.s14 .isec figure:first-child img {
    height: 450px !important;
  }
  section.s14.csecdiv .isec {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 576px) and (max-width: 992px) {
  section.s1 .row > div article {
    margin: 0 !important;
    min-height: 268px !important;
  }
  section.s1 .row > div:nth-of-type(2), section.s1 .row > div:nth-of-type(5) {
    width: 50%;
  }
  section.s1 .row > div:nth-of-type(2) {
    order: 1;
  }
  section.s1 .row > div:nth-of-type(5) {
    order: 2;
  }
  section.s1 .row > div:nth-of-type(4) {
    width: 100%;
    order: 3;
  }
  section.s2 .row > div {
    width: 50%;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  section.s11 .row > div {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
