@charset "UTF-8";
/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Accessibility
 * 3.0 - Globals
 * 4.0 - Alignments
 * 5.0 - Clearings
 * 6.0 - Captions
 * 7.0 - Posts and pages
 * 8.0 - Galleries
 * 9.0 - Unit Test
 * 10.0 - Guterberg 
 * 11.0 - Guterberg Style
 * 12.0 - Block Color Palette Colors
 * 13.0 - Sections
   * 13.1 - Breadcrumb
   * 13.2 - Comments
   * 13.3 - Widgets
   * 13.4 - Nav Bar
   * 13.5 - Info Bar
   * 13.6 - Header
   * 13.7 - Header Bottom Area
   * 13.8 - Footer Area
   * 13.9 - Error 404 Area
   * 13.10 - Why us Area
   * 13.11 - Highly Skilled Area
   * 13.12 - Call TO Action Area
   * 13.13 - Testimonial Area
   * 13.14 - Top Lawyer Style 02
   * 13.15 - Counterup Area
   * 13.16 - Case Category Area
   * 13.17 - Legal Support Area
   * 13.18 - Practice Details Area
   * 13.19 - Attorney Details Area
* 14.0 - Elements
  * 14.1 - Preloader
  * 14.2 - Preloader
  * 14.3 - Button
  * 14.4 - Blog
  * 14.5 - Accordion
  * 14.6 - Contact Info Item
  * 14.7 - Quote block with sign
  * 14.8 - Counterup Item
  * 14.9 - Video With Image
  * 14.10 - Video Play Button
  * 14.11 - Why Us Item
  * 14.12 - Section Title
  * 14.13 - What we cover item
  * 14.14 - Icon Box Item
  * 14.15 - Testimonial Item
  * 14.16 - Case Categories Item
  * 14.17 - Quote With Image
  * 14.18 - Price Plan Item
  * 14.19 - Back Top
*/
/*-----------------
    # Typography
-----------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #3249B3;
  --main-color-two: #A37D3D;
  --secondary-color: #19232D;
  --heading-color: #19232D;
  --paragraph-color: #4B4B4B;
  --heading-font: "Jost", serif;
  --body-font: "Poppins", sans-serif;
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 15px;
}

h1 {
  font-size: 48px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 24px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h5 {
  font-size: 16px;
  line-height: 1.0833333333;
}

h6 {
  font-size: 14px;
  line-height: 1.0833333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.75;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  margin-top: 15px;
  background-color: whitesmoke;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f5f5f5), color-stop(50%, #e6e6e6));
  background-image: linear-gradient(#f5f5f5 50%, #e6e6e6 50%);
  background-size: 38px 38px;
  border: 1px solid #d4d4d4;
  display: block;
  line-height: 19px;
  margin-bottom: 20px;
  overflow: visible;
  overflow-y: hidden;
  padding: 0 0 0 4px;
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

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

ol:not([class]) {
  margin-bottom: 20px;
}

ol:not([class]) ol {
  margin-bottom: 0;
}

ul ol:not([class]) {
  margin-bottom: 0;
}

dl, ol, ul {
  padding-left: 15px;
}

ol ol, ol ul, ul ol, ul ul {
  margin-top: 10px;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:checked ~ span::before {
  background-color: white;
}

button:focus, input[type=submit]:focus, input[type=reset]:focus, input[type=button]:focus {
  outline: none;
}

code {
  color: #faa603;
}

.dark-bg {
  background-color: #111d5c;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.check-list-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-02 li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list-02 li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f00c";
  color: var(--main-color-one);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f105";
  color: var(--main-color-one);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid #e2e2e2;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  width: 50%;
  border: 1px solid #e2e2e2;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: var(--paragraph-color);
}

.comment-navigation .nav-previous:hover,
.posts-navigation .nav-previous:hover,
.post-navigation .nav-previous:hover,
.comment-navigation .nav-next:hover,
.posts-navigation .nav-next:hover,
.post-navigation .nav-next:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: #fff;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
  padding-left: 0;
}

.padding-right-0 {
  padding-left: 0;
}

.gray-bg {
  background-color: #f5f5f5;
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-103 {
  padding-top: 103px;
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-140 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-175 {
  padding-top: 175px;
}

.padding-top-180 {
  padding-top: 180px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-210 {
  padding-top: 210px;
}

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-390 {
  padding-top: 390px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}

.padding-bottom-140 {
  padding-bottom: 140px;
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-190 {
  padding-bottom: 190px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-227 {
  padding-bottom: 227px;
}

.padding-bottom-250 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-165 {
  padding-bottom: 165px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-215 {
  padding-bottom: 215px;
}

.padding-bottom-295 {
  padding-bottom: 295px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-320 {
  padding-bottom: 320px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

.margin-top-minus-90 {
  margin-top: -90px;
}

.margin-top-minus-100 {
  margin-top: -100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-160 {
  margin-top: 160px;
}

.padding-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
@media screen and (max-width: 991px) {
  .padding-120 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

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

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
  margin-top: 1.75em;
  margin-bottom: 1.7em;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
  margin-top: 1.75em;
  margin-bottom: 1.7em;
}

.aligncenter {
  clear: both;
  display: block;
}

.alignnone {
  margin: 1.75em auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages {
  margin-bottom: 30px;
  clear: both;
  padding-top: 30px;
}
.wp-link-pages a {
  margin: 0 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 30px;
}
.wp-link-pages a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.wp-link-pages span {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 30px;
}
.wp-link-pages span:first-child {
  margin-right: 5px;
}
.wp-link-pages .current {
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 30px;
  border-color: var(--main-color-one);
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 4px;
  padding: 0 20px;
}
.post-password-form label {
  font-weight: 600;
  color: #333;
}
.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  display: inline-block;
}
.post-password-form input[type=submit]:hover {
  background-color: var(--main-color-one);
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content > .alignwide {
  max-width: 1100px;
}

.single-post-details-item .entry-content > .alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td, .wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td, .wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 60px;
}
.comments-area .comments-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 38px;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.comments-area .comment-list .comment-respond {
  margin-bottom: 42px;
}
.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li:last-child .single-comment-wrap .thumb .date {
  margin-bottom: 0;
}
.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style: none;
}
.comments-area .comment-list li .single-comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --ms-flex-item-align: start;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 20px;
  min-width: 80px;
  border-radius: 50%;
}
.comments-area .comment-list li .single-comment-wrap .thumb img {
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #fafafa;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
}
.comments-area .comment-list li .single-comment-wrap .date {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.comments-area .comment-list li .single-comment-wrap .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 630px;
}
.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 70px;
  color: #111;
  font-family: var(--heading-font);
}
.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 670px;
}
.comments-area .comment-list li .single-comment-wrap .content p {
  word-break: break-word;
}
.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li .single-comment-wrap .content .reply {
  color: var(--main-color-one);
}
.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
  color: var(--main-color-one);
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #3249B3;
  font-size: 14px;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:after {
  position: static;
  content: "\f3e5";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  font-weight: 900;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:hover {
  color: #3249B3;
}
.comments-area .comment-list li.comment {
  margin-bottom: 30px;
}
.comments-area .comment-list .has-children {
  padding-left: 80px;
}
.comments-area .comment-list ol:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ol:not([class]) li ol {
  margin-bottom: 0;
}
.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}
.comments-area .comment-list ul:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ul:not([class]) ul {
  margin-bottom: 0px;
}
.comments-area .reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}
.comments-area .comment-reply-title small {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-bottom: 0;
}
.comments-area .comment-form-wrap {
  padding: 65px 95px 70px;
}
.comments-area .form-submit {
  margin-bottom: 0;
  width: 184px;
}

.blog-content-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.comment-form .form-group.textarea .form-control {
  min-height: 180px;
  resize: none;
  line-height: 26px;
}
.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.comment-form .form-group.textarea:after {
  visibility: hidden;
}
.comment-form .form-group {
  position: relative;
}
.comment-form .form-group .form-control {
  line-height: 50px;
  background-color: #fff;
  padding: 10px 20px;
  padding-right: 35px;
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  background-color: #FBFBFB;
  height: 60px;
  color: #A1A1A1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.comment-form .form-group:after {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "\f105";
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  color: #000;
  font-weight: 900;
  opacity: 0.5;
}
.comment-form .form-group:first-child:after {
  content: "\f007";
}
.comment-form .form-group:nth-child(2):after {
  content: "\f0e0";
}
.comment-form .form-group:nth-child(3):after {
  content: "\f57d";
}
.comment-form .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comment-form .comment-form-cookies-consent input {
  width: 20px;
  margin-top: 6px;
}
.comment-form .comment-form-cookies-consent label {
  padding: 0;
  margin: 0;
}
.comment-form .comments-area .comment-form .form-group::after {
  content: " ";
}
.comment-form .btn-wrap .boxed-btn {
  font-size: 14px;
}
.comment-form .submit-btn {
  position: relative;
  background: #3249B3;
  border: 1px solid #3249B3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.comment-form .submit-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: #fff;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.comment-form .submit-btn.active {
  background: transparent;
  border: 1px solid #3249B3;
  color: #fff;
}
.comment-form .submit-btn.active::before {
  background: #3249B3;
}
.comment-form .submit-btn.active:hover {
  color: #fff;
}
.comment-form .submit-btn:focus, .comment-form .submit-btn:hover {
  color: #fff;
}
.comment-form .submit-btn:focus::before, .comment-form .submit-btn:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.comment-form-cookies-consent input[type=checkbox] {
  margin-right: 5px;
}

label[for=wp-comment-cookies-consent] {
  font-size: 14px;
}

.comment-respond {
  margin-top: 42px;
}

.form-group.textarea {
  width: 100% !important;
  margin-left: 0 !important;
}

.full-width-content .comments-area .comment-list li .single-comment-wrap .content {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 384px) {
  .comments-area .comment-list li .single-comment-wrap {
    display: block;
  }
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 30px;
  padding: 25px;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.0705882353);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px;
}
.widget.style-01 {
  padding: 0;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  margin: 8px 0;
  display: block;
  -ms-word-wrap: break-word;
  word-break: break-word;
}
.widget ul li + li {
  margin-top: 10px;
}
.widget ul li:before {
  display: none;
}
.widget ul li:last-child {
  margin-bottom: 0;
}
.widget ul li:first-child {
  margin-top: 0;
}
.widget ul li a {
  color: inherit;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.widget ul li a:hover {
  color: var(--main-color-one);
}
.widget ul li a.rsswidget {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.widget ul li .rss-date {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #a7a7a7;
}
.widget ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}
.widget ul li ul.sub-menu {
  position: initial;
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 10px;
}
.widget ul li ul.sub-menu li a {
  padding: 0 0 0 10px;
}
.widget ul li ul.sub-menu li a:hover {
  background-color: transparent;
}
.widget > h1,
.widget > h2,
.widget > h3,
.widget > h4,
.widget > h5,
.widget > h6,
.widget .widget-headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
}
.widget > h1:after,
.widget > h2:after,
.widget > h3:after,
.widget > h4:after,
.widget > h5:after,
.widget > h6:after,
.widget .widget-headline:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}
.widget select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 40px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
  display: none;
}

.widget ul li,
.comments-area .comment-list li,
.comments-area .comment-list li.comment {
  padding-left: 0;
}

.comments-area .comment-list li:before,
.comments-area .comment-list li.comment:before {
  display: none;
}

.widget-nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-nav-menu ul li + li {
  border-top: 1px solid #2c3e88;
}

.footer-widget .widget_search .search-form .form-group .form-control {
  color: #fff;
}

.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .form-group {
  margin-bottom: 0;
}
.widget_search .search-form .form-group .form-control {
  height: 50px;
  color: var(--heading-color);
  border: 1px solid var(--main-color-one);
  border-radius: 4px;
  padding: 0 55px 0 15px;
  background-color: transparent;
}
.widget_search .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: var(--main-color-one);
}
.widget_search .search-form .submit-btn:hover {
  color: var(--heading-color);
}

.widget_author_meta {
  text-align: center;
}
.widget_author_meta .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.widget_author_meta .thumb img {
  border-radius: 50%;
}
.widget_author_meta .content .name {
  font-size: 21px;
  font-weight: 700;
}
.widget_author_meta .content .name p {
  font-size: 16px;
  line-height: 26px;
}
.widget_author_meta .content .name ul {
  margin-top: 25px;
}
.widget_author_meta .content .name ul li {
  display: inline-block;
  margin: 0 5px;
}
.widget_author_meta .content .name ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.widget_author_meta .content .name ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.widget_tag_cloud .tagcloud a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 500;
  background: var(--main-color-one);
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-radius: 4px;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu ul li {
  margin: 10px 0;
}
.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu ul li:first-child {
  margin-top: 0;
}
.widget_nav_menu ul li a {
  border: none;
}
.widget_nav_menu ul li > ul {
  margin-left: 15px;
}

.widget.widget_archive ul li:first-child {
  padding-top: 0;
}
.widget.widget_archive ul li + li {
  margin-top: 15px;
}
.widget.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget.widget_archive ul li a i {
  color: var(--main-color-one);
  margin-right: 5px;
}

.widget ul.widget_categories li + li {
  margin-top: 15px;
}

.widget.footer-widget.widget_calendar table {
  margin-bottom: 0;
}

.widget.elementor-widget-wp-widget-softim_request_form_widget, .widget.softim-request-form-widget {
  padding: 0;
}
.widget .request-form-widget {
  padding: 25px 25px 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.widget .request-form-widget:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  background-color: rgba(17, 13, 14, 0.85);
}
.widget .request-form-widget .widget-headline {
  color: #fff;
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 30px;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.widget.footer-widget select {
  color: var(--paragraph-color);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
}
.widget.footer-widget select option {
  color: var(--heading-color);
}
.widget.footer-widget .widget-headline {
  color: #1C1C1C;
  position: relative;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 20px;
  padding-left: 0;
  z-index: 0;
}
.widget.footer-widget .widget-headline:after {
  position: absolute;
  content: "";
  top: initial;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #3249B3;
}
.widget.footer-widget .widget-headline:before {
  display: none;
}
.widget.footer-widget .widget-headline p {
  color: #fff;
  font-size: 14px;
}
.widget.footer-widget.style-01 {
  border: none;
}
.widget.footer-widget.style-01 .widget-headline {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li a {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li:hover {
  color: var(--main-color-one);
}
.widget.footer-widget.style-01 ul li:hover a {
  color: var(--main-color-one);
}
.widget.footer-widget ul li {
  color: var(--paragraph-color);
  font-size: 14px;
  position: relative;
}
.widget.footer-widget ul li span {
  color: var(--main-color-one);
}
.widget.footer-widget ul li a {
  color: var(--paragraph-color);
  font-size: 16px;
  position: relative;
}
.widget.footer-widget ul li a:hover {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: var(--main-color-one);
}
.widget.footer-widget.widget_tag_cloud .tagcloud {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_tag_cloud .tagcloud a {
  font-size: 14px;
}
.widget.footer-widget.widget_recent_comments ul li a:after {
  display: none;
}
.widget.footer-widget.widget_recent_comments ul li a:hover {
  padding-left: 0;
}
.widget.footer-widget.widget_calendar table th {
  border: 1px solid #ddd;
  color: rgba(var(--paragraph-color), 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table th a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget.widget_calendar table td {
  border: 1px solid #ddd;
  color: rgba(var(--paragraph-color), 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table td a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget .subscribe-form .form-group .form-control {
  background-color: #515457;
  color: #fff;
}
.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .submit-btn:hover {
  background-color: #fff;
  color: var(--main-color-one);
}
.widget.footer-widget .wp-calendar-nav {
  padding: 8px 0;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev:hover {
  color: var(--main-color-one);
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next:hover {
  color: var(--main-color-one);
}

.widget ul > li:last-child {
  padding-bottom: 0;
}
.widget img {
  height: auto;
}

.footer-widget.widget_nav_menu ul li a {
  position: relative;
}

.footer-widget.widget.widget_nav_menu ul li {
  margin: 0;
}

.footer-style .footer-wrap {
  background-color: var(--heading-color);
}

.footer-wrap .footer-top .footer-widget .menu li ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_tag_cloud.footer-widget .tagcloud a {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.widget_tag_cloud.footer-widget .tagcloud a:hover {
  border: 1px solid var(--main-color-one);
  background-color: #fff;
  color: var(--main-color-one);
}

.wp-block-calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.widget_calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.wp-block-calendar table th {
  background-color: transparent;
}

.widget_softim_category ul li + li {
  padding-top: 10px;
  border-top: 1px dashed #C9C9C9;
}

.widget_recent_comments ul li {
  position: relative;
}

.widget .widget_calendar caption {
  color: var(--paragraph-color);
}

.widget.widget_rss li {
  margin-bottom: 20px;
}
.widget.widget_rss cite {
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
}

.widget_calendar table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.widget_calendar table th {
  border: 1px solid #ddd;
  padding: 8px;
}

#wp-calendar {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
#wp-calendar th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.widget_recent_comments ul li a {
  text-decoration: underline;
}

.footer-widget .theme-recent-post-wrap li.theme-recent-post-item + li {
  border-top: initial;
  padding-top: 0;
}

.theme-recent-post-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
}
.theme-recent-post-wrap li {
  display: block;
}
.theme-recent-post-wrap li + li {
  margin-top: 20px;
}
.theme-recent-post-wrap li.theme-recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.theme-recent-post-wrap li.theme-recent-post-item + li {
  padding-top: 20px;
  border-top: 1px dashed #e1e6ff;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb {
  width: 70px;
  border-radius: 4px;
  height: 70px;
  margin-right: 15px;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:hover {
  padding-left: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb img {
  border-radius: 4px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 600;
  margin-bottom: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a {
  padding-left: 0;
  color: var(--heading-color);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:hover {
  color: var(--main-color-one);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time {
  font-size: 14px;
  text-transform: uppercase;
  color: #858585;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time i {
  color: var(--main-color-one);
  padding-right: 5px;
}

.contact_info_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact_info_list li.single-info-item {
  display: inline-block;
  margin-right: 10px;
}
.contact_info_list li.single-info-item.style-01 .icon {
  color: var(--main-color-one);
}
.contact_info_list li.single-info-item.style-01 .details {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact_info_list li.single-info-item .icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #8A8A8A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  margin-right: 0;
}
.contact_info_list li.single-info-item .icon a {
  color: #8A8A8A !important;
}
.contact_info_list li.single-info-item .icon:hover {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.contact_info_list li.single-info-item .icon:hover a {
  color: #fff !important;
}
.contact_info_list li.single-info-item .details {
  margin-left: 15px;
}

.footer-nav-widget .widget-headline {
  color: var(--main-color-one);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-nav-widget p {
  color: #fff;
  margin-bottom: 0;
}

.about_us_widget .footer-logo {
  margin-bottom: 20px;
  display: block;
}
.about_us_widget p {
  margin-bottom: 25px;
}

.widget-testimonial .icon {
  font-size: 70px;
  line-height: 60px;
  color: var(--main-color-one);
  margin-bottom: 16px;
}
.widget-testimonial p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.widget-testimonial .author-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 24px;
}
.widget-testimonial .author-meta .thumb {
  margin-right: 20px;
}
.widget-testimonial .author-meta .thumb img {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}
.widget-testimonial .author-meta .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 15px;
}
.widget-testimonial .author-meta .content .name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.widget-testimonial .author-meta .content .designation {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.widget.widget_media_gallery .gallery {
  margin-bottom: 0;
}

.widget_edus_post_category ul li:hover a {
  background-color: var(--main-color-one);
}
.widget_edus_post_category ul li:hover a .title {
  color: #fff;
}
.widget_edus_post_category ul li .title {
  padding: 0 20px;
  background-color: var(--secondary-color);
  position: relative;
  line-height: 50px;
  font-family: var(--body-font);
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.widget_edus_post_category ul li .title span {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--main-color-one);
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.about_me_widget .content {
  text-align: center;
}
.about_me_widget .content .thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: auto;
}
.about_me_widget .content .thumb img {
  border-radius: 50%;
}
.about_me_widget .content .title {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
}
.about_me_widget .content p {
  padding-top: 10px;
}

.about-us-widget img {
  margin-bottom: 20px;
}
.about-us-widget p {
  color: #fff;
  max-width: 340px;
}

.edus-widget-about {
  border: 2px solid #f7f7f7;
}

.about_me_two_widget p {
  font-size: 16px;
  line-height: 26px;
}
.about_me_two_widget .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.about_me_two_widget .thumb {
  width: 60px;
  margin-right: 20px;
}
.about_me_two_widget .title {
  font-size: 20px;
  font-weight: 600;
}
.about_me_two_widget .designation {
  color: var(--main-color-one);
}

.widget_edus_service_category.widget {
  padding: 0;
}
.widget_edus_service_category ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f7f7f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
}
.widget_edus_service_category ul li a.active, .widget_edus_service_category ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.widget_edus_service_category ul li a.active span, .widget_edus_service_category ul li a:hover span {
  opacity: 1;
}
.widget_edus_service_category ul li a span {
  opacity: 0;
}
.widget_edus_service_category ul li + li {
  margin-bottom: 10px;
}

.widget.widget_media_image {
  padding: 0;
}
.widget.widget_media_image img {
  width: 100%;
}

.edus-service-doct.widget {
  padding: 0;
}
.edus-service-doct .doc-link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #f7f7f7;
}
.edus-service-doct .doc-link li a i {
  margin-right: 20px;
  color: #ff4815;
}
.edus-service-doct .doc-link li a.active, .edus-service-doct .doc-link li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.edus-service-doct .doc-link li a.active i, .edus-service-doct .doc-link li a:hover i {
  color: #fff;
}
.edus-service-doct .doc-link li + li {
  margin-bottom: 10px;
}

.custom-logo-link img, .site-logo img, .footer-logo img {
  max-width: 180px !important;
}

.widget .elementor-widget-container > h1,
.widget .elementor-widget-container > h2,
.widget .elementor-widget-container > h3,
.widget .elementor-widget-container > h4,
.widget .elementor-widget-container > h5,
.widget .elementor-widget-container > h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.widget .elementor-widget-container > h1:after,
.widget .elementor-widget-container > h2:after,
.widget .elementor-widget-container > h3:after,
.widget .elementor-widget-container > h4:after,
.widget .elementor-widget-container > h5:after,
.widget .elementor-widget-container > h6:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

.wp-block-group__inner-container > h1,
.wp-block-group__inner-container > h2,
.wp-block-group__inner-container > h3,
.wp-block-group__inner-container > h4,
.wp-block-group__inner-container > h5,
.wp-block-group__inner-container > h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.wp-block-group__inner-container > h1:after,
.wp-block-group__inner-container > h2:after,
.wp-block-group__inner-container > h3:after,
.wp-block-group__inner-container > h4:after,
.wp-block-group__inner-container > h5:after,
.wp-block-group__inner-container > h6:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

.wp-block-search__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.wp-block-search__label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*-------------------------------------------------
    [ ## reset ]
*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #4B4B4B;
  overflow-x: hidden;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

a {
  display: inline-block;
}

blockquote {
  margin: 0 0 1.3em;
}

p {
  margin-bottom: 15px;
  line-height: 1.7em;
}
p:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1199px) {
  p {
    line-height: 1.7em;
  }
}

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

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

button, input[type=submit], input[type=reset], input[type=button] {
  border: none;
  cursor: pointer;
}

input,
textarea {
  padding: 12px 25px;
  width: 100%;
}

span {
  display: inline-block;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

blockquote.two {
  background-color: #F5F8FF;
  border-radius: 6px;
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  blockquote.two {
    padding: 25px;
  }
}
blockquote.two .quote-content {
  font-size: 24px !important;
  color: #1C1C1C;
  text-transform: unset;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  blockquote.two .quote-content {
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 575px) {
  blockquote.two .quote-content {
    padding-top: 15px;
  }
}
blockquote.two .quote-shape {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 8%;
}
@media only screen and (max-width: 575px) {
  blockquote.two .quote-shape {
    width: 10%;
  }
}
@media only screen and (max-width: 440px) {
  blockquote.two .quote-shape {
    width: 15%;
  }
}
@media only screen and (max-width: 991px) {
  blockquote {
    padding: 20px;
  }
}
blockquote .quote-content-area {
  width: calc(100% - 30px);
  padding-left: 40px;
}
@media only screen and (max-width: 575px) {
  blockquote .quote-content-area {
    width: 100%;
    padding-left: 0;
  }
}
blockquote .quote-content-area span {
  position: relative;
  font-size: 16px;
  padding-right: 70px;
  padding-left: 70px;
}
blockquote .quote-content-area span::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #707070;
}
@media only screen and (max-width: 991px) {
  blockquote .quote-content-area span {
    font-size: 14px;
  }
}
blockquote .quote-content {
  font-size: 18px !important;
  color: #1C1C1C;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  blockquote .quote-content {
    font-size: 15px !important;
  }
}
blockquote .quote-icon {
  color: #3249B3;
  font-size: 30px;
  width: 30px;
}
@media only screen and (max-width: 575px) {
  blockquote .quote-area {
    display: block !important;
  }
}

/*-------------------------------------------------
    [ ## padding ]
*/
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

.pb-130 {
  padding-bottom: 130px !important;
}
@media only screen and (max-width: 991px) {
  .pb-130 {
    padding-bottom: 80px !important;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-100 {
    padding: 80px 0;
  }
}

.ptb-120 {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-120 {
    padding: 80px 0;
  }
}

.ptb-130 {
  padding: 120px 0 130px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-130 {
    padding: 80px 0 80px 0;
  }
}

.ptb-150 {
  padding: 150px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-150 {
    padding: 100px 0;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mt-10-none {
  margin-top: -10px;
}

.mt-20-none {
  margin-top: -20px;
}

.mt-30-none {
  margin-top: -30px;
}

.mt-40-none {
  margin-top: -40px;
}

.mt-50-none {
  margin-top: -50px;
}

.mt-60-none {
  margin-top: -60px;
}

.mt-80-none {
  margin-top: -80px;
}

.mt-100-none {
  margin-top: -100px;
}

.mt-120-none {
  margin-top: -120px;
}

.mt-150-none {
  margin-top: -150px;
}

.mb-10-none {
  margin-bottom: -10px;
}

.mb-20-none {
  margin-bottom: -20px;
}

.mb-25-none {
  margin-bottom: -25px;
}

.mb-30-none {
  margin-bottom: -30px;
}

.mb-40-none {
  margin-bottom: -40px;
}

.mb-50-none {
  margin-bottom: -50px;
}

.mb-60-none {
  margin-bottom: -60px;
}

.mb-65-none {
  margin-bottom: -65px;
}

.mb-80-none {
  margin-bottom: -80px;
}
@media only screen and (max-width: 575px) {
  .mb-80-none {
    margin-bottom: -40px;
  }
}

.mb-100-none {
  margin-bottom: -100px;
}

.mb-120-none {
  margin-bottom: -120px;
}

.mb-150-none {
  margin-bottom: -150px;
}

/*-------------------------------------------------
    [ ## color ]
*/
.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background-color: #9DBAFE;
}

.bg--success {
  background-color: #28c76f;
}

.bg--danger {
  background-color: #ea5455;
}

.bg--warning {
  background-color: #ff9f43;
}

.bg--info {
  background-color: #1e9ff2;
}

.bg--dark {
  background-color: #10163A;
}

.bg--base {
  background-color: #3249B3 !important;
}

.text--primary {
  color: #7367f0;
}

.text--secondary {
  color: #9DBAFE;
}

.text--success {
  color: #28c76f;
}

.text--danger {
  color: #ea5455;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #1e9ff2;
}

.text--dark {
  color: #10163A;
}

.text--base {
  color: #3249B3 !important;
}

.border--primary {
  border: #7367f0;
}

.border--secondary {
  border: 1px solid #9DBAFE;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

.border--base {
  border: 1px solid #e5e5e5 !important;
}

.section--bg {
  background-color: #000000 !important;
}

.bg--gray {
  background-color: #F8F9FF;
}

.border--rounded {
  border-radius: 3px !important;
}

.border--capsule {
  border-radius: 100px;
}

.box-shadow {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

.dark {
  background-color: #19232D;
}

/*-------------------------------------------------
    [ ## scrollbar ]
*/
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  background-color: #F8F9FF;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: #F8F9FF;
}

*::-webkit-scrollbar-button {
  background-color: #3249B3;
}

*::-webkit-scrollbar-thumb {
  background-color: #3249B3;
}

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-weight: 600;
  background-color: #3249B3;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(-5000%);
          transform: translateY(-5000%);
}

.scrollToTop.active {
  bottom: 30px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media only screen and (max-width: 1270px) {
  .scrollToTop.active {
    bottom: 80px;
  }
}

.scrollToTop:hover,
.scrollToTop:focus {
  color: #fff;
}

/*-------------------------------------------------
    [ ## Table ]
*/
.custom-table {
  width: 100%;
  border-radius: 10px;
  background-color: #000000;
  overflow: hidden;
  z-index: 9;
}
.custom-table thead {
  z-index: 9;
}
.custom-table thead tr {
  background: #3249B3;
  position: relative;
  z-index: 9;
}
.custom-table thead tr th {
  border: none;
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  padding: 30px 45px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .custom-table thead tr th {
    padding: 30px 20px;
  }
}
.custom-table thead tr th::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.custom-table thead tr th:first-child {
  text-align: left;
  border-radius: 10px 0 0 0;
}
.custom-table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}
.custom-table thead tr th:last-child::after {
  display: none;
}
.custom-table tbody tr {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.custom-table tbody tr td {
  border: none;
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  padding: 15px 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .custom-table tbody tr td {
    padding: 15px 20px;
  }
}
.custom-table tbody tr td::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #3249B3;
  -webkit-box-shadow: 0 10px 20px rgba(50, 73, 179, 0.24);
          box-shadow: 0 10px 20px rgba(50, 73, 179, 0.24);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.custom-table tbody tr td:hover::after, .custom-table tbody tr td.active::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.custom-table tbody tr td:hover span, .custom-table tbody tr td.active span {
  color: #fff;
}
.custom-table tbody tr td:first-child {
  text-align: left;
}
.custom-table tbody tr td:first-child::after {
  display: none;
}
.custom-table tbody tr td span {
  color: #818181;
  display: block;
  font-size: 15px;
  margin-top: 5px;
}
.custom-table tbody tr td .dot {
  position: relative;
}
.custom-table tbody tr td .dot::before {
  position: absolute;
  content: "";
  top: -18px;
  left: -47px;
  width: 5px;
  height: 5px;
  background-color: #3249B3;
  border-radius: 50%;
}
@media only screen and (max-width: 1199px) {
  .custom-table tbody tr td .dot {
    display: none;
  }
}
.custom-table tbody tr .blank-data::after {
  display: none;
}
.custom-table tbody tr .blank-data .dot::before {
  top: -43px;
}

/*-------------------------------------------------
    [ ## slider ]
*/
.swiper-notification {
  display: none;
}

.swiper-pagination {
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 1px solid #3249B3;
  background-color: transparent;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  border: none;
  background-color: #3249B3;
  position: relative;
}

.slider-next,
.slider-prev {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 22px;
  background-color: #9DBAFE;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  text-align: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next:hover,
.slider-prev:hover {
  background-color: #3249B3;
}

.slider-next {
  margin-left: 10px;
}

.custom-pagination {
  width: 15% !important;
  height: 1px !important;
  overflow: hidden;
  position: relative;
  left: 8% !important;
  top: unset !important;
  bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .custom-pagination {
    width: 100% !important;
  }
}
.custom-pagination .swiper-pagination-progressbar-fill {
  background: #3249B3;
}

.custom-navigation {
  position: absolute;
  bottom: 40px;
  left: 100px;
  cursor: pointer;
  z-index: 9;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1C1C1C;
}
.custom-navigation.next-text {
  left: 465px;
}

/*-------------------------------------------------
    [ ## pagination ]
*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: -8px;
}
.pagination .page-item {
  text-align: center;
  padding: 8px;
}
.pagination .page-item a,
.pagination .page-item span {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(85, 85, 85, 0.2);
  color: #555555;
  padding: 0;
  font-weight: 600;
  line-height: 40px;
  display: block;
  margin: 0;
}
.pagination .page-item a.current, .pagination .page-item a:hover,
.pagination .page-item span.current,
.pagination .page-item span:hover {
  background: #3249b3;
  color: #fff;
}
.pagination .page-item a.next, .pagination .page-item a.prev,
.pagination .page-item span.next,
.pagination .page-item span.prev {
  background: transparent;
  color: #555555;
}
.pagination .page-item a:focus,
.pagination .page-item span:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pagination .page-item.next {
  padding: 8px 0;
  margin-left: 20px;
}
.pagination .page-item.next a {
  background: transparent;
  border: none;
  color: #555555;
  font-family: "Jost", sans-serif;
  margin-left: 5px;
}
.pagination .page-item.prev {
  padding: 8px 0;
  margin-right: 20px;
}
.pagination .page-item.prev a {
  background: transparent;
  border: none;
  color: #555555;
  font-family: "Jost", sans-serif;
}
.pagination .page-item.disabled span {
  background: transparent;
  border: none;
  color: #4B4B4B;
  margin-right: 5px;
}
.pagination .page-item .page-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page-item.active .page-numbers, .pagination .page-item:hover .page-numbers {
  background-color: #3249B3;
  border-color: transparent;
  color: #fff;
}
.pagination .page-item.active.next a, .pagination .page-item:hover.next a {
  background-color: transparent;
  color: #4B4B4B;
}
.pagination .page-item.active a.prev.page-numbers,
.pagination .page-item.active a.next.page-numbers, .pagination .page-item:hover a.prev.page-numbers,
.pagination .page-item:hover a.next.page-numbers {
  background-color: transparent;
  border-color: transparent;
  color: #555555;
}
.pagination .page-item.active.prev a, .pagination .page-item:hover.prev a {
  background-color: transparent;
  color: #4B4B4B;
}
.pagination .page-item.active.disabled span, .pagination .page-item:hover.disabled span {
  background-color: transparent;
  color: #4B4B4B;
}
.pagination .page-item.active.tags a, .pagination .page-item:hover.tags a {
  background-color: transparent;
  color: #3249B3;
}

/*-------------------------------------------------
    [ ## tab ]
*/
.nav-tabs {
  margin: 0;
  border: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #9DBAFE;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .nav-tabs {
    display: block;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid #E2E2E2;
  }
}
.nav-tabs .nav-link {
  position: relative;
  padding: 0;
  border: none;
  font-weight: 700;
  border-radius: 0;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 1199px) {
  .nav-tabs .nav-link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-tabs .nav-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-tabs .nav-link {
    width: 100%;
  }
}
.nav-tabs .nav-link::before {
  position: absolute;
  content: "";
  bottom: -33px;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #9DBAFE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .nav-tabs .nav-link::before {
    display: none;
  }
}
.nav-tabs .nav-link:hover {
  color: #3249B3;
}
.nav-tabs .nav-link:hover::before {
  width: 100%;
}
.nav-tabs .nav-link.active {
  color: #3249B3;
}
.nav-tabs .nav-link.active::before {
  width: 100%;
}
.nav-tabs .nav-link:not(:last-child) {
  padding-right: 30px;
  border-right: 1px solid #9DBAFE;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .nav-tabs .nav-link:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
  }
}
.nav-tabs .nav-link:not(:last-child):hover::before {
  width: calc(100% - 30px);
}
.nav-tabs .nav-link:not(:last-child).active::before {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1199px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 5px;
  }
}

.choose-tab .nav-tabs .nav-link {
  color: #4B4B4B;
}
.choose-tab .nav-tabs .nav-link.active {
  color: #3249B3;
}

/*-------------------------------------------------
    [ ## card ]
*/
.custom--card {
  border: none;
  background: #fff;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.custom--card .card-header {
  background: #9DBAFE;
  padding: 0.8rem 1.6rem;
  border: none;
}
.custom--card .card-header .card-title {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 700;
}
.custom--card .card-header .card-title i {
  margin-right: 5px;
}
.custom--card .card-header .card-btn a {
  font-size: 12px;
  padding: 5px 15px;
  font-weight: 600;
}
.custom--card .card-header .card-btn a i {
  margin-right: 5px;
}
.custom--card .card-body {
  padding: 20px 30px;
}
@media only screen and (max-width: 991px) {
  .custom--card .card-body {
    padding: 20px;
  }
}
.custom--card .card-body p {
  font-size: 13px;
  font-family: "Jost", sans-serif;
}
.custom--card .card-body .card-form-wrapper .form--control {
  font-size: 12px;
  border: 1px solid #E2E2E2;
  background: #fff;
  font-size: 13px;
  height: 40px;
  color: #4B4B4B;
  font-weight: 600;
}
.custom--card .card-body .card-form-wrapper .form--control::-webkit-input-placeholder {
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper .form--control::-moz-placeholder {
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper .form--control:-ms-input-placeholder {
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper .form--control::-ms-input-placeholder {
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper .form--control::placeholder {
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper label {
  font-weight: 700;
  margin-bottom: 5px;
}
.custom--card .card-body .card-form-wrapper textarea {
  height: auto;
  min-height: 120px;
  color: #4B4B4B;
}
.custom--card .card-body .card-form-wrapper .submit-btn {
  margin-top: 10px;
  padding: 12px 30px;
}

.video-main {
  position: relative;
  display: inline-block;
}

.waves {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #3249B3;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.video-icon {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100%;
  color: #9DBAFE;
  display: inline-block;
  background: #F9FBFF;
  z-index: 999;
}
.video-icon:hover {
  color: #9DBAFE;
}

.cursor {
  position: fixed;
  background-color: #3249B3;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cursor.active {
  opacity: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.cursor.menu-active {
  opacity: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.cursor.hovered {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  border: 1px solid #3249B3;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

.cursor-follower.active {
  opacity: 1;
  -webkit-transform: scale(2);
          transform: scale(2);
}

.cursor-follower.menu-active {
  opacity: 1;
  -webkit-transform: scale(2);
          transform: scale(2);
}

.cursor-follower.hovered {
  opacity: 1;
}

#lightcase-overlay {
  background: #3b3c5e;
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #lightcase-content {
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.5);
    -o-box-shadow: 0 0 30px rgba(50, 73, 179, 0.5);
    box-shadow: 0 0 30px rgba(50, 73, 179, 0.5);
    background: transparent;
  }
}
/*-------------------------------------------------
    [ ## Heading ]
*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 1.3em;
  color: #1C1C1C;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-family: "Jost", sans-serif;
}

h1 {
  font-size: 55px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

.section-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .section-header-wrapper {
    margin-bottom: 30px;
  }
}
.section-header-wrapper .section-header {
  margin-bottom: 0;
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .section-header-wrapper .section-header {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .section-header-wrapper .section-header {
    width: 100%;
    margin-bottom: 20px;
  }
}

.sub-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3249B3;
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .section-header {
    margin-bottom: 30px;
  }
}
.section-header.white .section-title {
  color: #fff;
}
.section-header.white p {
  color: #fff;
}
.section-header.left {
  margin-bottom: 30px;
}
.section-header .section-title {
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
  margin-top: -8px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .section-header .section-title {
    margin-top: -5px;
  }
}
.section-header .section-title span {
  color: #3249B3;
}
.section-header .section-title.two {
  text-transform: unset;
}
.section-header p {
  margin-top: 10px;
}

/*-------------------------------------------------
    [ ## Buttons ]
*/
input[type=submit]:hover {
  color: #fff;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}

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

.btn {
  -webkit-transition: all 0.3s ease 0.02s;
  transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
  border: 0px solid;
  border-radius: 0px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn-rounded {
  border-radius: 3px;
}

.btn-capsule {
  border-radius: 100px;
}

/*-------------------------------------------------
    [ ## custom btn ]
*/
.btn--primary {
  background-color: #7367f0;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--success {
  background-color: #28c76f;
}

.btn--danger {
  background-color: #ea5455;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--info {
  background-color: #1e9ff2;
}

.btn--dark {
  background-color: #10163A;
}

.badge--primary {
  background-color: #7367f0;
}

.badge--secondary {
  background-color: #868e96;
}

.badge--success {
  background-color: #28c76f;
}

.badge--danger {
  background-color: #ea5455;
}

.badge--warning {
  background-color: #ff9f43;
}

.badge--info {
  background-color: #1e9ff2;
}

.badge--dark {
  background-color: #10163A;
}

.border--primary {
  border: 1px solid #7367f0;
}

.border--secondary {
  border: 1px solid #868e96;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

.badge {
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 20px 7px 20px;
  font-size: 11px;
}

.btn--base {
  position: relative;
  background: #3249B3;
  border: 1px solid #3249B3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn--base::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: #fff;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn--base.active {
  background: transparent;
  border: 1px solid #3249B3;
  color: #3249B3;
}
.btn--base.active::before {
  background: #3249B3;
}
.btn--base.active:hover {
  color: #fff;
}
.btn--base.subscribe {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 100%;
  border-radius: 6px;
}
.btn--base.subscribe::before {
  background: #3249B3;
}
.btn--base.subscribe:hover {
  color: #fff;
  border: 1px solid #3249B3;
}
.btn--base.subscribe:focus {
  color: #fff;
}
.btn--base:focus, .btn--base:hover {
  color: #3249B3;
}
.btn--base:focus::before, .btn--base:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .btn--base {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.btn--base i {
  margin-left: 5px;
}

.custom-btn {
  color: #3249B3;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-btn.two {
  color: #9DBAFE;
}
.custom-btn.two:hover {
  color: #9DBAFE;
}
.custom-btn i {
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-btn:hover {
  color: #3249B3;
}
.custom-btn:hover i {
  padding-left: 5px;
}

/*-------------------------------------------------
    [ ## Fields ]
*/
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
}

input, textarea {
  padding: 12px 20px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #1C1C1C;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #1C1C1C;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #1C1C1C;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #1C1C1C;
}
input::placeholder, textarea::placeholder {
  color: #1C1C1C;
}

textarea {
  display: block;
  width: 100%;
  display: block;
  min-height: 120px;
}

input,
select,
textarea {
  border: 1px solid #E2E2E2;
  vertical-align: baseline;
  font-size: 100%;
  color: #1C1C1C;
}

label {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  display: block;
}

/*-------------------------------------------------
    [ ## Forms ]
*/
select {
  outline: none;
  cursor: pointer;
}

option {
  color: #1C1C1C;
}

.nice-select {
  line-height: 34px;
}
.nice-select::after {
  right: 20px;
}
.nice-select:focus::after {
  border-bottom: 2px solid #1C1C1C;
  border-right: 2px solid #1C1C1C;
}
.nice-select:focus .current {
  color: #1C1C1C;
}

.nice-select:hover {
  border-color: #676767;
}

.nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
          box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  min-height: 50px;
  max-height: 200px;
}

.nice-select::after {
  height: 8px;
  width: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: unset;
  min-height: 50px;
  max-height: 200px;
  overflow-y: scroll;
  width: 100%;
}

.nice-select .option.selected.focus {
  color: #1C1C1C !important;
}

.nice-select.open .nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 700;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  color: #1C1C1C;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.nice-select .option.disabled:after {
  border-color: #cccccc;
}

.nice-select .option:hover {
  background-color: #3249B3;
  color: #fff;
}

.nice-select .current {
  display: block;
  color: #fff;
}

.input-group {
  margin-bottom: 15px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.input-group input {
  border-radius: 5px 0 0 5px;
  border: 1px solid rgba(107, 124, 147, 0.15);
  color: #6b7c93;
  height: 45px;
}

.form-control:disabled, .form-control[readonly] {
  background-color: rgba(50, 73, 179, 0.2);
}

.input-group-append, .input-group-prepend {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.input-group-append input {
  border-radius: 5px 0 0 5px;
  border: 1px solid #E2E2E2;
  border-right: none;
  background-color: #fff;
}

.input-group-text {
  border: none;
  font-size: 14px;
  background: #EFF0F0;
  color: #1C1C1C;
  height: 45px;
  border-radius: 0 5px 5px 0;
  font-weight: 500;
}

.custom-check-group {
  display: block;
  margin-bottom: 12px;
}
.custom-check-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-check-group input:checked + label::before {
  background-color: #3249B3;
  border: 1px solid #3249B3;
}
.custom-check-group input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.custom-check-group label {
  position: relative;
  cursor: pointer;
}
.custom-check-group label::before {
  content: "";
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 3px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  top: -2px;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #E2E2E2;
  font-size: 14px;
  height: 50px;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E2E2E2;
}

.form--control {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 60px;
  color: #C9C9C9;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 25px;
  width: 100%;
}
.form--control:focus {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #C9C9C9;
}
.form--control:focus::-webkit-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::-moz-placeholder {
  color: #C9C9C9;
}
.form--control:focus:-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::placeholder {
  color: #C9C9C9;
}
.form--control::-webkit-input-placeholder {
  color: #C9C9C9;
}
.form--control::-moz-placeholder {
  color: #C9C9C9;
}
.form--control:-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control::-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control::placeholder {
  color: #C9C9C9;
}

.radio-item [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:checked + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #1C1C1C;
  margin: 0;
}

.radio-item [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #1C1C1C;
  margin: 0;
}

.radio-item [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  background: #fff;
}

.radio-item [type=radio]:checked + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3249B3;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-item [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  background: #fff;
}

.radio-item [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3249B3;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-item [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.select2-container {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  width: 100%;
}

.selection {
  width: 100%;
}

.select2-selection--single {
  width: 100%;
  height: 45px !important;
  outline: none;
  background: transparent !important;
  font-size: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 10px;
  border-radius: 5px;
  vertical-align: top;
  display: inline-block;
  border: 1px solid #E2E2E2 !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-selection--single span {
  margin: 0;
  width: 100%;
  color: #4B4B4B;
  line-height: initial;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  position: absolute;
  top: 22px;
  right: 7px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #4B4B4B transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #4B4B4B transparent;
}

.submit-btn {
  padding: 12px 20px;
  color: #fff;
  background: #000000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width: 991px) {
  .submit-btn {
    padding: 10px 20px;
  }
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay-base {
  position: relative;
}

.bg-overlay-base:after {
  content: "";
  position: absolute;
  background-image: linear-gradient(335deg, #3249B3 15%, rgba(25, 25, 25, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-base > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-black {
  position: relative;
}

.bg-overlay-black:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-black > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-red {
  position: relative;
}

.bg-overlay-red:after {
  content: "";
  position: absolute;
  background-color: #3249B3;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.bg-overlay-red > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-white {
  position: relative;
}

.bg-overlay-white:after {
  content: "";
  position: absolute;
  background-color: #fff;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-white > div {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale {
  0% {
    left: -800px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    left: -800px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }
  80% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}
@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}
@keyframes inner-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  30% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
@-webkit-keyframes inner-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  30% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
@-webkit-keyframes ImgAnimate {
  0% {
    -webkit-transform: rotate(0) translate(-10px) rotate(0);
    transform: rotate(0) translate(-10px) rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@keyframes ImgAnimate {
  0% {
    -webkit-transform: rotate(0) translate(-10px) rotate(0);
    transform: rotate(0) translate(-10px) rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@-webkit-keyframes video {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 73, 179, 0.7);
            box-shadow: 0 0 0 0 rgba(50, 73, 179, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 rgba(50, 73, 179, 0);
  }
}
@keyframes video {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 73, 179, 0.7);
            box-shadow: 0 0 0 0 rgba(50, 73, 179, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 50px rgba(50, 73, 179, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(50, 73, 179, 0);
            box-shadow: 0 0 0 rgba(50, 73, 179, 0);
  }
}
@-webkit-keyframes horizontal-move {
  0% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  50% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  100% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@keyframes horizontal-move {
  0% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  50% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  100% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@-webkit-keyframes horizontal-move-two {
  0% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
  50% {
    -webkit-transform: rotateZ(-20deg);
            transform: rotateZ(-20deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
}
@keyframes horizontal-move-two {
  0% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
  50% {
    -webkit-transform: rotateZ(-20deg);
            transform: rotateZ(-20deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
}
@-webkit-keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@-webkit-keyframes zoominoutsinglefeatured {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes zoominoutsinglefeatured {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes bouncing-text {
  0% {
    right: -80%;
  }
  100% {
    right: 100%;
  }
}
@keyframes bouncing-text {
  0% {
    right: -80%;
  }
  100% {
    right: 100%;
  }
}
@keyframes rotatebox {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes rotatebox {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rev-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes rev-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes nama_utha {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes nama_utha {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-webkit-keyframes utha_nama {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes utha_nama {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes choose-hexagon-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes choose-hexagon-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes choose-hexagon-2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@keyframes choose-hexagon-2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Wp  BlockQuote */
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) {
  background-color: #F1F7FF;
  padding: 30px;
  border-radius: 6px;
  margin-top: 30px;
  margin-bottom: 40px;
  border: none;
  position: relative;
  color: #fff;
  z-index: 0;
  overflow: hidden;
  display:none;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large):before {
  position: absolute;
  right: 60px;
  color: var(--main-color-one);
  opacity: 0.15;
  font-size: 100px;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  top: 50px;
  line-height: 0.8;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) p {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) cite {
  font-size: 16px;
  color: #000 !important;
  font-weight: 400;
  margin-top: 10px;
  display: block;
  font-style: normal;
  font-family: var(--body-font);
  position: relative;
  z-index: 0;
}

.element-blockquote {
  background-color: #F8F9FF;
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .element-blockquote {
    text-align: left;
  }
}
.element-blockquote::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--main-color-one);
}
@media only screen and (max-width: 575px) {
  .element-blockquote .quote-area {
    display: block !important;
  }
}
.element-blockquote .quote-icon {
  font-size: 70px;
  line-height: 70px;
  color: var(--main-color-one);
}
@media only screen and (max-width: 575px) {
  .element-blockquote .quote-icon {
    font-size: 50px;
  }
}
.element-blockquote .quote-icon--style {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 70px;
  color: rgba(0, 0, 0, 0.03);
}
@media only screen and (max-width: 575px) {
  .element-blockquote .quote-icon--style {
    font-size: 50px;
  }
}
.element-blockquote .quote-content-area {
  width: calc(100% - 70px);
  padding-left: 30px;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .element-blockquote .quote-content-area {
    width: 100%;
    padding-left: 0;
  }
}
.element-blockquote .quote-content-area span {
  color: #2E2E2E;
  padding-left: 0;
}
.element-blockquote .quote-content-area span::before {
  display: none;
}
.element-blockquote .quote-content-area span::after {
  display: none;
}
.element-blockquote .quote-content {
  font-size: 18px !important;
  font-style: normal;
  font-family: var(--body-font);
  text-transform: unset;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .element-blockquote .quote-content {
    font-size: 16px !important;
  }
}

.element-blockquote-with-image {
  padding: 40px 100px;
  border-radius: 5px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .element-blockquote-with-image {
    padding: 20px;
  }
}
.element-blockquote-with-image .quote-icon {
  font-size: 70px;
  color: var(--main-color-one);
}
.element-blockquote-with-image .quote-content-area span {
  position: relative;
  font-size: 16px;
  padding-right: 70px;
  padding-left: 70px;
  color: #fff;
}
.element-blockquote-with-image .quote-content-area span::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: rgba(232, 0, 0, 0.7);
}
.element-blockquote-with-image .quote-content-area span::after {
  position: absolute;
  content: "";
  top: 10px;
  right: 0;
  width: 50px;
  height: 1px;
  background-color: rgba(232, 0, 0, 0.7);
}
@media only screen and (max-width: 991px) {
  .element-blockquote-with-image .quote-content-area span {
    font-size: 14px;
  }
}
.element-blockquote-with-image .quote-content {
  font-size: 24px !important;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-style: italic;
}
@media only screen and (max-width: 991px) {
  .element-blockquote-with-image .quote-content {
    font-size: 16px !important;
  }
}

/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Preloader ]
*/
.site-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}

.drawing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: #3249B3;
  z-index: 9999;
}

.loading-dot {
  border-radius: 100%;
  height: 10px;
  width: 10px;
  background-color: #F8D458;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  -webkit-animation: load 3s infinite linear;
  animation: load 3s infinite linear;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: translate(0px, 0px), rotate(0deg);
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
  25% {
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
  }
  50% {
    -webkit-box-shadow: 0px -40px 0px 0px #F8D458, 0px 40px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
    box-shadow: 0px -40px 0px 0px #F8D458, 0px 40px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
  }
  70% {
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
  }
  75% {
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    height: 10px;
    width: 10px;
  }
  80% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 40px;
    width: 40px;
  }
  85% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 40px;
    width: 40px;
  }
  90% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 10px;
    width: 10px;
  }
  95% {
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
  100% {
    -webkit-transform: rotate(360deg);
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
}

@keyframes load {
  0% {
    -webkit-transform: translate(0px, 0px), rotate(0deg);
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
  25% {
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
  }
  50% {
    -webkit-box-shadow: 0px -40px 0px 0px #F8D458, 0px 40px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
    box-shadow: 0px -40px 0px 0px #F8D458, 0px 40px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458;
  }
  70% {
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
  }
  75% {
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    height: 10px;
    width: 10px;
  }
  80% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 40px;
    width: 40px;
  }
  85% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 40px;
    width: 40px;
  }
  90% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    -webkit-box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    box-shadow: 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458, 0px 0px 0px 0px #F8D458;
    background-color: #F8D458;
    height: 10px;
    width: 10px;
  }
  95% {
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
  100% {
    -webkit-transform: rotate(360deg);
    -webkit-box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
    box-shadow: 0px 40px 0px 0px #F8D458, 0px -40px 0px 0px #F8D458, 40px 0px 0px 0px #F8D458, -40px 0px 0px 0px #F8D458, 40px 40px 0px 0px #F8D458, -40px -40px 0px 0px #F8D458, 40px -40px 0px 0px #F8D458, -40px 40px 0px 0px #F8D458;
  }
}
.custom-container {
  max-width: 1600px;
}

.custom-container-two {
  max-width: 1266px;
}

.custom-container-three {
  max-width: 1750px;
}

.custom-container-four {
  max-width: 1180px;
}

.row > * {
  position: relative;
}

@media (max-width: 1600px) {
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-left: 0;
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .col-xxl-4 {
    -ms-flex: 50%;
    -webkit-box-flex: 50%;
            flex: 50%;
    max-width: 50%;
    margin-left: 0;
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .col-xxl-4 {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 120px;
  }
}
@media (max-width: 1600px) {
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (max-width: 1199px) {
  .col-xxl-8 {
    -ms-flex: 50%;
    -webkit-box-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .col-xxl-8 {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .col-xs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media only screen and (max-width: 575px) and (max-width: 340px) {
  .col-xs-6 {
    width: 100%;
  }
}
::-moz-selection {
  background-color: #3249B3;
  color: #fff;
}
::selection {
  background-color: #3249B3;
  color: #fff;
}

/*-------------------------------------------------
    [ ## Header ]
*/
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}
.header-section.header-relative {
  position: initial;
}
.header-section.home-three {
  background-color: #fff;
}
.header-section.three {
  background-color: #fff;
}

.header {
  background-color: transparent;
  width: 100%;
  z-index: 99;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
.header.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent linear-gradient(241deg, #9DBAFE 0%, #3467E4 100%) 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
          box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
}
.header-section.header-fixed .header-top-area {
  display: none !important;
}

.header-section.two.header-fixed {
  background: #ecf2fd;
}

.header-section.three.header-fixed {
  background: #fff;
}

.header-section.home-three.header-fixed {
  background: #fff;
}

@media (max-width: 1199px) {
  .header-section .header-bottom-area .navbar-collapse {
    background: #3249B3 !important;
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
            box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
    position: relative;
    top: 15px;
  }
}

.header-section .header-bottom-area.home-three.open .toggle-bar {
  -webkit-transform: none;
          transform: none;
  top: -12px;
}
.header-section .header-bottom-area.home-three.open .toggle-bar::before {
  display: block;
}
.header-section .header-bottom-area.home-three.open .toggle-bar::after {
  -webkit-transform: none;
          transform: none;
  bottom: -14px;
  width: 10px;
}
.header-section .header-bottom-area.home-three.open:hover .toggle-bar::before {
  width: 100%;
}
.header-section .header-bottom-area.home-three.open:hover .toggle-bar::after {
  width: 100%;
}
@media (max-width: 1199px) {
  .header-section .header-bottom-area .navbar-collapse {
    background: #3249B3 !important;
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
            box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
    position: relative;
    top: 15px;
  }
}

@media (max-width: 1199px) {
  .header-section.two .header-bottom-area .navbar-collapse {
    background: #fff !important;
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
            box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
  }
}
@media only screen and (max-width: 1199px) {
  .header-section.two .header-bottom-area .main-menu li a {
    color: #1C1C1C !important;
  }
}
.header-section.two .header-bottom-area .main-menu li a:hover {
  color: #3249B3 !important;
}
.header-section.two .header-bottom-area .main-menu li a:hover::before {
  background-color: #3249B3 !important;
}
@media only screen and (max-width: 1199px) {
  .header-section.two .header-bottom-area .main-menu li .sub-menu {
    border: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header-section.two .header-bottom-area .main-menu li .sub-menu li {
    border-bottom: 1px solid #E2E2E2;
  }
}

.header-bottom-area {
  position: relative;
  padding: 15px 0;
}
@media only screen and (max-width: 991px) {
  .header-bottom-area {
    padding: 20px 0;
  }
}
.header-bottom-area .navbar-expand-xl {
  background-color: transparent;
  padding: 0 !important;
}
.header-bottom-area .navbar-expand-xl.home-three .home-three-logo {
  display: none;
}
.header-bottom-area .navbar-expand-xl.home-three .logo-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-bottom-area .navbar-expand-xl.home-three .touch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-bottom-area .navbar-expand-xl.home-three .touch:hover span {
  color: #3249B3;
}
.header-bottom-area .navbar-expand-xl.home-three .touch:hover .icon i {
  -webkit-animation: arrow 0.3s linear alternate;
          animation: arrow 0.3s linear alternate;
}
.header-bottom-area .navbar-expand-xl.home-three .touch span {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1C1C1C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-bottom-area .navbar-expand-xl.home-three .touch .icon {
  width: 26px;
  height: 26px;
  text-align: center;
  background: #3249B3;
  color: #fff;
  margin-left: 15px;
  overflow: hidden;
}
.header-bottom-area .navbar-expand-xl.home-three .touch .icon i {
  font-size: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
            box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
    padding: 0 !important;
  }
  .header-bottom-area .navbar-collapse .main-menu {
    padding: 15px;
  }
  .header-bottom-area .menu_has_children .sub-menu li {
    width: 100%;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li {
  position: relative;
  padding-right: 40px;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 0;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li:last-child a::after {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children a:hover {
  color: #fff;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .toggle-bar .element {
  background-color: #fff !important;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
  position: relative;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
  font-size: 16px;
  margin-left: 5px;
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children::before {
    top: 12px;
    right: 15px;
  }
}
.header-bottom-area .navbar-collapse .main-menu li a {
  position: relative;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1C1C1C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.header-bottom-area .navbar-collapse .main-menu li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li a::before {
    display: none;
  }
}
.header-bottom-area .navbar-collapse .main-menu li a.site-logo::before {
  display: none !important;
}
.header-bottom-area .navbar-collapse .main-menu li a:hover::before {
  width: 100%;
}
.header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li a {
  padding: 30px 18px 30px 0;
}
@media (max-width: 1220px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 30px;
  }
  .header-bottom-area .navbar-collapse .main-menu li + li {
    border-top: 1px solid #E2E2E2;
  }
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li a {
    padding: 12px 0 !important;
    color: #fff !important;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  position: absolute;
  top: 200%;
  left: 0;
  width: 200px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 10000000000000000;
  margin-left: 0;
  border-radius: 3px;
  border-bottom: 3px solid #3249B3;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    border-radius: 5px;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    padding-left: 15px;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu::before {
    display: none;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
  margin-right: 0;
  padding-right: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #E2E2E2;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
  border-bottom: 0px solid;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
    border-bottom: none;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li > a {
  color: #1C1C1C;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li > a::after {
  position: unset;
  content: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li > a::before {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li > a:hover {
  color: #3249B3;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu {
  padding: 0;
  top: 0;
  left: 200px;
  border-radius: 0 5px 5px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu {
    border-radius: 0;
    display: none;
    padding-left: 10px;
    margin-top: 0;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu::before {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1199px) {
  .header-section.three .header-bottom-area .navbar-collapse {
    background-color: #fff !important;
  }
}
@media only screen and (max-width: 1199px) {
  .header-section.three .header-bottom-area .navbar-collapse .main-menu li a {
    color: #1C1C1C !important;
  }
}
.header-section.three .header-bottom-area .navbar-collapse .main-menu li a::before {
  background-color: #3249B3;
}
.header-section.three .header-bottom-area .navbar-collapse .main-menu li a:hover {
  color: #3249B3;
}
@media only screen and (max-width: 1199px) {
  .header-section.three .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    border: none;
    border-top: 1px solid #E2E2E2;
  }
}
.header-section.three .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a:hover {
  color: var(--main-color-one);
}

.header-section.header-fixed .navbar-collapse .main-menu li .sub-menu li a {
  padding: 8px 20px;
}

@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    display: none;
  }
}
.navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-logo {
  margin-right: 250px;
}
@media only screen and (max-width: 1530px) {
  .site-logo {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .site-logo {
    max-width: 150px;
    margin-right: 0;
  }
}

.language-select {
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .language-select {
    margin-left: 12px;
  }
}

@media only screen and (max-width: 1300px) {
  .search-bar {
    display: none;
  }
}

.header-search-form {
  position: relative;
}
.header-search-form::before {
  position: absolute;
  content: "";
  top: 7px;
  left: -10px;
  width: 2px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
.header-search-form input {
  position: relative;
  background-color: transparent;
  padding: 0;
  padding-right: 35px;
  border: none;
  color: #fff;
  font-size: 14px;
}
.header-search-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search-form .header-search-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
}
.header-search-form .header-search-btn i {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.header-links-area {
  margin-left: 60px;
  margin-right: 60px;
}
@media only screen and (max-width: 1300px) {
  .header-links-area {
    display: none;
  }
}

.header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.header-links li {
  color: #fff;
}
.header-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-links li span {
  width: calc(100% - 40px);
  padding-left: 10px;
}
.header-links li + li {
  margin-left: 40px;
}
@media only screen and (max-width: 1199px) {
  .header-links li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-action-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-action-area .action-btn {
  width: 30px;
  height: 30px;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  background-color: #3249B3;
  border-radius: 5px;
  color: #1C1C1C;
  display: none;
}
.header-action-area .action-btn.two {
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  .header-action-area .action-btn {
    display: block;
  }
}

.header-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  margin-left: 60px;
}
.header-action a:hover, .header-action a.focus {
  color: #3249B3;
  border: 1px solid #fff;
}
@media only screen and (max-width: 1199px) {
  .header-action {
    display: none;
  }
}

.header-section.two .header-action a:hover, .header-section.two .header-action a.focus {
  border: 1px solid #3249B3;
}

.header-section.three .header-action a:hover, .header-section.three .header-action a.focus {
  border: 1px solid #3249B3;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ds-none {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler, .menu-toggler {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  border: 1px solid #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-toggler.home-three .toggle-bar, .menu-toggler.home-three .toggle-bar {
  background-color: #3249B3;
  width: 30px;
}
.navbar-toggler.home-three .toggle-bar::before, .menu-toggler.home-three .toggle-bar::before {
  background-color: #3249B3;
  width: 20px;
}
.navbar-toggler.home-three .toggle-bar::after, .menu-toggler.home-three .toggle-bar::after {
  background-color: #3249B3;
  width: 15px;
}
.navbar-toggler.home-three:hover, .menu-toggler.home-three:hover {
  background-color: #3249B3;
  border: 1px solid #3249B3;
}
.navbar-toggler.home-three:hover .toggle-bar, .menu-toggler.home-three:hover .toggle-bar {
  background-color: #fff;
}
.navbar-toggler.home-three:hover .toggle-bar::before, .menu-toggler.home-three:hover .toggle-bar::before {
  background-color: #fff;
  width: 100%;
}
.navbar-toggler.home-three:hover .toggle-bar::after, .menu-toggler.home-three:hover .toggle-bar::after {
  background-color: #fff;
  width: 100%;
}
.navbar-toggler.five, .menu-toggler.five {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 20px rgba(50, 73, 179, 0.08);
          box-shadow: 0 15px 20px rgba(50, 73, 179, 0.08);
  margin-left: 80px !important;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .navbar-toggler.five, .menu-toggler.five {
    display: none;
  }
}
.navbar-toggler.five::before, .menu-toggler.five::before {
  position: absolute;
  content: "";
  top: 25px;
  left: -40px;
  width: 1px;
  height: 20px;
  background-color: #989898;
}
.navbar-toggler.five span, .menu-toggler.five span {
  height: 2px;
}
.navbar-toggler.five span::before, .navbar-toggler.five span::after, .menu-toggler.five span::before, .menu-toggler.five span::after {
  height: 2px;
}
.navbar-toggler.five span::after, .menu-toggler.five span::after {
  width: 25px !important;
}
.navbar-toggler.style-01, .menu-toggler.style-01 {
  border: none;
}
.navbar-toggler.style-01:hover, .menu-toggler.style-01:hover {
  background-color: #3249B3;
}
.navbar-toggler.style-01:hover .toggle-bar, .menu-toggler.style-01:hover .toggle-bar {
  background-color: #fff;
}
.navbar-toggler.style-01:hover .toggle-bar::before, .menu-toggler.style-01:hover .toggle-bar::before {
  background-color: #fff;
  width: 100%;
}
.navbar-toggler.style-01:hover .toggle-bar::after, .menu-toggler.style-01:hover .toggle-bar::after {
  background-color: #fff;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .navbar-toggler, .menu-toggler {
    display: none;
  }
}
.navbar-toggler .toggle-bar, .menu-toggler .toggle-bar {
  position: relative;
  width: 24px;
  height: 1px;
  background-color: #fff;
  line-height: inherit;
  margin-top: -12px;
  top: -12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-toggler .toggle-bar::before, .menu-toggler .toggle-bar::before {
  position: absolute;
  content: "";
  bottom: -7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-toggler .toggle-bar::after, .menu-toggler .toggle-bar::after {
  position: absolute;
  content: "";
  bottom: -14px;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-toggler:hover, .menu-toggler:hover {
  background-color: #fff;
}
.navbar-toggler:hover .toggle-bar, .menu-toggler:hover .toggle-bar {
  background-color: #3249B3;
}
.navbar-toggler:hover .toggle-bar::before, .menu-toggler:hover .toggle-bar::before {
  background-color: #3249B3;
  width: 100%;
}
.navbar-toggler:hover .toggle-bar::after, .menu-toggler:hover .toggle-bar::after {
  background-color: #3249B3;
  width: 100%;
}

.menu-toggler-two {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  border: 1px solid #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-toggler-two .toggle-bar {
  position: relative;
  width: 24px;
  height: 1px;
  background-color: #fff;
  line-height: inherit;
  margin-top: -12px;
  -webkit-transform: rotate(37deg);
          transform: rotate(37deg);
  top: -7px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-toggler-two .toggle-bar::after {
  position: absolute;
  content: "";
  -webkit-transform: rotate(285deg);
          transform: rotate(285deg);
  bottom: 0;
  width: 23px;
  right: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-toggler-two:hover {
  background-color: #fff;
}
.menu-toggler-two:hover .toggle-bar {
  background-color: #3249B3;
}
.menu-toggler-two:hover .toggle-bar::before {
  background-color: #3249B3;
  width: 100%;
}
.menu-toggler-two:hover .toggle-bar::after {
  background-color: #3249B3;
  width: 100%;
}

.header-section.two .navbar-toggler {
  border: 1px solid #3249B3;
}
.header-section.two .navbar-toggler span {
  background-color: #3249B3;
}
.header-section.two .navbar-toggler span::before {
  background-color: #3249B3;
}
.header-section.two .navbar-toggler span::after {
  background-color: #3249B3;
}

.header-section.three .navbar-toggler {
  border: 1px solid #3249B3;
}
.header-section.three .navbar-toggler span {
  background-color: #3249B3;
}
.header-section.three .navbar-toggler span::before {
  background-color: #3249B3;
}
.header-section.three .navbar-toggler span::after {
  background-color: #3249B3;
}

.header-bottom-area.five.open .toggle-bar {
  -webkit-transform: none;
          transform: none;
  top: -12px;
}
.header-bottom-area.five.open .toggle-bar::before {
  display: block;
}
.header-bottom-area.five.open .toggle-bar::after {
  -webkit-transform: none;
  transform: none;
  bottom: -14px;
  width: 10px;
}
.header-bottom-area .menu-toggler-wrapper {
  position: absolute;
  right: 8%;
  top: -200%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .menu-toggler-wrapper {
    position: unset;
    width: 100%;
  }
}
.header-bottom-area .menu-toggler-wrapper .main-menu li a {
  color: #fff;
}
.header-bottom-area .search-bar {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bottom-area .header-links-area {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bottom-area .header-action-area {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bottom-area.open .menu-toggler {
  -webkit-transform: translateX(280px);
          transform: translateX(280px);
}
.header-bottom-area.open .menu-toggler.home-three {
  -webkit-transform: none;
          transform: none;
}
@media only screen and (max-width: 1700px) {
  .header-bottom-area.open .menu-toggler {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}
.header-bottom-area.open .toggle-bar {
  width: 24px;
  -webkit-transform: rotate(41deg);
          transform: rotate(41deg);
  top: -7px;
}
.header-bottom-area.open .toggle-bar::before {
  display: none;
}
.header-bottom-area.open .toggle-bar::after {
  -webkit-transform: rotate(273deg);
          transform: rotate(273deg);
  bottom: 0;
  width: 23px;
}
.header-bottom-area.open .search-bar {
  opacity: 0;
  visibility: hidden;
}
.header-bottom-area.open .header-links-area {
  opacity: 0;
  visibility: hidden;
}
.header-bottom-area.open .header-action-area {
  opacity: 0;
  visibility: hidden;
}
.header-bottom-area.open .menu-toggler-wrapper {
  top: 12px;
}

@media only screen and (max-width: 1199px) {
  .navbar-nav {
    margin-left: auto;
    margin-right: 0 !important;
  }
}

.header-section-two .header-bottom-area {
  padding-top: 25px;
}
@media only screen and (max-width: 1480px) {
  .header-section-two .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-section-two .header-bottom-area .navbar-collapse .main-menu li a {
    color: #1C1C1C;
  }
}
.header-section-two .header-bottom-area .navbar-collapse .main-menu li a:hover {
  color: #3249B3;
}
.header-section-two .header-bottom-area .navbar-collapse .main-menu li a:before {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .header-section-two .header-bottom-area .navbar-collapse .main-menu li a:before {
    display: none;
  }
}
.header-section-two .navbar-collapse .main-menu li .sub-menu {
  background-color: #fff;
  border-radius: 5px;
  padding: 0;
  width: 200px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .header-section-two .navbar-collapse .main-menu li .sub-menu {
    display: none;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
  }
}
.header-section-two .navbar-collapse .main-menu li .sub-menu::before {
  display: none;
}
.header-section-two .navbar-collapse .main-menu li .sub-menu li {
  border-bottom: 1px solid #E2E2E2;
}
@media only screen and (max-width: 1199px) {
  .header-section-two .navbar-collapse .main-menu li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.header-section-two .navbar-collapse .main-menu li .sub-menu li a {
  color: #1C1C1C !important;
  padding: 10px 20px;
}
@media only screen and (max-width: 1199px) {
  .header-section-two .navbar-collapse .main-menu li .sub-menu li a {
    color: #fff !important;
  }
}
.header-section-two .navbar-collapse .main-menu li .sub-menu li:hover a {
  color: #fff !important;
}
.header-section-two .header-links {
  margin-left: 45px;
}
.header-section-two .header-links li {
  font-size: 18px;
}
.header-section-two .header-links li .sub-title {
  font-weight: 500;
}
.header-section-two .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1366px) {
  .header-section-two .navbar-nav {
    margin-right: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .header-section-two .navbar-nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header-section-two .navbar-collapse .main-menu li {
  margin-right: 20px;
}
.header-section-two .navbar-collapse .main-menu li a {
  color: #fff;
}
.header-section-two .navbar-collapse .main-menu li a::after {
  display: none;
}
.header-section-two .site-logo {
  margin-right: 0;
}
.header-section-two .navbar-toggler span {
  color: #fff;
}

.header-section-three {
  position: relative;
}
.header-section-three .header-bottom-area {
  background-color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-section-three .header-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-section-three .navbar-expand-xl {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-section-three .site-logo {
  margin-right: 50px;
}

.banner-three-slider {
  position: relative;
  overflow: hidden;
}
.banner-three-slider .swiper-slide-active .banner-content-two .title {
  -webkit-animation: fadeInLeft 2s 0.5s both;
          animation: fadeInLeft 2s 0.5s both;
}
.banner-three-slider .swiper-slide-active .banner-content-two span::after {
  width: 299px;
}
.banner-three-slider .swiper-slide-active .banner-content-two p {
  -webkit-animation: fadeInLeft 2s 0.5s both;
          animation: fadeInLeft 2s 0.5s both;
}

@-webkit-keyframes arrow {
  from {
    -webkit-transform: rotate(-45deg) translate(-30px);
            transform: rotate(-45deg) translate(-30px);
  }
  to {
    -webkit-transform: rotate(-45deg) translate(0px);
            transform: rotate(-45deg) translate(0px);
  }
}

@keyframes arrow {
  from {
    -webkit-transform: rotate(-45deg) translate(-30px);
            transform: rotate(-45deg) translate(-30px);
  }
  to {
    -webkit-transform: rotate(-45deg) translate(0px);
            transform: rotate(-45deg) translate(0px);
  }
}
.home-three-menu .menu-open {
  height: 0;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 100%;
  z-index: 9999;
  background-color: #070D26;
}
.home-three-menu .menu-open::after {
  position: absolute;
  content: "";
  top: 15%;
  right: 30%;
  width: 1px;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.2);
}
.home-three-menu .menu-open.open {
  height: 100%;
}
.home-three-menu .menu-open.open .close-btn {
  opacity: 1;
  visibility: visible;
}
.home-three-menu .menu-open.open .menu-text {
  opacity: 1;
  visibility: visible;
}
.home-three-menu .menu-open.open .navigation-three {
  opacity: 1;
  visibility: visible;
}
.home-three-menu .menu-open.open .navigation-three li a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.home-three-menu .menu-open.open .address-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-animation: fadeInRight 1s linear;
          animation: fadeInRight 1s linear;
}
.home-three-menu .close-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 30px;
}
.home-three-menu .close-btn .site-logo {
  margin-right: 0;
}
.home-three-menu .close-btn .cross-btn {
  font-size: 30px;
  color: #fff;
}
.home-three-menu .nav-wrapper {
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.home-three-menu .nav-wrapper .menu-text {
  position: absolute;
  top: 45%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  font-size: 400px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  letter-spacing: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}
.home-three-menu .navigation-three {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  counter-reset: list-counter;
}
.home-three-menu .navigation-three li a {
  font-size: 45px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Jost", sans-serif;
  padding-bottom: 45px;
  counter-increment: list-counter;
  opacity: 0;
  -webkit-transform: translateY(10px) rotateX(75deg);
          transform: translateY(10px) rotateX(75deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: opacity, visibility, -webkit-transform;
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  visibility: hidden;
}
.home-three-menu .navigation-three li a span {
  -webkit-transition: 0.8s all ease;
  transition: 0.8s all ease;
}
.home-three-menu .navigation-three li a span:hover {
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
  letter-spacing: 2.5px;
  color: #fff;
}
.home-three-menu .navigation-three li a i {
  display: none;
}
.home-three-menu .navigation-three li .sub-menu {
  display: none;
  padding-left: 40px;
  padding-bottom: 20px;
}
.home-three-menu .navigation-three li .sub-menu li a {
  font-size: 28px;
  padding-bottom: 25px;
}
.home-three-menu .navigation-three li .sub-menu li a::before {
  display: none;
}
.home-three-menu .address-wrapper {
  opacity: 0;
  visibility: hidden;
  padding-right: 150px;
  -webkit-transition: 0.1s all ease;
  transition: 0.1s all ease;
}
.home-three-menu .address-wrapper .title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #fff;
  margin-bottom: 25px;
}
.home-three-menu .address-wrapper p {
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.home-three-menu .address-wrapper .address {
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
.banner-section {
  position: relative;
  padding-top: 275px;
  padding-bottom: 148px;
  background: transparent linear-gradient(241deg, #9DBAFE 0%, #3467E4 100%) 0% 0% no-repeat padding-box;
  overflow: hidden;
  z-index: 9;
}
.banner-section .banner-shape {
  position: absolute;
  right: 18%;
  top: 18%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
.banner-section.home-three {
  background: none;
  padding-top: 110px;
  padding-bottom: 0;
}
.banner-section .home-three-banner {
  background-color: #F5F8FF;
  padding-top: 50px;
  padding-left: 120px;
  padding-bottom: 175px;
  margin-bottom: 90px;
}
.banner-section .home-three-banner .banner-image {
  position: absolute;
  left: 40%;
  top: 244px;
}
@media only screen and (max-width: 991px) {
  .banner-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section {
    padding-top: 160px;
    padding-bottom: 110px;
  }
}
.banner-section.two {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(157, 186, 254, 0.2)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(157, 186, 254, 0.2) 100%);
  padding-top: 175px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .banner-section.two {
    padding-top: 155px;
    padding-bottom: 100px;
  }
}
.banner-section.two .banner-element-five {
  left: 900px;
  bottom: 180px;
  z-index: 10;
}
.banner-section.two .banner-element-eightteen {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-section.two .banner-element-nineteen {
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
.banner-section.two .banner-element-nineteen.two {
  top: 70%;
}
@media only screen and (max-width: 575px) {
  .banner-section.two .banner-element-nineteen.two {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-nineteen {
    display: none;
  }
}
.banner-section.two .banner-element-twenty {
  position: absolute;
  top: 15%;
  left: 30%;
  -webkit-animation: rotate 7s linear infinite;
          animation: rotate 7s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-one {
  position: absolute;
  top: 70%;
  right: 5%;
  -webkit-animation: rotate 7s linear infinite;
          animation: rotate 7s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-one {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-two {
  position: absolute;
  top: 20%;
  left: 5%;
}
.banner-section.two .banner-element-twenty-two.two {
  left: 0;
  top: auto;
  bottom: 0;
}
.banner-section.two .banner-element-twenty-three {
  position: absolute;
  top: 20%;
  right: 5%;
}
.banner-section.two .banner-element-twenty-three.two {
  right: -10%;
  top: 0;
}
.banner-section.two .banner-element-twenty-four {
  position: absolute;
  top: 75%;
  left: 15%;
}
.banner-section.two .banner-element-twenty-five {
  position: absolute;
  top: 42%;
  left: 35%;
  z-index: -1;
  -webkit-animation: 8s float-bob-x infinite;
          animation: 8s float-bob-x infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-five {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-six {
  position: absolute;
  top: 75%;
  left: 37%;
  z-index: 10;
  -webkit-animation: 10s float-bob-x infinite;
          animation: 10s float-bob-x infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-six {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-seven {
  position: absolute;
  top: 15%;
  left: 37%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-seven {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-eight {
  position: absolute;
  bottom: 5%;
  left: 45%;
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-eight {
    display: none;
  }
}
.banner-section.two .banner-element-twenty-nine {
  position: absolute;
  bottom: 17%;
  left: 7%;
  opacity: 0.4;
  -webkit-animation: scroll-ver 5s linear infinite;
          animation: scroll-ver 5s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section.two .banner-element-twenty-nine {
    display: none;
  }
}
.banner-section.two.inner {
  background: #F5F8FF !important;
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 991px) {
  .banner-section.two.inner {
    padding-bottom: 100px;
  }
}
.banner-section.three {
  background: #F5F8FF;
}
.banner-section.five {
  background: #F5F8FF;
  padding-top: 145px;
  padding-bottom: 0;
}
.faq-top-banner .banner-section.five{
    padding-top: 0px !important;
}
.banner-section.five .banner-element-thirty {
  position: absolute;
  bottom: 10%;
  left: 7%;
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty {
    display: none;
  }
}
.banner-section.five .banner-element-thirty-one {
  position: absolute;
  top: 40%;
  left: 5%;
  -webkit-animation: rotate 25s linear infinite;
          animation: rotate 25s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty-one {
    display: none;
  }
}
.banner-section.five .banner-element-thirty-two {
  position: absolute;
  top: 20%;
  right: 10%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty-two {
    display: none;
  }
}
.banner-section.five .banner-element-thirty-three {
  position: absolute;
  top: 53%;
  right: 15%;
  width: 22%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty-three {
    display: none;
  }
}
.banner-section.five .banner-element-thirty-four {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 22%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty-four {
    display: none;
  }
}
.banner-section.five .banner-element-thirty-five {
  position: absolute;
  top: 40%;
  left: 15%;
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .banner-section.five .banner-element-thirty-five {
    display: none;
  }
}
.banner-section.five .banner-content {
  text-align: center;
}
.banner-section.five .banner-content .title {
  font-weight: 700 !important;
  width: 80%;
  margin: 0 auto;
}
.banner-section.five .banner-content .banner-btn {
  margin: -10px;
  margin-top: 40px;
}
.banner-section.five .banner-content .banner-btn a {
  margin: 10px;
}
.banner-section.five .banner-content .banner-btn a.two {
  background-color: #9DBAFE;
  border: 1px solid #9DBAFE;
}
.banner-section.five .banner-content .banner-btn a.two:hover {
  border: 1px solid #3249B3;
}
.banner-section.five .banner-thumb {
  margin-top: 40px;
  position: relative;
}
.banner-section.five .banner-thumb img {
  width: 100%;
}
.banner-section.five .banner-thumb .banner-thumb-element {
  position: absolute;
  width: 50%;
  bottom: -5%;
  right: -10%;
}
.banner-section.five .banner-thumb .banner-thumb-element img {
  -webkit-animation: scroll-ver 3s linear infinite;
          animation: scroll-ver 3s linear infinite;
}
.banner-section .banner-text {
  position: absolute;
  top: 17%;
  left: -5px;
}
@media only screen and (max-width: 400px) {
  .banner-section .banner-text {
    top: 14%;
  }
}
.banner-section .banner-text span {
  font-weight: 700;
  font-size: 280px;
  line-height: 280px;
  background: transparent linear-gradient(184deg, #9DBAFE 0%, rgba(157, 186, 254, 0.01) 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  letter-spacing: 3px;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-text span {
    font-size: 180px;
    line-height: 180px;
  }
}
.banner-section .banner-element-one {
  position: absolute;
  top: -215px;
  left: 82px;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-element-one {
    display: none;
  }
}
.banner-section .banner-element-two {
  position: absolute;
  top: 180px;
  left: 220px;
  width: 5%;
  -webkit-animation: 10s float-bob-x infinite;
          animation: 10s float-bob-x infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-element-two {
    display: none;
  }
}
.banner-section .banner-element-three {
  position: absolute;
  top: 220px;
  left: 450px;
  width: 1.5%;
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-element-three {
    display: none;
  }
}
.banner-section .banner-element-four {
  position: absolute;
  bottom: 50px;
  left: 30px;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
.banner-section .banner-element-four.two {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
  z-index: 3;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-element-four.two {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-element-four {
    display: none;
  }
}
.banner-section .banner-element-five {
  position: absolute;
  bottom: 30px;
  left: 600px;
  -webkit-animation: rotate 7s linear infinite;
          animation: rotate 7s linear infinite;
}
.banner-section .banner-element-five.two {
  left: 400px;
  bottom: 240px;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-element-five.two {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-element-five {
    display: none;
  }
}
.banner-section .banner-group-shape {
  height: 800px;
  width: 1000px;
  position: absolute;
  background-size: cover;
  background-position: center;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (max-width: 1750px) {
  .banner-section .banner-group-shape {
    width: 900px;
  }
}
@media only screen and (max-width: 1650px) {
  .banner-section .banner-group-shape {
    width: 800px;
  }
}
@media only screen and (max-width: 1500px) {
  .banner-section .banner-group-shape {
    width: 700px;
  }
}
@media only screen and (max-width: 1300px) {
  .banner-section .banner-group-shape {
    width: 600px;
    height: 900px;
  }
}
@media only screen and (max-width: 1220px) {
  .banner-section .banner-group-shape {
    width: 500px;
    height: 900px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-group-shape {
    display: none;
  }
}
.banner-section .banner-group-shape .banner-group-element-one,
.banner-section .banner-group-shape .banner-group-element-two,
.banner-section .banner-group-shape .banner-group-element-three,
.banner-section .banner-group-shape .banner-group-element-four,
.banner-section .banner-group-shape .banner-group-element-five,
.banner-section .banner-group-shape .banner-group-element-six,
.banner-section .banner-group-shape .banner-group-element-seven,
.banner-section .banner-group-shape .banner-group-element-eight,
.banner-section .banner-group-shape .banner-group-element-nine,
.banner-section .banner-group-shape .banner-group-element-ten,
.banner-section .banner-group-shape .banner-group-element-eleven,
.banner-section .banner-group-shape .banner-group-element-twelve,
.banner-section .banner-group-shape .banner-group-element-thirteen,
.banner-section .banner-group-shape .banner-group-element-fourteen,
.banner-section .banner-group-shape .banner-group-element-fifteen,
.banner-section .banner-group-shape .banner-group-element-sixteen,
.banner-section .banner-group-shape .banner-group-element-seventeen {
  position: absolute;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0;
}
.banner-section .banner-group-shape .banner-group-element-one {
  top: 400px;
  left: 190px;
  z-index: 2;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
@media only screen and (max-width: 1300px) {
  .banner-section .banner-group-shape .banner-group-element-one {
    left: 70px;
  }
}
.banner-section .banner-group-shape .banner-group-element-two {
  top: -100px;
  left: 300px;
  z-index: 3;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}
@media only screen and (max-width: 1300px) {
  .banner-section .banner-group-shape .banner-group-element-two {
    left: 150px;
  }
}
.banner-section .banner-group-shape .banner-group-element-three {
  top: 110px;
  left: 0;
}
.banner-section .banner-group-shape .banner-group-element-four {
  top: 800px;
  left: 390px;
  z-index: 4;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}
.banner-section .banner-group-shape .banner-group-element-four img {
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-five {
  bottom: 530px;
  right: 100px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.banner-section .banner-group-shape .banner-group-element-five img {
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-six {
  top: 0px;
  left: 680px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-duration: 1.7s;
          transition-duration: 1.7s;
}
.banner-section .banner-group-shape .banner-group-element-six img {
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-seven {
  top: 400px;
  left: 570px;
  z-index: 4;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}
.banner-section .banner-group-shape .banner-group-element-seven img {
  -webkit-animation: tada 10s linear infinite;
          animation: tada 10s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-eight {
  top: 180px;
  left: 780px;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  display: none;
}
.banner-section .banner-group-shape .banner-group-element-eight img {
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-nine {
  top: 600px;
  left: 580px;
  z-index: 4;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
}
.banner-section .banner-group-shape .banner-group-element-nine img {
  -webkit-animation: tada 5s linear infinite;
          animation: tada 5s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-ten {
  top: 800px;
  left: 730px;
  z-index: 3;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.banner-section .banner-group-shape .banner-group-element-ten img {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-eleven {
  top: 800px;
  left: 600px;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}
.banner-section .banner-group-shape .banner-group-element-eleven img {
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-twelve {
  top: 690px;
  left: 0;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}
.banner-section .banner-group-shape .banner-group-element-twelve img {
  -webkit-animation: scroll-down 4s linear infinite;
          animation: scroll-down 4s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-thirteen {
  top: 160px;
  left: 0;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}
.banner-section .banner-group-shape .banner-group-element-thirteen img {
  -webkit-animation: scroll-ver 3s linear infinite;
          animation: scroll-ver 3s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-fourteen {
  top: 600px;
  left: 300px;
  z-index: 3;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.banner-section .banner-group-shape .banner-group-element-fourteen img {
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1300px) {
  .banner-section .banner-group-shape .banner-group-element-fourteen {
    left: 500px;
  }
}
.banner-section .banner-group-shape .banner-group-element-fifteen {
  top: 270px;
  left: 500px;
  z-index: 3;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
  -webkit-transition-duration: 1.3s;
          transition-duration: 1.3s;
}
.banner-section .banner-group-shape .banner-group-element-fifteen img {
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-sixteen {
  top: 460px;
  left: 680px;
}
.banner-section .banner-group-shape .banner-group-element-sixteen img {
  -webkit-animation: zoominoutsinglefeatured 4s linear infinite;
          animation: zoominoutsinglefeatured 4s linear infinite;
}
.banner-section .banner-group-shape .banner-group-element-seventeen {
  top: 680px;
  left: 390px;
}
.banner-section .banner-group-shape .banner-group-element-seventeen img {
  -webkit-animation: zoominoutsinglefeatured 2s linear infinite;
          animation: zoominoutsinglefeatured 2s linear infinite;
}
.banner-section .banner-group-shape.active .banner-group-element-one,
.banner-section .banner-group-shape.active .banner-group-element-two,
.banner-section .banner-group-shape.active .banner-group-element-three,
.banner-section .banner-group-shape.active .banner-group-element-four,
.banner-section .banner-group-shape.active .banner-group-element-five,
.banner-section .banner-group-shape.active .banner-group-element-six,
.banner-section .banner-group-shape.active .banner-group-element-seven,
.banner-section .banner-group-shape.active .banner-group-element-eight,
.banner-section .banner-group-shape.active .banner-group-element-nine,
.banner-section .banner-group-shape.active .banner-group-element-ten,
.banner-section .banner-group-shape.active .banner-group-element-eleven,
.banner-section .banner-group-shape.active .banner-group-element-twelve,
.banner-section .banner-group-shape.active .banner-group-element-thirteen,
.banner-section .banner-group-shape.active .banner-group-element-fourteen,
.banner-section .banner-group-shape.active .banner-group-element-fifteen,
.banner-section .banner-group-shape.active .banner-group-element-sixteen,
.banner-section .banner-group-shape.active .banner-group-element-seventeen {
  opacity: 1;
}
.banner-section .banner-group-shape.active .banner-group-element-one {
  top: 290px;
}
.banner-section .banner-group-shape.active .banner-group-element-two {
  top: 240px;
}
.banner-section .banner-group-shape.active .banner-group-element-four {
  top: 640px;
}
.banner-section .banner-group-shape.active .banner-group-element-five {
  bottom: 30px;
}
.banner-section .banner-group-shape.active .banner-group-element-six {
  top: 100px;
}
.banner-section .banner-group-shape.active .banner-group-element-seven {
  top: 200px;
}
.banner-section .banner-group-shape.active .banner-group-element-nine {
  top: 440px;
}
.banner-section .banner-group-shape.active .banner-group-element-ten {
  top: 610px;
}
.banner-section .banner-group-shape.active .banner-group-element-eleven {
  top: 690px;
}
.banner-section .banner-group-shape.active .banner-group-element-twelve {
  left: 150px;
}
.banner-section .banner-group-shape.active .banner-group-element-thirteen {
  left: 180px;
}
.banner-section .banner-group-shape.active .banner-group-element-fourteen {
  top: 410px;
}
.banner-section .banner-group-shape.active .banner-group-element-fifteen {
  left: 300px;
}
@media only screen and (max-width: 1300px) {
  .banner-section .banner-group-shape.active .banner-group-element-fifteen {
    left: 500px;
  }
}
.banner-section .banner-content {
  position: relative;
  z-index: 9;
}
.banner-section .banner-content .title {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content .title {
    margin-bottom: 10px;
  }
}
.banner-section .banner-content .sub-title {
  color: #F8D458;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content .sub-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.banner-section .banner-content p {
  color: #fff;
  width: 61%;
  line-height: 1.8em;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content p {
    width: 100%;
  }
}
.banner-section .banner-content.two .banner-content-header {
  text-align: center;
}
.banner-section .banner-content.two .title {
  color: #1C1C1C;
  margin-bottom: 0;
}
.banner-section .banner-content.three .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #3249B3;
  text-transform: uppercase;
}
.banner-section .banner-content.three .title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2em;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-content.three .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-content.three .title {
    font-size: 30px;
  }
}
.banner-section .banner-content.three p {
  color: #4B4B4B;
  width: 100%;
}
.banner-section .banner-content-two .title {
  font-size: 115px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
  margin-bottom: 90px;
}
.banner-section .banner-content-two span {
  display: block;
  position: relative;
  z-index: 0;
}
.banner-section .banner-content-two span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0px;
  height: 299px;
  background: #C2D4FF;
  -webkit-transition: 1.8s all ease-in-out;
  transition: 1.8s all ease-in-out;
}
.banner-section .banner-content-two p {
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1C1C1C;
  position: relative;
  z-index: 0;
  padding-top: 65px;
  padding-left: 130px;
}
.banner-section .banner-thumb-two {
  background-color: #9DBAFE;
  border-radius: 25px;
  padding: 40px 0 80px 0;
  width: 80%;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-thumb-two {
    margin-right: auto;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-thumb-two {
    width: 100%;
  }
}
.banner-section .banner-thumb-two .banner-thumb-two-element {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.banner-section .banner-thumb-two .banner-thumb-two-element img {
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-thumb-two .banner-thumb-two-element {
    display: none;
  }
}
.banner-section .banner-thumb-item {
  -webkit-transform: scale(90%);
          transform: scale(90%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.banner-section .banner-form {
  margin-top: 60px;
  position: relative;
}
.banner-section .banner-form input {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(50, 73, 179, 0.1);
          box-shadow: 0 0 20px rgba(50, 73, 179, 0.1);
  font-size: 15px;
  color: #535353;
  font-weight: 400;
  height: 80px;
  position: relative;
  padding-right: 225px;
}
.banner-section .banner-form input::-webkit-input-placeholder {
  color: #535353;
}
.banner-section .banner-form input::-moz-placeholder {
  color: #535353;
}
.banner-section .banner-form input:-ms-input-placeholder {
  color: #535353;
}
.banner-section .banner-form input::-ms-input-placeholder {
  color: #535353;
}
.banner-section .banner-form input::placeholder {
  color: #535353;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-form input {
    padding-right: 30px;
    height: 60px;
  }
}
.banner-section .banner-form button, .banner-section .banner-form input[type=button], .banner-section .banner-form input[type=reset], .banner-section .banner-form input[type=submit] {
  position: absolute;
  top: 12px;
  right: 12px;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-form button, .banner-section .banner-form input[type=button], .banner-section .banner-form input[type=reset], .banner-section .banner-form input[type=submit] {
    padding: 16px 30px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-form button, .banner-section .banner-form input[type=button], .banner-section .banner-form input[type=reset], .banner-section .banner-form input[type=submit] {
    position: unset;
    width: 100%;
    margin-top: 10px;
  }
}
.banner-section .banner-slider {
  overflow: hidden;
}
.banner-section .banner-slider .swiper-slide-active .banner-thumb-item {
  -webkit-transform: scale(100%);
          transform: scale(100%);
}
.banner-section .banner-slider .swiper-pagination {
  position: absolute !important;
  left: 0%;
  bottom: 4%;
}
.banner-section .banner-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: none;
}
.banner-section .banner-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 999px;
}
.banner-section .banner-area {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 25px 50px rgba(50, 73, 179, 0.2);
          box-shadow: 0 25px 50px rgba(50, 73, 179, 0.2);
  padding: 40px;
  position: relative;
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section .banner-area {
    margin-top: 30px;
    padding: 30px;
  }
}
.banner-section .banner-area .banner-text {
  top: -10px;
  right: 10px;
  left: auto;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-text {
    display: none;
  }
}
.banner-section .banner-area .banner-thumb {
  position: absolute;
  top: -20%;
  right: -12%;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-thumb {
    position: unset;
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-area .banner-thumb {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section .banner-area .banner-thumb {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-left-content {
    text-align: center;
    margin-top: 60px;
  }
}
.banner-section .banner-area .banner-left-content .banner-left-arrow {
  margin-left: 80px;
  margin-top: 40px;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-area .banner-left-content .banner-left-arrow {
    display: none;
  }
}
.banner-section .banner-area .banner-left-content .banner-left-intro {
  margin-left: 100px;
  margin-top: 10px;
}
@media only screen and (max-width: 575px) {
  .banner-section .banner-area .banner-left-content .banner-left-intro {
    display: none;
  }
}
.banner-section .banner-area .banner-left-content .banner-left-footer {
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-left-content .banner-left-footer {
    margin-top: 30px;
  }
}
.banner-section .banner-area .banner-left-content .title {
  color: #3249B3;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.banner-section .banner-area .banner-left-content p {
  color: #4B4B4B;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-left-content p {
    margin: 0 auto;
  }
}
.banner-section .banner-area .banner-left-content .banner-left-btn {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .banner-section .banner-area .banner-left-content .circle svg {
    left: 0;
  }
}
@media only screen and (max-width: 375px) {
  .banner-section .banner-area .banner-left-content .circle svg {
    top: -96px;
    left: -47px;
    width: 135%;
    height: 292px;
  }
}

.banner-arrow {
  margin-top: 40px;
  margin-left: 30px;
}

.banner-widget {
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .banner-widget {
    margin-left: 0;
  }
}

.banner-widget-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 60%;
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 1560px) {
  .banner-widget-wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 1485px) {
  .banner-widget-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-widget-wrapper {
    width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .banner-widget-wrapper {
    width: 60%;
  }
}
@media only screen and (max-width: 880px) {
  .banner-widget-wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 750px) {
  .banner-widget-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 660px) {
  .banner-widget-wrapper {
    width: 100%;
    padding: 35px 10px;
  }
}
@media only screen and (max-width: 475px) {
  .banner-widget-wrapper {
    display: block;
    text-align: center;
  }
}
.banner-widget-wrapper * {
  z-index: 9;
  margin: 2px;
}
.banner-widget-wrapper::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .banner-widget-wrapper::before {
    left: -5px;
    bottom: -5px;
  }
}
.banner-widget-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  z-index: 2;
}
@media only screen and (max-width: 475px) {
  .banner-widget-wrapper::after {
    display: none;
  }
}
.banner-widget-wrapper .banner-widget-content p {
  font-size: 18px;
  width: 100%;
  color: #1C1C1C;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .banner-widget-wrapper .banner-widget-content p {
    font-size: 14px;
  }
}
.banner-widget-wrapper .banner-widget-content p span {
  color: #9DBAFE;
  font-weight: 700;
}
@media only screen and (max-width: 475px) {
  .banner-widget-wrapper .banner-widget-right {
    width: 100%;
  }
}
@media only screen and (max-width: 1366px) {
  .banner-widget-wrapper .banner-widget-btn a {
    padding: 10px 20px;
  }
}

.banner-left-video {
  margin-left: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  .banner-left-video {
    margin-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .banner-left-video {
    margin: 0;
    margin-bottom: 40px;
  }
}

.circle {
  position: relative;
}

.circle text {
  font-size: 10px;
  color: #3249B3;
  text-transform: uppercase;
  font-weight: bold;
}

.circle svg {
  position: absolute;
  left: -45.1%;
  top: -103px;
  width: 100%;
  height: 305px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.banner-slider {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-slider .slider-next,
.banner-slider .slider-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
}
.banner-slider .slider-next:hover,
.banner-slider .slider-prev:hover {
  background-color: rgba(50, 73, 179, 0.1);
}
@media only screen and (max-width: 991px) {
  .banner-slider .slider-next,
.banner-slider .slider-prev {
    display: none;
  }
}
.banner-slider .slider-prev {
  left: 60px;
}
.banner-slider .slider-next {
  right: 60px;
}

.breadcrumb-area {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-top: 10px;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.breadcrumb li {
  display: inline-block;
  color: #3249B3;
  font-family: "Poppins", sans-serif;
}

.breadcrumb-item a {
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .breadcrumb-item a {
    font-size: 14px;
  }
}

.breadcrumb-item.active {
  font-weight: 500;
  font-size: 14px;
  position: relative;
  color: #3249B3;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .breadcrumb-item.active {
    font-size: 14px;
  }
}

.breadcrumb-item.active::before {
  content: ">";
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3249B3;
  font-size: 16px;
  left: 0;
  top: 1px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .breadcrumb-item.active::before {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.footer-section {
  background-color: #ecf2ff;
  overflow: hidden;
  position: relative;
}
.footer-section.two div[class*=col]:nth-of-type(4n + 4) .footer-widget .title {
  color: #fff;
}
@media only screen and (max-width: 1499px) {
  .footer-section.two div[class*=col]:nth-of-type(4n + 4) .footer-widget .title {
    color: #1C1C1C;
  }
}
.footer-section.two div[class*=col]:nth-of-type(4n + 4) .footer-widget .title::after {
  background-color: #fff;
}
@media only screen and (max-width: 1499px) {
  .footer-section.two div[class*=col]:nth-of-type(4n + 4) .footer-widget .title::after {
    background-color: #3249B3;
  }
}
.footer-section.three {
  background: #070D26;
}
.footer-section.three .footer-widget p {
  color: #fff;
}
.footer-section.five {
  background-color: #F5F8FF;
}
.footer-section.five .footer-logo {
  margin-bottom: 35px;
}
.footer-section.five .footer-widget .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
}
.footer-section.five .footer-widget .title::after {
  display: none;
}
.footer-section.five .footer-widget p {
  color: #727272;
}
.footer-section.five .footer-list li {
  padding-bottom: 15px;
}
.footer-section .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.footer-section .footer-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-section .footer-element-one {
  position: absolute !important;
  top: 10%;
  left: 10% !important;
  -webkit-animation: zoominoutsinglefeatured 10s linear infinite;
          animation: zoominoutsinglefeatured 10s linear infinite;
}
@media only screen and (max-width: 991px) {
  .footer-section .footer-element-one {
    display: none;
  }
}
.footer-section .footer-element-two {
  position: absolute;
  bottom: 20%;
  right: 15%;
  opacity: 0.35;
}
@media only screen and (max-width: 575px) {
  .footer-section .footer-element-two {
    display: none;
  }
}
.footer-section .footer-element-two img {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
.footer-section .footer-element-three {
  position: absolute;
  bottom: 8%;
  right: 12%;
  opacity: 0.35;
}
@media only screen and (max-width: 575px) {
  .footer-section .footer-element-three {
    display: none;
  }
}
.footer-section .footer-element-three img {
  -webkit-animation: scroll-ver 3s linear infinite;
          animation: scroll-ver 3s linear infinite;
}
.footer-section .footer-element-four {
  position: absolute;
  top: 12%;
  right: 0;
  width: 1%;
  opacity: 0.25;
}
@media only screen and (max-width: 575px) {
  .footer-section .footer-element-four {
    display: none;
  }
}
.footer-section .footer-element-four img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
.footer-section .footer-element-five {
  position: absolute;
  top: 18%;
  right: 5%;
  opacity: 0.35;
}
@media only screen and (max-width: 575px) {
  .footer-section .footer-element-five {
    display: none;
  }
}
.footer-section .footer-element-five img {
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
.footer-section .footer-element-six {
  position: absolute;
  top: 40%;
  right: 10%;
  opacity: 0.35;
}
@media only screen and (max-width: 575px) {
  .footer-section .footer-element-six {
    display: none;
  }
}
.footer-section .footer-element-six img {
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
.footer-section .footer-element-seven {
  position: absolute !important;
  top: 47%;
  left: 13%;
  opacity: 0.35;
}
@media only screen and (max-width: 1700px) {
  .footer-section .footer-element-seven {
    display: none;
  }
}
.footer-section .footer-element-seven.two {
  top: 55%;
  left: 2%;
}
.footer-section .footer-element-seven.three {
  left: 60px !important;
  opacity: 1;
}
.footer-section .footer-element-seven img {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
.footer-section .footer-element-eight {
  position: absolute;
  top: 20%;
  right: 2%;
  opacity: 0.25;
  z-index: 3;
}
.footer-section .footer-element-eight img {
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}

.footer-top-area {
  position: relative;
  z-index: 9;
  margin-bottom: 80px;
}
.footer-top-area::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 20%;
  width: 36%;
  height: 1px;
  border-bottom: 1px dashed #9DBAFE;
}
@media only screen and (max-width: 1499px) {
  .footer-top-area::after {
    width: 90%;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.footer-contact-list .sub-title {
  font-weight: 500;
  margin-bottom: 5px;
}
.footer-contact-list .link-title {
  font-weight: 700;
  margin-bottom: 0;
}

div[class*=col]:nth-of-type(3n + 3) .footer-contact-list .sub-title {
  color: #fff;
}
@media only screen and (max-width: 1499px) {
  div[class*=col]:nth-of-type(3n + 3) .footer-contact-list .sub-title {
    color: #4B4B4B;
  }
}
div[class*=col]:nth-of-type(3n + 3) .footer-contact-list .link-title {
  color: #fff;
}
@media only screen and (max-width: 1499px) {
  div[class*=col]:nth-of-type(3n + 3) .footer-contact-list .link-title {
    color: #1C1C1C;
  }
}

.footer-list {
  margin-bottom: -10px;
}
.footer-list.style-01 li a {
  color: #fff;
}
.footer-list.style-01 li a i {
  margin-right: 5px;
}
.footer-list li {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .footer-list li {
    font-size: 14px;
  }
}
.footer-list li a {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-list li a:hover {
  color: #3249B3;
  padding-left: 5px;
}

.footer-widget .title {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-top: -5px;
}
.footer-widget .title.style-01 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-widget .title.style-01::after {
  content: none;
}
.footer-widget .title.style-01::before {
  position: absolute;
  content: "";
  bottom: -22px;
  left: 0;
  width: 60px;
  height: 1px;
  border: 1px dashed;
}
.footer-widget .title::after {
  position: absolute;
  content: "";
  bottom: -22px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #3249B3;
}
@media only screen and (max-width: 991px) {
  .footer-widget .title {
    margin-bottom: 40px;
  }
  .footer-widget .title::after {
    bottom: -20px;
  }
}
.footer-widget .title2 {
  position: relative;
}
.footer-widget .title2::after {
  position: absolute;
  content: "";
  bottom: -22px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .footer-widget .title2 {
    margin-bottom: 40px;
  }
  .footer-widget .title2::after {
    bottom: -20px;
  }
}
.footer-widget.widget--style {
  background-color: #9DBAFE;
  padding: 80px 30px !important;
}
.footer-widget.widget--style .footer-logo {
  margin-bottom: 30px;
}
.footer-widget.widget--style p {
  color: #fff;
  font-size: 14px;
}
.footer-widget.widget--style .footer-social li a {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
}
.footer-widget.widget--style .footer-social li a:hover {
  border: 1px solid #3249B3;
}
.footer-widget.widget-two {
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  .footer-widget.widget-two {
    padding: 15px 0;
  }
}
.footer-widget.widget-padding {
  padding-left: 45px;
}
@media only screen and (max-width: 1199px) {
  .footer-widget.widget-padding {
    padding-left: 0;
  }
}

.download-list li {
  background-color: #9DBAFE;
  border-radius: 5px;
  color: #fff;
  padding: 15px 30px !important;
  margin-bottom: 15px !important;
  display: inline-block !important;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.download-list li:hover {
  background-color: #3249B3;
}

.footer-social {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.footer-social.style-01 li a {
  border: 1px solid #707070;
  color: #707070;
}
.footer-social.style-01 li a:hover, .footer-social.style-01 li a.active {
  background-color: #3249B3;
  color: #fff;
  border: 1px solid #3249B3;
}
@media only screen and (max-width: 991px) {
  .footer-social {
    margin-top: 20px;
  }
}
.footer-social li {
  display: inline-block;
}
.footer-social li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  border: 1px solid #3249B3;
  border-radius: 50%;
  color: #3249B3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-social li a:hover, .footer-social li a.active {
  background-color: #3249B3;
  color: #fff;
}
.footer-social li + li {
  margin-left: 5px;
}
.footer-social.two li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #E1E1E1;
  color: #727272;
}
.footer-social.two li a:hover, .footer-social.two li a.active {
  background-color: #3249B3;
  color: #fff;
  border: 1px solid #3249B3;
}
.footer-social.two li + li {
  margin-left: 10px;
}

.footer-logo {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}
.footer-logo a {
  margin-right: 0;
}

.footer-top-call-area {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 80px;
  margin-bottom: 100px;
}
.footer-top-call-area::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -40%;
  width: 140%;
  height: 100px;
  background-color: #3249B3;
  border-radius: 0 6px 6px 0;
  z-index: -1;
}
.footer-top-call-area .footer-top-call-content .title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-top-call-area .footer-top-call-link span {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  font-family: "Jost", sans-serif;
}
.footer-top-call-area .footer-top-call-link span i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  color: #3249B3;
  margin-right: 10px;
}

.envato-author {
  margin-bottom: 30px;
}

.footer-subscribe-form {
  position: relative;
}
.footer-subscribe-form.two input {
  border-radius: 6px;
}
.footer-subscribe-form.two button, .footer-subscribe-form.two input[type=button], .footer-subscribe-form.two input[type=reset], .footer-subscribe-form.two input[type=submit] {
  position: unset;
  width: 100%;
  height: auto;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 30px;
  margin-top: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-subscribe-form.two button:hover, .footer-subscribe-form.two input[type=button]:hover, .footer-subscribe-form.two input[type=reset]:hover, .footer-subscribe-form.two input[type=submit]:hover {
  background-color: #3249B3;
  border: 1px solid #3249B3;
}
.footer-subscribe-form.three input {
  border-radius: 6px;
  border: 1px solid #E1E1E1;
  height: 60px;
  text-align: center;
  color: #727272;
  font-size: 15px;
  padding-right: 25px;
}
.footer-subscribe-form.three input::-webkit-input-placeholder {
  color: #727272;
}
.footer-subscribe-form.three input::-moz-placeholder {
  color: #727272;
}
.footer-subscribe-form.three input:-ms-input-placeholder {
  color: #727272;
}
.footer-subscribe-form.three input::-ms-input-placeholder {
  color: #727272;
}
.footer-subscribe-form.three input::placeholder {
  color: #727272;
}
.footer-subscribe-form.three button, .footer-subscribe-form.three input[type=button], .footer-subscribe-form.three input[type=reset], .footer-subscribe-form.three input[type=submit] {
  position: unset;
  width: 100%;
  height: auto;
  background-color: #3249B3;
  color: #fff !important;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 15px;
  margin-top: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-subscribe-form.three button:hover, .footer-subscribe-form.three input[type=button]:hover, .footer-subscribe-form.three input[type=reset]:hover, .footer-subscribe-form.three input[type=submit]:hover {
  background-color: #3249B3;
  border: 1px solid #3249B3;
}
.footer-subscribe-form input {
  padding-right: 70px;
  color: #000 !important;
}
@media only screen and (max-width: 1499px) {
  .footer-subscribe-form input {
    border: 1px solid #E2E2E2;
  }
}
.footer-subscribe-form button, .footer-subscribe-form input[type=button], .footer-subscribe-form input[type=reset], .footer-subscribe-form input[type=submit] {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #3249B3;
  border-radius: 5px;
  width: 39px;
  height: 39px;
  color: #fff;
  font-size: 20px;
}

.footer-subscribe .form-group .form-control {
  height: 60px;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #181717;
}
.footer-subscribe .form-group .form-control::-webkit-input-placeholder {
  color: #B9B9B9;
  font-size: 16px;
  font-weight: 400;
}
.footer-subscribe .form-group .form-control::-moz-placeholder {
  color: #B9B9B9;
  font-size: 16px;
  font-weight: 400;
}
.footer-subscribe .form-group .form-control:-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 16px;
  font-weight: 400;
}
.footer-subscribe .form-group .form-control::-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 16px;
  font-weight: 400;
}
.footer-subscribe .form-group .form-control::placeholder {
  color: #B9B9B9;
  font-size: 16px;
  font-weight: 400;
}

.footer-area {
  position: relative;
  z-index: 2;
}
.footer-area::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 41%;
  height: 100%;
  background-color: #3249B3;
  z-index: -1;
}
@media only screen and (max-width: 1499px) {
  .footer-area::after {
    display: none;
  }
}
.footer-area .footer-area-element {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (min-device-width: 2100px) and (max-device-width: 2500px) {
  .footer-area::after {
    width: 43%;
  }
}
.copyright-wrapper {
  background-color: #fff;
  font-size: 14px;
  padding: 60px 0;
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .copyright-wrapper {
    margin-top: 80px;
    padding: 40px 0;
  }
}
.copyright-wrapper.two {
  padding: 30px 0;
  margin-top: 0;
}
.copyright-wrapper.two .copyright-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .copyright-wrapper.two .copyright-area {
    display: block;
  }
}
.copyright-wrapper.two .copyright-area .footer-logo {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .copyright-wrapper.two .copyright-area .footer-logo {
    margin-bottom: 20px;
  }
}
.copyright-wrapper.three {
  background-color: #070D26;
  margin-top: 0px;
}
.copyright-wrapper.three .copyright-area {
  border-top: 1px dashed #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
}
.copyright-wrapper.three p {
  color: #757575;
}
.copyright-wrapper.four {
  background-color: transparent;
  padding: 0;
  margin-top: 0px;
}
.copyright-wrapper.four .copyright-area {
  border-top: 1px solid rgba(50, 73, 179, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-wrapper.four p {
  color: #757575;
}
.copyright-wrapper.five {
  background-color: transparent;
  padding: 0;
  margin-top: 80px;
}
.copyright-wrapper.five .copyright-area {
  border-top: 1px solid #E1E1E1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .copyright-wrapper.five .copyright-area {
    display: block;
  }
}
.copyright-wrapper.five p {
  color: #1C1C1C;
}
.copyright-wrapper p {
  color: #505050;
  letter-spacing: 1px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .copyright-wrapper .copyright-list {
    margin-top: 20px;
  }
}
.copyright-wrapper .copyright-list li {
  display: inline-block;
  color: rgba(75, 75, 75, 0.7);
  position: relative;
}
.copyright-wrapper .copyright-list li::after {
  position: absolute;
  content: "";
  top: 4px;
  right: -20px;
  width: 1px;
  height: 15px;
  background-color: rgba(75, 75, 75, 0.4);
}
.copyright-wrapper .copyright-list li:last-child::after {
  display: none;
}
.copyright-wrapper .copyright-list li + li {
  margin-left: 40px;
}

.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
  padding: 30px 60px 30px 0px;
}
.footer-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -36%;
  top: 0;
  background-color: #3249B3;
  width: 136%;
  height: 100%;
  border-radius: 0px 6px 6px 0px;
}
.footer-contact .content .title {
  font-size: 40px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.footer-contact .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-contact .contact i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  font-size: 25px;
  border-radius: 13px;
  color: #3249B3;
  margin-right: 20px;
}
.footer-contact .contact p {
  font-size: 30px;
  line-height: 1.45;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.footer-contact .contact p a {
  display: block;
  line-height: 0;
}

/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team-block
--------------------------------------------------------------*/
.team-section {
  position: relative;
  overflow: hidden;
}
.team-section.two {
  margin-top: 75px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .team-section.two {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.team-section.three div[class*=col]:nth-of-type(9n + 1) .team-item .team-thumb {
  background-color: #D7A5F2;
}
.team-section.three div[class*=col]:nth-of-type(9n + 1) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #D7A5F2;
          box-shadow: 0 0 20px #D7A5F2;
}
.team-section.three div[class*=col]:nth-of-type(9n + 2) .team-item .team-thumb {
  background-color: #91BDFC;
}
.team-section.three div[class*=col]:nth-of-type(9n + 2) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #91BDFC;
          box-shadow: 0 0 20px #91BDFC;
}
.team-section.three div[class*=col]:nth-of-type(9n + 3) .team-item .team-thumb {
  background-color: #E5D36B;
}
.team-section.three div[class*=col]:nth-of-type(9n + 3) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #E5D36B;
          box-shadow: 0 0 20px #E5D36B;
}
.team-section.three div[class*=col]:nth-of-type(9n + 4) .team-item .team-thumb {
  background-color: #DF6AB1;
}
.team-section.three div[class*=col]:nth-of-type(9n + 4) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #DF6AB1;
          box-shadow: 0 0 20px #DF6AB1;
}
.team-section.three div[class*=col]:nth-of-type(9n + 5) .team-item .team-thumb {
  background-color: #E7694C;
}
.team-section.three div[class*=col]:nth-of-type(9n + 5) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #E7694C;
          box-shadow: 0 0 20px #E7694C;
}
.team-section.three div[class*=col]:nth-of-type(9n + 6) .team-item .team-thumb {
  background-color: #72D2DA;
}
.team-section.three div[class*=col]:nth-of-type(9n + 6) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #72D2DA;
          box-shadow: 0 0 20px #72D2DA;
}
.team-section.three div[class*=col]:nth-of-type(9n + 7) .team-item .team-thumb {
  background-color: #E8944A;
}
.team-section.three div[class*=col]:nth-of-type(9n + 7) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #E8944A;
          box-shadow: 0 0 20px #E8944A;
}
.team-section.three div[class*=col]:nth-of-type(9n + 8) .team-item .team-thumb {
  background-color: #D57BB9;
}
.team-section.three div[class*=col]:nth-of-type(9n + 8) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #D57BB9;
          box-shadow: 0 0 20px #D57BB9;
}
.team-section.three div[class*=col]:nth-of-type(9n + 9) .team-item .team-thumb {
  background-color: #5B7CB7;
}
.team-section.three div[class*=col]:nth-of-type(9n + 9) .team-item .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #5B7CB7;
          box-shadow: 0 0 20px #5B7CB7;
}
.team-section .team-element {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-animation: rotate 50s linear infinite;
          animation: rotate 50s linear infinite;
}
@media only screen and (max-width: 1580px) {
  .team-section .team-element {
    display: none;
  }
}
.team-section .team-element-one {
  position: absolute;
  bottom: 15%;
  left: 5%;
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}
@media only screen and (max-width: 991px) {
  .team-section .team-element-one {
    display: none;
  }
}
.team-section .team-element-two {
  position: absolute;
  top: 20%;
  left: 5%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 991px) {
  .team-section .team-element-two {
    display: none;
  }
}
.team-section .team-element-three {
  position: absolute;
  top: 30%;
  right: 10%;
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}
@media only screen and (max-width: 991px) {
  .team-section .team-element-three {
    display: none;
  }
}
.team-section .team-element-four {
  position: absolute;
  bottom: 20%;
  right: 5%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 991px) {
  .team-section .team-element-four {
    display: none;
  }
}

.team-slider-area {
  margin: -30px;
}
.team-slider-area.two::before {
  position: absolute;
  content: "";
  top: -48%;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #F9FBFF;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .team-slider-area.two::before {
    display: none;
  }
}

.team-slider {
  overflow: hidden;
  padding: 30px;
}
.team-slider .swiper-slide:nth-child(3n-1) .team-thumb {
  background-color: #A6EEF3;
}
.team-slider .swiper-slide:nth-child(3n-1) .team-thumb:hover {
  -webkit-box-shadow: 0 0px 20px #A6EEF3;
          box-shadow: 0 0px 20px #A6EEF3;
}
.team-slider .swiper-slide:nth-child(3n-3) .team-thumb {
  background-color: #E5D36B;
}
.team-slider .swiper-slide:nth-child(3n-3) .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #E5D36B;
          box-shadow: 0 0 20px #E5D36B;
}
.team-slider.two .swiper-slide:nth-child(3n-1) .team-thumb {
  background-color: #D7A5F2;
}
.team-slider.two .swiper-slide:nth-child(3n-1) .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #D7A5F2;
          box-shadow: 0 0 20px #D7A5F2;
}
.team-slider.two .swiper-slide:nth-child(3n-2) .team-thumb {
  background-color: #91BDFC;
}
.team-slider.two .swiper-slide:nth-child(3n-2) .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #91BDFC;
          box-shadow: 0 0 20px #91BDFC;
}
.team-slider.two .swiper-slide:nth-child(3n-3) .team-thumb {
  background-color: #E5D36B;
}
.team-slider.two .swiper-slide:nth-child(3n-3) .team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #E5D36B;
          box-shadow: 0 0 20px #E5D36B;
}

.team-item {
  text-align: center;
}
.team-item.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team-item.details .team-thumb {
  background-color: #EC7751 !important;
  width: 500px;
}
@media only screen and (max-width: 1199px) {
  .team-item.details .team-thumb {
    width: 100%;
  }
}
.team-item.details .team-thumb:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.team-item.details .team-content-area {
  width: calc(100% - 500px);
  padding-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .team-item.details .team-content-area {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
}
.team-item.details .team-content {
  background-color: #F5F8FF;
  border-radius: 10px;
  text-align: left;
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  .team-item.details .team-content {
    padding: 20px;
  }
}
.team-item.details .team-content .title {
  font-size: 30px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .team-item.details .team-content .title {
    font-size: 22px;
  }
}
.team-item.details .team-content p {
  margin-bottom: 30px;
}
.team-item.details .team-content .team-social-area {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #9DBAFE;
}
.team-item.details .team-content .team-social {
  margin-top: 25px;
}
.team-item.details .team-content .team-social li {
  display: inline-block;
}
.team-item.details .team-content .team-social li a {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  text-align: center;
  border: 1px solid #3249B3;
  border-radius: 50%;
  color: #3249B3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-item.details .team-content .team-social li a:hover {
  background-color: #3249B3;
  color: #fff;
}
.team-item.details .team-content .team-social li + li {
  margin-left: 5px;
}
.team-item.details .team-content .team-signature {
  margin-top: 43px;
}

.team-thumb {
  background-color: #F9AC6C;
  border-radius: 10px;
  padding-top: 60px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.team-thumb img {
  max-height: 506px;
}
.team-thumb:hover {
  -webkit-box-shadow: 0 0 20px #F9AC6C;
          box-shadow: 0 0 20px #F9AC6C;
}
.team-thumb:hover .team-social-area {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
.team-thumb .team-social-area {
  position: absolute;
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-thumb .team-social {
  max-width: 200px;
  background-color: #fff;
  border-radius: 999px;
  padding: 10px;
}
@media only screen and (max-width: 1199px) {
  .team-thumb .team-social {
    max-width: none;
    min-width: 180px;
  }
}
.team-thumb .team-social li {
  display: inline-block;
}
.team-thumb .team-social li a {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  text-align: center;
  border: 1px solid #3249B3;
  border-radius: 50%;
  color: #3249B3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-thumb .team-social li a:hover {
  background-color: #3249B3;
  color: #fff;
}
.team-thumb .team-social li + li {
  margin-left: 5px;
}

.team-content {
  padding-top: 20px;
}
.team-content .title a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-content .title a:hover {
  color: #3249B3;
}
.team-content .sub-title {
  font-weight: 500;
}

.team-tab-area {
  background-color: #F5F8FF;
  border-radius: 10px;
  padding: 60px;
  margin-top: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .team-tab-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .team-tab-area {
    padding: 20px;
  }
}

.team-tab .nav-tabs {
  border: none;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .team-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.team-tab .nav-tabs .nav-link {
  font-size: 20px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 999px;
  color: #1C1C1C;
  font-family: "Jost", sans-serif;
  border-right: none;
  padding: 15px 30px;
  margin-right: 25px;
}
@media only screen and (max-width: 991px) {
  .team-tab .nav-tabs .nav-link {
    padding: 8px 15px;
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .team-tab .nav-tabs .nav-link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 390px) {
  .team-tab .nav-tabs .nav-link {
    padding: 8px 10px;
    font-size: 16px;
    margin-right: 5px;
  }
}
.team-tab .nav-tabs .nav-link::before {
  display: none;
}
.team-tab .nav-tabs .nav-link.active {
  background-color: #3249B3;
  color: #fff;
}

.team-overview {
  margin-bottom: -35px;
}

.team-overview-content {
  margin-bottom: 30px;
}
.team-overview-content .title {
  margin-bottom: 20px;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### client block ]
*/
.client-section {
  background-color: #F6F9FF;
  position: relative;
  overflow: hidden;
}
.client-section.two {
  background-color: #fff;
  margin-bottom: 25px;
}
.client-section.two .section-header {
  margin-bottom: 35px;
}
.client-section.two .slider-next, .client-section.two .slider-prev {
  bottom: 80px;
}
.client-section.two .slider-prev {
  left: 44%;
}
.client-section.two .slider-next {
  right: 43%;
}
.client-section.two .client-item {
  padding: 15px 30px 30px 30px;
  border: none;
  border-radius: 10px;
  background-color: transparent;
  position: relative;
}
.client-section.two .client-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 66px);
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(50, 73, 179, 0.08);
          box-shadow: 0 0 15px rgba(50, 73, 179, 0.08);
  border-radius: 10px;
  z-index: -1;
}
.client-section.two .client-item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.client-section.two .client-item .client-header {
  border: none;
  padding: 0;
  margin-bottom: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.client-section.two .client-item .client-thumb {
  height: 125px;
}
.client-section.two .client-item .client-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.client-section.two .client-item .client-footer {
  margin-top: 40px;
}
.client-section.two .client-pagination {
  margin-top: 25px;
}
.client-section.three {
  background-color: transparent;
}
.client-section.five {
  background-color: #fff;
}
.client-section .client-element-one {
  position: absolute;
  top: 25%;
  left: 4%;
  -webkit-animation: horizontal-move 4s linear infinite;
          animation: horizontal-move 4s linear infinite;
}
.client-section .client-element-one.two {
  -webkit-animation: scroll-down 4s linear infinite;
          animation: scroll-down 4s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .client-section .client-element-one {
    display: none;
  }
}
.client-section .client-element-two {
  position: absolute;
  top: 60%;
  right: 2%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
.client-section .client-element-two.two {
  top: 30%;
}
.client-section .client-element-two.three {
  top: 50%;
  opacity: 0.4;
}
@media only screen and (max-width: 1700px) {
  .client-section .client-element-two {
    display: none;
  }
}
.client-section .client-element-three {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .client-section .client-element-three {
    display: none;
  }
}
.client-section .client-element-four {
  position: absolute;
  bottom: 0;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .client-section .client-element-four {
    display: none;
  }
}
.client-section .client-element-five {
  position: absolute;
  top: 10%;
  right: 10%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .client-section .client-element-five {
    display: none;
  }
}
.client-section .slider-next, .client-section .slider-prev {
  position: absolute;
  bottom: -10px;
  background-color: transparent;
  color: #9DBAFE;
  font-size: 30px;
}
@media only screen and (max-width: 1590px) {
  .client-section .slider-next, .client-section .slider-prev {
    display: none;
  }
}
.client-section .slider-next:hover, .client-section .slider-prev:hover {
  color: #3249B3;
}
.client-section .slider-prev {
  left: 40%;
}
.client-section .slider-next {
  right: 39%;
}
.client-section .client-pagination {
  text-align: center;
  margin-top: 55px;
}
@media only screen and (max-width: 991px) {
  .client-section .client-pagination {
    margin-top: 40px;
  }
}
.client-section .client-pagination span {
  color: #CECECE;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 9;
  border-radius: 0;
  background: transparent;
  text-align: center;
  opacity: 1;
  outline: none;
  display: inline-block;
  margin: 0 20px !important;
}
.client-section .client-pagination span::before {
  content: "0";
}
.client-section .client-pagination span.swiper-pagination-bullet-active {
  color: #3249B3;
}
.client-section .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.client-slider-area {
  margin: -30px;
}
.client-slider-area.two {
  margin: -20px;
}
.client-slider-area.five {
  margin: -20px;
}

.client-slider {
  overflow: hidden;
  padding: 30px;
}
.client-slider.five {
  padding: 20px;
}

.client-slider-two {
  overflow: hidden;
  padding: 20px;
}

.client-slider-three {
  overflow: hidden;
  padding: 20px;
}

.client-item {
  padding: 20px 40px 40px 40px;
  border: 1px solid #ECF2FF;
  background-color: #fff;
  position: relative;
  border-radius: 6px;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 575px) {
  .client-item {
    padding: 20px;
  }
}
.client-item:hover {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}
.client-item.three {
  border: none;
  background-color: #142057;
  padding: 40px;
  border-radius: 22px;
}
@media only screen and (max-width: 599px) {
  .client-item.three {
    padding: 25px;
  }
}
.client-item.three .client-ratings {
  margin-bottom: 20px;
}
.client-item.three .client-ratings i {
  color: #b99f58;
}
.client-item.three p {
  color: #cfcfcf;
  font-weight: 500;
  line-height: 1.8em;
}
.client-item.three .client-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.client-item.three .client-footer .client-footer-user-content {
  width: auto;
  padding-left: 0;
}
.client-item.three .client-footer .client-footer-user-content .title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}
.client-item.three .client-footer .client-footer-user-content .title::after {
  display: none;
}
.client-item.three .client-footer .client-footer-user-content .sub-title {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
  font-style: italic;
}
.client-item.three .client-footer .slider-arrow .slider-prev, .client-item.three .client-footer .slider-arrow .slider-next {
  z-index: 9;
  position: unset;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}
.client-item.three .client-footer .slider-arrow .slider-prev:hover, .client-item.three .client-footer .slider-arrow .slider-next:hover {
  background-color: #3249B3;
  color: #fff;
  border: 1px solid #3249B3;
}
.client-item.five {
  padding: 50px 25px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(50, 73, 179, 0.08);
          box-shadow: 0 0 10px rgba(50, 73, 179, 0.08);
}
.client-item.five .client-header {
  display: block;
  border: none;
  padding: 0;
}
.client-item.five .client-header .client-quote {
  width: 52px;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  text-align: center;
  background-color: #3249B3;
  border-radius: 50%;
  margin-bottom: 40px;
}
.client-item.five .client-header .ratings i {
  color: #F8D458;
}
.client-item.five .client-content p {
  font-size: 18px;
  font-weight: 500;
  color: #1C1C1C;
}
@media only screen and (max-width: 991px) {
  .client-item.five .client-content p {
    font-size: 16px;
  }
}
.client-item.five .client-footer {
  margin-top: 30px;
}
.client-item.five .client-footer .client-footer-user-content {
  width: 100%;
  padding-left: 0;
}
.client-item.five .client-footer .client-footer-user-content .title {
  font-size: 18px;
  font-weight: 600;
  color: #3249B3;
  text-transform: unset;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}
.client-item.five .client-footer .client-footer-user-content .title::after {
  display: none;
}
.client-item.five .client-footer .client-footer-user-content .sub-title {
  color: #727272;
  font-size: 14px;
  font-weight: 400;
  text-transform: unset;
  margin-bottom: 0;
}

.client-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dashed #BEBEBE;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.client-header .client-ratings .ratings i {
  color: #E99400;
}
@media only screen and (max-width: 1199px) {
  .client-header .client-ratings .ratings i {
    font-size: 12px;
  }
}

.client-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.client-footer .client-footer-left .title {
  font-weight: 700;
}
.client-footer .client-footer-user-thumb {
  width: 64px;
}
.client-footer .client-footer-user-content {
  width: calc(100% - 64px);
  padding-left: 20px;
}
.client-footer .client-footer-user-content .title {
  margin-bottom: 0;
  color: #3249B3;
  text-transform: uppercase;
  position: relative;
}
.client-footer .client-footer-user-content .title::after {
  position: absolute;
  content: "";
  top: 10px;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: #3249B3;
}
@media only screen and (max-width: 991px) {
  .client-footer .client-footer-user-content .title::after {
    display: none;
  }
}

.client-right-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #3249B3;
  z-index: 2;
  height: 361px;
}
.client-right-thumb .client-thumb-element {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.client-right-thumb img {
  width: 100%;
}
.client-right-thumb .client-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.client-right-thumb .client-thumb-overlay .client-thumb-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.client-right-thumb .client-thumb-overlay .client-thumb-video .waves {
  width: 200px;
  height: 200px;
  border: 1px solid #fff;
  background-color: transparent;
}
@media only screen and (max-width: 991px) {
  .client-right-thumb .client-thumb-overlay .client-thumb-video .waves {
    width: 150px;
    height: 150px;
  }
}
.client-right-thumb .client-thumb-overlay .client-thumb-video .video-icon {
  background-color: #fff;
  color: #9DBAFE !important;
  font-size: 40px;
  height: 100px;
  width: 100px;
  line-height: 100px;
}
@media only screen and (max-width: 991px) {
  .client-right-thumb .client-thumb-overlay .client-thumb-video .video-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}

@media screen and (min-device-width: 991px) and (max-device-width: 1199px) {
  .client-right-thumb {
    height: 340px;
  }
  .client-right-thumb img {
    position: relative;
    bottom: -85px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .client-right-thumb .client-thumb-element {
    height: 340px;
  }
  .client-right-thumb .client-thumb-element img {
    bottom: 0;
    height: 100%;
  }
}
.client-left-content {
  padding-right: 40px;
}
@media only screen and (max-width: 1199px) {
  .client-left-content {
    padding-right: 0;
  }
}
.client-left-content .title {
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.client-left-content .client-left-btn {
  margin-top: 60px;
}

.client-big-thumb {
  position: relative;
}
.client-big-thumb img {
  width: 100%;
}
.client-big-thumb .client-slider-area {
  position: absolute;
  left: 80px;
  z-index: 9;
  width: 100%;
  bottom: 60px;
}
@media only screen and (max-width: 599px) {
  .client-big-thumb .client-slider-area {
    left: 20px;
    bottom: 20px;
  }
}

/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### brand block ]
*/
.brand-section.oh {
  overflow: hidden;
}
.brand-section.five {
  background-color: #3249B3;
}

.brand-slider-area {
  margin: -20px;
}

.brand-slider {
  overflow: hidden;
  padding: 20px;
}

.brand-slider-two {
  overflow: hidden;
}

.brand-item {
  border: 1px dashed #E2E2E2;
  text-align: center;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.brand-item.style-01 {
  border: 0;
  background: #F9FBFF;
}
.brand-item.style-01 img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.brand-item.two {
  background-color: #F9FBFF;
  border: none;
  border-radius: 0;
}
.brand-item.two img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.brand-item.two:hover {
  border: none;
}
.brand-item.two:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.brand-item img {
  display: inline-block;
  width: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.brand-item:hover {
  -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
          box-shadow: 0 0 30px rgba(50, 73, 179, 0.2);
  border: 1px dashed transparent;
}
.brand-item:hover.style-01 {
  border: 0;
}
.brand-item:hover.style-01 img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.brand-item-two {
  position: relative;
}
.brand-item-two::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 2px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.33);
}

/*-------------------------------------------------
    [ ### project block ]
*/
.project-section {
  position: relative;
  overflow: hidden;
}
.project-section.two {
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .project-section.two {
    margin-top: 0;
  }
}
.project-section .project-element-one {
  position: absolute;
  top: 20%;
  right: 0;
}
.project-section .project-element-one.two {
  top: -9%;
  right: auto;
  left: 16%;
  opacity: 0.5;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .project-section .project-element-one {
    display: none;
  }
}
.project-section .project-element-two {
  position: absolute;
  top: 10%;
  left: 0;
}
.project-section .project-element-two.two {
  left: 5%;
}
@media only screen and (max-width: 1700px) {
  .project-section .project-element-two {
    display: none;
  }
}
.project-section .project-element-three {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .project-section .project-element-three {
    display: none;
  }
}
.project-section .project-element-four {
  position: absolute;
  bottom: 7%;
  left: 50%;
  -webkit-animation: horizontal-move 1s linear infinite;
          animation: horizontal-move 1s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .project-section .project-element-four {
    display: none;
  }
}
.project-section .project-element-five {
  position: absolute;
  top: 8%;
  right: 1%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .project-section .project-element-five {
    display: none;
  }
}

.project-item-wrapper {
  margin: -30px;
}
.project-item-wrapper.two {
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .project-item-wrapper {
    margin: 0;
    margin-top: 0;
  }
}

.project-item {
  background-color: #9DBAFE;
  border-radius: 10px;
  padding: 90px 0;
  position: relative;
  z-index: 2;
  margin: 30px;
}
.project-item .project-thumb {
  text-align: center;
}


.project-item {
    padding-top: 0px;
}

.project-item img {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

@media only screen and (max-width: 991px) {
  .project-item {
    margin: 0;
  }
}
.project-item::before {
  position: absolute;
  content: "";
  bottom: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  border: 1px dashed #9DBAFE;
  border-radius: 10px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .project-item::before {
    display: none;
  }
}
.project-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #9DBAFE;
  border-radius: 10px;
  z-index: -1;
}
.project-item .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 575px) {
  .project-item .project-overlay {
    padding: 30px;
  }
}
.project-item .project-overlay .overlay-content .title {
  line-height: 30px;
  font-weight: 700;
  background: #fff;
  border-radius: 5px;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 4px 10px 4px 10px;
}
@media only screen and (max-width: 575px) {
  .project-item .project-overlay .overlay-content .title {
    font-size: 16px;
    line-height: 25px;
  }
}
.project-item .project-overlay .overlay-content .title a {
  display: initial;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.project-item .project-overlay .overlay-content .title a:hover {
  color: #3249B3;
}
.project-item:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.project-item-two {
  background-color: #9DBAFE;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 95px 40px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .project-item-two {
    display: block;
    padding: 30px 20px;
  }
}
.project-item-two .project-content {
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .project-item-two .project-content {
    width: 100%;
    text-align: center;
  }
}
.project-item-two .project-content .title {
  font-size: 35px;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .project-item-two .project-content .title {
    font-size: 24px;
  }
}
.project-item-two .project-content p {
  color: #fff;
}
.project-item-two .project-thumb {
  position: absolute;
  bottom: -40px;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  .project-item-two .project-thumb {
    position: unset;
    text-align: center;
    margin-top: 20px;
  }
}
.project-item-two.style {
  background-color: #F8D458;
  display: block;
  padding: 30px 20px;
}
.project-item-two.style .project-content {
  width: 100%;
  text-align: center;
}
.project-item-two.style .project-content .title {
  color: #1C1C1C;
}
.project-item-two.style .project-content p {
  color: #1C1C1C;
}
.project-item-two.style .project-thumb {
  position: unset;
  margin-bottom: 25px;
}

div[class*=col]:nth-of-type(2n + 2) .project-item::before {
  right: auto;
  left: -30px;
}
div[class*=col]:nth-of-type(2n + 2) .project-item::after {
  background-color: #5D77F0;
}

.project-thumb.two {
  position: relative;
}
.project-thumb.two img {
  width: 100%;
}
.project-thumb.two .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.project-thumb.two .project-overlay .overlay-content .title {
  line-height: 30px;
  font-weight: 700;
  background: #fff;
  border-radius: 5px;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 4px 10px 4px 10px;
}
.project-thumb.two .project-overlay .overlay-content .title a {
  display: initial;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.project-thumb.two .project-overlay .overlay-content .title a:hover {
  color: #3249B3;
}
.project-thumb.two:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.project-slider-area {
  position: relative;
  right: -5%;
}
@media only screen and (max-width: 991px) {
  .project-slider-area {
    right: 0;
  }
}
.project-slider-area .slider-next,
.project-slider-area .slider-prev {
  position: relative;
  right: -60%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .project-slider-area .slider-next,
.project-slider-area .slider-prev {
    right: auto;
  }
}

.project-slider {
  overflow: hidden;
}

.project-left-content .logo-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .project-left-content .logo-icon {
    background-color: #F5F8FF;
  }
}
.project-left-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}
.project-left-content .project-left-btn {
  margin-top: 40px;
}

.project-area {
  margin-left: 150px;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
@media only screen and (max-width: 1848px) {
  .project-area {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1799px) {
  .project-area {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 1740px) {
  .project-area {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 1670px) {
  .project-area {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 1640px) {
  .project-area {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-area {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .project-area {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .project-area {
    padding-left: 120px;
    padding-right: 15px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .project-area {
    padding-left: 15px;
  }
}
.project-area::before {
  position: absolute;
  content: "";
  top: -80px;
  left: 250px;
  width: 80%;
  height: 105%;
  background-color: #F9FBFF;
  border-radius: 10px;
}
@media only screen and (max-width: 1600px) {
  .project-area::before {
    left: 200px;
  }
}
@media only screen and (max-width: 1450px) {
  .project-area::before {
    left: 150px;
  }
}
@media only screen and (max-width: 1300px) {
  .project-area::before {
    left: 100px;
  }
}
@media only screen and (max-width: 1250px) {
  .project-area::before {
    left: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-area::before {
    left: 0;
    width: 100%;
    top: 0;
  }
}

/*-------------------------------------------------
    [ ### choose block ]
*/
.choose-section {
  position: relative;
  overflow: hidden;
}
.choose-section .choose-element-one {
  position: absolute;
  top: 60%;
  right: 0;
}
@media only screen and (max-width: 1700px) {
  .choose-section .choose-element-one {
    display: none;
  }
}
.choose-section .choose-element-two {
  position: absolute;
  top: 62%;
  left: 12%;
}
@media only screen and (max-width: 1700px) {
  .choose-section .choose-element-two {
    display: none;
  }
}
.choose-section .choose-element-three {
  position: absolute;
  top: 40%;
  right: 10%;
  -webkit-animation: horizontal-move 1s linear infinite;
          animation: horizontal-move 1s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .choose-section .choose-element-three {
    display: none;
  }
}
.choose-section .choose-element-four {
  position: absolute;
  top: 65%;
  left: 19%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .choose-section .choose-element-four {
    display: none;
  }
}
.choose-section .choose-element-five {
  position: absolute;
  top: 30%;
  left: 5%;
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .choose-section .choose-element-five {
    display: none;
  }
}

.choose-area {
  position: relative;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.21);
          box-shadow: 0 0 30px rgba(50, 73, 179, 0.21);
  padding: 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .choose-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .choose-area {
    padding: 20px;
  }
}

.choose-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.choose-thumb {
  background-color: #ECF2FF;
  border-radius: 10px;
  padding: 60px;
  width: 433px;
  height: 380px;
}
@media only screen and (max-width: 991px) {
  .choose-thumb {
    width: 100%;
    height: 100%;
    padding: 30px;
  }
}
.choose-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.choose-content {
  width: calc(100% - 433px);
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  .choose-content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.choose-content .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.choose-statistics-area {
  margin-top: 20px;
}
.choose-statistics-area .statistics-item {
  position: relative;
  z-index: 2;
}
.choose-statistics-area .odo-title {
  display: inline-block;
  color: #3249B3;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 991px) {
  .choose-statistics-area .odo-title {
    font-size: 22px;
  }
}
.choose-statistics-area .odo-area .title {
  display: inline-block;
  font-size: 24px;
  color: #3249B3;
  font-weight: 700;
  margin-bottom: 0;
}

.choose-content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.choose-content-footer .choose-btn a {
  font-weight: 600;
  padding: 14px 20px;
}
.choose-content-footer .choose-video-btn a {
  color: #F8D458;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  position: relative;
}
.choose-content-footer .choose-video-btn a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #F8D458;
  border-radius: 50%;
}
.choose-content-footer .choose-video-btn a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.choose-content-footer .choose-video-btn a:hover::after {
  opacity: 0;
}

/*-------------------------------------------------
    [ ### call-to-action block ]
*/
.call-to-action-section {
  position: relative;
  overflow: hidden;
  margin-top: -25px;
}
.call-to-action-section .call-to-action-element {
  position: absolute;
  top: 5%;
  right: 15%;
  z-index: 2;
}
.call-to-action-section .call-to-action-element img {
  -webkit-animation: horizontal-move-two 5s linear infinite;
          animation: horizontal-move-two 5s linear infinite;
}
@media only screen and (max-width: 1480px) {
  .call-to-action-section .call-to-action-element {
    display: none;
  }
}
.call-to-action-section .wrapper {
  max-width: 100%;
  overflow: hidden;
}
.call-to-action-section .marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite;
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
.call-to-action-section .demo-text {
  font-size: 171px;
  line-height: 171px;
  color: #E1EAFF;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 630px) {
  .call-to-action-section .demo-text {
    -webkit-animation: none;
            animation: none;
  }
}
@media only screen and (max-width: 1800px) {
  .call-to-action-section .demo-text {
    font-size: 140px;
    line-height: 140px;
  }
}
@media only screen and (max-width: 1480px) {
  .call-to-action-section .demo-text {
    font-size: 100px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 1050px) {
  .call-to-action-section .demo-text {
    font-size: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 860px) {
  .call-to-action-section .demo-text {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 630px) {
  .call-to-action-section .demo-text {
    font-size: 50px;
    line-height: 50px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .call-to-action-section .demo-text {
    display: none;
  }
}

.call-to-action-wrapper {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 630px) {
  .call-to-action-wrapper {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .call-to-action-wrapper {
    margin-top: 15px;
    display: block;
    text-align: center;
  }
}

.call-to-action-content {
  width: 60%;
}
@media only screen and (max-width: 575px) {
  .call-to-action-content {
    width: 100%;
  }
}
.call-to-action-content .title {
  font-weight: 500;
  line-height: 1.5;
}
.call-to-action-content .inner-title {
  color: #9DBAFE;
  font-weight: 500;
}

@media only screen and (max-width: 575px) {
  .call-to-action-btn {
    margin-top: 20px;
  }
}

/*-------------------------------------------------
    [ ### service block ]
*/
.service-section {
  background-color: #142057;
  position: relative;
}
.service-section.two {
  background-color: #fff;
}
.service-section.three .service-item {
  background-color: #3249B3;
  border: none;
}
.service-section.three .service-item .service-content .title {
  color: #fff;
}
.service-section.three .service-item .service-content .title a {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-section.three .service-item .service-content p {
  color: #fff;
font-size: 15.7px;
}
.service-section.three .service-item .service-content .service-btn a {
  color: #fff;
}
.service-section.three .service-item:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}
.service-section.three .service-item:hover .service-content .title {
  color: #1C1C1C;
}
.service-section.three .service-item:hover .service-content .title a {
  color: #1C1C1C;
}
.service-section.three .service-item:hover .service-content .title a:hover {
  color: #3249B3;
}
.service-section.three .service-item:hover .service-content p {
  color: #4B4B4B;
}
.service-section.three .service-item:hover .service-content .service-btn a {
  color: #3249B3;
}
.service-section.four {
  background-color: #F5F8FF;
}
.service-section.four .section-header .section-title {
  font-weight: 800;
}
.service-section.five .section-header-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-section.five .section-header {
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .service-section.five .section-header {
    width: 100%;
  }
}
.service-section.five .section-header .section-title {
  font-weight: 800;
}
.service-section.five .service-item {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 50px rgba(50, 73, 179, 0.08);
          box-shadow: 0 10px 50px rgba(50, 73, 179, 0.08);
  text-align: center;
  padding: 60px 20px;
}
.service-section.five .service-item .service-icon {
  margin-bottom: 50px;
}
.service-section .service-element-one {
  position: absolute;
  left: 3%;
  z-index: 2;
}
.service-section .service-element-one.two {
  left: auto;
  right: 0;
}
.service-section .service-element-one img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-one {
    display: none;
  }
}
.service-section .service-element-two {
  position: absolute;
  bottom: 5%;
  right: 3%;
}
.service-section .service-element-two img {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-two {
    display: none;
  }
}
.service-section .service-element-three {
  position: absolute;
  top: 7%;
  right: 7%;
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-three {
    display: none;
  }
}
.service-section .service-element-four {
  position: absolute;
  top: 20%;
  left: 7%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-four {
    display: none;
  }
}
.service-section .service-element-five {
  position: absolute;
  bottom: 5%;
  left: 10%;
}
.service-section .service-element-five img {
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-five {
    display: none;
  }
}
.service-section .service-element-six {
  position: absolute;
  top: 10%;
  left: 7%;
}
@media only screen and (max-width: 1666px) {
  .service-section .service-element-six {
    display: none;
  }
}
.service-section .service-shape {
  position: absolute;
  top: 0;
  left: 14%;
  width: 1px;
  height: 100%;
  background: rgba(157, 186, 254, 0.062745098);
}
@media only screen and (max-width: 575px) {
  .service-section .service-shape {
    display: none;
  }
}
.service-section .service-shape:nth-of-type(odd)::before {
  animation: 13s linear nama_utha infinite;
  -webkit-animation: 13s linear nama_utha infinite;
  -moz-animation: 13s linear nama_utha infinite;
}
.service-section .service-shape:nth-of-type(even)::before {
  animation: 13s linear utha_nama infinite;
  -webkit-animation: 13s linear utha_nama infinite;
  -moz-animation: 13s linear utha_nama infinite;
}
.service-section .service-shape::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
}
.service-section .service-shape::before {
  background-color: #fff;
}
.service-section .service-shape.shape-2 {
  left: 30%;
}
.service-section .service-shape.shape-3 {
  left: 42%;
}
.service-section .service-shape.shape-4 {
  left: 56%;
}
.service-section .service-shape.shape-5 {
  left: 70%;
}
.service-section .service-shape.shape-6 {
  left: 85%;
}

.service-slider-two {
  overflow: hidden;
}
.service-slider-two .swiper-pagination-bullet {
  background-color: #9DBAFE;
  border: none;
}
.service-slider-two .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 999px;
  background-color: #3249B3;
}

.service-item {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 25px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-item.two {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-top: 0 !important;
}
.service-item.two:hover {
  -webkit-transform: none;
          transform: none;
}
.service-item.two .service-btn a {
  color: #4B4B4B;
}
.service-item.two .service-btn a:hover {
  color: #3249B3;
}
.service-item.three {
  margin-top: 0 !important;
  border: 1px solid rgba(50, 73, 179, 0.14);
  -webkit-box-shadow: none;
          box-shadow: none;
          height: 100%;
    display: flex;
    flex-direction: column;
}
.service-item.three .service-content .title a {
  color: #1C1C1C;
}
.service-item.three:hover {
  background-color: #3249B3;
  -webkit-box-shadow: 0 20px 30px rgba(50, 73, 179, 0.2);
          box-shadow: 0 20px 30px rgba(50, 73, 179, 0.2);
}
.service-item.three:hover .service-content .title {
  color: #fff;
}
.service-item.three:hover .service-content .title a {
  color: #fff;
}
.service-item.three:hover .service-content p {
  color: #fff;
}
.service-item.three:hover .service-content .service-btn a {
  color: #fff;
}
.service-item.four {
  border-radius: 10px;
  padding: 50px 20px;
}
.service-item.four:hover {
  -webkit-box-shadow: 0 15px 30px rgba(50, 73, 179, 0.2);
          box-shadow: 0 15px 30px rgba(50, 73, 179, 0.2);
}
.service-item.four .service-icon {
  margin-bottom: 40px;
}
.service-item.five {
  background-color: #F5F8FF;
  border-radius: 10px;
  padding: 40px 20px;
}
.service-item.five .service-icon {
  margin-bottom: 30px;
}
.service-item.details {
  border: none;
  padding: 0;
}
@media only screen and (max-width: 400px) {
  .service-item.details .service-thumb {
    height: 230px;
    border-radius: 5px;
    overflow: hidden;
  }
}
.service-item.details .service-thumb img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: contain;
}
.service-item.details .service-content {
  padding-top: 30px;
}
.service-item.details .service-content .title {
  font-size: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-content .title {
    font-size: 28px;
  }
}
.service-item.details .service-content.two .title {
  font-size: 32px;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-content.two .title {
    font-size: 24px;
  }
}
.service-item.details .service-content.two blockquote.two {
  padding: 30px;
}
.service-item.details .service-bottom-content .title {
  font-size: 28px !important;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-bottom-content .title {
    font-size: 18px;
  }
}
.service-item.details:hover {
  -webkit-transform: none;
          transform: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.service-item.details:hover .service-content .title {
  color: #1C1C1C;
}
.service-item.details:hover .service-content p {
  color: #1C1C1C;
}
.service-item.details:hover .service-content .service-btn a {
  color: #fff;
}
.service-item.details .service-widget-item-area {
  background-color: #F5F8FF;
  border-radius: 6px;
  padding: 30px 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  display:none;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-widget-item-area {
    padding: 30px;
  }
}
.service-item.details .service-widget-item-area div[class*=col]:nth-of-type(4n + 4) .service-widget-item::after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-widget-item-area div[class*=col]:nth-of-type(4n + 2) .service-widget-item::after {
    display: none;
  }
}
.service-item.details .service-widget-item-area.two div[class*=col]:nth-of-type(3n + 3) .service-widget-item::after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-widget-item-area.two div[class*=col]:nth-of-type(3n + 2) .service-widget-item::after {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .service-item.details .service-widget-item-area.two div[class*=col]:nth-of-type(3n + 2) .service-widget-item::after {
    display: none;
  }
}
.service-item.details .service-bottom-content .title {
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-bottom-content .title {
    font-size: 22px;
  }
}
.service-item.details .service-widget-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.service-item.details .service-widget-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-right: 1px dashed #535353;
}
@media only screen and (max-width: 575px) {
  .service-item.details .service-widget-item::after {
    display: none;
  }
}
.service-item.details .service-widget-item .service-widget-icon {
  width: 30px;
}
.service-item.details .service-widget-item .service-widget-content {
  width: calc(100% - 30px);
  padding-left: 15px;
}
.service-item.details .service-widget-item .service-widget-content .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 3px;
}
@media only screen and (max-width: 991px) {
  .service-item.details .service-widget-item .service-widget-content .title {
    font-size: 16px;
  }
}
.service-item.details .service-widget-item .service-widget-content .sub-title {
  font-size: 14px;
  margin-bottom: 0 !important;
}
.service-item.details .sevice-inner-item-area {
  margin-top: 30px;
  margin-bottom: 40px;
}
.service-item.details .sevice-inner-item-area .service-inner-item {
  background-color: #fff;
  border: 1px solid rgba(251, 205, 33, 0.5);
  padding: 30px;
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-item.details .sevice-inner-item-area .service-inner-item:hover {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.service-item.details .sevice-inner-item-area .service-inner-item .service-inner-icon {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  height: 60px;
}
.service-item.details .sevice-inner-item-area .service-inner-item .service-inner-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-item.details .sevice-inner-item-area .service-inner-item .service-inner-icon::after {
  position: absolute;
  content: "";
  top: -5px;
  right: -28px;
  width: 80px;
  height: 80px;
  background-color: rgba(251, 205, 33, 0.16);
  border-radius: 50%;
}
.service-item.details .sevice-inner-item-area .service-inner-item .service-inner-content .title {
  font-size: 20px !important;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .service-item.details .sevice-inner-item-area .service-inner-item .service-inner-content .title {
    font-size: 18px !important;
  }
}
.service-item.details .contact-section {
  margin-top: 60px;
}
.service-item:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.service-item:hover .service-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-icon {
  margin-bottom: 25px;
}
.service-icon img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.service-content .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-content .title a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-content .title a:hover {
  color: #3249B3;
}
.service-content p {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.service-btn {
  margin-top: auto;
}
@media only screen and (max-width: 991px) {
  .service-btn {
    margin-top: 20px;
  }
}
.service-btn a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div[class*=col]:nth-of-type(4n + 2) .service-item {
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  div[class*=col]:nth-of-type(4n + 2) .service-item {
    margin-top: 0;
  }
}

div[class*=col]:nth-of-type(4n + 4) .service-item {
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  div[class*=col]:nth-of-type(4n + 4) .service-item {
    margin-top: 0;
  }
}

.service-sidebar {
  position: sticky;
  top: 10%;
}

.sevice-inner-item-area.two .service-inner-item .service-inner-content .title {
  font-size: 20px !important;
}

.contact-sidebar-form {
  margin-top: 20px;
}
.contact-sidebar-form input {
  border-radius: 5px;
  padding: 15px 20px;
  height: 55px;
}

.download-widget-btn {
  margin-bottom: -10px;
}
.download-widget-btn a {
  width: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*-------------------------------------------------
    [ ### statistics block ]
*/
.statistics-section {
  position: relative;
}
.statistics-section .statistics-element-one {
  position: absolute;
  top: 25%;
  right: 10%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1800px) {
  .statistics-section .statistics-element-one {
    display: none;
  }
}
.statistics-section .statistics-element-two {
  position: absolute;
  top: -8%;
  right: 18%;
  opacity: 0.5;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1800px) {
  .statistics-section .statistics-element-two {
    display: none;
  }
}
.statistics-section .statistics-element-three {
  position: absolute;
  top: 80%;
  right: 35%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1800px) {
  .statistics-section .statistics-element-three {
    display: none;
  }
}

.statistics-left-content .title {
  font-weight: 700;
  margin-top: -10px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.statistics-left-content .statistics-left-btn {
  margin-top: 40px;
}
.statistics-left-content .statistics-left-btn a {
  position: relative;
}
.statistics-left-content .statistics-left-btn a::after {
  position: absolute;
  content: "";
  top: 12px;
  right: -35px;
  width: 25px;
  height: 1px;
  background-color: #3249B3;
}

.statistics-item-area .statistics-item {
  background-color: #3249B3;
  padding: 60px 30px;
  border-radius: 10px;
  position: relative;
}
.statistics-item-area .statistics-item .statistics-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.statistics-item-area .statistics-item .statistics-content p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .statistics-item-area .statistics-item .statistics-content p {
    font-size: 20px;
  }
}
.statistics-item-area .statistics-item .odo-title {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 55px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 991px) {
  .statistics-item-area .statistics-item .odo-title {
    font-size: 30px;
  }
}
.statistics-item-area .statistics-item .odo-area .title {
  display: inline-block;
  font-size: 35px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0;
}
.statistics-item-area div[class*=col]:nth-of-type(2n + 2) .statistics-item {
  background-color: #F8D458;
}
.statistics-item-area div[class*=col]:nth-of-type(2n + 2) .statistics-item .statistics-content p {
  color: #1C1C1C;
}
.statistics-item-area div[class*=col]:nth-of-type(2n + 2) .statistics-item .odo-title {
  color: #1C1C1C;
}
.statistics-item-area div[class*=col]:nth-of-type(2n + 2) .statistics-item .odo-area .title {
  color: #1C1C1C;
}
.statistics-item-area .icon-box-items {
  background: #F8D458;
  padding: 25px 20px 20px 20px;
  -webkit-filter: drop-shadow(0px 20px 20px rgba(50, 73, 179, 0.1));
          filter: drop-shadow(0px 20px 20px rgba(50, 73, 179, 0.1));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.statistics-item-area .icon-box-items.style-01 {
  background: #9DBAFE;
}
.statistics-item-area .icon-box-items .odo-title {
  display: inline-block;
  color: #1C1C1C;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 0px;
}
@media only screen and (max-width: 991px) {
  .statistics-item-area .icon-box-items .odo-title {
    font-size: 30px;
  }
}
.statistics-item-area .icon-box-items .odo-area .title {
  display: inline-block;
  font-size: 22px;
  line-height: 1.6;
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 0;
}
.statistics-item-area .icon-box-items .content p {
  font-size: 22px;
  line-height: 1.6;
  color: #1C1C1C;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}

/*-------------------------------------------------
    [ ### process block ]
*/
.process-item {
  position: relative;
}
.process-item::after {
  position: absolute;
  content: "";
  top: 20%;
  right: -15%;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon/icon-26.png);
  background-repeat: no-repeat;
  background-position: top right;
}
@media only screen and (max-width: 575px) {
  .process-item::after {
    display: none;
  }
}

.process-icon-area {
  width: 145px;
  height: 145px;
  line-height: 145px;
  display: inline-block;
  text-align: center;
  border: 1px dashed #EEBA42;
  border-radius: 50%;
  position: relative;
}
.process-icon-area .process-number {
  position: absolute;
  top: -20%;
  left: -10%;
}
.process-icon-area .process-number span {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(238, 186, 66, 0.41);
          box-shadow: 0 10px 20px rgba(238, 186, 66, 0.41);
  border-radius: 50%;
  color: #EEB842;
  font-size: 20px;
  font-weight: 700;
}
.process-icon-area .process-dot {
  position: absolute;
  bottom: -35%;
  right: 0;
}
.process-icon-area .process-dot span {
  width: 27px;
  height: 27px;
  background-color: #EEB941;
  border-radius: 50%;
}
.process-icon-area .process-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background-color: #FFD87E;
}

.process-content {
  padding-top: 40px;
}
.process-content .title {
  margin-bottom: 0;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  div[class*=col]:nth-of-type(4n + 2) .process-item::after {
    display: none;
  }
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area {
  border: 1px dashed #DCE2F6;
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area .process-number {
  top: auto;
  bottom: -20%;
  right: -12%;
  left: auto;
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area .process-number span {
  -webkit-box-shadow: 0 10px 20px rgba(110, 131, 226, 0.41);
          box-shadow: 0 10px 20px rgba(110, 131, 226, 0.41);
  color: #6E83E2;
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area .process-dot {
  top: -30%;
  bottom: auto;
  left: 10px;
  right: auto;
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area .process-dot span {
  background-color: #DCE2F6;
}
div[class*=col]:nth-of-type(4n + 2) .process-item .process-icon-area .process-icon {
  background-color: #DCE2F6;
}

div[class*=col]:nth-of-type(4n + 3) .process-item .process-icon-area {
  border: 1px dashed #7492D9;
}
div[class*=col]:nth-of-type(4n + 3) .process-item .process-icon-area .process-number span {
  -webkit-box-shadow: 0 10px 20px rgba(110, 131, 226, 0.41);
          box-shadow: 0 10px 20px rgba(110, 131, 226, 0.41);
  color: #6E83E2;
}
div[class*=col]:nth-of-type(4n + 3) .process-item .process-icon-area .process-dot span {
  background-color: #7492D9;
}
div[class*=col]:nth-of-type(4n + 3) .process-item .process-icon-area .process-icon {
  background-color: #7492D9;
}

div[class*=col]:nth-of-type(4n + 4) .process-item::after {
  display: none;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area {
  border: 1px dashed #15DE9B;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area .process-number {
  top: auto;
  bottom: -20%;
  right: -12%;
  left: auto;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area .process-number span {
  -webkit-box-shadow: 0 10px 20px rgba(21, 222, 155, 0.41);
          box-shadow: 0 10px 20px rgba(21, 222, 155, 0.41);
  color: #15DE9B;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area .process-dot {
  top: -30%;
  bottom: auto;
  left: 10px;
  right: auto;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area .process-dot span {
  background-color: #15DE9B;
}
div[class*=col]:nth-of-type(4n + 4) .process-item .process-icon-area .process-icon {
  background-color: #15DE9B;
}

/*-------------------------------------------------
    [ ### overview block ]
*/
.overview-section {
  position: relative;
}
.overview-section .overview-element {
  position: absolute;
  top: 30%;
  left: 0;
}
@media only screen and (max-width: 1666px) {
  .overview-section .overview-element {
    display: none;
  }
}

.overview-thumb {
  background-color: #9DBAFE;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.overview-thumb .overview-thumb-element {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.overview-content {
  background-color: #F9FBFF;
  border-radius: 10px;
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  .overview-content {
    padding: 25px;
  }
}
.overview-content .title {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
}
.overview-content .overview-btn {
  margin-top: 40px;
}

/*-------------------------------------------------
    [ ### about block ]
*/
.about-section {
  position: relative;
}
.about-section.two {
  background-color: #F5F8FF;
}
.about-section.two .box1,
.about-section.two .box2,
.about-section.two .box3 {
  background-color: rgba(255, 255, 255, 0.3);
}
.about-section .about-element-one {
  position: absolute;
  bottom: 20%;
  right: 15%;
  opacity: 0.35;
}
.about-section .about-element-one.two {
  right: 2%;
}
.about-section .about-element-one img {
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .about-section .about-element-one {
    display: none;
  }
}
.about-section .about-element-two {
  position: absolute;
  bottom: 8%;
  right: 12%;
  opacity: 0.35;
}
.about-section .about-element-two img {
  -webkit-animation: scroll-ver 3s linear infinite;
          animation: scroll-ver 3s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .about-section .about-element-two {
    display: none;
  }
}
.about-section .about-element-three {
  position: absolute;
  top: 12%;
  right: 0;
  width: 1%;
  opacity: 0.25;
}
.about-section .about-element-three img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .about-section .about-element-three {
    display: none;
  }
}
.about-section .about-element-four {
  position: absolute;
  top: 18%;
  right: 5%;
  opacity: 0.35;
}
.about-section .about-element-four img {
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .about-section .about-element-four {
    display: none;
  }
}
.about-section .about-element-five {
  position: absolute;
  top: 40%;
  right: 10%;
  opacity: 0.35;
}
.about-section .about-element-five img {
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .about-section .about-element-five {
    display: none;
  }
}

.about-area {
  margin-top: 75px;
  margin-bottom: 55px;
}
.about-area.two {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .about-area.two {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about-area.two {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1300px) {
  .about-area {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.about-area.three {
  margin-bottom: 85px;
}
@media only screen and (max-width: 1300px) {
  .about-area.three {
    margin-bottom: 0;
  }
}

.about-thumb {
  position: relative;
  z-index: 2;
}
.about-thumb.two {
  background-color: #ECF2FF;
  border-radius: 10px;
  padding: 100px 0;
  text-align: center;
  margin-left: 60px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 575px) {
  .about-thumb.two {
    margin-left: 0;
  }
}
.about-thumb.two::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ECF2FF;
  border-radius: 10px;
  z-index: -1;
}
.about-thumb.two .about-thumb-video {
  position: absolute;
  top: 60px;
  left: -60px;
  background-color: #3249B3;
  border-radius: 10px;
  padding: 40px;
  display: none;
}
@media only screen and (max-width: 575px) {
  .about-thumb.two .about-thumb-video {
    display: none;
  }
}
.home-top-sections .about-thumb-video {
    display: none;
}
.about-thumb.two .about-thumb-video .circle svg {
  width: auto;
  left: -102%;
}
.about-thumb.two .about-thumb-video .video-icon {
  font-size: 20px;
}
.about-thumb .about-thumb-element-one {
  position: absolute;
  bottom: -10%;
  left: -10%;
  z-index: -1;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 991px) {
  .about-thumb .about-thumb-element-one {
    display: none;
  }
}
.about-thumb .about-thumb-element-two {
  position: absolute;
  top: -10%;
  right: -10%;
  z-index: -1;
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
@media only screen and (max-width: 991px) {
  .about-thumb .about-thumb-element-two {
    display: none;
  }
}

.about-content {
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  .about-content {
    margin-left: 0;
  }
}
.about-content .title {
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: -5px;
  text-transform: capitalize;
}
.about-content p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .about-content p {
    margin-bottom: 20px;
  }
}
.about-content p.para {
  font-weight: 600;
  color: #2a2727;
}
.about-content.two {
  margin-left: 0;
}

.about-btn {
  margin-top: 60px;
}
@media only screen and (max-width: 575px) {
  .about-btn {
    margin-top: 40px;
  }
}
.about-btn.two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 400px) {
  .about-btn.two {
    display: block;
  }
}
.about-btn.two span {
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .about-btn.two span {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .about-btn.two span {
    margin-left: 0;
    margin-top: 20px;
    display: block;
  }
}
.about-btn.two span a {
  color: #3249B3;
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}
@media only screen and (max-width: 1199px) {
  .about-btn.two span a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .about-btn.two span a {
    font-size: 16px;
    margin-left: 5px;
  }
}

.box-wrapper {
  position: absolute;
  width: 450px;
  height: 450px;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 575px) {
  .box-wrapper {
    display: none;
  }
}
.box-wrapper.two {
  width: 490px;
}
.box-wrapper.two .box1,
.box-wrapper.two .box2,
.box-wrapper.two .box3 {
  border: 1px dashed #E2E2E2;
}
.box-wrapper.two .box1 .box-element-one {
  top: 400px;
  left: 10px;
}

.box1,
.box2,
.box3 {
  border-radius: 50%;
  border: 1px solid #E2E2E2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1300px) {
  .box1,
.box2,
.box3 {
    display: none;
  }
}

.box1 {
  width: 600px;
  height: 600px;
  animation: rotatebox 50s linear infinite;
  -webkit-animation: rotatebox 50s linear infinite;
  -moz-animation: rotatebox 50s linear infinite;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
}
@media only screen and (max-width: 1300px) {
  .box1 {
    width: 400px;
    height: 400px;
  }
}
.box1 .box-element-one {
  position: absolute;
  top: 20px;
  right: 100px;
}
@media only screen and (max-width: 1300px) {
  .box1 .box-element-one {
    display: none;
  }
}
.box1 .box-element-two {
  position: absolute;
  top: 150px;
  right: 15px;
}
.box1 .box-element-three {
  position: absolute;
  bottom: 10px;
  right: 150px;
  width: 6%;
}
.box1 .box-element-four {
  position: absolute;
  bottom: 200px;
  left: 0px;
  width: 6%;
}

.box2 {
  width: 450px;
  height: 450px;
  animation: rotatebox 60s linear infinite;
  -webkit-animation: rotatebox 60s linear infinite;
  -moz-animation: rotatebox 60s linear infinite;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
}
@media only screen and (max-width: 1300px) {
  .box2 {
    width: 250px;
    height: 250px;
  }
}
.box2 .box-element-five {
  position: absolute;
  bottom: 0px;
  right: 150px;
}
.box2 .box-element-six {
  position: absolute;
  top: 100px;
  right: 10px;
}

.box3 {
  width: 300px;
  height: 300px;
}
@media only screen and (max-width: 1300px) {
  .box3 {
    width: 100px;
    height: 100px;
  }
}

/*-------------------------------------------------
    [ ### plan block ]
*/
.plan-section.two {
  background-color: #F5F8FF !important;
}
.plan-section.two .section-header {
  margin-bottom: 40px;
}
.plan-section.two .plan-item {
  background-color: #fff;
  border: 1px solid transparent;
}
.plan-section.two .plan-item:hover {
  background-color: #3249B3;
}
.plan-section.three .section-header {
  margin-bottom: 40px;
}
.plan-section.three .plan-item {
  background-color: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(50, 73, 179, 0.15);
          box-shadow: 0 15px 30px rgba(50, 73, 179, 0.15);
  border: 1px solid transparent;
}
.plan-section.three .plan-item:hover {
  background-color: #3249B3;
  -webkit-box-shadow: 0 15px 35px rgba(50, 73, 179, 0.32);
          box-shadow: 0 15px 35px rgba(50, 73, 179, 0.32);
}

.plan-item {
  border: 1px solid #3249B3;
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 340px) {
  .plan-item {
    padding: 20px;
  }
}
.plan-item:hover {
  background-color: #3249B3;
  -webkit-box-shadow: 0 15px 35px rgba(50, 73, 179, 0.32);
          box-shadow: 0 15px 35px rgba(50, 73, 179, 0.32);
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.plan-item:hover .plan-header .title {
  color: #fff;
}
.plan-item:hover .plan-price-area .price-title {
  color: #fff;
}
.plan-item:hover .plan-price-area .price-title sub {
  color: #fff;
}
.plan-item:hover .plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-item:hover .plan-list li {
  color: #fff;
}
.plan-item:hover .plan-list li::before {
  color: #fff;
}
.plan-item:hover .plan-footer .plan-btn a {
  background-color: #fff;
}
.plan-item:hover .plan-footer .plan-btn a::before {
  background-color: #fff;
}
.plan-item:hover .plan-footer .plan-btn a:hover {
  color: #3249B3;
}
.plan-item.two {
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(50, 73, 179, 0.2);
}
.plan-item.two .plan-header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.plan-item.two .plan-header {
  margin-bottom: 10px;
}
.plan-item.two .plan-header .title {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
.plan-item.two .plan-price-area {
  margin-bottom: 0;
}
.plan-item.two .plan-price-area .price-title {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}
.plan-item.two .plan-price-area .price-title sub {
  font-size: 12px;
  color: #3249B3;
}
.plan-item.two p {
  font-size: 14px;
}
.plan-item.two .plan-list {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.plan-item.two .plan-list li {
  font-size: 14px;
  padding-left: 30px;
}
.plan-item.two .plan-list li::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  background-color: #DFDFDF;
  text-align: center;
  line-height: 20px;
  top: 2px;
}
.plan-item.two .plan-btn a {
  padding: 14px 25px;
}
.plan-item.two:hover p {
  color: #fff;
}
.plan-item.two:hover .plan-price-area .price-title sub {
  color: #fff;
}
.plan-item.two:hover .plan-list {
  margin: 0;
  padding: 0;
}
.plan-item.two:hover .plan-list li::before {
  background-color: #DFE9FF;
  color: #3249B3;
}

.plan-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.plan-header .title {
  font-weight: 700;
  margin-bottom: 0;
}
.plan-header .plan-badge {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  background-color: #F8D458;
  color: #1C1C1C;
  margin: 5px;
  display: initial;
}
@media only screen and (max-width: 340px) {
  .plan-header .plan-badge {
    font-size: 14px;
    padding: 6px 15px;
  }
}

.plan-price-area {
  margin-bottom: 30px;
}
.plan-price-area .price-title {
  font-size: 40px;
  font-weight: 700;
  color: #3249B3;
}
@media only screen and (max-width: 340px) {
  .plan-price-area .price-title {
    font-size: 30px;
  }
}
.plan-price-area .price-title sub {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}
@media only screen and (max-width: 340px) {
  .plan-price-area .price-title sub {
    font-size: 14px;
  }
}

.plan-list {
  padding: 0;
  margin: 0;
  margin-bottom: -5px;
}
.plan-list li {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  padding-bottom: 20px;
}

.blog-content .plan-list li {
    padding-bottom: 5px;
}

@media only screen and (max-width: 340px) {
  .plan-list li {
    font-size: 14px;
  }
}
.plan-list li::before {
  position: absolute;
  color: #3249B3;
  top: 0;
  left: 0;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
}

.plan-footer {
  margin-top: auto;
}

.plan-tab .section-header-wrapper {
  position: relative;
}
.plan-tab .section-header-wrapper .section-header {
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .plan-tab .section-header-wrapper .section-header {
    width: 100%;
  }
}
.plan-tab .section-header-wrapper .nav-tabs {
  margin-bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(50, 73, 179, 0.1);
          box-shadow: 0 0 20px rgba(50, 73, 179, 0.1);
  border-radius: 30px;
}
.plan-tab .section-header-wrapper .nav-tabs .nav-link {
  background-color: transparent;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  margin-right: 0;
}
.plan-tab .section-header-wrapper .section-header-element {
  position: absolute;
  top: 0;
  right: 15%;
}
@media only screen and (max-width: 1199px) {
  .plan-tab .section-header-wrapper .section-header-element {
    display: none;
  }
}
.plan-tab .nav-tabs {
  border: none;
  padding: 0;
}
.plan-tab .nav-tabs{
    display: none !important;
}
@media only screen and (max-width: 991px) {
  .plan-tab .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 340px) {
  .plan-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.plan-tab .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(50, 73, 179, 0.22);
  border-radius: 999px;
  color: #3249B3;
  font-family: "Poppins", sans-serif;
  padding: 7px 20px;
  margin-right: 12px;
}
@media only screen and (max-width: 991px) {
  .plan-tab .nav-tabs .nav-link {
    width: auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 340px) {
  .plan-tab .nav-tabs .nav-link {
    font-size: 14px;
  }
}
.plan-tab .nav-tabs .nav-link::before {
  display: none;
}
.plan-tab .nav-tabs .nav-link.active {
  background-color: #3249B3;
  -webkit-box-shadow: 0 15px 30px rgba(50, 73, 179, 0.24);
          box-shadow: 0 15px 30px rgba(50, 73, 179, 0.24);
  color: #fff;
}

/*-------------------------------------------------
    [ ### gallery block ]
*/
.filter-btn-group {
  margin: -10px;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .filter-btn-group {
    margin-bottom: 40px;
  }
}
.filter-btn-group button, .filter-btn-group input[type=button], .filter-btn-group input[type=reset], .filter-btn-group input[type=submit] {
  background-color: transparent;
  border: 1px solid #3249B3;
  padding: 8px 20px;
  min-width: 120px;
  border-radius: 3px;
  margin: 10px;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.filter-btn-group button:hover, .filter-btn-group input[type=button]:hover, .filter-btn-group input[type=reset]:hover, .filter-btn-group input[type=submit]:hover, .filter-btn-group button.active, .filter-btn-group input.active[type=button], .filter-btn-group input.active[type=reset], .filter-btn-group input.active[type=submit] {
  background-color: #3249B3;
  color: #fff;
}
.filter-btn-group.two {
  margin: -15px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .filter-btn-group.two {
    margin-bottom: 40px;
  }
}
.filter-btn-group.two button, .filter-btn-group.two input[type=button], .filter-btn-group.two input[type=reset], .filter-btn-group.two input[type=submit] {
  border: none;
  font-weight: 500;
  padding: 0;
  margin: 15px;
  min-width: auto;
}
.filter-btn-group.two button:hover, .filter-btn-group.two input[type=button]:hover, .filter-btn-group.two input[type=reset]:hover, .filter-btn-group.two input[type=submit]:hover, .filter-btn-group.two button.active, .filter-btn-group.two input.active[type=button], .filter-btn-group.two input.active[type=reset], .filter-btn-group.two input.active[type=submit] {
  background-color: transparent;
  color: #3249B3;
}

.grid {
  margin: -15px;
}
.grid.two {
  margin: -30px -15px;
}
.grid.two .grid-item {
  padding: 30px 15px;
}

.grid-item {
  padding: 15px;
  margin: 0;
  width: 33.33%;
}
@media only screen and (max-width: 767px) {
  .grid-item {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-item {
    width: 100%;
  }
}
.grid-item.width {
  width: 66.66%;
}
@media only screen and (max-width: 767px) {
  .grid-item:last-child {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-item:last-child {
    width: 100%;
  }
}
.grid-item.two {
  width: 33.33%;
}
@media only screen and (max-width: 767px) {
  .grid-item.two {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-item.two {
    width: 100%;
  }
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-thumb img {
  width: 100%;
}
.gallery-thumb img.attachment-post-thumbnail {
    min-height: 230px;
    max-height: 230px;
    object-fit: contain;
}
.gallery-thumb::before {
  position: absolute;
  content: "";
  display:none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 73, 179, 0.78);
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-thumb .gallery-thumb-overlay {
  position: absolute;
  display:none !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-thumb .gallery-thumb-overlay .gallery-icon {
  width: 100px;
  height: 100px;
  line-height: 88px;
  display: inline-block;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 100px;
}
.gallery-thumb .gallery-thumb-overlay.two .gallery-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #3249B3;
  font-size: 20px;
  margin: 5px;
}
.gallery-thumb:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gallery-thumb:hover .gallery-thumb-overlay {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 400px) {
  .gallery-item.details .gallery-thumb {
    height: 230px;
    border-radius: 5px;
  }
}
.gallery-item.details .gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-item.details .gallery-thumb::before {
  display: none;
}
.gallery-item.details .gallery-content-area {
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .gallery-item.details .gallery-content-area {
    padding-top: 30px;
  }
}
.gallery-item.details .gallery-content-area .gallery-content {
  padding-top: 0;
}
.gallery-item.details .gallery-content-area .title {
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .gallery-item.details .gallery-content-area .title {
    font-size: 22px;
  }
}
.gallery-item.details .gallery-sidebar-widget {
  background-color: #DEE8FF;
  border-radius: 10px;
  padding: 50px;
}
@media only screen and (max-width: 991px) {
  .gallery-item.details .gallery-sidebar-widget {
    padding: 25px;
  }
}
.gallery-item.details .gallery-sidebar-widget .gallery-sidebar-widget-list {
  margin-bottom: -30px;
}
.gallery-item.details .gallery-sidebar-widget .gallery-sidebar-widget-list .title {
  font-size: 18px;
  margin-bottom: 10px;
}

.gallery-content {
  padding-top: 20px;
}
.gallery-content .sub-title {
  font-size: 14px;
  color: #727272;
  margin-bottom: 10px;
}
.gallery-content .price {
  margin-top: 12px;
  color: #3249B3;
  font-size: 14px;
  font-weight: 600;
}
.gallery-content .title {
  margin-bottom: 0;
}
.gallery-content .title a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-content .title a:hover {
  color: #3249B3;
}

.gallery-widget-item-section {
  background-color: #3249B3;
}
.gallery-widget-item-section .gallery-widget-item-slider {
  overflow: hidden;
}
.gallery-widget-item-section .gallery-widget-item-slider .slider-prev,
.gallery-widget-item-section .gallery-widget-item-slider .slider-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  line-height: auto;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #A8B3E2;
}
@media only screen and (max-width: 1430px) {
  .gallery-widget-item-section .gallery-widget-item-slider .slider-prev,
.gallery-widget-item-section .gallery-widget-item-slider .slider-next {
    display: none;
  }
}
.gallery-widget-item-section .gallery-widget-item-slider .slider-prev:hover,
.gallery-widget-item-section .gallery-widget-item-slider .slider-next:hover {
  color: #fff;
}
.gallery-widget-item-section .gallery-widget-item-slider .slider-prev {
  left: -12%;
}
.gallery-widget-item-section .gallery-widget-item-slider .slider-next {
  right: -10%;
}
.gallery-widget-item-section .gallery-widget-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 400px) {
  .gallery-widget-item-section .gallery-widget-item {
    display: block;
    text-align: center;
  }
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-thumb {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 400px) {
  .gallery-widget-item-section .gallery-widget-item .gallery-widget-thumb {
    width: 100%;
  }
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-content {
  width: calc(100% - 120px);
  padding-left: 30px;
}
@media only screen and (max-width: 400px) {
  .gallery-widget-item-section .gallery-widget-item .gallery-widget-content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-content .sub-title {
  margin-bottom: 10px;
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-content .title {
  margin-bottom: 0;
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-content .title a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-widget-item-section .gallery-widget-item .gallery-widget-content .title a:hover {
  color: #3249B3;
}

.sorting-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #E2E2E2;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 420px) {
  .sorting-area {
    display: block;
    text-align: center;
  }
}
.sorting-area .sorting-content span {
  font-weight: 500;
  font-size: 14px;
}
@media only screen and (max-width: 420px) {
  .sorting-area .sorting-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5px;
  }
}
.sorting-area .sorting-select .nice-select {
  line-height: 40px;
  border: none;
}
.sorting-area .sorting-select .nice-select::after {
  right: 14px;
  margin-top: -6px;
  border-bottom: 2px solid #535353;
  border-right: 2px solid #535353;
}
.sorting-area .sorting-select .nice-select .current {
  color: #4B4B4B;
  font-weight: 500;
}
.sorting-area .sorting-select .nice-select .option {
  font-weight: 500;
  font-size: 14px;
  color: #535353;
}
.sorting-area .sorting-select .nice-select .option:hover {
  color: #fff;
}

/*-------------------------------------------------
    [ ### product-details block ]
*/
@media only screen and (max-width: 767px) {
  .product-details-content {
    margin-top: 30px;
  }
}
.product-details-content .stock {
  background: #3249B3;
  padding: 6px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 17px;
  display: inline-block;
}
.product-details-content .title {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-details-content .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.product-details-content .review i {
  color: #FC8F00;
  font-size: 15px;
}
.product-details-content .review i.style-01 {
  color: #BFBFBF;
}
.product-details-content .review span {
  display: inline-block;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
  color: #505050;
  margin-left: 10px;
}
.product-details-content .price {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  color: #3249B3;
  margin-bottom: 20px;
  display: inline-block;
}
.product-details-content .para {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
  color: #505050;
  border-bottom: 1px dashed #CBCBCB;
  margin-bottom: 26px;
  padding-bottom: 25px;
}
.product-details-content .add-to-cart-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #CBCBCB;
  margin-bottom: 20px;
  padding-bottom: 38px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-details-content .add-to-cart-wrap .add-to-cart {
  margin-left: 20px;
}
.product-details-content .add-to-cart-wrap .add-to-cart a {
  background: #3249B3;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .product-details-content .add-to-cart-wrap .add-to-cart a {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 455px) {
  .product-details-content .add-to-cart-wrap .add-to-cart a {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.product-details-content .add-to-cart-wrap .add-to-cart a i {
  margin-right: 10px;
}
.product-details-content .add-to-cart-wrap .add-to-wishlist {
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .product-details-content .add-to-cart-wrap .add-to-wishlist {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product-details-content .add-to-cart-wrap .add-to-wishlist {
    margin-left: 20px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 455px) {
  .product-details-content .add-to-cart-wrap .add-to-wishlist {
    margin-left: 0;
    margin-top: 20px;
  }
}
.product-details-content .add-to-cart-wrap .add-to-wishlist a {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .product-details-content .add-to-cart-wrap .add-to-wishlist a {
    font-size: 14px;
  }
}
.product-details-content .add-to-cart-wrap .add-to-wishlist a i {
  margin-right: 10px;
}
.product-details-content .tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-details-content .tag-wrapper.style-01 {
  margin-bottom: 20px;
}
.product-details-content .tag-wrapper span {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: #1C1C1C;
}
@media only screen and (max-width: 991px) {
  .product-details-content .tag-wrapper span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 455px) {
  .product-details-content .tag-wrapper span {
    font-size: 12px;
  }
}
.product-details-content .tag-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-left: 10px;
}
.product-details-content .tag-wrapper ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 400;
  color: #8A8A8A;
}
@media only screen and (max-width: 455px) {
  .product-details-content .tag-wrapper ul li {
    font-size: 12px;
  }
}

.product-quantity .product-plus-minus {
  width: 140px;
  position: relative;
  display: inline-block;
}
.product-quantity .product-plus-minus.style-01 {
  width: 110px;
}
.product-quantity .product-plus-minus .qtybutton {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
  text-align: center;
  width: 37px;
  height: 37px !important;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
}
.product-quantity .product-plus-minus .qtybutton.dec {
  left: 0px;
  top: 0px;
}
.product-quantity .product-plus-minus .qtybutton.inc {
  right: 0px;
  top: 0px;
}
.product-quantity .product-plus-minus .product-plus-minus-box {
  color: black;
  font-size: 16px;
  height: 36px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  width: 140px;
  outline: none;
  border: 1px solid transparent;
  background-color: transparent;
}
.product-quantity .product-plus-minus .product-plus-minus-box.style-01 {
  width: 110px;
}

.color-wrapper {
  margin-bottom: 36px;
}
.color-wrapper .wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.color-wrapper .wrapper-inner .color {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin-right: 20px;
}
.color-wrapper .radio {
  position: relative;
}
.color-wrapper .radio + .radio {
  margin-left: 35px;
}
.color-wrapper .radio .checkmark.style-01::after {
  background: #A45A3F;
}
.color-wrapper .radio .checkmark.style-02::after {
  background: #F7A56F;
}
.color-wrapper .radio .checkmark.style-03::after {
  background: #CBB487;
}
.color-wrapper .radio .checkmark::after {
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8F1818;
}
.color-wrapper input[type=radio] {
  position: absolute;
  opacity: 0;
}
.color-wrapper .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #8F1818;
  border-radius: 50%;
  padding: 9px;
  border: 1px solid transparent;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.color-wrapper .checkmark:focus {
  outline: none;
}
.color-wrapper .checkmark.style-01 {
  background: #A45A3F;
}
.color-wrapper .checkmark.style-02 {
  background: #F7A56F;
}
.color-wrapper .checkmark.style-03 {
  background: #CBB487;
}
.color-wrapper .radio input:checked ~ .checkmark {
  border: 1px solid #000000;
  padding: 9px;
}
.color-wrapper .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.color-wrapper .radio input:checked ~ .checkmark:after {
  display: block;
}
.color-wrapper .radio input:checked ~ .checkmark {
  background: transparent;
}

.product-details-slider {
  overflow: hidden;
}

.product-details-slider-two {
  overflow: hidden;
  margin-top: 20px;
}

.product-details-thumb {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.product-details-thumb a {
  display: block;
  height: 100%;
}
.product-details-thumb.two {
  height: 100px;
}
.product-details-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-information-section .information-wrapper {
  border-top: 1px dashed #CBCBCB;
  padding-top: 60px;
  margin-top: 55px;
}
.product-information-section .information-wrapper .nav-parent {
  text-align: center;
}
.product-information-section .information-wrapper .nav-parent .nav-pills {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 8px;
}
.product-information-section .information-wrapper .nav-parent .nav-pills .nav-item + .nav-item {
  margin-left: 60px;
}
.product-information-section .information-wrapper .nav-parent .nav-pills .nav-item .nav-link {
  padding: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #505050;
  border-radius: 0px;
  position: relative;
  z-index: 0;
}
.product-information-section .information-wrapper .nav-parent .nav-pills .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 3px;
  background-color: #3249B3;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.product-information-section .information-wrapper .nav-parent .nav-pills .nav-item .nav-link.active {
  color: #3249B3;
}
.product-information-section .information-wrapper .nav-parent .nav-pills .nav-item .nav-link.active::after {
  width: 100%;
}
.product-information-section .information-wrapper .informarion-content {
  margin-bottom: 35px;
}
.product-information-section .information-wrapper .informarion-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}
.product-information-section .information-wrapper .product-features .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.list-items-02 .list-parent {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-items-02 .list-parent .list-child {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.67;
  font-weight: 400;
  color: #2e2e2e;
}
.list-items-02 .list-parent .list-child + .list-child {
  margin-top: 20px;
}
.list-items-02 .list-parent .list-child::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  font-size: 10px;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  line-height: 19px;
  background: rgba(41, 98, 255, 0.12);
  border-radius: 50%;
  text-align: center;
  color: #3249B3;
}

.product-cart-section {
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .product-cart-section .table thead {
    display: none;
  }
}
.product-cart-section .table thead th {
  border-bottom: 1px dashed #CBCBCB;
  padding: 15px 50px;
  border-top: 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
  text-transform: uppercase;
  color: #505050;
}
.product-cart-section .table thead th:first-child {
  padding-left: 0;
}
.product-cart-section .table tbody td {
  border-top: 0;
  vertical-align: middle;
  padding: 20px 50px 20px 50px;
  line-height: 1.65;
  font-weight: 500;
  text-transform: uppercase;
  color: #505050;
  border-bottom: 1px dashed #CBCBCB;
}
@media only screen and (max-width: 1199px) {
  .product-cart-section .table tbody td {
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .product-cart-section .table tbody td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
    border-bottom: 1px dashed #CBCBCB;
    padding: 20px 20px 20px 20px;
  }
  .product-cart-section .table tbody td::before {
    content: attr(data-label);
    margin-right: auto;
    color: #3249B3;
    width: 50%;
    text-align: left;
  }
}
@media only screen and (max-width: 575px) {
  .product-cart-section .table tbody td {
    padding: 15px 15px 15px 15px;
  }
}
.product-cart-section .table tbody td:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .product-cart-section .custom-table tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
    border-bottom: 1px solid #eeeeee;
  }
  .product-cart-section .custom-table tbody tr td:last-child {
    border: none;
  }
  .product-cart-section .custom-table tbody tr td::before {
    content: attr(data-label);
    margin-right: auto;
    color: #0088cc;
    width: 50%;
    text-align: left;
  }
}
.product-cart-section .cart-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .product-cart-section .cart-button-wrapper {
    display: block;
  }
}
.product-cart-section .cart-button-wrapper .cart-btn {
  background: #F9FBFF;
  padding: 18px 33px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  display: inline-block;
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .product-cart-section .cart-button-wrapper .cart-btn {
    padding: 12px 18px;
    margin-top: 30px;
    font-size: 14px;
  }
}
.product-cart-section .cart-button-wrapper .cart-btn.style-01 {
  background: #3249B3;
  color: #fff;
  margin-left: 20px;
}
.product-cart-section .cart-button-wrapper .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-cart-section .cart-total {
  background: #F9FBFF;
  padding: 17px 20px 20px 20px;
  margin-top: 60px;
  border-radius: 8px;
}
.product-cart-section .cart-total .title {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 15px;
}
.product-cart-section .cart-total ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-cart-section .cart-total ul li {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #10221B;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #DEDEDE;
}
.product-cart-section .cart-total ul li span {
  float: right;
}
.product-cart-section .cart-total a {
  background: #3249B3;
  padding: 16px 33px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  border-radius: 6px;
  margin-top: 20px;
}

.product-reply-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
.product-reply-item:nth-child(even) {
  margin-left: 60px;
}
@media only screen and (max-width: 440px) {
  .product-reply-item:nth-child(even) {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .product-reply-item:nth-child(even) {
    display: block;
  }
}
.product-reply-item .product-reply-thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.product-reply-item .product-reply-content {
  width: calc(100% - 70px);
  padding-left: 30px;
}
@media only screen and (max-width: 400px) {
  .product-reply-item .product-reply-content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.product-reply-item .product-reply-content .product-reply-content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.product-reply-item .product-reply-content .product-reply-content-header .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 991px) {
  .product-reply-item .product-reply-content .product-reply-content-header .title {
    font-size: 18px;
  }
}
.product-reply-item .product-reply-content .product-reply-content-header .date {
  font-size: 15px;
  font-weight: 400;
  color: #8B8B8B;
}
.product-reply-item .product-reply-content .reply-ratings {
  margin-bottom: 10px;
}
.product-reply-item .product-reply-content .reply-ratings i {
  font-size: 14px;
  color: #FF8400;
}
.product-reply-item .product-reply-content .product-reply-content-body p {
  margin-bottom: 15px;
}
.product-reply-item .product-reply-content .product-reply-btn .reply-btn {
  color: #3249B3;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width: 991px) {
  .product-reply-item .product-reply-content .product-reply-btn .reply-btn {
    font-size: 16px;
  }
}

.product-comment-area {
  margin-top: 60px;
  border-top: 1px dashed #E2E2E2;
  padding-top: 60px;
}
.product-comment-area .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px !important;
}
.product-comment-area .comment-form {
  margin-top: 30px;
}
.product-comment-area .comment-form .form-group {
  margin-bottom: 30px;
}
.product-comment-area .comment-form label {
  font-weight: 500;
}
.product-comment-area .comment-form .form--control {
  border: 1px solid #E2E2E2;
  background-color: #fff;
  font-weight: 400;
}
.product-comment-area .comment-form .form--control:focus {
  border: 1px solid #3249B3;
}
.product-comment-area .comment-form .form--control::-webkit-input-placeholder {
  color: #AAAAAA;
}
.product-comment-area .comment-form .form--control::-moz-placeholder {
  color: #AAAAAA;
}
.product-comment-area .comment-form .form--control:-ms-input-placeholder {
  color: #AAAAAA;
}
.product-comment-area .comment-form .form--control::-ms-input-placeholder {
  color: #AAAAAA;
}
.product-comment-area .comment-form .form--control::placeholder {
  color: #AAAAAA;
}
.product-comment-area .comment-form textarea {
  min-height: 150px;
}
.product-comment-area .comment-form .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
.product-comment-area .comment-form .rating:not(:checked) > input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.product-comment-area .comment-form .rating:not(:checked) > label {
  width: 1em;
  padding: 0 0.1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 200%;
  line-height: 1.2;
  color: #ddd;
}
.product-comment-area .comment-form .rating:not(:checked) > label:before {
  content: "★";
  border: none;
}
.product-comment-area .comment-form .rating > input[type=radio]:checked + label:before {
  border-color: transparent;
  background-color: transparent;
}
.product-comment-area .comment-form .rating > input:checked ~ label {
  color: #FF8400;
}
.product-comment-area .comment-form .rating:not(:checked) > label:hover,
.product-comment-area .comment-form .rating:not(:checked) > label:hover ~ label {
  color: gold;
}
.product-comment-area .comment-form .rating > input:checked + label:hover,
.product-comment-area .comment-form .rating > input:checked + label:hover ~ label,
.product-comment-area .comment-form .rating > input:checked ~ label:hover,
.product-comment-area .comment-form .rating > input:checked ~ label:hover ~ label,
.product-comment-area .comment-form .rating > label:hover ~ input:checked ~ label {
  color: #ea0;
}
.product-comment-area .comment-form .rating > label:active {
  position: relative;
  top: 2px;
  left: 2px;
}

/*-------------------------------------------------
    [ ### agency block ]
*/
.agency-section {
  position: relative;
}
.agency-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #F5F8FF;
}

.agency-content {
  position: relative;
}
.agency-content .agency-logo-text {
  position: absolute;
  left: 0;
  bottom: -90%;
}
@media only screen and (max-width: 1199px) {
  .agency-content .agency-logo-text {
    display: none;
  }
}
.agency-content .agency-logo-text span {
  font-weight: 700;
  font-size: 250px;
  line-height: 250px;
  background: transparent linear-gradient(184deg, #9DBAFE 0%, rgba(157, 186, 254, 0.01) 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  letter-spacing: 3px;
  font-family: "Jost", sans-serif;
}
.agency-content .title {
  margin-top: -13px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .agency-content .title {
    font-size: 22px;
  }
}

.agency-statistics-area {
  background-color: #3249B3;
  border-radius: 10px;
  padding: 60px;
  margin-top: 80px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .agency-statistics-area {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .agency-statistics-area {
    margin-top: 30px;
    padding: 30px;
  }
}
.agency-statistics-area .statistics-item .statistics-content p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .agency-statistics-area .statistics-item .statistics-content p {
    font-size: 16px;
  }
}
.agency-statistics-area .statistics-item .odo-title {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-weight: 700;
  font-size: 60px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
  position: relative;
}
.agency-statistics-area .statistics-item .odo-title::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 5px;
  width: 24px;
  height: 24px;
  background-color: #F8D458;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .agency-statistics-area .statistics-item .odo-title::before {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .agency-statistics-area .statistics-item .odo-title {
    font-size: 30px;
  }
}
.agency-statistics-area .statistics-item .odo-area .title {
  display: inline-block;
  font-size: 35px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .agency-statistics-area .statistics-item .odo-area .title {
    font-size: 20px;
  }
}

/*-------------------------------------------------
    [ ### subscribe block ]
*/
.subscribe-section {
  position: relative;
}
.subscribe-section .subscribe-element-one {
  position: absolute;
  top: 50%;
  right: 12%;
  -webkit-animation: horizontal-move-two 5s linear infinite;
          animation: horizontal-move-two 5s linear infinite;
}
@media only screen and (max-width: 1740px) {
  .subscribe-section .subscribe-element-one {
    display: none;
  }
}

.subscribe-area {
  background-color: #3249B3;
  border-radius: 10px;
  position: relative;
  padding: 0 60px;
  z-index: 2;
  -webkit-box-shadow: 10px 0 40px rgba(50, 73, 179, 0.3);
          box-shadow: 10px 0 40px rgba(50, 73, 179, 0.3);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .subscribe-area {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 575px) {
  .subscribe-area {
    padding: 0 30px;
  }
}
.subscribe-area.two .subscribe-content {
  padding: 80px 0;
}
.subscribe-area.two .subscribe-content .title {
  font-size: 56px;
  font-weight: 800;
}
@media only screen and (max-width: 991px) {
  .subscribe-area.two .subscribe-content .title {
    font-size: 30px;
  }
}
.subscribe-area.two::before {
  display: none;
}
.subscribe-area.two .subscribe-element-two {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  -webkit-transform: none;
          transform: none;
  width: auto;
}
.subscribe-area.two .subscribe-form {
  max-width: 80%;
}
@media only screen and (max-width: 991px) {
  .subscribe-area.two .subscribe-form {
    max-width: 100%;
  }
}
.subscribe-area::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -245px;
  width: 700px;
  height: 700px;
  background-color: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 1199px) {
  .subscribe-area::before {
    display: none;
  }
}
.subscribe-area .subscribe-element-two {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .subscribe-area .subscribe-element-two {
    display: none;
  }
}
.subscribe-area .subscribe-element-three {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-element-three {
    display: none;
  }
}
.subscribe-area .subscribe-content {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-content {
    padding: 60px 0 60px 0;
  }
}
.subscribe-area .subscribe-content .title {
  color: #fff;
  margin-top: -10px;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-content .title {
    font-size: 28px;
  }
}
.subscribe-area .subscribe-content p {
  color: #fff;
}
.subscribe-area .subscribe-form {
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form {
    margin-top: 20px;
  }
}
.subscribe-area .subscribe-form .subscribe-icon {
  position: absolute;
  top: 26px;
  left: 28px;
  opacity: 0.2;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form .subscribe-icon {
    top: 18px;
  }
}
.subscribe-area .subscribe-form input {
  padding: 10px 200px 10px 15px;
  padding-left: 80px;
  border-radius: 10px;
  font-size: 18px;
  border: none;
  height: 80px;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form input {
    height: 60px;
    padding: 10px 15px 10px 80px;
  }
}
.subscribe-area .subscribe-form button, .subscribe-area .subscribe-form input[type=button], .subscribe-area .subscribe-form input[type=reset], .subscribe-area .subscribe-form input[type=submit] {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  width: auto;
  border-radius: 5px;
  padding: 15px 30px;
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form button::before, .subscribe-area .subscribe-form input[type=button]::before, .subscribe-area .subscribe-form input[type=reset]::before, .subscribe-area .subscribe-form input[type=submit]::before {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form button, .subscribe-area .subscribe-form input[type=button], .subscribe-area .subscribe-form input[type=reset], .subscribe-area .subscribe-form input[type=submit] {
    background-color: #fff;
    color: #3249B3;
  }
}
.subscribe-area .subscribe-form button i, .subscribe-area .subscribe-form input[type=button] i, .subscribe-area .subscribe-form input[type=reset] i, .subscribe-area .subscribe-form input[type=submit] i {
  margin-left: 5px;
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  .subscribe-area .subscribe-form button, .subscribe-area .subscribe-form input[type=button], .subscribe-area .subscribe-form input[type=reset], .subscribe-area .subscribe-form input[type=submit] {
    position: unset;
    width: 100%;
    margin-top: 15px;
    padding: 15px 20px;
  }
}
.subscribe-area .subscribe-form.two input {
  padding-left: 30px;
}

.subscribe-thumb img {
  width: 100%;
}

/*-------------------------------------------------
    [ ### faq block ]
*/
.faq-wrapper {
  margin-bottom: -20px;
}
.faq-wrapper .faq-item {
  padding: 20px 40px;
  border: 1px solid #3249B3;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
}
.faq-wrapper .faq-inner-thumb-area {
    display: none;
}
@media only screen and (max-width: 575px) {
  .faq-wrapper .faq-item {
    padding: 20px;
  }
}
.faq-wrapper .faq-item .faq-title {
  font-size: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .faq-wrapper .faq-item .faq-title {
    font-size: 17px;
  }
}
.faq-wrapper .faq-item .faq-title .title {
  width: calc(100% - 40px);
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.faq-wrapper .faq-item .faq-title .title span {
  color: #3249B3;
  font-family: "Jost", sans-serif;
  margin-right: 8px;
}
.faq-wrapper .faq-item .faq-content {
  display: none;
  padding-top: 20px;
}
@media only screen and (max-width: 575px) {
  .faq-wrapper .faq-item .faq-content p {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .faq-wrapper .faq-item .faq-content .faq-inner-thumb-area {
    display: none;
  }
}
.faq-wrapper .faq-item .faq-content .faq-inner-thumb-area img {
  width: 100%;
}
.faq-wrapper .faq-item .right-icon {
  display: block;
  width: 30px;
  height: 25px;
  border-radius: 50%;
  position: relative;
}
.faq-wrapper .faq-item .right-icon::after {
  border-top: 2px solid #3249B3;
  border-right: 2px solid #3249B3;
  content: "";
  display: block;
  height: 13px;
  margin-top: 0;
  pointer-events: none;
  position: absolute;
  margin-top: -8px;
  right: 0;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 13px;
}
.faq-wrapper .faq-item.active .faq-content {
  display: block;
}
.faq-wrapper .faq-item.active .faq-content p {
  color: #fff;
}
.faq-wrapper .faq-item.open {
  background-color: #3249B3;
}
.faq-wrapper .faq-item.open .faq-title {
  color: #fff;
}
.faq-wrapper .faq-item.open .faq-content p {
  color: #fff;
}
.faq-wrapper .faq-item.open .right-icon::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-top: none;
}
.faq-wrapper.two {
  margin-right: 60px;
}
@media only screen and (max-width: 1199px) {
  .faq-wrapper.two {
    margin-right: 0;
  }
}
.faq-wrapper.two .faq-item {
  padding: 30px;
  border: none;
  border-bottom: 1px solid #E1E1E1;
  border-radius: 0;
}
.faq-wrapper.two .faq-item .faq-title .title {
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .faq-wrapper.two .faq-item .faq-title .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .faq-wrapper.two .faq-item .faq-title .title {
    font-size: 16px;
  }
}
.faq-wrapper.two .faq-item .right-icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 20px rgba(50, 73, 179, 0.08);
          box-shadow: 0 15px 20px rgba(50, 73, 179, 0.08);
  position: relative;
}
.faq-wrapper.two .faq-item .right-icon::after {
  border-bottom: 2px solid #3249B3;
  border-right: 2px solid #3249B3;
  border-top: none;
  content: "";
  display: block;
  height: 10px;
  margin-top: 0;
  pointer-events: none;
  position: absolute;
  margin-top: -7px;
  right: 0;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  right: 9px;
}
.faq-wrapper.two .faq-item .faq-btn {
  margin-top: 30px;
}
.faq-wrapper.two .faq-item.open {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 50px rgba(50, 73, 179, 0.05);
          box-shadow: 0 10px 50px rgba(50, 73, 179, 0.05);
  border-radius: 15px;
  border: none;
}
.faq-wrapper.two .faq-item.open .faq-title {
  color: #1C1C1C;
}
.faq-wrapper.two .faq-item.open .faq-content p {
  color: #4B4B4B;
}
.faq-wrapper.two .faq-item.open .right-icon {
  background-color: #F8D458;
}
.faq-wrapper.two .faq-item.open .right-icon::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*-------------------------------------------------
    [ ### contact block ]
*/
.contact-section {
  background-color: #F9FBFF;
  position: relative;
}
.contact-section.two {
  background-color: #fff;
}
.contact-section.two .contact-area {
  background-color: #F9FBFF;
  padding: 60px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .contact-section.two .contact-area {
    padding: 25px;
  }
}
.contact-section.two .contact-area .contact-element-five {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.5;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .contact-section.two .contact-area .contact-element-five {
    display: none;
  }
}
.contact-section.two .contact-area .contact-element-six {
  position: absolute;
  bottom: 20px;
  left: 340px;
  opacity: 0.5;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .contact-section.two .contact-area .contact-element-six {
    display: none;
  }
}
.contact-section.two .contact-thumb img {
  width: 100%;
}
.contact-section.two .contact-form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-section.two .contact-form-header .left {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .contact-section.two .contact-form-header .left {
    width: 100%;
  }
}
.contact-section.two .contact-form-header .left .title {
  font-weight: 700;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .contact-section.two .contact-form-header .right {
    display: none;
  }
}
.contact-section.two .contact-form-header .right .circle svg {
  width: auto;
  left: -102.1%;
}
.contact-section.two .contact-logo {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #EFF4FF;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}
.contact-section.two .contact-form {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-section.two .contact-form {
    margin-bottom: 20px;
  }
}
.contact-section.two .contact-form .form--control {
  background-color: #fff;
  border: 1px solid #E4ECFF;
  border-radius: 5px;
}
.contact-section.two .contact-form textarea {
  min-height: 120px;
}
.contact-section.two .contact-form .form-group {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .contact-section.two .contact-form .form-group button, .contact-section.two .contact-form .form-group input[type=button], .contact-section.two .contact-form .form-group input[type=reset], .contact-section.two .contact-form .form-group input[type=submit] {
    margin-top: 30px;
  }
}
.contact-section.two .contact-form .custom-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .contact-section.two .contact-form .custom-form-group {
    display: block;
  }
}
.contact-section.two .contact-form .custom-form-group .custom-check-group {
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .contact-section.two .contact-form .custom-form-group .custom-check-group {
    margin-bottom: 30px;
  }
}
.contact-section.two .contact-form .custom-form-group .custom-check-group label {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}
@media only screen and (max-width: 380px) {
  .contact-section.two .contact-form .custom-form-group .custom-check-group label {
    font-size: 12px;
  }
}
.contact-section .contact-element-one {
  position: absolute;
  left: 2%;
  top: 25%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1650px) {
  .contact-section .contact-element-one {
    display: none;
  }
}
.contact-section .contact-element-two {
  position: absolute;
  right: 5%;
  top: 65%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 1650px) {
  .contact-section .contact-element-two {
    display: none;
  }
}
.contact-section .contact-element-three {
  position: absolute;
  left: 60%;
  bottom: 10%;
  -webkit-animation: horizontal-move 2s linear infinite;
          animation: horizontal-move 2s linear infinite;
}
@media only screen and (max-width: 1650px) {
  .contact-section .contact-element-three {
    display: none;
  }
}
.contact-section .contact-element-four {
  position: absolute;
  left: 50%;
  top: -5%;
  -webkit-animation: rotate 3s linear infinite;
          animation: rotate 3s linear infinite;
}
@media only screen and (max-width: 1650px) {
  .contact-section .contact-element-four {
    display: none;
  }
}

.contact-form .contact-select .nice-select::after {
  border-bottom: 2px solid #535353;
  border-right: 2px solid #535353;
}
.contact-form .contact-select .form--control {
  line-height: 30px;
}
.contact-form .nice-select .current {
  color: #535353;
}
.contact-form .nice-select .option {
  font-weight: 500;
  font-size: 14px;
  color: #535353;
}
.contact-form .nice-select .option:hover {
  color: #fff;
}
.contact-form label {
  color: #030519;
  font-weight: 600;
  font-size: 15px;
}
.contact-form .form--control {
  border: 1px solid #CFCFCF;
  background-color: #F9FBFF;
  border-radius: 3px;
  height: 55px;
  color: #535353;
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 15px;
}
.contact-form .form--control:focus {
  border: 1px solid #3249B3;
  background-color: #F9FBFF;
  color: #535353;
}
.contact-form .form--control::-webkit-input-placeholder {
  color: #535353;
}
.contact-form .form--control::-moz-placeholder {
  color: #535353;
}
.contact-form .form--control:-ms-input-placeholder {
  color: #535353;
}
.contact-form .form--control::-ms-input-placeholder {
  color: #535353;
}
.contact-form .form--control::placeholder {
  color: #535353;
}
.contact-form textarea {
  min-height: 150px;
}
.contact-form button i, .contact-form input[type=button] i, .contact-form input[type=reset] i, .contact-form input[type=submit] i {
  font-size: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-item-section {
  position: relative;
}
.contact-item-section .contact-item-element-one {
  position: absolute;
  top: 20%;
  left: 7%;
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 991px) {
  .contact-item-section .contact-item-element-one {
    display: none;
  }
}
.contact-item-section .contact-item-element-two {
  position: absolute;
  top: 30%;
  right: 5%;
  -webkit-animation: horizontal-move 3s linear infinite;
          animation: horizontal-move 3s linear infinite;
}
@media only screen and (max-width: 991px) {
  .contact-item-section .contact-item-element-two {
    display: none;
  }
}

.contact-item {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #efe6e6;
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-item:hover {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.contact-item:hover .contact-icon {
  background-color: #3249B3;
  color: #fff;
}
.contact-item .contact-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  text-align: center;
  background-color: rgba(50, 73, 179, 0.1);
  color: #3249B3;
  border-radius: 50%;
  font-size: 50px;
  margin-bottom: 25px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-item .contact-content .title {
  margin-bottom: 15px;
}
.contact-item .contact-content p {
  font-weight: 500;
}

.map-area iframe {
  width: 100%;
  height: 550px;
}

/*-------------------------------------------------
    [ ### payment block ]
*/
.payment-section {
  position: relative;
  overflow: hidden;
}

.payment-thumb {
  position: absolute;
  bottom: -120px;
  left: -120px;
}
@media only screen and (max-width: 991px) {
  .payment-thumb {
    position: unset;
  }
}
.payment-thumb.two {
  left: auto;
  right: -300px;
}

.payment-content .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #3249B3;
}
.payment-content .title {
  font-weight: 800;
  margin-bottom: 10px;
}
.payment-content .payment-list {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.payment-content .payment-list li {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  position: relative;
  padding-bottom: 25px;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .payment-content .payment-list li {
    font-size: 16px;
    padding-left: 30px;
  }
}
.payment-content .payment-list li::before {
  position: absolute;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #3249B3;
  border-radius: 50%;
  text-align: center;
  top: 3px;
  left: 0;
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .payment-content .payment-list li::before {
    top: 1px;
  }
}
.payment-content .payment-list.two li {
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  padding-bottom: 30px;
}
.payment-content .payment-list.two li .payment-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.payment-content .payment-list.two li .payment-list-item .content {
  padding-left: 20px;
}
.payment-content .payment-list.two li .payment-list-item .content p {
  color: #4B4B4B;
}
.payment-content .payment-list.two li::before {
  display: none;
}
.payment-content .payment-btn {
  margin: -10px;
  margin-top: 30px;
}
.payment-content .payment-btn a {
  margin: 10px;
}
.payment-content .payment-btn a.two {
  background-color: #9DBAFE;
  border: 1px solid #9DBAFE;
}

/*-------------------------------------------------
    [ ### case block ]
*/
.case-section {
  background-color: #142057;
  position: relative;
}
.case-section .case-element-one {
  position: absolute;
  left: 3%;
  bottom: -15%;
  z-index: 2;
}
.case-section .case-element-one img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1666px) {
  .case-section .case-element-one {
    display: none;
  }
}
.case-section .case-element-three {
  position: absolute;
  top: 125;
  right: 5%;
}
@media only screen and (max-width: 1666px) {
  .case-section .case-element-three {
    display: none;
  }
}
.case-section .case-element-four {
  position: absolute;
  top: 20%;
  left: 5%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media only screen and (max-width: 1666px) {
  .case-section .case-element-four {
    display: none;
  }
}

.case-header {
  width: 70%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .case-header {
    width: 100%;
  }
}
.case-header .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.case-header .title {
  color: #fff;
  font-weight: 800;
}
.case-header .title span {
  color: #F8D458;
  display: initial;
}

.case-tab .nav-tabs {
  border: none;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .case-tab .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 340px) {
  .case-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.case-tab .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #fff;
  padding: 15px 20px;
  margin-right: 12px;
}
@media only screen and (max-width: 991px) {
  .case-tab .nav-tabs .nav-link {
    width: auto;
    margin-bottom: 0;
    font-size: 12px;
    padding: 15px;
  }
}
@media only screen and (max-width: 523px) {
  .case-tab .nav-tabs .nav-link {
    margin: 10px;
  }
}
.case-tab .nav-tabs .nav-link::before {
  display: none;
}
.case-tab .nav-tabs .nav-link.active {
  background-color: #9DBAFE;
  border: 1px solid #9DBAFE;
}

.case-thumb {
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}

.case-content {
  margin-top: 90px;
}
@media only screen and (max-width: 991px) {
  .case-content {
    margin-top: 40px;
  }
}
.case-content p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 1.9em;
}
@media only screen and (max-width: 991px) {
  .case-content p {
    font-size: 16px;
  }
}
.case-content .case-content-footer {
  border-top: 1px solid #fff;
  padding-top: 60px;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .case-content .case-content-footer {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.case-content .case-content-footer p {
  font-style: italic;
}
.case-content .case-content-footer .case-footer-user-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .case-content .case-content-footer .case-footer-user-area {
    margin-top: 30px;
  }
}
.case-content .case-content-footer .case-footer-user-area .case-footer-user-content {
  padding-left: 20px;
}
.case-content .case-content-footer .case-footer-user-area .case-footer-user-content .title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.case-content .case-content-footer .case-footer-user-area .case-footer-user-content .sub-title {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  margin-bottom: 0;
}

/*-------------------------------------------------
    Experience Section Styling Here
---------------------------------------------------*/
.experience-secction {
  margin-top: 120px;
  margin-bottom: 90px;
}
.experience-secction .experience-content {
  padding-right: 20px;
}
.experience-secction .experience-content .title {
  font-size: 21px;
  line-height: 1.72;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 15px;
}

/*-------------------------------------------------
        Development Section Styling Here
---------------------------------------------------*/
.development-section {
  background: #ecf2ff;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  z-index: 0;
}
.development-section .shape-01 {
  position: absolute;
  top: 82px;
  left: 19%;
  z-index: -1;
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
.development-section .shape-02 {
  position: absolute;
  bottom: 79px;
  left: 44%;
  z-index: -1;
  -webkit-animation: scroll-down 5s linear infinite;
          animation: scroll-down 5s linear infinite;
}
.development-section .content {
  margin-top: 30px;
  margin-left: 40px;
}
@media only screen and (max-width: 1199px) {
  .development-section .content {
    margin-left: 0;
  }
}
.development-section .content .title {
  font-size: 40px;
  line-height: 1.46;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 12px;
}
.development-section .content p {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4B4B4B;
  margin-bottom: 25px;
}
.development-section .content .more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  font-weight: bold;
}
.development-section .content .more-btn:hover span {
  color: #3249B3;
}
.development-section .content .more-btn:hover .icon i {
  -webkit-animation: arrow 0.3s linear alternate;
          animation: arrow 0.3s linear alternate;
}
.development-section .content .more-btn span {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1C1C1C;
  margin-bottom: 0px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.development-section .content .more-btn .icon {
  width: 26px;
  height: 26px;
  text-align: center;
  background: #3249B3;
  color: #fff;
  margin-left: 15px;
  overflow: hidden;
}
.development-section .content .more-btn .icon i {
  font-size: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 2px;
}
.development-section .thumbnail {
  position: relative;
  z-index: 0;
}
.development-section .thumbnail .about-thumb-video {
  position: absolute;
  top: 37%;
  left: 23%;
  background-color: #F9FBFF;
  border-radius: 50%;
  padding: 35px;
}
@media only screen and (max-width: 575px) {
  .development-section .thumbnail .about-thumb-video {
    display: none;
  }
}
.development-section .thumbnail .about-thumb-video .circle svg {
  width: auto;
  left: -102%;
}
.development-section .thumbnail .about-thumb-video .video-icon {
  font-size: 20px;
  background-color: #9DBAFE;
  color: #fff;
}
.development-section .plan-list li {
  font-weight: 500;
}

/*-------------------------------------------------
    Customer Severice Section Styling Here
---------------------------------------------------*/
.customer-service-section {
  margin-top: 120px;
}
.customer-service-section .rmt-60 {
  margin-top: 60px;
}
.customer-service-section .section-header {
  margin-bottom: 97px;
}

.service-single-item {
  background-color: #F9FBFF;
  padding: 36px;
  position: relative;
  z-index: 0;
  padding-top: 65px;
}
.service-single-item:hover .icon {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.service-single-item .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  -webkit-filter: drop-shadow(0px 10px 20px rgba(50, 73, 179, 0.08));
          filter: drop-shadow(0px 10px 20px rgba(50, 73, 179, 0.08));
  position: absolute;
  top: -50px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-single-item .content .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #1C1C1C;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-single-item .content .title:hover {
  color: #3249B3;
}
.service-single-item .content p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #4B4B4B;
  margin-bottom: 0;
}
.service-single-item .content .more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 34px;
}
.service-single-item .content .more-btn:hover span {
  color: #3249B3;
}
.service-single-item .content .more-btn:hover .icons i {
  -webkit-animation: arrow 0.3s linear alternate;
          animation: arrow 0.3s linear alternate;
}
.service-single-item .content .more-btn span {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1C1C1C;
  margin-bottom: 0px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.service-single-item .content .more-btn .icons {
  width: 26px;
  height: 26px;
  text-align: center;
  background: #3249B3;
  color: #fff;
  margin-left: 15px;
  overflow: hidden;
}
.service-single-item .content .more-btn .icons i {
  font-size: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 2px;
}

/*-------------------------------------------------
    Case Study Section Styling Here
---------------------------------------------------*/
.case-study-section {
  margin-top: 90px;
  margin-bottom: 120px;
}
.case-study-section .case-study-slider-wrapper {
  background: #3249B3;
  padding: 60px;
  position: relative;
  right: -70px;
}
.case-study-section .case-study-slider-wrapper .case-study-slider {
  overflow: hidden;
}
.case-study-section .case-study-slider-wrapper .case-study-slider .prev-text {
  position: absolute;
  bottom: 50px;
  left: 60px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #F9FBFF;
  opacity: 50%;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}
.case-study-section .case-study-slider-wrapper .case-study-slider .prev-text:hover {
  opacity: 100%;
}
.case-study-section .case-study-slider-wrapper .case-study-slider .next-text {
  position: absolute;
  bottom: 50px;
  right: 33%;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #F9FBFF;
  opacity: 50%;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}
.case-study-section .case-study-slider-wrapper .case-study-slider .next-text:hover {
  opacity: 100%;
}
.case-study-section .case-study-slider-wrapper .swiper-pagination-progressbar {
  width: 60%;
  background: #D4D4D4;
  margin-top: 50px;
  margin-left: 60px;
}
.case-study-section .case-study-single-item {
  position: relative;
}
.case-study-section .case-study-single-item:hover .thumbnail::after {
  opacity: 1;
  visibility: visible;
}
.case-study-section .case-study-single-item:hover .content {
  opacity: 1;
  visibility: visible;
}
.case-study-section .case-study-single-item .thumbnail {
  position: relative;
  z-index: 0;
}
.case-study-section .case-study-single-item .thumbnail img {
  width: 100%;
  border-radius: 5px;
}
.case-study-section .case-study-single-item .thumbnail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) 0% 0% no-repeat padding-box;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.case-study-section .case-study-single-item .content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: calc(100% - 80px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.case-study-section .case-study-single-item .content .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.case-study-section .case-study-single-item .content p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
.case-study-section .nav-pills .nav-item .nav-link {
  background-color: transparent;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1C1C1C;
}
.case-study-section .nav-pills .nav-item .nav-link.active {
  color: #3249B3;
  font-weight: 600;
}

/*-------------------------------------------------
    team hero Section Styling Here
---------------------------------------------------*/
.team-hero-section {
  margin-top: 120px;
  background: #F9F9F9;
  padding-top: 120px;
  padding-bottom: 90px;
}
.team-hero-section .team-thumbnail {
  overflow: hidden;
}
.team-hero-section .team-thumbnail:hover img {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.team-hero-section .team-thumbnail img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.team-hero-section .hero-single-item:hover .team-thumbnail img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}
.team-hero-section .hero-single-item .content .title-main {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 36px;
}

.counter-single-items {
  margin-top: 55px;
}
.counter-single-items .content .title {
  display: inline-block;
  font-size: 22px;
  line-height: 1.6;
  color: #3249B3;
  font-weight: 700;
  margin-bottom: 0;
}
.counter-single-items .content p {
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins";
  color: #1C1C1C;
}
.counter-single-items .content .odo-area .odo-title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins";
  color: #3249B3;
}

/*-------------------------------------------------
    Happy Client Section Styling Here
---------------------------------------------------*/
.happy-client-section {
  position: relative;
  z-index: 0;
  margin-top: 116px;
}

.client-single-item {
  background: #FFFFFF;
  -webkit-filter: drop-shadow(0px 0px 8px rgba(50, 73, 179, 0.15));
          filter: drop-shadow(0px 0px 8px rgba(50, 73, 179, 0.15));
  padding: 40px 30px 40px 40px;
}
.client-single-item .content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}
.client-single-item .content .icon i {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid #3249B3;
  border-radius: 50%;
  font-size: 22px;
  color: #3249B3;
}
.client-single-item .content .icon .title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #3249B3;
  margin-bottom: 0;
  margin-left: 15px;
}
.client-single-item .content p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #292929;
  margin-bottom: 25px;
}
.client-single-item .content .designation-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.client-single-item .content .designation-wrap .designation .name {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  color: #292929;
  margin-bottom: 0px;
}
.client-single-item .content .designation-wrap .designation .position {
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #979797;
  margin-bottom: 0px;
}
.client-single-item .content .designation-wrap .ratings i {
  font-size: 17px;
  color: #F68300;
}
.client-single-item .content .designation-wrap .ratings i + i {
  margin-left: 8px;
}

/*-------------------------------------------------
   Blog Section Styling Here
---------------------------------------------------*/
.blog-section {
  background: #F9F9F9;
  padding-top: 120px;
  padding-bottom: 90px;
}

.blog-single-item .thumbnail {
  position: relative;
  z-index: 0;
}
.blog-single-item .thumbnail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent linear-gradient(178deg, rgba(4, 7, 46, 0) 0%, #070D26 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
}
.blog-single-item .content {
  position: absolute;
  position: absolute;
  left: 40px;
  bottom: 30px;
  width: calc(100% - 80px);
}
.blog-single-item .content a {
  display: block;
}
.blog-single-item .content .event {
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto";
  background: #3249B3;
  color: #fff;
  padding: 5px 12px 5px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.blog-single-item .content .title {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: block;
}
.blog-single-item .content .title:hover {
  color: #fff;
}
.blog-single-item .content .post-meta .user {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Roboto";
  color: #fff;
}
.blog-single-item .content .post-meta .date {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Roboto";
  color: #fff;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
.blog-single-item .content .post-meta .date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 50%;
  border-left: 2px solid #fff;
}

.blog-single-item-02 .content + .content {
  border-top: 1px dashed #CCCCCC;
  margin-top: 24px;
  padding-top: 20px;
}
.blog-single-item-02 .content .title {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #19232D;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.blog-single-item-02 .content .title:hover {
  color: #3249B3;
}
.blog-single-item-02 .content .post-meta .user {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Roboto";
  color: #757575;
}
.blog-single-item-02 .content .post-meta .date {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Roboto";
  color: #757575;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
.blog-single-item-02 .content .post-meta .date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 50%;
  border-left: 1px solid #757575;
}

/*-------------------------------------------------
   Home-four Here
---------------------------------------------------*/
/*-------------------------------------------------
   Get-app block
---------------------------------------------------*/
.get-app-section {
  position: relative;
}
.get-app-section .get-app-element-one {
  position: absolute;
  left: 10%;
  bottom: 20%;
}
.get-app-section .get-app-element-one img {
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1650px) {
  .get-app-section .get-app-element-one {
    display: none;
  }
}
.get-app-section .get-app-element-two {
  position: absolute;
  right: 10%;
  top: 20%;
}
.get-app-section .get-app-element-two img {
  -webkit-animation: scroll-ver 3s linear infinite;
          animation: scroll-ver 3s linear infinite;
}
@media only screen and (max-width: 1300px) {
  .get-app-section .get-app-element-two {
    display: none;
  }
}
.get-app-section .get-app-element-three {
  position: absolute;
  right: 8%;
  top: 80%;
}
.get-app-section .get-app-element-three img {
  -webkit-animation: scroll-ver 4s linear infinite;
          animation: scroll-ver 4s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .get-app-section .get-app-element-three {
    display: none;
  }
}

.get-app-content .title {
  font-weight: 700;
  margin-bottom: 30px;
}
.get-app-content .title span {
  color: #F8D458;
}
.get-app-content p {
  font-size: 24px;
}
@media only screen and (max-width: 1199px) {
  .get-app-content p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .get-app-content p {
    font-size: 16px;
  }
}
.get-app-content .get-app-btn {
  margin: -10px;
  margin-top: 40px;
}
.get-app-content .get-app-btn a {
  margin: 10px;
}
.get-app-content .get-app-btn a.two {
  color: #9DBAFE;
  border: 1px solid #9DBAFE;
}
.get-app-content .get-app-btn a.two:hover {
  color: #fff;
  border: 1px solid #3249B3;
}

/*-------------------------------------------------
   Process block
---------------------------------------------------*/
.process-section-two {
  background-color: #F9F9F9;
}

.process-item.two {
  padding: 0 15px;
}
.process-item.two .process-content .title {
  margin-bottom: 15px;
}
.process-item.two::after {
  background-image: url(../images/element/element-96.png);
  top: 10%;
  right: -45%;
}
@media only screen and (max-width: 1199px) {
  .process-item.two::after {
    display: none;
  }
}

div[class*=col]:nth-of-type(3n + 3) .process-item.two::after {
  display: none;
}

/*-------------------------------------------------
   Segment block
---------------------------------------------------*/
.segment-thumb {
  margin-left: -120px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .segment-thumb {
    margin-left: 0;
  }
}
.segment-thumb .segment-thumb-element {
  position: absolute;
  top: 8%;
  left: 10%;
  z-index: -1;
}
.segment-thumb .segment-thumb-element img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}

.segment-content .segment-header .title {
  font-weight: 700;
  margin-bottom: 20px;
}
.segment-content .segment-list {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  margin-bottom: -30px;
}
.segment-content .segment-list li {
  margin-bottom: 30px;
}
.segment-content .segment-list .segment-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.segment-content .segment-list .segment-list-content {
  padding-left: 20px;
}
.segment-content .segment-list .segment-list-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}

/*-------------------------------------------------
   Media block
---------------------------------------------------*/
.media-thumb {
  position: relative;
  background-color: #F5F8FF;
  border-radius: 20px;
  padding: 80px 60px;
}
@media only screen and (max-width: 991px) {
  .media-thumb {
    padding: 20px;
  }
}
.media-thumb img {
  width: 100%;
  border-radius: 20px;
}
.media-thumb img.shadow {
  -webkit-box-shadow: 0 10px 90px rgba(50, 73, 179, 0.15);
          box-shadow: 0 10px 90px rgba(50, 73, 179, 0.15);
}
.media-thumb .media-thumb-element-one {
  position: absolute;
  bottom: -12%;
  right: -10%;
  z-index: 2;
}
.media-thumb .media-thumb-element-one img {
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .media-thumb .media-thumb-element-one {
    display: none;
  }
}
.media-thumb .media-thumb-element-two {
  position: absolute;
  top: -2%;
  left: -12%;
  z-index: 2;
}
.media-thumb .media-thumb-element-two img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .media-thumb .media-thumb-element-two {
    display: none;
  }
}
.media-thumb .media-thumb-element-three {
  position: absolute;
  bottom: -12%;
  left: -17%;
  width: 40%;
  z-index: 2;
}
.media-thumb .media-thumb-element-three img {
  -webkit-animation: horizontal-move-two 5s linear infinite;
          animation: horizontal-move-two 5s linear infinite;
}
@media only screen and (max-width: 991px) {
  .media-thumb .media-thumb-element-three {
    display: none;
  }
}

.media-content {
  margin-left: 35px;
}
@media only screen and (max-width: 991px) {
  .media-content {
    margin-left: 0;
  }
}
.media-content .media-header .title {
  font-weight: 700;
  margin-bottom: 20px;
}
.media-content .media-list {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.media-content .media-list li {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  position: relative;
  padding-bottom: 20px;
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  .media-content .media-list li {
    font-size: 14px;
    padding-left: 30px;
  }
}
.media-content .media-list li::before {
  position: absolute;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #9DBAFE;
  border-radius: 50%;
  text-align: center;
  top: 2px;
  left: 0;
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .media-content .media-list li::before {
    top: 1px;
  }
}
.media-content .media-btn {
  margin-top: 25px;
}
.media-content .media-footer {
  border-top: 1px solid #E1E1E1;
  padding-top: 30px;
  margin-top: 40px;
}
.media-content .media-footer p {
  font-weight: 500;
  font-style: italic;
  color: #727272;
}

/*-------------------------------------------------
   Core block
---------------------------------------------------*/
.core-section {
  background-color: #ecf2ff;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .core-section {
    overflow: hidden;
  }
}
.core-section .core-element {
  position: absolute;
  right: 10%;
  top: -7%;
}
.core-section .core-element img {
  -webkit-animation: scroll-down 3s linear infinite;
          animation: scroll-down 3s linear infinite;
}
@media only screen and (max-width: 1400px) {
  .core-section .core-element {
    display: none;
  }
}
.core-section .section-header .section-title {
  font-weight: 800;
}
.core-section .section-header .section-title span {
  color: #F8D458;
}

.core-thumb {
  position: relative;
  z-index: 2;
}
.core-thumb-services-process .core-thumb {
    text-align: center;
}
.core-thumb .core-thumb-element-one {
  position: absolute;
  bottom: -70%;
  right: -30%;
  width: 70%;
}
.core-thumb-services-process .core-thumb .core-thumb-element-one,
.core-thumb-services-process .core-thumb .core-thumb-element-two {
    display: none;
}

.core-thumb .core-thumb-element-one img {
  -webkit-animation: scroll-ver 2s linear infinite;
          animation: scroll-ver 2s linear infinite;
}
@media only screen and (max-width: 1500px) {
  .core-thumb .core-thumb-element-one {
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .core-thumb .core-thumb-element-one {
    display: none;
  }
}
.core-thumb .core-thumb-element-two {
  position: absolute;
  bottom: -30%;
  right: -2%;
  width: 90%;
  z-index: -1;
}
.core-thumb .core-thumb-element-two img {
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .core-thumb .core-thumb-element-two {
    display: none;
  }
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### blog block ]
*/
.blog-section {
  position: relative;
}
.blog-section .blog-element {
  position: absolute;
  left: -4%;
  bottom: 3%;
  -webkit-animation: zoominoutsinglefeatured 1s linear infinite;
          animation: zoominoutsinglefeatured 1s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .blog-section .blog-element {
    display: none;
  }
}
.blog-section.two {
  background-color: #F9F9F9;
}

.blog-section-five {
  position: relative;
}
.blog-section-five .blog-element-two {
  position: absolute;
  left: 10%;
  top: -10%;
  -webkit-animation: horizontal-move 5s linear infinite;
          animation: horizontal-move 5s linear infinite;
}
@media only screen and (max-width: 1700px) {
  .blog-section-five .blog-element-two {
    display: none;
  }
}

.blog-item.two:hover .blog-thumb img {
  -webkit-transform: none;
          transform: none;
}
.blog-item.two .blog-thumb {
  position: relative;
  border-radius: 0;
  z-index: 2;
}
.blog-item.two .blog-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(178deg, rgba(4, 7, 46, 0) 0%, #070D26 100%) 0% 0% no-repeat padding-box;
}
.blog-item.two .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
}
.blog-item.two .blog-content .title {
  color: #fff;
}
.blog-item.two .blog-category {
  background-color: #3249B3;
  color: #fff;
  border-radius: 13px;
  padding: 2px 10px;
}
.blog-item.two .blog-post-meta {
  border: none;
  padding-top: 10px;
}
.blog-item.two .blog-post-meta span {
  color: #fff;
}
.blog-item.five {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 50px rgba(50, 73, 179, 0.08);
          box-shadow: 0 10px 50px rgba(50, 73, 179, 0.08);
}
.blog-item.five .blog-thumb {
  border-radius: 0;
}
.blog-item.five .blog-content {
  padding: 25px;
}
.blog-item.right {
  padding-bottom: 20px;
  border-bottom: 1px dashed #CCCCCC;
  margin-bottom: 20px;
}
.blog-item.right:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.blog-item.right .blog-content {
  padding-top: 0;
}
.blog-item.right .blog-content .title {
  font-weight: 700;
}
.blog-item.right .blog-post-meta {
  border: none;
  padding-top: 10px;
}
.blog-item:hover .blog-thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media only screen and (max-width: 400px) {
  .blog-item.details .blog-thumb {
    height: 230px;
  }
}
.blog-item.details:hover .blog-thumb img {
  -webkit-transform: none;
          transform: none;
}

.blog-item > .blog-thumb {
  max-height: 250px;
}

.blog-item.details > .blog-thumb {
  max-height: inherit;
}

.blog-thumb {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-thumb .blog-classic-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-thumb .blog-classic-video .video-icon {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 30px;
}

.blog-category {
  background-color: #f0f4ff;
  color: #3249B3;
  display: inline-block;
  padding: 2px 8px;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 15px;
}

.blog-content {
  padding-top: 25px;
}
.blog-content .title {
  font-weight: 600;
  font-size: 22px;
  word-wrap: break-word;
  line-height: 1.5;
  margin-bottom: 0;
  text-transform: capitalize;
  word-break: break-word;
}
.blog-content .title a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-content .title a:hover {
  color: #3249B3;
}
@media only screen and (max-width: 1199px) {
  .blog-content .title {
    line-height: 1.5;
    font-size: 20px;
  }
}
.blog-content p {
  margin-top: 10px;
}

.blog-post-meta {
  margin-bottom: 10px;
}
.blog-post-meta.two {
  margin-bottom: 0;
  border-top: 1px dashed #CECECE;
  padding-top: 15px;
}
.blog-post-meta span {
  color: #323232;
  font-size: 14px;
  font-weight: 400;
}
.blog-post-meta .user {
  margin-right: 20px;
}
.blog-post-meta .user img {
  border-radius: 50%;
  margin-right: 1rem;
}
.blog-post-meta .category {
  color: #3249B3;
}
.blog-post-meta .category.two {
  color: #4B4B4B;
}

.blog-btn {
  margin-top: 25px;
}

.sidebar {
  position: sticky;
  top: 0;
}

.widget-box {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  padding: 25px;
  border-radius: 10px;
  z-index: 2;
  overflow: hidden;
}
.widget-box .widget-title {
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.widget-box .widget-title::before {
  position: absolute;
  content: "";
  top: 0;
  left: -25px;
  width: 3px;
  height: 20px;
  background-color: #3249B3;
}

.popular-widget-box {
  margin-bottom: -20px;
}

.single-popular-item {
  padding-bottom: 30px;
  border-bottom: 1px dashed #DFDFDF;
  margin-bottom: 30px;
}
.single-popular-item:last-child {
  border: none;
  padding: 0;
}
.single-popular-item .popular-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
}
.single-popular-item .popular-item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-popular-item .popular-item-content {
  width: calc(100% - 70px);
  padding-left: 10px;
}
.single-popular-item .popular-item-content .title {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.single-popular-item .popular-item-content .title a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single-popular-item .popular-item-content .title a:hover {
  color: #3249B3;
}
.single-popular-item .popular-item-content .blog-date {
  font-size: 14px;
  font-weight: 400;
  color: #858585;
  margin-bottom: 7px;
}

.category-list li {
  font-size: 15px;
  border-bottom: 1px dashed #C9C9C9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.category-list li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.category-list li a {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.category-list li a:hover {
  color: #3249B3;
}
.category-list li i {
  margin-right: 5px;
}
.category-list li span {
  float: right;
}
.category-list li span::before {
  content: "(";
}
.category-list li span::after {
  content: ")";
}
.category-list.two li {
  background-color: #F5F8FF;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
}
.category-list.two li i {
  color: #3249B3;
  margin-right: 10px;
}

.tag-list {
  margin: -5px;
}
.tag-list li {
  display: inline-block;
  border: 1px solid rgba(237, 232, 232, 0.8705882353);
  font-size: 14px;
  border-radius: 3px;
  padding: 5px 10px;
  margin: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tag-list li:hover {
  background-color: #3249B3;
  border: 1px solid #3249B3;
  color: #fff;
}

.search-widget-box .search-form {
  position: relative;
}
.search-widget-box .search-form input {
  border: 1px solid #DFDFDF;
  font-family: "Poppins", sans-serif;
  padding: 10px 40px 10px 15px;
  color: #4B4B4B;
  border-radius: 6px;
  height: 50px;
  font-weight: 400;
}
.search-widget-box .search-form input::-webkit-input-placeholder {
  color: #4B4B4B;
}
.search-widget-box .search-form input::-moz-placeholder {
  color: #4B4B4B;
}
.search-widget-box .search-form input:-ms-input-placeholder {
  color: #4B4B4B;
}
.search-widget-box .search-form input::-ms-input-placeholder {
  color: #4B4B4B;
}
.search-widget-box .search-form input::placeholder {
  color: #4B4B4B;
}
.search-widget-box .search-form button, .search-widget-box .search-form input[type=button], .search-widget-box .search-form input[type=reset], .search-widget-box .search-form input[type=submit] {
  position: absolute;
  top: 13px;
  right: 10px;
  background-color: transparent;
  color: #3249B3;
  font-size: 18px;
}

.blog-list {
  margin-top: 30px;
  margin-bottom: 20px;
}
.blog-list li {
  position: relative;
  font-weight: 400;
  padding-left: 40px;
  padding-bottom: 20px;
}
.blog-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: rgba(50, 73, 179, 0.1);
  border-radius: 50%;
  font-size: 14px;
  color: #3249B3;
  text-align: center;
  font-weight: 900;
}
.blog-list li + li {
  margin-top: 8px;
}

.blog-widget-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.blog-widget-thumb .blog-widget-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-widget-thumb .blog-widget-video .video-icon {
  color: #4B4B4B;
  font-size: 24px;
}
.blog-widget-thumb .waves {
  background-color: #fff;
}

.pagination.two {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.pagination.two .page-item {
  text-align: center;
  padding: 8px;
}
.pagination.two .page-item a, .pagination.two .page-item span {
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #3249B3;
  padding: 0;
  font-weight: 700;
  line-height: 50px;
  font-size: 24px;
  display: block;
  margin: 0;
}
.pagination.two .page-item a:focus, .pagination.two .page-item span:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pagination.two .page-item.next a {
  background: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border: 2px solid #3249B3;
  color: #3249B3;
  border-radius: 6px;
  font-size: 20px;
}
.pagination.two .page-item.next a:hover {
  background-color: #3249B3;
  color: #fff;
}
.pagination.two .page-item.prev a {
  background: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border: 2px solid #3249B3;
  color: #3249B3;
  border-radius: 6px;
  font-size: 20px;
}
.pagination.two .page-item.prev a:hover {
  background-color: #3249B3;
  color: #fff;
}
.pagination.two .page-item .page-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination.two .page-item.active .page-link {
  background-color: #3249B3;
  border-color: transparent;
  color: #1C1C1C;
}

.blog-tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px dashed #e5e5e5;
  padding-top: 20px;
  margin-top: 30px;
}
.blog-tag-wrapper span {
  color: #1C1C1C;
  font-weight: 600;
  margin-right: 10px;
}
.blog-tag-wrapper .blog-footer-tag {
  margin-bottom: 0;
}
.blog-tag-wrapper .blog-footer-tag li {
  display: inline-block;
  background-color: #F3F3F3;
  padding: 3px 10px;
  font-weight: 500;
  font-size: 14px;
}
.blog-tag-wrapper .blog-footer-tag li + li {
  margin-left: 10px;
}

.blog-slider-area {
  margin: -20px;
}

.blog-slider {
  overflow: hidden;
  padding: 20px;
}

.blog-related-area {
  margin-top: 60px;
}
.blog-related-area .section-header {
  margin-bottom: 0;
}
.blog-related-area .section-header .section-title {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
.blog-related-area .slider-next, .blog-related-area .slider-prev {
  background-color: transparent;
  color: #9DBAFE;
}
.blog-related-area .slider-next:hover, .blog-related-area .slider-prev:hover {
  color: #3249B3;
}

.blog-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.blog-section-header .section-header {
  margin-bottom: 0;
}

.blog-comment-area {
  margin-top: 60px;
}
.blog-comment-area .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px !important;
}
.blog-comment-area .comment-form {
  margin-top: 30px;
}
.blog-comment-area .comment-form .form--control {
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  background-color: #FBFBFB;
  height: 60px;
  color: #A1A1A1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.blog-comment-area .comment-form .form--control:focus {
  border: 1px solid #3249B3;
  background-color: #FBFBFB;
  color: #A1A1A1;
}
.blog-comment-area .comment-form .form--control::-webkit-input-placeholder {
  color: #A1A1A1;
}
.blog-comment-area .comment-form .form--control::-moz-placeholder {
  color: #A1A1A1;
}
.blog-comment-area .comment-form .form--control:-ms-input-placeholder {
  color: #A1A1A1;
}
.blog-comment-area .comment-form .form--control::-ms-input-placeholder {
  color: #A1A1A1;
}
.blog-comment-area .comment-form .form--control::placeholder {
  color: #A1A1A1;
}
.blog-comment-area .comment-form textarea {
  min-height: 180px;
}

.blog-widget-thumb-area {
  margin-top: 30px;
}
.blog-widget-thumb-area img {
  width: 100%;
}

/*navbar-default*/
.logo-wrapper .site-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #111;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar-nav ul li {
  color: #fff;
  font-size: 14px;
}
.navbar-nav ul li + li {
  margin-left: 0px;
}

.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default {
  background-color: var(--secondary-color);
  padding: 20px 0;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container {
  max-width: 1366px;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.current_page_item a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children {
  position: relative;
  padding-right: 15px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "+";
  font-weight: 700;
  font-size: 14px;
  font-family: var(--body-font);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children {
  position: absolute;
  text-align: left;
  min-width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  border-bottom: 4px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 14px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li + li {
  border-top: 1px solid rgba(17, 17, 17, 0.5);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a {
  display: block;
  padding: 12px 17px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a:before {
  display: none;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "+";
  font-family: "fontawesome";
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children > .children {
  left: -250px;
  top: 10px;
  margin-bottom: 0;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children > .children .children .children {
  left: auto;
  right: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:hover > .children li:hover:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li:hover > a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li:hover > a:before {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav {
  text-align: right;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #ffffff;
  display: block;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  color: #fff;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li a {
  color: #fff;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li:hover a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  color: #fff;
  right: 20px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .logo-wrapper .site-title {
  color: #fff;
}

li.menu-item-has-children {
  position: relative;
}

.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  right: 15px;
}

@media only screen and (max-width: 991px) {
  .navbar-area .custom-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
    padding: 40px 10px;
  }
  .navbar-area .custom-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .custom-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
  }
  .navbar-area .custom-container .navbar-brand {
    display: block;
  }
  .navbar-area .custom-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid rgba(17, 17, 17, 0.5);
  }
  .navbar-area .custom-container .navbar-nav {
    width: 100%;
    display: none;
  }
  .navbar-area .custom-container .navbar-nav.show {
    display: block;
  }
  .navbar-area .custom-container .navbar-nav ul {
    display: block;
    margin-top: 40px;
  }
  .navbar-area .custom-container .navbar-nav ul li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  }
  .navbar-area .custom-container .navbar-nav ul li:last-child {
    border-bottom: none;
  }
  .navbar-area .custom-container .navbar-nav ul li + li {
    margin-left: 0;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children:hover > .children {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    margin-top: 10px;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: height 500ms;
    transition: height 500ms;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children .children .page_item_has_children:before {
    content: "\f067";
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li {
    padding: 0;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li.page_item_has_children:hover:before {
    color: #fff;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li + li {
    border-top: none;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 991px) {
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default {
    padding: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .responsive-mobile-menu .navbar-toggler {
    background-image: none;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav {
    background-color: var(--main-color-one);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--heading-color);
    font-weight: 700;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children li a {
    background-color: var(--main-color-one);
    color: var(--heading-color);
    padding-left: 40px;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li a {
    background-color: var(--main-color-one);
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a {
    color: var(--heading-color);
    padding-left: 20px;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: var(--heading-color);
    background-color: var(--main-color-one);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid #c7a774;
  }
}
.wp-block-image .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.wp-block-gallery.alignleft {
  margin-right: 20px !important;
  margin-top: 0 !important;
}

.wp-block-button__link {
  margin-bottom: 20px;
}

.wp-block-cover {
  margin-bottom: 20px;
  color: #fff;
}

.wp-block-cover.alignleft {
  margin-top: 0;
}

.wp-block-archives-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-archives-list li + li {
  margin-top: 10px;
}

.blog-item .wp-block-archives-list li:before {
  display: none;
}

.blog-item .wp-block-archives-list li {
  padding-left: 20px;
}

.widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 5px;
  color: var(--paragraph-color);
}

.widget.footer-widget.widget_text .textwidget p {
  color: var(--paragraph-color);
}

.blog-item .wp-block-search .wp-block-search__label:after {
  display: none;
}

.wp-block-latest-comments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.wp-block-latest-comments li:before {
  display: none;
}

.wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: var(--heading-color);
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 0;
  padding: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:before {
  display: none;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #C9C9C9;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 20px;
}

.wp-block-search .wp-block-search__input {
  border: none;
  border-radius: 4px;
  height: 50px;
  padding: 0 20px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  border-radius: 4px;
  border: 1px solid var(--main-color-one);
}

.wp-block-search__inside-wrapper {
  border-radius: 4px;
  border: 1px solid var(--main-color-one);
}

.wp-block-search button[type=submit], .wp-block-search input[type=submit] {
  margin-left: 0;
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 15px;
  background: var(--main-color-one);
  font-weight: 600;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

.wp-block-search button[type=submit]:focus, .wp-block-search input[type=submit]:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-search button[type=submit]:hover, .wp-block-search input[type=submit]:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.wp-block-tag-cloud a {
  font-size: 14px !important;
  padding: 5px 10px;
  margin-bottom: 8px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #D5E0EF;
  background-color: transparent;
  text-transform: capitalize;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.wp-block-tag-cloud a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.wp-block-rss {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-rss li + li {
  margin-top: 10px;
}

.wp-block-rss li a:hover {
  color: var(--main-color-one);
}

.wp-block-rss li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--heading-color);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.wp-block-group.has-background {
  padding: 30px;
  padding-bottom: 1px;
}

.wp-block-calendar {
  margin-bottom: 30px;
}

ul.wp-block-latest-posts__list li,
.blog-item .wp-block-rss li {
  padding-left: 0;
}

ul.wp-block-latest-posts__list li:before,
.blog-item .wp-block-rss li:before {
  display: none;
}

.wp-block-quote.is-large:not(.is-style-plain), .wp-block-quote.is-style-large:not(.is-style-plain) {
  padding: 30px;
  position: relative;
  background-color: #F1F7FF;
}

.wp-block-quote.is-style-large:after {
  position: absolute;
  right: 60px;
  color: var(--main-color-one);
  opacity: 0.15;
  font-size: 100px;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  top: 50px;
  line-height: 0.8;
}

.wp-block-quote.has-text-align-right:after {
  left: auto;
  right: 30px;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.wp-block-quote.has-text-align-right {
  padding-left: 30px;
  padding-right: 90px;
}

.wp-block-calendar .wp-calendar-nav {
  text-align: left;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  text-align: center;
}

.wp-block-image {
  margin-bottom: 1em;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td, .wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td, .wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-column blockquote.wp-block-quote {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 20px !important;
}
.wp-block-column blockquote.wp-block-quote:before {
  top: 30px;
  left: 20px;
  opacity: 0.2;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
  margin: 30px 0;
}

.wp-block-archives-dropdown select, .wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}

.wp-block-archives-dropdown select, .wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 30px;
  color: var(--paragraph-color);
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  opacity: 0.7;
  font-weight: 600;
}
.wp-caption .wp-caption-text a {
  color: var(--secondary-color);
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  text-align: center;
}

figcaption {
  opacity: 0.7;
  font-weight: 600;
}
figcaption a {
  color: var(--secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--paragraph-color) !important;
  border-color: var(--main-color-one);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  color: #fff !important;
  background-color: var(--main-color-one);
}

/* --------------------------
    Post Navigation
---------------------------- */
.post-navigation-area {
  margin: 40px 0 0px 0;
}
.post-navigation-area .post-navigation-inner .content-area.style-01.no-line .content {
  text-align: left;
}

.post-navigation-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  border-radius: 3px;
}
.post-navigation-inner .content-area {
  width: 50%;
}
.post-navigation-inner div .title {
  font-size: 18px;
  line-height: 25px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  margin-bottom: 0px;
}
.post-navigation-inner div .title a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.post-navigation-inner div .title:hover > a {
  color: var(--main-color-one);
}
.post-navigation-inner div:first-child {
  text-align: left;
}
.post-navigation-inner .content-area.no-line {
  width: 100%;
}
.post-navigation-inner .prev-post {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--main-color-one);
  margin-bottom: 10px;
}
.post-navigation-inner .next-post {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--main-color-one);
  margin-bottom: 10px;
}

.blog-comment-navigation .comment-navigation {
  min-height: 50px;
  margin-bottom: 30px;
}

/*---------------------------
    SINGLE POST NAVGATION
-----------------------------*/
.single-post-navigation {
  padding-top: 40px;
  word-break: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e1e6ff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-post-navigation h3 {
  font-size: 18px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.single-post-navigation .single-post-navigation-center-grid {
  font-size: 25px;
}
.single-post-navigation .single-post-navigation-center-grid a {
  color: var(--main-color-one);
}
.single-post-navigation .single-post-navigation-center-grid a:hover, .single-post-navigation .single-post-navigation-center-grid a:focus {
  color: var(--secondary-color);
}
.single-post-navigation .prev-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-post-navigation .prev-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .next-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-post-navigation .next-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .title-with-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.single-post-navigation .title-with-link i {
  margin-top: 3px;
}
.single-post-navigation .title-with-link span {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

.has-large-font-size {
  font-size: 36px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# WP Table
--------------------------------------------------------------*/
.blog-item table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.blog-item table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.blog-item table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.blog-item table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.blog-item table th a {
  text-decoration: underline;
  font-weight: 600;
}

.page-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.page-content table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.page-content table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.page-content table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.page-content table th a {
  text-decoration: underline;
  font-weight: 600;
}

.single-comment-wrap table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.single-comment-wrap table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.single-comment-wrap table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.single-comment-wrap table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.single-comment-wrap table th a {
  text-decoration: underline;
  font-weight: 600;
}

.content-area table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.content-area table th {
  border: 1px solid #e3e3e3;
  padding: 8px 8px 0;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.content-area table th a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.content-area table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.content-area table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}

.calendar_wrap table td {
  text-align: center;
}

.widget_calendar table td a, .widget_calendar table th a {
  font-weight: 600;
  color: var(--main-color-one);
  text-decoration: underline;
}

.footer-widget.widget_calendar table td a, .footer-widget.widget_calendar table th a {
  font-weight: 600;
  color: var(--main-color-one);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# WP List
--------------------------------------------------------------*/
.content-area ul li + li {
  margin-top: 10px;
}
.content-area ol li + li {
  margin-top: 10px;
}

.blog-item ol li + li {
  margin-top: 10px;
}
.blog-item ul li + li {
  margin-top: 10px;
}

.page-content ol li + li {
  margin-top: 10px;
}
.page-content ul li + li {
  margin-top: 10px;
}

.single-comment-wrap ol li + li {
  margin-top: 10px;
}
.single-comment-wrap ul li + li {
  margin-top: 10px;
}

.comments-area .comment-list .trackback {
  margin-bottom: 30px;
}
.comments-area .comment-list .pingback {
  margin-bottom: 30px;
}

.carousel-indicators li + li {
  margin-top: 0 !important;
}

.footer-widget.widget.widget_nav_menu ul li + li {
  margin-top: 15px;
}

.blog-pagination {
  display: block;
  width: 100%;
}
.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination ul li {
  display: inline-block;
  padding-left: 0;
}
.blog-pagination ul li + li {
  margin: 0 5px;
}
.blog-pagination ul li:before {
  display: none;
}
.blog-pagination ul li a {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.blog-pagination ul li span {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-pagination ul li span.current {
  background-color: var(--main-color-one);
  color: #fff;
}

.home-three-menu .menu-open.open .navigation-three li a {
  -webkit-transition: 0.8s all ease;
  transition: 0.8s all ease;
}
.home-three-menu .menu-open.open .navigation-three li a:hover {
  -webkit-transform: skewX(10deg) !important;
          transform: skewX(10deg) !important;
  letter-spacing: 2.5px;
  color: #fff;
}

.pagination .page-item a.next, .pagination .page-item a.prev {
  border-width: 0;
}

.postIcon ul li .elementor-icon-list-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
}
.postIcon ul li .elementor-icon-list-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: rgba(50, 73, 179, 0.1);
  border-radius: 50%;
  text-align: center;
}

.service-single-item {
  margin-bottom: 60px;
}
@media screen and (max-width: 575px) {
  .service-single-item {
    margin-bottom: 15px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 5px;
  width: 80%;
  margin-left: -1px;
}

.banner-form ~ .wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #3249B3;
  color: #3249B3;
  border-radius: 5px;
  width: 80%;
  margin-left: -1px;
}

.checkbox input[type=checkbox] {
  width: auto;
  margin-right: 10px;
}

.woocommerce-NoticeGroup {
  margin-left: -8px;
}

.contact-form-area .wpcf7 .wpcf7-response-output {
  color: #3249B3 !important;
  border: 1px solid #3249B3 !important;
}

@media screen and (max-width: 1024px) {
  .elementor-text-effect div {
    color: #4b4b4b;
  }

  .elementor-text-effect div h4 {
    color: #1c1c1c !important;
  }
}
.icon img {
  height: 50px !important;
}

.banner-content .wpcf7 .wpcf7-response-output {
  color: #3249B3 !important;
  border: 1px solid #3249B3 !important;
}

.contactForm .wpcf7 .wpcf7-response-output {
  color: #3249B3 !important;
  border: 1px solid #3249B3 !important;
}

.contactForm2 .wpcf7 .wpcf7-response-output {
  color: #3249B3 !important;
  border: 1px solid #3249B3 !important;
  width: 100%;
}

.elementor-613 .elementor-element.elementor-element-77a55f4 .elementor-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-id-11 li.menu-item-has-children::after {
  color: #fff;
}

/* ul.wp-block-categories-list.wp-block-categories li {
position:relative;
  font-size: 15px;
  border-bottom: 1px dashed #C9C9C9;
  padding-bottom: 15px;
  margin-bottom: 15px;
padding-left:20px;
}
ul.wp-block-categories-list.wp-block-categories li:last-child {
  border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
} */
.footerFourList ul li {
  position: relative;
}

.footerFourList ul li::after {
  position: absolute;
  content: "";
  top: 0px;
  right: -20px !important;
  width: 1px;
  height: 15px !important;
  background-color: rgba(75, 75, 75, 0.4);
}

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

.download-list {
  margin-top: 33px !important;
}

.download-list li {
  background-color: #9DBAFE;
  border-radius: 5px;
  color: #fff;
  padding: 15px 30px !important;
  margin-bottom: 15px !important;
  display: inline-block;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.download-list li .elementor-icon-list-icon {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 10px;
  vertical-align: middle;
}

/* Menu css */
.navbar-nav ul li {
  line-height: initial;
  display: block;
}

/* Social Icon Footer 5 */
.social_icon_f5 i {
  color: #727272 !important;
}

.social_icon_f5 a:hover i {
  color: #fff !important;
}

.footer_3_white p,
.footer_3_white i {
  color: #fff !important;
}

.quoteContent-before {
  position: relative;
}
.quoteContent-before::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 13px;
  width: 50px;
  height: 1px;
  background-color: #707070;
}

@media only screen and (max-width: 767px) {
  .grid-item {
    margin-bottom: 0;
  }

  .scrollToTop.active {
    bottom: 50px;
  }
}
table.variations tr, table.variations td, table.variations th, table.variations .lable, table.variations label {
  margin: 0;
  padding: 0;
}
.bg-section-ecf2ff{
    background-color: #ecf2ff;
}
ul.plan-list.policy-ul li {
    padding-bottom: 0px;
}
.main-section-full-cls .elementor-widget-wrap.elementor-element-populated{
    padding: 0px !important;
}
.header-right .header-action-area a.btn--base {
    display: none;
}
.custom-logo-link div#bloblogo {
    position: relative;
    height: 75px;
}
.custom-logo-link div#bloblogo canvas {
    width: 240px !important;
    height: 130px !important;
    top: -30px;
    position: absolute;
    left: -29px;
}
.custom-logo-link div#bloblogo h4{
    margin-left: -58px;
    text-decoration: none;
    color: black;
    font-size: 21px !important;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    left: 195px;
    text-transform: lowercase;
    top: 15px;
}

.custom-logo-link-footer div#blobfooter {
    position: relative;
    height: 75px;
}
.custom-logo-link-footer div#blobfooter canvas {
    width: 255px !important;
    height: 135px !important;
    top: -38px;
    position: absolute;
    left: -84px;
}
.custom-logo-link-footer div#blobfooter h4{
    margin-left: -58px;
    text-decoration: none;
    color: black;
    font-size: 21px !important;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    left: 150px;
    text-transform: lowercase;
    top: 11px;
}
/*for loading canvas*/
div#blobloading canvas {
    top: 40%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
div#blobloading img {
    top: 40%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 190px;
}
div#blobloading .loading-percentage {
    top: 57%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/*.footer-main-cls .elementor-element.elementor-element-aa2d56d.elementor-widget.elementor-widget-image{*/
/*    display: none;*/
/*}*/

.footer-main-cls .elementor-element.elementor-element-aa2d56d.elementor-widget.elementor-widget-image img{
    width: 100%;
    height: 75px;
}
.footer-main-cls .elementor-element.elementor-element-d5f4c97.elementor-widget.elementor-widget-html,
.footer-main-cls .elementor-element.elementor-element-59fe4ea.elementor-widget.elementor-widget-text-editor .elementor-widget-container{
    margin-top: 0px;
    /*margin-bottom: 0px;*/
}


.gallery-item.details .gallery-sidebar-widget .gallery-sidebar-widget-list li:nth-child(1) {
    display: none;
}
.contact-form .wpcf7-form-control-wrap,
.wpcf7-response-output{
    width: 100%;
}
.service-content {
    display: flex;
    flex-direction: column;
    height: 75%;
}
.CAG-thumb-two{
    margin-left: 60px;
}
.footer-widget-quick-link .footer-list {
    width: 50% !important;
}
aside#secondary div#block-12 {
    display: none;
}
.project-tech-logo{
    width: 100px;
    height: 80px;
    object-fit: contain;
}
.grid-item .gallery-item .gallery-content h3{
    font-weight: 500;
}
.wbg-main-wrapper.wbg-product-column-4.wbg-product-column-mobile-1.grid {
    height: auto !important;
}
.wbg-button-container a.button.wbg-btn {
    border: 0px;
    margin-bottom: 20px;
}
.wbg-parent-wrapper {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.cf-turnstile-wrap {
    text-align: left !important;
}
span.wbg-single-button-container a.button.wbg-btn {
    background-color: #3249b3;
    border: 0px;
}

.wbg-details-summary {
    position: relative;
    padding-top: 30px;
}
span.wbg-single-button-container {
    position: absolute;
    left: 0px;
    bottom: 18px;
    z-index: 99;
}
.bg-section-ecf2ff.core-thumb-services-process.idea-suppots-page .core-section{
    background-color: #fff;
}
.idea_image_wrapper {
    align-self: center;
}
.footer-list .elementor-widget-container .elementor-icon-list-items .elementor-icon-list-item a {
    font-size: 14.5px;
}
.elementor-widget-wrap.elementor-element-populated .elementor-element.elementor-element-fb1c646 > .elementor-widget-container {
    margin-left: 0px;
}
.future-creator-page-cls .box-wrapper.two {
    display: none;
}

.section-bg-F5F8FF {
  background-color: #F5F8FF !important;
}

section.elementor-section.elementor-top-section.elementor-element.elementor-element-300b8ad.elementor-section-content-middle.footer-section-bottom.main-footer-bottom.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    margin-top: 0px;
}
@media (min-width:650px) and (max-width: 767px){
    
    .footer-main-cls .elementor-element.elementor-element-aa2d56d.elementor-widget.elementor-widget-image img {
        max-width: 190px;
    }
     .footer-main-cls span.wpcf7-form-control-wrap {
        width: 74%;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
        width: auto;
    }
}

@media only screen and (max-width: 768px){
    .footer-main-cls .elementor-element.elementor-element-aa2d56d.elementor-widget.elementor-widget-image img {
        max-width: 190px;
    }
    .elementor-widget-wrap.elementor-element-populated .elementor-element.elementor-element-fb1c646 > .elementor-widget-container {
        margin-left: 10px;
    }
    .main-submenu-footer {
        margin-left: 10px;
    }
    span.wbg-single-button-container {
        position: initial;
    }
    .custom-logo-link div#bloblogo canvas{
        top: -27px;
        left: -72px;
    }
    .custom-logo-link div#bloblogo h4{
        left: 146px;
        top: 18px;
    }
    .gallery-thumb img.attachment-post-thumbnail{
        min-height: 160px;
        max-height: 160px;
        object-fit: contain;
    }
    .grid-item .gallery-item .gallery-content h3 {
        font-size: 17px;
        font-weight: 500;
    }
    .grid-item .gallery-item .gallery-content .sub-title{
        font-size: 12px;
    }
    .gallery-section .gallery-filter-wrapper .button-group.filter-btn-group{
        display: none;
    }
    .main-service-section .segment-thumb .segment-thumb-element{
        display: none;
    }
    .project-tech-logo {
        width: 88px;
        height: 65px;
    }
    .slider_idea_image_wrapper{
        grid-area: span 1/span 2/span 1/span 2;
    }
    .elementor-613 .elementor-element.elementor-element-9484e02 > .elementor-widget-container {
        margin: 0px 0px 0px 0px !important;
    }
    
    .elementor-613 .elementor-element.elementor-element-73f043e > .elementor-element-populated {
        padding: 10px 18px 0px 19px !important;
    }
    .footer-main-cls span.wpcf7-form-control-wrap {
        width: 74%;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
        width: auto;
    }
    .elementor-613 .elementor-element.elementor-element-73f043e > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
        margin-bottom: 10px !important;
        margin-top: 20px;
    }
    .footer-widget.footer-widget-quick-link .elementor-widget:not(:last-child),
    .elementor-element.elementor-element-6947a96.elementor-widget.elementor-widget-heading{
        margin-bottom:5px;
    }
    .elementor-613 .elementor-element.elementor-element-b7a2ea5 > .elementor-widget-container,
    .elementor-613 .elementor-element.elementor-element-fb1c646 > .elementor-widget-container{
        margin-top: 5px !important;
    }
    .elementor-613 .elementor-element.elementor-element-e7646df .elementor-icon-list-text {
        padding-left: 18px !important;
    }

}

@media only screen and (max-width: 575px){
    .custom-logo-link div#bloblogo canvas {
        left: -99px;
    }
    .custom-logo-link div#bloblogo h4{
        left: 150px
    }
    .CAG-thumb-two{
        margin-left: 0px;
    }
    .main-service-section {
        padding: 15px 0px !important;
    }
    .main-service-section .segment-thumb .segment-thumb-element{
        display: none;
    }
    .footer-main-cls span.wpcf7-form-control-wrap {
        width: 100%;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
        width: 100%;
    }
    .footer-main-cls {
        padding-bottom: 80px !important;
    }
    .service-item.details .service-thumb img{
        height: initial;
        object-fit: cover;
    }
    .gallery-section .gallery-filter-wrapper .button-group.filter-btn-group {
        display: none;
    }
    .gallery-thumb img.attachment-post-thumbnail{
        min-height: initial;
        max-height: initial;
    }
    
    .main-technology-cls .tech-logo .elementor-column.elementor-inner-column.elementor-element {
        width: 50%;
        text-align: center;
    }
    .main-technology-cls .tech-logo .elementor-element img {
        width: 67% !important;
    }
    .mobile-hide{
        display: none !important;
    }
    .database-last-text .elementor-widget-container {
        margin-top: 0px !important;
    }
}
@media only screen and (max-width: 750px) and (orientation: landscape){
    .custom-logo-link div#bloblogo canvas {
        left: -99px;
    }
    .custom-logo-link div#bloblogo h4{
        left: 150px
    }
    .CAG-thumb-two{
        margin-left: 0px;
    }
    .main-service-section {
        padding: 15px 0px !important;
    }
    .main-service-section .segment-thumb .segment-thumb-element{
        display: none;
    }
    .footer-main-cls span.wpcf7-form-control-wrap {
        width: 74%;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
        width: auto;
    }
    .footer-main-cls {
        padding-bottom: 80px !important;
    }
    .service-item.details .service-thumb img{
        height: initial;
        object-fit: cover;
    }
    .gallery-section .gallery-filter-wrapper .button-group.filter-btn-group {
        display: none;
    }
    .gallery-thumb img.attachment-post-thumbnail{
        min-height: 180px;
        max-height: 180px;
        object-fit: contain;
    }
}
@media only screen and (max-width: 425px) {
    .custom-logo-link div#bloblogo canvas {
        left: -75px;
    }
    .custom-logo-link div#bloblogo h4{
        left: 148px
    }
    
}
@media only screen and (max-width: 375px){
    .custom-logo-link div#bloblogo canvas {
        left: -93px;
    }
    .custom-logo-link div#bloblogo h4{
        left: 150px
    }
}