/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
	## Social Profiles
	## Top Bar Icon List
	## Top Bar Menu
	## Contact Methods
	## Nav Search Form
	## Nav Mini Cart
# Forms
# Navigation
	## Links
	## Primary Menu
# Accessibility
# Alignments
# Clearings
# Layout
	## Topbar
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-ms-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #7f8ba0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: initial;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  clear: both;
  font-family: "Roboto", sans-serif;
  line-height: 1.2em;
  font-weight: 700;
  color: #0f163b;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: 34px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code {
  color: var(--color_primary);
}

code, kbd, tt, var {
  font-size: 16px;
  font-size: 1em;
}

abbr, acronym {
  border-bottom: 1px dotted #7f8ba0;
  cursor: help;
}

mark, ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  overflow-x: hidden;
  color: #7f8ba0;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.comment-list ul, .comment-list ol {
  padding-left: 25px;
  margin-bottom: 30px;
}

.comment-list ol ol, .comment-list ol ul, .comment-list ul ol, .comment-list ul ul {
  margin-bottom: 0;
}

ul ul {
  list-style-type: disc;
}

.tt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-list li {
  display: flex;
  align-items: baseline;
  position: relative;
  font-size: 15px;
  margin-bottom: 6px;
}

.tt-list li p {
  margin: 0;
}

.tt-list li span {
  font-weight: 600;
}

.tt-list li i {
  margin-right: 10px;
  font-size: 16px;
  color: var(--color_primary);
}

.tt-list li a {
  color: #0f163b;
  display: block;
}

.tt-list li a:hover {
  color: var(--color_primary);
}

.tt-list.inline li {
  display: inline-flex;
  margin-right: 30px;
}

.tt-list.list-dice li {
  padding-left: 20px;
  display: block;
  margin-bottom: 13px;
}

.tt-list.list-dice li p {
  margin: 0;
}

.tt-list.list-dice li:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 0;
  top: 12px;
  background: var(--color_primary);
  transform: translateY(-50%);
  transition: all .5s;
}

.tt-list.half {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .tt-list.half {
    display: block;
  }
}

.tt-list.half li {
  width: 50%;
}

@media (max-width: 480px) {
  .tt-list.half li {
    width: 100%;
  }
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

p {
  margin-bottom: 1em;
}

.pr {
  position: relative;
  z-index: 3;
}

.no-scroll {
  overflow: hidden;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 50px;
}

@media (max-width: 991px) {
  .pt-100 {
    padding-top: 0;
  }
}

.h-100 {
  height: 100%;
}

.site-main {
  min-height: 30vh;
}

@media (max-width: 991px) {
  .tt-order-2 {
    order: 2;
  }
}

@media (max-width: 767px) {
  .tt-order-md-2 {
    order: 2;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .pl_30 {
    padding-left: 30px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-110 {
  padding-bottom: 110px;
}

.mb-70 {
  margin-bottom: 67px !important;
  font-weight: 500 !important;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1170px;
  }
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1170px;
}

@media (max-width: 1200px) {
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 960px !important;
  }
}

@media (max-width: 991px) {
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 720px !important;
  }
}

@media (max-width: 767px) {
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 540px !important;
  }
}

@media (max-width: 576px) {
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
  }
}

@media (min-width: 991px) {
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
}

@media (max-width: 1024px) {
  .nio-order-md {
    order: 1;
  }
  .btn-responsive {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .btn-responsive {
    max-width: 100%;
    width: 100%;
  }
  .btn-responsive .btn {
    font-size: 1rem;
  }
}

@font-face {
  font-family: "Apdash";
  src: url("../fonts/Apdash.eot");
  src: url("../fonts/Apdash.eot?#iefix") format("embedded-opentype"), url("../fonts/Apdash.woff2") format("woff2"), url("../fonts/Apdash.woff") format("woff"), url("../fonts/Apdash.ttf") format("truetype"), url("../fonts/Apdash.svg#Apdash") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Apdash";
    src: url("./Apdash.svg#Apdash") format("svg");
  }
}

[class^="apdash-"]:before,
[class*=" apdash-"]:before,
[class^="apdash-"]:after,
[class*=" apdash-"]:after {
  font-family: Apdash;
  font-style: normal;
}

.apdash-right:before {
  content: "\f100";
}

.apdash-left:before {
  content: "\f101";
}

strong,
b {
  font-weight: 700;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

#preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loadbar-percent {
  width: 0;
  height: 2px;
  background: #ffffff;
}

.preloader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 99999;
}

.preloader-wrapper.preloader_end {
  transition: 1s;
  transform: translateY(-100%);
}

.preloader-wrapper .preloader_box {
  margin-top: 50px;
}

.preloader-wrapper .preloader_box h2 {
  font-size: 48px;
  color: #fafafa;
  text-transform: uppercase;
  font-weight: 400;
}

.preloader-wrapper .preloader_box p {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.tt-image-responsive img {
  width: 570px;
}

@media (max-width: 576px) {
  .tt-image-responsive img {
    margin: 0 auto;
    max-width: 100% !important;
    width: 100%;
  }
}

.tt-svg-responsive img {
  width: 100%;
}

table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #f1f2f5;
}

table thead {
  background: #eff1f7;
}

table th {
  text-align: left;
  padding: 10px 15px;
  color: #0f163b;
  font-size: 16px;
  font-weight: 600;
  min-width: 130px;
  vertical-align: middle;
}

table th a {
  color: #0f163b;
}

table th a:hover {
  color: var(--color_primary);
}

table td {
  padding: 10px 15px;
  border-top: none;
  border-right: none;
  vertical-align: middle;
}

table td:last-child {
  border-right: 1px solid #f1f2f5;
}

.wp-block-calendar table th {
  min-width: 40px;
  text-align: center;
  background: #F5F6FA;
}

tbody {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  direction: ltr;
}

tbody > tr {
  border-top: 1px solid #f1f2f5;
}

tbody > tr th {
  background: #eff1f7;
}

tfoot tr #prev a:hover, tfoot tr #next a:hover {
  color: var(--color_primary);
}

caption {
  caption-side: top;
  text-align: center;
}

.calendar_wrap caption {
  text-align: center;
  background: rgba(25, 98, 246, 0.1);
  color: #051441;
  font-weight: 500;
}

.calendar_wrap table tr, .calendar_wrap table td {
  border: 0;
}

.calendar_wrap table thead tr {
  border: 0;
}

.calendar_wrap table thead tr th {
  border: 0;
}

nav.wp-calendar-nav {
  background-color: #F5F6FA;
  padding: 5px 20px;
}

.wp-calendar-nav-next {
  float: right;
}

.wp-block-calendar tbody td, .wp-block-calendar th {
  padding: .25em;
  border: 1px solid #f1f2f5;
}

@media (max-width: 576px) {
  table th {
    min-width: 80px;
  }
}

/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/
.tt-btn {
  padding: 8px 35px;
  background: var(--color_primary);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  border-radius: 30px;
  border: 2px solid var(--color_primary);
}

.tt-btn.btn-circle {
  border-radius: 30px;
}

.tt-btn:hover {
  background: transparent;
  color: var(--color_primary);
}

.tt-btn.btn-small {
  padding: 6px 30px;
}

.tt-btn.btn-lg {
  padding: 14px 43px;
}

.tt-btn.btn-outline {
  background: transparent;
  color: #686a74;
  border-color: #e7e7eb;
}

.tt-btn.btn-outline:hover {
  border-color: var(--color_primary);
  background: var(--color_primary);
  color: #fff;
}

.tt-btn.btn-light {
  background: #fff;
  color: var(--color_primary);
}

.tt-btn.btn-light:hover {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.tt-btn.wpcf7-submit {
  border: 2px solid var(--color_primary);
  border-radius: 30px;
}

.tt-app-btn {
  padding: 6px 31px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  line-height: 1.6;
  border: 1px solid var(--color_primary);
  border-radius: 30px;
  background: var(--color_primary);
  text-align: left;
}

.tt-app-btn .btn-icon {
  font-size: 26px;
  margin-right: 12px;
}

.tt-app-btn .btn-icon .fa-google-play {
  font-size: 22px;
}

.tt-app-btn .btn-lebels {
  flex: 2;
  font-size: 14px;
  font-weight: 600;
}

.tt-app-btn .btn-lebels .sub {
  font-size: 80%;
  font-weight: 400;
}

.tt-app-btn .btn-lebels span {
  display: block;
}

.tt-app-btn:hover {
  background: transparent;
  color: var(--color_primary);
}

.tt-app-btn.btn-outline {
  background: transparent;
  color: var(--color_primary);
}

.tt-app-btn.btn-outline:hover {
  background: var(--color_primary);
  color: #fff;
}

.tt-app-btn.btn-light {
  background: #fff;
  color: var(--color_primary);
  border-color: #fff;
}

.tt-app-btn.btn-light:hover {
  background: transparent;
  color: #fff;
}

.tt-app-btn.btn-light.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.tt-app-btn.btn-light.btn-outline:hover {
  background: #fff;
  color: var(--color_primary);
}

.button-wrapper .tt-app-btn:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .button-wrapper .tt-app-btn:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 420px) {
  .button-wrapper .tt-app-btn:not(:last-child) {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.play-btn {
  color: #fff;
  font-weight: 500;
  display: inline-block;
}

.play-btn i {
  font-size: 16px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  color: var(--color_primary);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.play-btn i:before {
  margin-left: 5px;
}

.play-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.banner__btns .tt-app-btn:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 480px) {
  .banner__btns .tt-app-btn:not(:last-child) {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .banner__btns .tt-app-btn:last-child {
    margin-top: 20px;
  }
}

.more-btn {
  font-size: 15px;
  font-weight: 500;
  color: #686a74;
  display: inline-block;
}

.more-btn i {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.more-btn:hover {
  color: var(--color_primary);
}

.more-btn:hover i {
  margin-left: 3px;
}

/*--------------------------------------------------------------
## Animation
--------------------------------------------------------------*/
@keyframes animOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(75deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(35deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(75deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(110deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(145deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes animTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes animThree {
  0% {
    transform: translate(165px, -179px);
  }
  100% {
    transform: translate(-346px, 617px);
  }
}

@-webkit-keyframes animThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}

@keyframes animFour {
  0% {
    transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}

@-webkit-keyframes animFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}

@keyframes animFive {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
  }
}

@-webkit-keyframes animFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}

@keyframes angry-animation {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.animated-shape-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.animated-shape-wrap .animated-shape-item {
  position: absolute;
}

.animated-shape-wrap .animated-shape-item:nth-child(1) {
  background: rgba(0, 201, 157, 0.6);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 12%;
  left: 15%;
  animation: animTwo 13s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(2) {
  border: 5px solid rgba(0, 153, 229, 0.3);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 15%;
  left: 45%;
  -webkit-animation: animOne 15s infinite linear;
  animation: animOne 15s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(3) {
  border: 5px solid rgba(244, 34, 104, 0.3);
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 30%;
  -webkit-animation: animFour 15s infinite linear alternate;
  animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(4) {
  background: rgba(252, 162, 73, 0.8);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  bottom: 15%;
  right: 25%;
  -webkit-animation: animFive 15s infinite linear alternate;
  animation: animFive 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5) {
  background: rgba(100, 45, 250, 0.4);
  width: 3px;
  height: 20px;
  top: 18%;
  right: 25%;
  -webkit-animation: animFour 15s infinite linear alternate;
  animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before, .animated-shape-wrap .animated-shape-item:nth-child(5):after {
  content: "";
  display: block;
  width: 100%;
  height: calc(50% - 2px);
  top: 6px;
  background: inherit;
  position: absolute;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before {
  right: -6px;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):after {
  left: -6px;
}

@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1), 0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1), 0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
    box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
  }
}

/*--------------------------------------------------------------
## Section Heading
--------------------------------------------------------------*/
.section-heading .subtitle {
  font-size: 14px;
  font-size: 0.875em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color_primary);
  letter-spacing: 0.2em;
  margin-bottom: 3px;
}

.section-heading .section-title {
  font-size: 40px;
  font-size: 2.5em;
  margin-bottom: 32px;
  line-height: 1.2;
  font-weight: 900;
}

@media (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    font-size: 2em;
  }
  .section-heading .section-title br {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-heading .section-title {
    font-size: 28px;
    font-size: 1.75em;
  }
}

.section-heading.text-left .description {
  margin: 0;
}

.section-heading.text-right .description {
  margin: 0 0 0 auto;
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: var(--color_primary);
  display: flex;
  align-items: center;
  background: linear-gradient(50deg, #01064a 0%, #104ac1 100%);
}

.banner .banner-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.banner .banner-bottom-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 991px) {
  .banner {
    height: auto;
    padding-top: 120px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .banner .mmt-100 {
    margin-top: 100px;
  }
  .banner .mmt-60 {
    margin-top: 60px;
  }
}

.banner__content, .banner__feature-image {
  position: relative;
  z-index: 3;
}

.banner__feature-image {
  text-align: right;
}

@media (max-width: 991px) {
  .banner__feature-image {
    margin-bottom: 30px;
  }
}

.banner__title {
  font-size: 60px;
  font-size: 3.75em;
  color: #fff;
  font-weight: 900;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .banner__title {
    font-size: 34px;
    font-size: 2.125em;
  }
}

@media (max-width: 768px) {
  .banner__title {
    font-size: 30px;
    font-size: 1.875em;
  }
}

.banner__description {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 16px;
  font-size: 1em;
  line-height: 32px;
  margin-bottom: 52px;
}

@media (max-width: 480px) {
  .banner__description br {
    display: none;
  }
}

@media (max-width: 991px) {
  .banner__description {
    font-size: 16px;
    font-size: 1em;
    margin-bottom: 32px;
  }
}

.banner__domain-search .tt-input-inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
}

.banner__domain-search .tt-input-inner .sea-dom {
  border: 0;
  height: 50px;
  margin: 0;
  border-radius: 30px;
  background: transparent;
}

.banner__domain-search .tt-input-inner .sea-dom::placeholder {
  color: #909aad;
}

.banner__domain-search .tt-input-inner .sea-dom:focus {
  box-shadow: none;
}

.banner__domain-search .tt-input-inner #domainext {
  width: 100px;
  border: 0;
}

@media (max-width: 420px) {
  .banner__domain-search .tt-input-inner #domainext {
    display: none;
  }
}

.banner__domain-search .tt-input-inner #domainext:focus {
  outline: 0;
  box-shadow: none;
}

.banner__domain-search .tt-input-inner .reg-dom {
  border-radius: 30px !important;
  outline: 0;
}

.banner__domain-search .tt-input-inner .reg-dom:hover {
  background-color: var(--color_primary);
  color: #fff;
}

.banner .spinner {
  color: #fff;
  min-height: 45px;
}

.banner__domain-wrapper .domain-results-box .result-wrapper {
  padding: 5px 5px 5px 30px;
  height: auto;
  border-radius: 30px;
}

.banner__domain-wrapper .domain-results-box .tt-btn {
  padding: 5px 15px;
  border-radius: 30px;
}

.banner__domain-wrapper .domain-results-box .tt-btn input {
  font-size: 14px;
}

.banner .domain-extensions {
  display: flex;
  margin-top: 21px;
}

@media (max-width: 991px) {
  .banner .domain-extensions {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .banner .domain-extensions {
    display: block;
    text-align: center;
  }
}

.banner .domain-extensions .ext-item {
  color: #fff;
  font-size: 16px;
  margin-right: 30px;
}

@media (max-width: 440px) {
  .banner .domain-extensions .ext-item {
    display: inline-block;
    margin-right: 20px;
  }
}

.banner .domain-extensions .ext-item .ext-name {
  font-weight: 700;
  margin-right: 5px;
}

.banner__btns .tt-btn {
  padding: 11px 43px;
  font-size: 16px;
}

.banner__btns .tt-btn:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.banner__btns .tt-btn.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 420px) {
  .banner__btns .tt-btn.btn-outline {
    margin-left: 0;
  }
}

.banner__btns .tt-btn.btn-outline:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--color_primary);
}

@media (max-width: 991px) {
  .banner--one {
    height: auto;
    padding-bottom: 73px;
  }
}

.banner--one .banner-top-shape {
  opacity: 1;
  top: auto;
  bottom: 0;
}

.banner--one .container {
  margin-top: 73px;
}

@media (max-width: 991px) {
  .banner--one .container {
    margin-top: 0;
  }
}

.banner--one .banner__sub-title {
  font-size: 14px;
  font-size: 0.875em;
  color: #e2e2ec;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 5px;
  letter-spacing: 3px;
}

@media (max-width: 991px) {
  .banner--one .banner__content {
    max-width: 500px;
    margin: 40px auto 30px;
  }
}

@media (max-width: 1200px) {
  .banner--one .banner__content .banner__title {
    font-size: 32px;
    font-size: 2em;
  }
}

.banner--one .right-shape {
  background-image: linear-gradient(-40deg, #48a7c1 0%, #1d125d 75%);
  opacity: 0.05;
  position: absolute;
  right: -20%;
  top: 19px;
  width: 481px;
  height: 507px;
  z-index: 10;
  transform: rotate(45deg);
}

.banner--two {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .banner--two {
    padding-bottom: 100px;
  }
}

.banner--two:before {
  display: none;
}

.banner--two .banner__btns .tt-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .banner--two .banner__content {
    max-width: 500px;
    margin: 0 auto 0;
  }
}

.banner--two .banner__sub-title {
  font-size: 24px;
  font-size: 1.5em;
  color: #e2e2ec;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .banner--two .banner__title {
    font-size: 34px;
    font-size: 2.125em;
  }
}

.banner--two .banner__feature-image {
  text-align: center;
}

.banner--three .container {
  margin-top: 62px;
}

@media (max-width: 991px) {
  .banner--three .container {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .banner--three {
    padding: 100px 0 80px;
  }
  .banner--three .banner__feature-image {
    max-width: 600px;
    margin-bottom: 50px;
  }
}

.banner--three .extensions-block .ext-item {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.banner--four {
  height: 770px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .banner--four {
    padding: 95px 0 80px;
    height: auto;
  }
}

.banner--four .align-items-center {
  margin-top: 65px;
}

.banner--four .banner-title {
  font-size: 46px;
  font-size: 2.875em;
}

.banner--four .banner__description {
  color: #afb9e5;
  margin-bottom: 42px;
}

.banner--four .banner__feature-image {
  text-align: center;
}

@media (max-width: 991px) {
  .banner--four .banner__feature-image {
    max-width: 570px;
    margin: 0 auto;
  }
}

.banner--five {
  padding: 170px 0 100px;
}

.banner--five .banner__content {
  text-align: left;
}

@media (max-width: 991px) {
  .banner--five .banner__content {
    max-width: 400px;
    margin: 0 auto 30px;
  }
}

.banner--five .banner__title {
  font-size: 42px;
  font-size: 2.625em;
}

@media (max-width: 1200px) {
  .banner--five .banner__title {
    font-size: 42px;
    font-size: 2.625em;
  }
}

@media (max-width: 991px) {
  .banner--five .banner__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .banner--five .banner__title {
    font-size: 32px;
  }
}

.banner--five .banner__description {
  font-size: 16px;
}

.banner--five .offer-price {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.banner--five .offer-price > span {
  display: inline-block;
}

.banner--five .offer-price sup {
  font-weight: 700;
  font-size: 4rem;
  line-height: 3rem;
  position: absolute;
  top: 46px;
  left: -15px;
}

.banner--five .offer-price .cent {
  font-weight: 700;
  font-size: 5rem;
  line-height: 4rem;
}

.banner--five .offer-price span.period {
  font-size: 2rem;
}

.banner--five .offer-price .price {
  font-size: 300px;
  font-size: 18.75em;
}

.banner--five .regular-price {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .banner--five {
    height: auto;
    padding: 120px 0 100px;
  }
  .banner--five .banner__content {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .banner__offer-content {
    text-align: left;
    padding-left: 25px;
  }
}

.banner .offer-price {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.banner .offer-price > span {
  display: inline-block;
}

.banner .offer-price sup {
  font-weight: 700;
  font-size: 4rem;
  line-height: 3rem;
  position: absolute;
  top: 46px;
  left: -15px;
}

@media (max-width: 767px) {
  .banner .offer-price sup {
    left: 10px;
  }
}

.banner .offer-price .cent {
  font-weight: 700;
  font-size: 5rem;
  line-height: 4rem;
}

@media (max-width: 576px) {
  .banner .offer-price .cent {
    font-size: 3rem;
  }
}

.banner .offer-price span.period {
  font-size: 2rem;
}

.banner .offer-price .price {
  font-size: 300px;
  font-size: 18.75em;
}

@media (max-width: 576px) {
  .banner .offer-price .price {
    font-size: 220px;
    font-size: 13.75em;
  }
}

.banner .regular-price {
  color: #d6d6d6;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .banner .regular-price {
    text-align: left;
  }
}

.banner .domain-feature {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.banner .domain-feature li {
  color: #fff;
  margin-bottom: 10px;
}

.banner .domain-feature li i {
  margin-right: 5px;
}

/*--------------------------------------------------------------
## Domain Search Form
--------------------------------------------------------------*/
.domain-wrapper {
  max-width: 770px;
  margin: 0 auto;
}

.domain-wrapper .tt-input-inner {
  display: flex;
  background: #fff;
  padding: 5px;
  border-radius: 40px;
  box-shadow: 0px 40px 30px 0px rgba(0, 8, 46, 0.1);
}

.domain-wrapper .tt-input-inner input {
  height: 50px;
  border-radius: 4px;
  margin: 0;
}

.domain-wrapper .tt-input-inner input::placeholder {
  color: #a5a7b0;
}

.domain-wrapper .tt-input-inner .sea-dom {
  border: 0 !important;
  margin: 0;
  border-radius: 30px;
  padding: 10px 30px;
  background: transparent;
}

.domain-wrapper .tt-input-inner .sea-dom:focus {
  box-shadow: none;
  background: transparent;
}

.domain-wrapper .tt-input-inner .form-control {
  margin: 0 10px;
  height: 50px;
  max-width: 90px;
  box-shadow: none;
  border-radius: 4px;
  border: 0;
  background-color: transparent;
}

@media (max-width: 576px) {
  .domain-wrapper .tt-input-inner #domainext {
    display: none;
  }
}

.domain-wrapper .tt-input-inner .tt-btn {
  border: transparent;
  outline: none;
  border-radius: 30px;
  padding: 13px 48px;
}

.domain-wrapper .tt-input-inner .tt-btn:hover {
  background-color: #084bd4;
  color: #fff;
}

.domain-element .section-heading {
  margin-bottom: 42px;
}

.domain-element .title {
  font-size: 30px;
  font-size: 1.875em;
  font-weight: 900;
  margin-bottom: 5px;
}

.domain-element .description {
  margin-bottom: 0;
}

.result-wrapper {
  display: flex;
  width: 100%;
  padding: 5px 5px 5px 30px;
  align-items: center;
  border-radius: 30px;
}

@media (max-width: 576px) {
  .result-wrapper {
    text-align: center;
    display: block;
    padding: 10px 5px 10px 30px;
  }
}

.result-wrapper i {
  margin-right: 10px;
  font-size: 18px;
}

.result-wrapper .tt-btn-token {
  display: flex;
  align-items: center;
}

.domain-element-wdes .title {
  font-size: 30px;
  margin-bottom: 30px;
}

.spinner {
  width: 100%;
  height: 45px;
}

.tt-result-domain-box {
  margin-top: 20px;
}

.tt-result-domain-box .inner-block-result-item {
  display: flex;
  align-items: center;
  order: 2;
  width: 100%;
}

.tt-result-domain-box .available {
  font-weight: 500;
  margin: 0 5px;
}

.tt-result-domain-box .reasult-info {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 5px;
  order: 1;
}

@media (max-width: 576px) {
  .tt-result-domain-box .reasult-info {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
  }
}

.tt-result-domain-box .reasult-info a {
  margin-left: auto;
}

.tt-result-domain-box .tt-btn {
  padding: 5px 15px;
  border-radius: 30px;
}

.tt-result-domain-box .tt-btn input:not([type='checkbox']):not([type='submit']) {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.tt-result-domain-box .tt-btn:hover input {
  color: inherit;
}

.extensions-block {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

@media (max-width: 991px) {
  .extensions-block {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .extensions-block {
    display: block;
    text-align: center;
  }
}

.extensions-block .ext-item {
  color: #90929b;
  font-size: 16px;
  margin-right: 30px;
  font-weight: 400;
}

@media (max-width: 440px) {
  .extensions-block .ext-item {
    display: inline-block;
    margin-right: 20px;
  }
}

.extensions-block .ext-item .ext-name {
  font-weight: 700;
  margin-right: 5px;
  color: var(--color_primary);
}

.form-height .domain-wrapper .tt-input-inner input, .form-height .domain-wrapper .tt-input-inner .form-control {
  height: 50px;
}

/* Bridge Style */
#order-standard_cart > .row {
  display: block;
}

#bridge #header {
  display: none;
}

#bridge #main-menu .navbar-nav {
  display: block;
}

.page-template #bridge .navbar-main {
  background-color: var(--color_primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-template #bridge section#main-body {
  padding: 100px 0 50px;
}

#bridge .header-lined h4 {
  font-size: 34px;
}

#bridge .vps-hosting-pricing-table-two > thead {
  background: var(--color_primary);
}

#bridge .vps-hosting-pricing-table-two > thead tr th {
  color: #fff;
}

#bridge .dropdown-toggle::after {
  display: none;
}

#bridge section#footer {
  display: none;
}

/*--------------------------------------------------------------
## Domain Box
--------------------------------------------------------------*/
.tt-domain-box {
  padding: 40px 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 30px;
  border-top: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.tt-domain-box .domain-ext {
  margin-bottom: 20px;
  position: relative;
  height: 25px;
}

.tt-domain-box .domain-ext .popular {
  position: absolute;
  right: 0;
  background-color: #52C55E;
  color: #fff;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 4px;
  top: 0;
}

.tt-domain-box .price {
  margin-bottom: 26px;
}

.tt-domain-box .regular-price {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.7;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
}

.tt-domain-box .sell-price {
  font-size: 22px;
  line-height: initial;
  font-weight: 700;
  display: inline-block;
}

.tt-domain-box .tt-btn {
  padding: 5px 22px;
}

.tt-domain-box:hover {
  border-color: var(--color_primary);
}

/*--------------------------------------------------------------
## About Me
--------------------------------------------------------------*/
.about_section {
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .about_section {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_section {
    padding-bottom: 0;
  }
}

.about_section .img_section {
  position: relative;
  min-height: 490px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_section .img_section {
    min-height: 410px;
  }
}

.about_section .img_section .about_img_1 {
  position: absolute;
  bottom: 35px;
  z-index: -2;
  left: 30px;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_1 {
    bottom: 52px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_1 {
    left: 30px;
    max-width: 300px;
  }
}

.about_section .img_section .about_img_1 {
  position: absolute;
  bottom: -25px;
  z-index: -1;
  left: -67px;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_1 {
    bottom: 62px;
    left: 30px;
    max-width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_1 {
    left: -62px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about_section .img_section .about_img_2 {
    max-width: 235px;
  }
}

.about_section .img_section .about_img_3 {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .about_section .img_section .about_img_3 {
    max-width: 250px;
    right: 0;
    top: 108px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_3 {
    right: -70px;
    top: 167px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .img_section .about_img_3 {
    right: -70px;
    top: 60px;
  }
}

.about_section .about_section_content {
  padding-left: 65px;
}

@media (min-width: 991px) {
  .about_section .about_section_content {
    margin-top: 71px;
  }
}

@media (max-width: 767.98px) {
  .about_section .about_section_content {
    padding-left: 0;
  }
}

.about_section .about_section_content h5 {
  font-size: 16px;
  color: var(--color_primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.about_section .about_section_content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .about_section .about_section_content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .about_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.about_section .about_section_content .cu_btn {
  margin-top: 47px;
  padding: 18px 35px;
  letter-spacing: 1px;
}

@media (max-width: 767.98px) {
  .about_section .about_section_content .cu_btn {
    margin-top: 20px;
    padding: 18px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .about_section_content .cu_btn {
    margin-top: 25px;
    padding: 18px 35px;
  }
}

.about_section .round_shape_animation {
  border-radius: 50%;
  background: #85b0fc;
  position: absolute;
  right: 95px;
  top: 60px;
  width: 190px;
  height: 190px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_section .round_shape_animation {
    right: -53px;
    top: 18px;
  }
}

.about_section.sp_font h2 {
  letter-spacing: -3px;
}

.about_part_accordion_style .about_img {
  position: relative;
  z-index: 1;
}

.about_part_accordion_style .about_img .about_overlay {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.about_part_accordion_style .faq_content.collaps_style .card:last-child {
  border-bottom: 0;
}

.about_part_accordion_style .faq_content.collaps_style .card .btn {
  text-transform: capitalize;
}

.about_part_accordion_style {
  overflow: hidden;
}

.about_part_accordion_style.sec_padding {
  padding: 160px 0;
}

@media (max-width: 991px) {
  .about_part_accordion_style.sec_padding {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_part_accordion_style.sec_padding {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .about_part_accordion_style .about_img {
    margin-top: 40px;
  }
}

.accordion_content .card-header {
  background-color: transparent;
  border-top: 1px solid #e5e5e5;
  border-bottom: 0 solid transparent;
  margin-bottom: 0 !important;
  padding: 40px 40px 40px 40px;
  line-height: 18px;
}

@media (max-width: 991px) {
  .accordion_content .card-header {
    padding: 20px 20px 20px 40px;
  }
}

.accordion_content .card {
  border: 0px solid transparent;
  background-color: transparent;
}

.accordion_content .card:first-child .card-header {
  border-top: 0 solid transparent;
}

.accordion_content .card-body {
  padding: 0 0 40px 40px;
  font-size: 18px;
  line-height: 30px;
  color: #4b4b4b;
  letter-spacing: 1px;
}

.accordion_content .btn {
  padding: 0;
  font-size: 24px;
  color: #2c2c51;
  line-height: 18px;
}

.accordion_content .btn-link:hover {
  color: #ca063a;
  text-decoration: none;
}

.accordion_content .tittle {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.accordion_content .tittle:after {
  position: absolute;
  content: "\e64b";
  left: -40px;
  top: 0;
  width: 15px;
  height: 15px;
  font-family: "themify";
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  color: #2c2c51;
}

.accordion_content .tittle.active {
  color: #ca063a;
}

.accordion_content .tittle.active:after {
  transform: rotate(180deg);
  color: #ca063a;
}

.about_me_section {
  position: relative;
  z-index: 1;
}

.about_me_section.sec_padding {
  padding: 105px 0 120px;
}

@media (max-width: 991px) {
  .about_me_section.sec_padding {
    padding: 50px 0 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_me_section.sec_padding {
    padding: 60px 0 80px;
  }
}

.about_me_section .dark_shape_1 {
  position: absolute;
  left: 0;
  top: 45%;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_me_section .dark_shape_1 {
    display: none;
  }
}

.about_me_section .dark_shape_2 {
  position: absolute;
  right: 0;
  top: 45%;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .about_me_section .dark_shape_2 {
    display: none;
  }
}

.about_me_section .img_section {
  padding-right: 65px;
}

@media (max-width: 991px) {
  .about_me_section .img_section {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .about_me_section .about_section_content {
    margin-top: 35px;
  }
}

.about_me_section .about_section_content h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 31px;
}

@media (max-width: 991px) {
  .about_me_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_me_section .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.about_me_section .about_section_content h2 span {
  color: #ff7a7a;
}

.about_me_section .about_section_content p {
  color: #8a8da1;
  margin-bottom: 0;
}

.about_me_section .author-share-link {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.about_me_section .author-share-link li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.about_me_section .author-share-link li a {
  display: block;
}

.about_us_section {
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.about_us_section .about_us_shap {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: -1;
}

.about_us_section .about_section_img {
  display: flex;
}

.about_us_section .faq_content.collaps_style .card:last-child {
  border-bottom: 0px solid transparent;
}

.about_us_section .about_us_img {
  position: relative;
  margin-right: 30px;
  z-index: 1;
  margin-top: 50px;
}

.about_us_section .about_us_img:last-child {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .about_us_section .about_us_img:last-child {
    margin-top: 10px;
  }
}

.about_us_section .about_us_img .about_img_shape {
  position: absolute;
  position: absolute;
  left: -45px;
  top: -15px;
  z-index: -1;
}

.about_us_section .about_us_img .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  left: -45px;
  bottom: -70px;
  width: 110px;
  height: 110px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .about_us_section .about_us_img .round_shape_animation {
    bottom: -30px;
  }
}

.about_us_section.dark_version {
  padding-bottom: 40px;
}

.about_us_section.dark_version .about_section_content h5 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about_us_section.dark_version .about_section_content h2 {
  font-size: 64px;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 767.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .about_us_section.dark_version .about_section_content h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}

.about_us_section.dark_version .about_section_content p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.about_us_section.dark_version .about_section_content .cu_btn {
  margin-top: 47px;
  padding: 18px 35px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .about_us_section.dark_version .about_section_content .cu_btn {
    margin-top: 20px;
    padding: 18px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .about_us_section.dark_version .about_section_content .cu_btn {
    margin-top: 25px;
    padding: 18px 35px;
  }
}

.video_section {
  overflow: hidden;
}

.video_section.video_sec_padding {
  padding: 163px 0 130px;
}

@media (max-width: 991px) {
  .video_section.video_sec_padding {
    padding: 100px 0;
  }
}

.video_section .video_section_content {
  position: relative;
  z-index: 1;
}

.video_section .video_section_content .video_popup {
  height: 80px;
  width: 80px;
  box-shadow: 10px 17.321px 40px 0px rgba(1, 16, 58, 0.14);
}

.video_section .video_section_content .video_popup img {
  max-width: 14px;
  margin-left: 3px;
}

@media (max-width: 991px) {
  .video_section .video_section_content .video_popup {
    height: 60px;
    width: 60px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_section .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  right: -130px;
  bottom: -65px;
  width: 280px;
  height: 280px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .video_section .round_shape_animation {
    width: 150px;
    height: 150px;
    right: -70px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_popup_section .video_popup {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.video_popup_section .video_popup i {
  font-size: 18px;
  color: var(--color_primary);
}

.dark_bg.about_me_section {
  background-color: #111015;
  padding: 160px 0 0;
  position: relative;
}

.dark_bg.about_me_section .dark_shape_1 {
  position: absolute;
  left: 0;
  top: 45%;
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .dark_shape_1 {
    display: none;
  }
}

.dark_bg.about_me_section .dark_shape_2 {
  position: absolute;
  right: 0;
  top: 45%;
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .dark_shape_2 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .dark_bg.about_me_section .about_section_content {
    margin-bottom: 70px;
    margin-top: 50px;
  }
}

.dark_bg.about_me_section .about_section_content h2 {
  color: #fff;
}

.dark_bg.about_me_section .about_section_content h2 span {
  color: var(--color_primary);
}

.dark_bg.about_me_section .about_section_content p {
  color: #fff;
}

.dark_bg.about_me_section .about_section_content .cu_btn {
  margin-top: 42px;
  letter-spacing: 1px;
}

.dark_bg.skil_list_section {
  background-image: none;
  background-color: #140e2a;
}

.dark_bg.portfolio_section {
  background-color: #111015;
}

.dark_bg.client_list_style_2 {
  background-color: #140e2a !important;
}

.dark_bg.footer_section {
  background-color: #111015;
}

.dark_bg.footer_section .footer_nav h4 {
  color: #fff;
  text-transform: capitalize;
}

.dark_bg.footer_section .single_footer_widget p, .dark_bg.footer_section .footer_nav ul li a {
  color: rgba(255, 255, 255, 0.2);
}

.dark_bg.footer_section .border_top {
  border-top: 1px solid #29282d;
}

/*--------------------------------------------------------------
## Popup Video Box
--------------------------------------------------------------*/
.video_section {
  overflow: hidden;
}

.video_section {
  overflow: hidden;
}

.video_section.video_sec_padding {
  padding: 130px 0 120px;
}

@media (max-width: 991px) {
  .video_section.video_sec_padding {
    padding: 100px 0;
  }
}

.video_section .video_section_content {
  position: relative;
  z-index: 1;
}

.video_section .video_section_content .video_popup {
  height: 80px;
  width: 80px;
  box-shadow: 10px 17.321px 40px 0px rgba(1, 16, 58, 0.14);
}

.video_section .video_section_content .video_popup img {
  max-width: 14px;
  margin-left: 3px;
}

@media (max-width: 991px) {
  .video_section .video_section_content .video_popup {
    height: 60px;
    width: 60px;
  }
}

.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}

.video_section .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  right: -130px;
  bottom: -65px;
  width: 280px;
  height: 280px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

@media (max-width: 991px) {
  .video_section .round_shape_animation {
    width: 150px;
    height: 150px;
    right: -70px;
  }
}

.video_popup_section .video_popup {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.video_popup_section .video_popup i {
  font-size: 18px;
  color: var(--color_primary);
  margin-left: 5px;
}

.video_popup.play_animation:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.video_popup img {
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video_popup {
  background-color: #fff;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_popup:hover {
  background-color: var(--color_primary);
}

.video_popup:hover i {
  color: #fff;
}

.popup-video-box.video_section .round_shape_animation {
  top: auto;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/
.testimonial {
  padding: 20px 40px 40px;
  border-radius: 10px;
  background-color: #F2F4F8;
}

.testimonial .water-mark {
  margin-bottom: -15px;
  margin-left: -38px;
}

.testimonial .testimonial-content-inner {
  margin-bottom: 35px;
}

.testimonial .testimonial-content-inner .title {
  font-size: 20px;
  font-size: 1.25em;
}

.testimonial .testimonial-content-inner p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
}

.testimonial .info-wrap {
  display: flex;
  align-items: center;
}

.testimonial .avatar {
  margin-right: 20px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: relative;
}

.testimonial .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .bio-wrapper {
  flex: 2;
}

.testimonial .bio-wrapper .name {
  font-size: 18px;
  font-size: 1.125em;
  font-weight: 600;
  margin: 0;
}

.testimonial .bio-wrapper .designation {
  font-size: 14px;
  font-size: 0.875em;
  color: #777983;
  line-height: 1.2;
}

.swiper-pagination {
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%) !important;
}

.swiper-pagination-two {
  margin-left: 125px;
  margin-top: 35px;
}

.swiper-pagination .swiper-pagination-bullet, .swiper-pagination-two .swiper-pagination-bullet, .swiper-pagination-testi .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  outline: 0;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  background: transparent;
  border: 1px solid var(--color_primary);
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-two .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-testi .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color_primary);
}

.swiper-pagination-testi {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  margin-top: 40px;
}

.tt-testimonial-wrapper-two {
  max-width: 770px;
  margin: 0 auto;
  padding-top: 50px;
}

.tt-testimonial-wrapper-two .bg-shape {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.tt-testimonial-wrapper-two .tt-testimonial {
  box-shadow: 0px -3px 0px 0px rgba(72, 99, 240, 0.004), 0px 40px 40px 0px rgba(0, 8, 46, 0.1);
  background: #fff;
  border-radius: 10px;
  border-top: 3px solid var(--color_primary);
  padding: 25px 50px 60px;
  position: relative;
}

@media (max-width: 576px) {
  .tt-testimonial-wrapper-two .tt-testimonial {
    padding: 25px 30px 40px;
  }
}

.tt-testimonial-wrapper-two .quote_image {
  margin-left: 95px;
  height: 75px;
}

.testimonial-two {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-two .avatar {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 576px) {
  .testimonial-two .avatar {
    height: 60px;
    width: 60px;
    margin-right: 20px;
  }
}

.testimonial-two .avatar img {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.testimonial-two svg {
  margin-left: -35px;
}

.testimonial-two .testimonial-info-wrapper {
  flex: 2;
}

.testimonial-two .testimonial-info-wrapper p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 25px;
  font-weight: 400;
}

@media (max-width: 576px) {
  .testimonial-two .testimonial-info-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonial-two .testimonial-info-wrapper .testi-info .name {
  font-size: 20px;
  margin: 0;
}

.testimonial-two .testimonial-info-wrapper .testi-info .designation {
  font-size: 15px;
  color: #777983;
}

/*--------------------------------------------------------------
## Counting
--------------------------------------------------------------*/
.countdown-container {
  position: relative;
}

.countdown-container .countdown_img {
  position: absolute;
  right: 50px;
  top: 0;
}

@media (max-width: 1200px) {
  .countdown-container .countdown_img {
    display: none;
  }
}

.tt-countdown-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .tt-countdown-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .tt-countdown-wrapper {
    display: block;
  }
  .tt-countdown-wrapper.style-three {
    display: flex;
  }
}

.tt-countdown-wrapper .tt-countdown {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .tt-countdown-wrapper .tt-countdown {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .tt-countdown-wrapper .tt-countdown {
    width: 100%;
  }
  .tt-countdown-wrapper .tt-countdown.style-three .tt-countdown-wrapper .tt-countdown {
    width: 33.33%;
  }
}

.tt-countdown-wrapper .tt-countdown .counter-icon {
  font-size: 46px;
  margin-bottom: 30px;
  color: var(--color_primary);
}

.tt-countdown-wrapper .tt-countdown .counter {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #0f163b;
  margin-bottom: 10px;
}

.tt-countdown-wrapper .tt-countdown .counter-title {
  font-size: 16px;
  font-weight: 400;
}

.tt-countdown-wrapper.style-two {
  width: calc(100% + 30px);
}

@media (max-width: 576px) {
  .tt-countdown-wrapper.style-two {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tt-countdown-wrapper.style-two {
    width: 100%;
  }
}

.tt-countdown-wrapper.style-two .tt-countdown {
  margin-bottom: 60px;
  padding: 40px 30px;
  width: calc(33.33% - 30px);
  background: #fff;
  margin-right: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tt-countdown-wrapper.style-two .tt-countdown {
    width: calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .tt-countdown-wrapper.style-two .tt-countdown {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tt-countdown-wrapper.style-two .tt-countdown {
    width: 100%;
  }
}

.tt-countdown-wrapper.style-three {
  margin-bottom: 30px;
}

.tt-countdown-wrapper.style-three .tt-countdown {
  position: relative;
  min-width: 25%;
}

@media (max-width: 768px) {
  .tt-countdown-wrapper.style-three .tt-countdown {
    width: 33.33%;
  }
}

@media (max-width: 420px) {
  .tt-countdown-wrapper.style-three .tt-countdown .counter {
    font-size: 20px;
  }
}

.tt-countdown-wrapper.style-three .tt-countdown:not(:first-child):after {
  content: '';
  position: absolute;
  height: 60px;
  width: 1px;
  background: #dadada;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .tt-countdown-wrapper.style-three .tt-countdown:not(:first-child):after {
    display: none;
  }
}

.tt-countdown-wrapper.style-three .tt-countdown.text-left:after {
  left: -43%;
}

@media (max-width: 768px) {
  .tt-countdown-wrapper.style-three .tt-countdown.text-left:after {
    left: -27%;
  }
}

/*--------------------------------------------------------------
## Logo Carousel
--------------------------------------------------------------*/
.client-logo {
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.tt-client-logo .swiper-wrapper {
  align-items: center;
}

.tt-partner {
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  border-top: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.tt-partner .partner-logo {
  margin-bottom: 20px;
}

.tt-partner .partner-logo img {
  max-width: 130px;
}

.tt-partner .partner-content .company-name {
  font-size: 20px;
  font-size: 1.25em;
  margin-bottom: 5px;
}

.tt-partner .partner-content .tagline {
  font-size: 16px;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 15px;
}

.tt-partner .more-info {
  font-size: 14px;
  font-size: 0.875em;
  color: var(--color_primary);
  position: relative;
}

.tt-partner .more-info:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color_primary);
  transition: all 0.3s ease-in-out;
}

.tt-partner .more-info i {
  font-size: 10px;
}

.tt-partner .more-info:hover:after {
  width: 100%;
}

.tt-partner:hover {
  border-color: var(--color_primary);
  box-shadow: 0px -3px 0px 0px rgba(72, 99, 240, 0.004), 0px 40px 30px 0px rgba(0, 8, 46, 0.1);
}

.tt-logo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.tt-logo-list li {
  width: 20%;
  padding: 15px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .tt-logo-list li {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .tt-logo-list li {
    width: 33.3333%;
  }
}

@media (max-width: 480px) {
  .tt-logo-list li {
    width: 50%;
  }
}

.tt-logo-list li img {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.tt-logo-list li:hover img {
  opacity: 1;
}

/*--------------------------------------------------------------
## Pricing
--------------------------------------------------------------*/
.yearly-price {
  display: none;
}

.form-switch {
  align-items: center;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  justify-content: space-between;
}

.form-switch span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  width: 50%;
  text-align: center;
  z-index: 2;
  position: relative;
  line-height: 35px;
  color: #777983;
}

.form-switch .switch-icon {
  position: relative;
  width: 220px;
  background: #f3f4f8;
  border-radius: 30px;
  transition: all 0.3s linear;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
  padding: 5px;
}

.form-switch .switch-icon:after {
  content: "";
  position: absolute;
  left: 11px;
  width: 50%;
  height: 36px;
  background: #ffffff;
  border-radius: 25px;
  transform: translate3d(-6px, 0, 0);
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 8px 14px 0px rgba(0, 8, 46, 0.1);
}

.form-switch .switch-icon.yearly:after {
  transform: translate3d(95px, 0, 0);
}

.form-switch .switch-icon.monthly .beforeinput {
  color: var(--color_primary);
}

.form-switch .switch-icon.yearly .afterinput {
  color: var(--color_primary);
}

.pricing-table {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 45px 30px 55px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  box-shadow: 0px 30px 60px 0px rgba(0, 8, 46, 0.1);
  background: #fff;
}

.pricing-table .table-feature-image {
  min-height: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 32px;
}

.pricing-table .pricing-header {
  position: relative;
  margin-bottom: 25px;
}

.pricing-table .pricing-header .price {
  font-size: 40px;
  font-size: 2.5em;
  line-height: 45px;
  font-weight: 700;
  color: #0f163b;
  margin-bottom: 0;
}

.pricing-table .pricing-header .price .cent {
  font-size: 18px;
}

.pricing-table .pricing-header .price .offer {
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(25, 98, 246, 0.102);
  color: var(--color_primary);
  padding: 7px 13px;
  line-height: 1;
}

.pricing-table .pricing-header .price-title {
  font-size: 20px;
  font-size: 1.25em;
  margin-bottom: 38px;
  font-weight: 700;
}

.pricing-table .price-feture {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}

.pricing-table .price-feture li {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: #686a74;
}

.pricing-table .price-feture li span {
  color: #0f163b;
  font-weight: 700;
}

.pricing-table .label-corner {
  top: 16px;
  right: -25px;
  width: 100px;
  position: absolute;
  max-height: 19px;
  font-size: 11px;
  padding: 4px;
  color: #fff;
  transform: rotate(45deg);
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: var(--color_primary);
  display: none;
}

.pricing-table.style_one {
  border-top: 3px solid transparent;
}

.pricing-table.style_one:hover {
  border-color: var(--color_primary);
}

.pricing-table.featured {
  border-top: 3px solid var(--color_primary);
}

.pricing-table.style_two {
  padding: 40px 0;
}

.pricing-table.style_two .pricing-header:after {
  display: none;
}

.pricing-table.style_two .pricing-header .price-title {
  margin-bottom: 5px;
}

.pricing-table.style_two .pricing-header p {
  margin-bottom: 30px;
}

.pricing-table.style_two .pricing-header .price {
  background-color: #e5e9f2;
  padding: 30px;
  line-height: 1;
}

.pricing-table.style_two.featured .pricing-header .price {
  background-color: var(--color_primary);
  color: #fff;
}

.tt-pricing-table-simple {
  background: #fff;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05);
  padding: 50px 40px 60px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.tt-pricing-table-simple .pricing__image {
  position: relative;
  width: 70px;
  margin-bottom: 30px;
}

.tt-pricing-table-simple .pricing__image svg {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
}

.tt-pricing-table-simple .pricing__image img {
  position: relative;
  z-index: 2;
}

.tt-pricing-table-simple .pricing__price {
  margin-bottom: 18px;
}

.tt-pricing-table-simple .pricing__price p {
  margin: 0;
  color: #a6acb9;
  font-size: 16px;
  font-size: 1em;
}

.tt-pricing-table-simple .pricing__price .price {
  font-size: 36px;
  font-size: 2.25em;
  font-weight: 700;
}

.tt-pricing-table-simple .pricing__price .price span {
  font-size: 24px;
}

.tt-pricing-table-simple .pricing__feature {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.tt-pricing-table-simple .pricing__feature li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  margin-bottom: 10px;
  color: #666e79;
}

.tt-pricing-table-simple .pricing__feature li:before {
  content: '';
  position: absolute;
  background-color: var(--color_primary);
  height: 6px;
  width: 6px;
  border-radius: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tt-pricing-table-simple .pricing__header {
  position: relative;
  margin-bottom: 30px;
}

.tt-pricing-table-simple .pricing__header h5 {
  font-size: 22px;
  font-size: 1.375em;
  font-weight: 600;
  margin-bottom: 0;
}

.tt-pricing-table-simple .pricing__header p {
  margin: 0;
  font-size: 15px;
}

.tt-pricing-table-simple .tt-btn {
  padding: 10px 31px;
}

.tt-pricing-table-simple.style-two {
  text-align: center;
}

.tt-pricing-table-simple.style-two .pricing__image {
  margin: 0 auto 30px;
}

.tt-pricing-table-simple.style-two .pricing__feature li {
  padding-left: 0;
}

.tt-pricing-table-simple.style-two .pricing__feature li:before {
  display: none;
}

#custom-plan {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 6px 50px 0px rgba(0, 13, 49, 0.07);
  padding: 90px 95px 80px;
}

@media (max-width: 576px) {
  #custom-plan {
    padding: 50px 40px;
  }
}

.vps-switch-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.tt-plan-box {
  padding: 12px 25px;
}

.tt-plan-box .slider .tooltip.top {
  display: none;
}

.tt-plan-info-box {
  padding: 40px 35px 35px;
}

.tt-vps-item {
  width: 100%;
  display: block;
  padding: 20px;
}

.tt-vps-list li {
  margin-bottom: 5px;
  display: inline-block;
  margin: 0;
}

@media (min-width: 320px) and (max-width: 767px) {
  .tt-vps-list li {
    width: 45%;
    display: inline-block;
    margin-bottom: 10px;
  }
  .tt-vps-item {
    padding: 12px 5px;
  }
}

@media (min-width: 320px) and (max-width: 576px) {
  .tt-plan-box {
    margin-bottom: 15px;
  }
  .tt-vps-list li {
    width: 100%;
  }
  .tt-vps-list li.list-inline-item:not(:last-child) {
    margin-right: 0;
  }
}

.tt-plan-box .slider .tooltip.top .tooltip-arrow {
  border: 0;
}

.tt-plan-box .slider.slider-horizontal {
  width: 100%;
}

.tt-plan-box .slider.slider-horizontal .slider-track {
  height: 10px;
}

.tt-plan-box .slider-selection {
  background: none;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--color_primary);
}

.tt-plan-box .slider-track {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #c5ceff;
  position: relative;
  box-shadow: none;
}

.tt-plan-box .slider-handle {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -3px;
  background: none;
  background-color: #fff;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  border: 8px solid var(--color_primary);
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tt-plan-box .slider-handle:hover, .tt-plan-box .slider-handle:focus {
  background-color: #fff;
  border: 8px solid var(--color_primary);
}

.tt-vps-item i {
  font-size: 46px;
  color: var(--color_primary);
}

.tt-vps-item .vps-item-info {
  flex: 2;
  text-align: left;
  margin-left: 20px;
}

.tt-vps-item .vps-item-info .title {
  font-size: 13px;
  color: var(--color_primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.tt-vps-item .vps-item-info .feature {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.tt-vps-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 0;
  padding: 0;
  list-style: none;
}

.tt-vps-list li {
  width: 50%;
  margin-bottom: 20px;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .tt-vps-list li {
    width: 100%;
  }
}

.tt-vps-list .icon svg {
  width: 50px;
}

.vps-switch-wrap .tt-btn {
  display: block;
}

.tt-vps-item, .tt-plan-box, .tt-plan-info-box {
  background: #f3f4f8;
  border-radius: 10px;
}

.tt-plan-info-box .price-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color_primary);
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.tt-plan-info-box .price {
  margin-bottom: 10px;
}

.tt-plan-info-box .vpsPrice {
  font-size: 38px;
  font-weight: 900;
  color: #0f163b;
}

.tt-plan-info-box p {
  font-size: 14px;
  line-height: 20px;
  color: #676976;
  margin: 0;
}

@media (max-width: 767px) {
  .vpsWHmcsUrl {
    margin-top: 20px;
  }
}

.row.gutter-10 .col-sm-12, .row.gutter-10 .col-lg-8, .row.gutter-10 .col-sm-8, .row.gutter-10 .col-sm-4 {
  padding: 0 10px !important;
}

.price-footer-text {
  margin-top: 15px;
}

.price-footer-text p {
  font-size: 15px;
  margin: 0;
}

/* Pricing Cloud */
.pricing--switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing--switcher .pricing-switch-wrap .switch-icon {
  margin: 0;
}

.tt-pricing__table-inline {
  border: 2px solid #eee;
  border-radius: 15px;
  background: #fff;
}

.tt-pricing__header-items {
  display: flex;
  border-bottom: 2px solid #eee;
  flex-wrap: wrap;
}

.tt-pricing__header-item, .tt-pricing__feature {
  width: 25%;
  text-align: center;
}

@media (max-width: 991px) {
  .tt-pricing__header-item, .tt-pricing__feature {
    width: 33.33%;
  }
}

.tt-pricing__title {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .tt-pricing__title {
    font-size: 15px;
  }
}

.tt-pricing__header-item {
  padding: 40px 30px;
}

@media (max-width: 991px) {
  .tt-pricing__header-item {
    padding: 30px 15px;
  }
}

.tt-pricing__header-item.featured .tt-btn {
  background: #fff;
  color: var(--color_primary);
  border-color: #fff;
}

.tt-pricing__header-item.featured .tt-btn:hover {
  background: transparent;
  color: var(--color_primary);
}

.tt-pricing__header-item.featured .tt-btn:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .tt-pricing__header-item .tt-btn {
    padding: 8px 16px;
  }
}

.tt-pricing__price {
  font-size: 50px;
  font-weight: 800;
  color: var(--color_primary);
}

.tt-pricing__price.year {
  display: none;
}

.tt-pricing__price .preiod {
  font-size: 20px;
}

@media (max-width: 991px) {
  .tt-pricing__price {
    font-size: 32px;
  }
}

.tt-pricing__subtitle {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .tt-pricing__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}

.tt-pricing__header-item.featured {
  background: var(--color_primary);
}

.tt-pricing__header-item.featured .tt-pricing__title, .tt-pricing__header-item.featured .tt-pricing__price {
  color: #fff;
}

.tt-pricing__header-item.featured .tt-pricing__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.tt-pricing__feature-items {
  display: flex;
  flex-wrap: wrap;
}

.tt-pricing__feature-items:not(:last-child) {
  border-bottom: 2px solid #eee;
}

.tt-pricing__feature {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-pricing__feature p {
  margin: 0;
}

.tt-pricing__feature i {
  font-size: 14px;
}

.tt-pricing__feature .ti-check {
  color: #00d378;
}

.tt-pricing__feature .ti-close {
  color: #ff004c;
}

.tt-pricing__feature.feature-one {
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .tt-pricing__feature.feature-one {
    justify-content: center;
  }
}

.tt-pricing__feature-title {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 991px) {
  .tt-md-full {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .d-none-md {
    display: none;
  }
}

@media (min-width: 992px) {
  .title--border {
    border-right: 2px solid #eee;
  }
}

/*--------------------------------------------------------------
## Hotspot
--------------------------------------------------------------*/
.tt-hotspot {
  position: relative;
}

.tt-hotspot .tt-hotspot-items {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-hotspot .tt-hotspot-items .tt-hotspots-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #1062fe;
  border-radius: 50%;
  margin-left: -14px;
}

.tt-hotspot .tt-hotspot-items .tt-hotspots-item .ripple {
  display: block;
  width: 10px;
  height: 10px;
  animation: ripple 1s linear infinite;
  -webkit-transition: .5s linear;
  border-radius: 50%;
}

.tooltip {
  top: -30px !important;
}

.tooltip-inner {
  background-color: #2a374e;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
  border-top-color: #2a374e;
}

/*--------------------------------------------------------------
## Progressbar
--------------------------------------------------------------*/
.tt-screenshots {
  padding: 20px 0;
}

.screenshot-slider img {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12) !important;
  border-radius: 30px !important;
}

.elementor .screenshot-frame {
  position: absolute;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 480px;
  top: 11px;
}

.elementor .screenshot-frame img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

@media (max-width: 1200px) {
  .elementor .screenshot-frame {
    width: 240px;
    height: 397px;
    top: 15px;
  }
}

@media (max-width: 767px) {
  .elementor .screenshot-frame {
    width: 170px;
    height: 290px;
  }
}

@media (max-width: 620px) {
  .elementor .screenshot-frame {
    display: none;
  }
}

/*--------------------------------------------------------------
## Social Profiles
--------------------------------------------------------------*/
.tt-social-link {
  margin: 0;
}

.tt-social-link li {
  display: inline-block;
}

.tt-social-link li:not(:last-child) {
  margin-right: 5px;
}

.tt-social-link li a {
  color: #fff;
  display: block;
  font-size: 15px;
  height: 46px;
  width: 46px;
  line-height: 49px;
  background-color: var(--color_primary);
  border-radius: 50%;
  text-align: center;
}

.tt-social-link li a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
## Service Image Box
--------------------------------------------------------------*/
.tt-service-image-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 15px;
  padding: 3rem;
}

.tt-service-image-box:after {
  z-index: 1;
  top: 100%;
  background-image: linear-gradient(75deg, rgba(26, 44, 121, 0.75) 10%, rgba(232, 5, 102, 0.8));
  content: '';
  height: 100%;
  right: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.tt-service-image-box:before {
  top: 80%;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(40%);
  filter: brightness(40%);
}

.tt-service-image-box .box-image {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 80%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.tt-service-image-box .box-image a {
  display: block;
}

.tt-service-image-box .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.tt-service-image-box .box-image:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.tt-service-image-box .box-info {
  position: relative;
  z-index: 2;
}

.tt-service-image-box .box-info .icon {
  font-size: 40px;
  margin-bottom: 30px;
  color: #1A2C79;
}

.tt-service-image-box .box-info .box-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.tt-service-image-box .box-info .box-title a {
  color: #0f163b;
}

.tt-service-image-box .box-info .box-title a:hover {
  color: var(--color_primary);
}

.tt-service-image-box .box-info p {
  margin: 0;
}

.tt-service-image-box:hover:after {
  top: 0;
}

.tt-service-image-box:hover .icon {
  color: #fff;
}

.tt-service-image-box:hover .box-info .box-title {
  color: #fff;
}

.tt-service-image-box:hover .box-info .box-title a {
  color: #fff;
}

.tt-service-image-box:hover .box-info p {
  color: #fff;
}

.tt-service-image-box:hover .box-image {
  top: 0;
  opacity: 1;
  transition: all 0.17s ease-out 0.18s;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.team-member {
  margin-bottom: 30px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 40px 30px 0px rgba(0, 8, 46, 0.1);
  overflow: hidden;
}

.team-member .member-avater {
  position: relative;
  overflow: hidden;
}

.team-member .member-avater img {
  width: 100%;
}

.team-member .member-avater:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(25, 98, 246, 0.7);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.team-member .member-avater:hover:before {
  opacity: 1;
}

.team-member .member-avater:hover .member-social {
  bottom: 20px;
  opacity: 1;
}

.team-member .member-social {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  opacity: 0;
}

.team-member .member-social li {
  display: inline-block;
}

.team-member .member-social li:not(:last-child) {
  margin-right: 5px;
}

.team-member .member-social li a {
  display: inline-block;
  height: 35px;
  width: 35px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  line-height: 35px;
}

.team-member .member-social li a:hover {
  color: var(--color_primary);
  background-color: #fff;
}

.team-member .team-info {
  text-align: center;
  padding: 20px;
}

.team-member .team-info .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1;
}

.team-member .team-info .designation {
  font-weight: 400;
  font-size: 14px;
  color: #777983;
}

.team-member .team-info .member-short-info {
  margin: 20px 0 30px;
}

/*--------------------------------------------------------------
## Blog Post Grid
--------------------------------------------------------------*/
.tt-blog-posts .post-grid {
  position: relative;
}

.tt-blog-posts .post-grid .post-category {
  position: absolute;
  bottom: 0;
}

.tt-blog-posts .post-grid .post-category a {
  display: inline-block;
  font-size: 14px;
  background: #1A2C79;
  color: #ffffff;
  padding: 8px 17px;
  line-height: 1;
}

.tt-blog-posts .post-grid .feature-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 10px;
}

.tt-blog-posts .post-grid .feature-image img {
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tt-blog-posts .post-grid .feature-image:hover img {
  transform: scale(1);
}

.tt-blog-posts .post-grid .date {
  position: absolute;
  z-index: 2;
  height: 55px;
  width: 55px;
  top: 10px;
  right: 10px;
  background: var(--color_primary);
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 0;
}

.tt-blog-posts .post-grid .date p {
  margin: 0;
}

.tt-blog-posts .post-grid .date span {
  display: block;
  font-weight: 400;
  font-size: 13px;
}

.tt-blog-posts .post-grid .blog-content {
  padding: 0 20px;
  transform: translateY(-30px);
}

@media (max-width: 1200px) {
  .tt-blog-posts .post-grid .blog-content {
    padding: 0 10px;
  }
}

.tt-blog-posts .post-grid .blog-content .entry-title {
  font-size: 22px;
  font-size: 1.375em;
  font-weight: 700;
  margin: 5px 0 33px;
}

.tt-blog-posts .post-grid .blog-content .entry-header {
  background: #fff;
  padding: 20px 25px 35px;
  border-radius: 10px;
  box-shadow: 0px 30px 60px 0px rgba(0, 8, 46, 0.1);
  border-top: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.tt-blog-posts .post-grid .blog-content .entry-header:hover {
  border-color: var(--color_primary);
}

.tt-blog-posts .post-grid:hover {
  border-color: var(--color_primary);
}

.tt-blog-posts .post-grid:hover .feature-image img {
  transform: scale(1);
}

.tt-blog-posts .tt-blog-meta-tag {
  padding: 8px 14px;
  background: rgba(25, 98, 246, 0.078);
  color: var(--color_primary);
  font-size: 14px;
  font-size: 0.875em;
  font-weight: 500;
  border-radius: 30px;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}

.tt-blog-posts .tt-blog-meta-tag:hover {
  background: var(--color_primary);
  color: #fff;
}

.tt-blog-posts .blog-footer {
  margin-top: 26px;
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.tt-icon-box {
  margin-bottom: 30px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.tt-icon-box .icon-container {
  margin-bottom: 25px;
  align-items: baseline;
  font-size: 35px;
  font-size: 2.1875em;
  color: var(--color_primary);
  position: relative;
}

.tt-icon-box .box-content {
  position: relative;
}

.tt-icon-box .box-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 20px;
  font-size: 1.25em;
  transition: all 0.3s ease-in-out;
}

.tt-icon-box .box-title:hover {
  color: var(--color_primary);
}

.tt-icon-box .box-title a {
  color: #0f163b;
}

.tt-icon-box .box-title a:hover {
  color: var(--color_primary);
}

.tt-icon-box .description {
  margin: 0;
}

@media (max-width: 1024px) {
  .tt-icon-box .description br {
    display: none;
  }
}

.tt-icon-box.style-one {
  border-top: 3px solid transparent;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 2px 6px 0px rgba(0, 8, 46, 0.1);
}

.tt-icon-box.style-one .icon-container {
  color: var(--color_primary);
  margin-bottom: 45px;
}

.tt-icon-box.style-one .icon-container svg {
  max-width: 100px;
}

.tt-icon-box.style-one .box-title {
  margin-bottom: 17px;
  font-size: 24px;
  font-size: 1.5em;
}

.tt-icon-box.style-one .more-btn {
  margin-top: 24px;
}

.tt-icon-box.style-one:hover {
  border-color: var(--color_primary);
  box-shadow: 0px -3px 0px 0px rgba(72, 99, 240, 0.004), 0px 40px 30px 0px rgba(0, 8, 46, 0.1);
}

.tt-icon-box.style-two {
  padding: 50px 40px;
  border-radius: 10px;
  border: 2px solid #f5f5f5;
  text-align: center;
  background-color: #fff;
}

.tt-icon-box.style-two .icon-container {
  height: 74px;
}

.tt-icon-box.style-two .icon-container img {
  max-width: 100%;
  height: 74px;
}

.tt-icon-box.style-two .box-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-size: 1.25em;
}

.tt-icon-box.style-two:hover {
  border-color: transparent;
  box-shadow: 0 20px 46px 0 rgba(0, 17, 47, 0.08);
}

.tt-icon-box.style-three {
  text-align: center;
  padding: 0;
  padding: 50px 40px;
  border-radius: 20px;
}

.tt-icon-box.style-three .icon-container {
  max-width: 180px;
  max-height: 130px;
  margin: 0 auto 30px;
}

.tt-icon-box.style-three .icon-container svg,
.tt-icon-box.style-three .icon-container img {
  max-width: 130px;
  height: 80px;
  object-fit: cover;
}

.tt-icon-box.style-three .box-title {
  font-size: 20px;
  font-size: 1.25em;
  margin-bottom: 14px;
}

.tt-icon-box.style-three:hover {
  box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-color: #fff;
}

.tt-icon-box.style-four {
  padding: 0;
  text-align: left;
}

.tt-icon-box.style-four .icon-container {
  width: 45px;
}

.tt-icon-box.style-four .box-title {
  font-size: 18px;
  line-height: 1.4;
}

.tt-icon-box.style-five {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}

.tt-icon-box.style-five .icon-container {
  margin: 0 20px 0 0;
  color: var(--color_primary);
  font-size: 50px;
  width: 35px;
}

.tt-icon-box.style-five .box-content {
  flex: 2;
}

.tt-icon-box.style-five .box-title {
  font-size: 18px;
  font-size: 1.125em;
  margin-bottom: 8px;
}

.tt-icon-box.style-six {
  padding: 50px 40px;
  border-top: 3px solid transparent;
  border-radius: 20px;
}

.tt-icon-box.style-six .icon-container {
  min-height: 90px;
  display: inline-flex;
  align-items: flex-end;
  margin: 0 auto 30px;
}

.tt-icon-box.style-six .icon-container svg,
.tt-icon-box.style-six .icon-container img {
  object-fit: cover;
}

.tt-icon-box.style-six .box-title {
  font-size: 22px;
  font-size: 1.375em;
  margin-bottom: 13px;
}

.tt-icon-box.style-six .more-btn {
  margin-top: 23px;
}

.tt-icon-box.style-six:hover {
  background-color: #fff;
  box-shadow: 0px 6px 50px 0px rgba(0, 13, 49, 0.07);
  border-color: var(--color_primary);
}

.tt-icon-box.style-seven {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.07);
}

.tt-icon-box.style-seven .icon-container {
  margin: 0;
  height: 60px;
  width: 60px;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  display: block;
  margin-right: 20px;
  min-height: auto;
  border-radius: 50px;
  background-color: var(--color_primary);
  color: #fff;
}

.tt-icon-box.style-seven .box-content {
  flex: 2;
}

.tt-icon-box.style-seven .box-title {
  font-size: 16px;
  font-size: 1em;
  margin-bottom: 6px;
  font-weight: 700;
}

.tt-icon-box.style-eight {
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 15, 46, 0.08);
  border-radius: 30px;
  border-top: 3px solid transparent;
  text-align: center;
  padding: 45px 40px;
}

.tt-icon-box.style-eight .icon-container {
  min-height: 60px;
  display: inline-flex;
  align-items: flex-end;
  margin: 0 auto 30px;
}

.tt-icon-box.style-eight .icon-container img {
  height: 74px;
  width: 100%;
}

.tt-icon-box.style-eight .box-title {
  font-size: 24px;
  font-size: 1.5em;
  margin-bottom: 11px;
  font-weight: 700;
}

.tt-icon-box.style-eight .more-btn {
  margin-top: 20px;
}

.tt-icon-box.style-eight:hover {
  border-color: var(--color_primary);
  box-shadow: 0px -3px 0px 0px rgba(25, 98, 246, 0.004), 0px 40px 30px 0px rgba(0, 15, 46, 0.1);
}

.tt-icon-box.style-nine {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}

.tt-icon-box.style-nine .icon-container {
  margin: 0 20px 0 0;
  color: var(--color_primary);
  font-size: 50px;
  width: 50px;
}

.tt-icon-box.style-nine .box-content {
  flex: 2;
}

.tt-icon-box.style-nine .box-title {
  font-size: 20px;
  font-size: 1.25em;
  margin-bottom: 8px;
}

.service-slider-wrapper {
  margin: 0 -20px;
}

@media (max-width: 576px) {
  .service-slider-wrapper {
    margin: 0;
  }
}

.service-slider {
  padding: 0 20px;
  margin: 0 -20px;
}

.service-slider .tt-icon-box {
  margin-bottom: 70px;
}

.service-slider .swiper-pagination-three {
  left: 50% !important;
}

.icon-margin .tt-icon-box.style-one .icon-container {
  margin-bottom: 25px;
}

.down__bg {
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 30px 50px 0px rgba(0, 8, 46, 0.1);
  position: absolute;
  left: 375px;
  top: 146px;
  width: 570px;
  height: 160px;
  z-index: 74;
}

/*--------------------------------------------------------------
## Service
--------------------------------------------------------------*/
.tt-service-box {
  background: #fafafa;
  border-radius: 0.25rem;
  padding: 3rem;
  border: 1px solid rgba(93, 118, 174, 0.15);
}

.tt-service-box .service-header {
  display: flex;
  justify-content: space-between;
}

.tt-service-box .icon-container {
  font-size: 48px;
  font-size: 3em;
  color: var(--color_primary);
  width: 60px;
  margin-bottom: 33px;
}

.tt-service-box .box-sub-title {
  font-size: 14px;
  font-size: 0.875em;
  color: #8a8da1;
  margin-bottom: 8px;
  font-weight: 600;
}

.tt-service-box .box-title {
  font-size: 24px;
  font-size: 1.5em;
  margin-bottom: 18px;
}

.tt-service-box .description {
  margin-bottom: 40px;
}

.tt-service-box .tt-btn {
  border-color: #e5e6e8;
  border-width: 2px;
  color: #0f163b;
  border-radius: 6px;
}

.tt-service-box .tt-btn:hover {
  background-color: var(--color_primary);
  border-color: var(--color_primary);
  color: #fff;
}

.tt-info-box {
  background-color: var(--color_primary);
  padding: 35px 40px;
  border-radius: 10px;
}

.tt-info-box .box-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.tt-info-box .description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.tt-info-box .tt-more-btn {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.tt-info-box .tt-more-btn i {
  vertical-align: -3px;
  font-size: 20px;
  margin-left: 5px;
}

/*--------------------------------------------------------------
## Process Box
--------------------------------------------------------------*/
.tt-process-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  max-width: 550px;
  margin: 0 auto 70px;
}

.tt-process-box:last-child {
  margin: 0 auto 0;
}

.tt-process-box .icon-container {
  position: relative;
  z-index: 1;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 8.75rem;
  width: 8.75rem;
  line-height: 1;
  border-radius: 50%;
  box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
  transition: all 0.5s ease-in-out;
  margin-right: 20px;
  font-size: 44px;
  color: var(--color_primary);
}

.tt-process-box .box-content {
  flex: 2;
}

.tt-process-box .box-content .box-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.tt-process-box .box-content p {
  margin: 0;
}

.tt-process-box.box-align-right {
  text-align: right;
}

.tt-process-box.box-align-right .icon-container {
  order: 1;
  margin: 0 0 0 20px;
}

.tt-process-box .left-border, .tt-process-box .right-border {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
}

.tt-process-box:last-child svg {
  display: none;
}

@media (max-width: 480px) {
  .tt-process-box svg {
    display: none;
  }
}

@media (max-width: 420px) {
  .tt-process-box {
    display: block;
    text-align: center;
    margin: 0 auto 40px;
  }
  .tt-process-box .icon-container {
    margin: 0 auto 40px;
  }
  .tt-process-box.box-align-right {
    text-align: center;
  }
  .tt-process-box.box-align-right .icon-container {
    margin: 0 auto 40px;
  }
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
#newsletter {
  padding: 50px;
  background: #6730e3;
  border-radius: 6px;
}

@media (max-width: 768px) {
  #newsletter {
    padding: 40px 30px;
  }
}

#newsletter .section-heading {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}

#newsletter .section-heading .section-title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  #newsletter .section-heading .section-title {
    font-size: 30px;
  }
}

#newsletter .section-heading .subtitle {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}

.newsletter-form .newsletter-inner {
  display: flex;
  background: #fff;
  border-radius: 30px;
  padding: 5px;
}

.newsletter-form input:not([type='checkbox']):not([type='submit']) {
  border: 0;
  padding: 17px 25px;
  line-height: 19px;
  font-size: 16px;
  height: 50px;
  flex: 1;
  background: transparent;
  margin: 0;
  border-radius: 30px;
}

.newsletter-form input:not([type='checkbox']):not([type='submit']):focus {
  border: 0;
  box-shadow: none;
}

.newsletter-form .newsletter-submit {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  height: 50px;
  background: var(--color_primary);
  border: 0;
  padding: 0 30px;
  border-radius: 30px;
}

.newsletter-form .newsletter-submit .fa-spin {
  display: none;
}

.newsletter-form .newsletter-submit.clicked .fa-spin {
  display: block;
}

.newsletter-form .newsletter-submit.clicked span {
  display: none;
}

.form-result {
  margin-top: 20px;
}

/*--------------------------------------------------------------
## Fun Fact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Faq
--------------------------------------------------------------*/
.faq .card {
  border: 0;
  margin-bottom: 20px;
  background-color: transparent;
}

.faq .card .card-header {
  box-shadow: 0px 10px 30px 0px rgba(6, 11, 36, 0.1);
  border-radius: 10px;
  background: transparent;
  border: 0;
  padding: 0;
}

.faq .card .card-header .btn-link {
  color: var(--color_primary);
  display: block;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 30px;
  width: 100%;
  text-align: left;
  position: relative;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
}

.faq .card .card-header .btn-link:after {
  content: "\e622";
  font-family: 'themify';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.faq .card .card-header .btn-link.collapsed {
  color: #0f163b;
}

.faq .card .card-header .btn-link.collapsed:after {
  content: "\e61a";
}

.faq .card .card-body {
  padding: 30px 30px 20px 30px;
}

.faq .card .card-body p {
  margin: 0;
}

/*--------------------------------------------------------------
## Call to action
--------------------------------------------------------------*/
.cta_part {
  background-color: #ffeaea;
  padding: 85px 75px;
  position: relative;
}

@media (max-width: 576px) {
  .cta_part {
    padding: 35px 20px;
  }
}

.cta_part .cta_part_iner .cta_icon_1 {
  bottom: -71px;
  right: -148px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 576px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 100px;
    right: -15px;
    bottom: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 100px;
    right: -15px;
    bottom: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .cta_part .cta_part_iner .cta_icon_1 {
    max-width: 145px;
    right: -35px;
    bottom: -35px;
  }
}

.cta_part .cta_part_content h5 {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--color_primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta_part .cta_part_content h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 27px;
}

@media (max-width: 767.98px) {
  .cta_part .cta_part_content h2 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta_part .cta_part_content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

.cta_part .cta_part_content .cu_btn {
  margin-top: 30px;
  letter-spacing: 1px;
}

.cta_part .cta_part_img {
  text-align: right;
}

@media (max-width: 767.98px) {
  .cta_part .cta_part_img {
    text-align: center;
    margin-top: 30px;
  }
}

.cta_part.cta_bg {
  padding: 85px 0;
  background-color: #ffeaea;
}

.cta_part.dark_version {
  background-image: -moz-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -webkit-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  background-image: -ms-linear-gradient(0deg, #fe422f 0%, #fe5196 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta_part.dark_version h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .cta_part.dark_version h2 {
    font-size: 30px;
    margin-bottom: 0;
  }
}

.cta_part.dark_version .cu_btn.white_bg {
  color: #2c2c51;
}

.cta_part.dark_version .cu_btn.white_bg:hover {
  border: 1px solid #040911;
  background-color: #040911;
  color: #fff;
}

.cta_style_2 {
  padding: 107px 0 120px;
}

.cta_style_2 .cta_part_content {
  text-align: center;
}

.cta_style_2 .cta_part_content h5 {
  font-size: 16px;
  color: var(--color_primary);
}

.cta_style_2 .cta_part_content h2 {
  font-weight: 700;
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .cta_style_2 .cta_part_content h2 {
    font-size: 25px;
    letter-spacing: 0;
  }
}

.cta_style_2 .cta_part_content .cu_btn {
  display: inline-flex;
  margin-top: 12px;
}

.cta_style_2 .cta_part_content .cu_btn img {
  margin-left: 12px;
}

.cta_style_2.cta_style_2 h5 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}

.cta_style_2.cta_style_2 h2 {
  margin-bottom: 33px;
}

.call-to-action-two {
  background: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hire_section {
  position: relative;
}

@media (min-width: 991px) {
  .hire_section {
    padding: 65px 0 160px;
  }
}

@media (max-width: 991px) {
  .hire_section {
    padding: 0 0 70px;
  }
}

.hire_section .hire_shape_1 {
  position: absolute;
  left: 0;
  bottom: 10%;
}

@media (max-width: 991px) {
  .hire_section .hire_shape_1 {
    display: none;
  }
}

.hire_section .hire_shape_2 {
  position: absolute;
  right: 0;
  bottom: 12%;
}

@media (max-width: 991px) {
  .hire_section .hire_shape_2 {
    display: none;
  }
}

.hire_section .hire_section_content {
  text-align: center;
}

.hire_section .btn_1 {
  margin-top: 41px;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1pt;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .hire_section .btn_1 {
    margin-top: 20px;
  }
}

.hire_section.bark_bg {
  background-color: #051441;
  padding: 120px 0;
}

.hire_section.bark_bg .overlay_effect {
  transform: scaleX(0);
  transform-origin: left;
  transition: .5s;
}

.hire_section.bark_bg .overlay_effect.is_show {
  transform: scaleX(1);
}

.hire_section.bark_bg h2 {
  margin-bottom: 41px;
}

.hire_section.bark_bg .cu_btn {
  background-color: #fff;
  border: 0;
  color: #051441;
}

.hire_section.bark_bg .cu_btn:hover {
  background-color: var(--color_primary);
  color: #fff;
  border: 0;
}

.hire_section.red_bg {
  background-color: #b60000;
  padding: 120px 0;
}

@media (max-width: 767.98px) {
  .hire_section.red_bg {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hire_section.red_bg {
    padding: 80px 0;
  }
}

.hire_section.red_bg .cu_btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #051441;
  margin-top: 41px;
}

.hire_section.red_bg .cu_btn:hover {
  background-color: #2c2c51;
  color: #fff;
  border: 1px solid #2c2c51;
}

@media (max-width: 767.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hire_section.red_bg .cu_btn {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.tt-contact-info {
  padding: 60px 50px;
  background: linear-gradient(40deg, #182ca8 0%, #006aff 100%);
  border-radius: 4px;
}

.tt-contact-info .title {
  font-size: 26px;
  color: #fff;
}

.tt-contact-info .description {
  margin-bottom: 30px;
  color: #fff;
}

.tt-contact-info .tt-contact-info-wrapper {
  display: flex;
}

.tt-contact-info .tt-contact-info-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

.tt-contact-info .tt-contact-info-wrapper .icon-container {
  margin-right: 15px;
  color: #fff;
}

.tt-contact-info .tt-contact-info-wrapper .box-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.tt-contact-info .tt-contact-info-wrapper .info {
  margin: 0;
  color: #b5b5b5;
}

.contact-form .contact-form-title {
  margin-bottom: 30px;
  font-size: 34px;
}

.contact-form input:not([type='checkbox']):not([type='submit']), .contact-form textarea {
  margin-bottom: 20px;
}

.contact-form textarea {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
## Coming Soon
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .count-wrap {
    max-width: 550px;
    margin: 0 auto 40px;
  }
}

.countdown {
  font-weight: 600;
  color: #fff;
  font-size: 50px;
  display: flex;
}

.CountdownContent {
  font-size: 40px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .CountdownContent {
    font-size: 36px;
  }
}

@media (max-width: 420px) {
  .CountdownContent {
    font-size: 26px;
  }
}

.CountdownContent .CountdownLabel {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .CountdownContent .CountdownLabel {
    font-size: 14px;
  }
}

@media (max-width: 412px) {
  .CountdownContent .CountdownLabel {
    font-size: 12px;
  }
}

.counting {
  position: relative;
  margin-right: 33px;
  line-height: 1;
  min-width: 70px;
}

@media (max-width: 991px) {
  .counting {
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .counting {
    min-width: 45px;
    margin: 0 auto;
  }
}

.counting .CountdownSeparator {
  display: none;
}

.coming-soon {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(75deg, #073482, #014cda);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .coming-soon {
    padding: 100px 0;
  }
}

.coming-soon .coming-soon-content {
  position: relative;
  z-index: 3;
}

@media (max-width: 1280px) {
  .coming-soon .coming-soon-content {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .coming-soon .coming-soon-content {
    flex: 100% 0 0;
  }
}

.coming-soon .soon-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 991px) {
  .coming-soon .soon-title {
    font-size: 32px;
  }
}

.coming-soon .newsletter-form {
  max-width: 540px;
  margin: 0 auto;
}

.coming-soon .newsletter-form .newsletter-inner {
  display: flex;
}

.coming-soon .newsletter-form input:not([type='checkbox']):not([type='submit']) {
  border: 0;
  color: #899097;
  padding: 13px 30px;
  max-width: 380px;
  flex: 1;
  margin-right: 20px;
}

.coming-soon .cu_btn {
  min-width: 140px !important;
}

@media (max-width: 576px) {
  .coming-soon .cu_btn {
    min-width: 100px !important;
    padding: 10px 15px;
  }
}

.coming-soon-content .description {
  color: #fff;
  font-size: 18px;
  margin-bottom: 50px;
}

.coming-soon-content .count-wrap {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .coming-soon-content .count-wrap {
    max-width: 440px;
  }
}

@media (max-width: 576px) {
  .coming-soon-content .count-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .coming-soon-content .countdown {
    flex-wrap: wrap;
  }
}

.coming-soon-content .countdown .counting {
  width: 150px;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  color: var(--color_primary);
  text-align: center;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .coming-soon-content .countdown .counting {
    width: 85px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .coming-soon-content .countdown .counting {
    width: 100%;
    margin: 0 0 15px;
  }
}

.coming-soon-content .countdown .counting:last-child {
  margin-right: 0;
}

.coming-soon-content .countdown .counting .CountdownContent {
  margin: 0;
}

.coming-soon-content .countdown .counting .CountdownLabel {
  color: #8a8da1;
}

/*--------------------------------------------------------------
## Image
--------------------------------------------------------------*/
.image-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.image-wrapper .content-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.image-full {
  width: 100%;
}

.popup-play-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 60px;
  width: 60px;
  background: #fff;
  display: block;
  line-height: 64px;
  font-size: 18px;
  border-radius: 50%;
  animation: ripple-white 1s linear infinite;
  color: var(--color_primary);
}

.popup-play-btn i {
  margin-left: 4px;
}

.popup-play-btn:hover {
  background: var(--color_primary);
  color: #fff;
}

.play-button .popup-play-btn {
  height: 100px;
  width: 100px;
  line-height: 100px;
  font-size: 18px;
  text-align: center;
  position: static;
  animation: none;
  transform: translate(0);
  display: inline-block;
}

.play-button .popup-play-btn:before {
  content: '';
  height: 120px;
  width: 120px;
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid rgba(255, 255, 255, 0.302);
  border-radius: 50%;
  -webkit-animation: videoBtnAnim 3s linear infinite;
  animation: videoBtnAnim 3s linear infinite;
  display: block;
}

@keyframes videoBtnAnim {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
## 404 Page
--------------------------------------------------------------*/
.error_page {
  position: relative;
  height: 93vh;
}

.error_page .error-page-content {
  position: relative;
  z-index: 2;
  max-width: 670px;
  margin: 0 auto;
  padding: 0 15px;
}

.error_page .error-page-content .error-image {
  margin-bottom: 40px;
}

.error_page .error-page-content .error-title {
  font-size: 40px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .error_page .error-page-content .error-title {
    font-size: 30px;
  }
}

.error_page .error-page-content p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
}

.error_page .error-page-content .at-btn {
  padding: 12px 40px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
}

.rating-container {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container > input {
  display: none;
}

.rating-container > input + label {
  /* only enough room for the star */
  font-family: 'dashicons';
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: .5em;
  margin-left: -.5em;
}

.rating-container > .star-cb-clear + label:before {
  width: .5em;
}

.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}

.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  background-color: #020941;
}

.site-footer .footer-wrapper {
  padding-top: 115px;
}

.site-footer .widget-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}

@media (min-width: 420px) and (max-width: 575px) {
  .site-footer .widget-area .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.site-footer select {
  color: #5f6065;
}

.site-footer .footer-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.site-footer .site-info {
  position: relative;
  z-index: 1;
}

.site-footer .site-info .site-info-inner {
  padding: 35px 0;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .site-footer .site-info .site-info-inner {
    display: block !important;
    text-align: center;
    padding: 20px 0;
  }
  .site-footer .site-info .site-info-inner .copyright {
    margin-bottom: 10px;
  }
}

.site-footer .site-info .copyright {
  padding: 29px 0 25px;
  text-align: center;
}

.site-footer .site-info .copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .site-info .copyright p a {
  color: #fff;
}

.site-footer .site-info .copyright p a:hover {
  color: var(--color_primary);
}

center {
  display: none;
}

@media (min-width: 992px) {
  .footer-sticky {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: 0 !important;
  }
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  padding: 12px 41px;
  height: auto;
}

input[type="submit"] {
  border: 0;
}

/* Back To Top */
.return-to-top {
  position: fixed;
  bottom: -40px;
  right: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 3%;
  opacity: 0;
  transition: bottom .5s ease, opacity .5s ease;
}

.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  transform: scale(1);
  border-radius: inherit;
  transition: transform .5s ease, opacity .6s ease;
}

.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: inherit;
}

.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0 0 #fff, 0 50px #fff;
  transition: text-shadow .2s ease;
  z-index: 1;
}

.return-to-top:hover:after {
  transform: scale(1.07);
  background: var(--color_primary);
  box-shadow: 0 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
  text-shadow: 0px -50px #fff, 0px 0px #fff;
}

.return-to-top.back-top {
  bottom: 30px;
  opacity: 1;
}

input:not([type='checkbox']):not([type='submit']),
textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 0 30px;
  border: none;
  font-weight: 400;
  outline: 0;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  border: 2px solid #f1f2f5;
}

input:not([type='checkbox']):not([type='submit'])::placeholder,
textarea::placeholder {
  color: #9499a5;
}

input:not([type='checkbox']):not([type='submit']):focus,
textarea:focus {
  border-color: var(--color_primary);
  background: #fff;
}

select {
  width: 100%;
  border: 2px solid #f1f2f5;
  height: 60px;
  border-radius: 30px;
  color: #909090;
  font-size: 15px;
  display: inline-block;
  background-position: right 20px center;
  -moz-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 490.656 490.656' style='enable-background:new 0 0 490.656 490.656;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M487.536,120.445c-4.16-4.16-10.923-4.16-15.083,0L245.317,347.581L18.203,120.445c-4.16-4.16-10.923-4.16-15.083,0 c-4.16,4.16-4.16,10.923,0,15.083l234.667,234.667c2.069,2.091,4.8,3.136,7.531,3.136s5.461-1.045,7.552-3.115l234.667-234.667 C491.696,131.368,491.696,124.627,487.536,120.445z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
}

select:focus {
  outline: 0;
}

.form-submit {
  margin: 0;
}

input {
  height: 60px;
}

textarea {
  height: 160px;
  margin-bottom: 20px;
  padding: 10px 30px;
}

.single_contact_form input {
  height: 60px;
}

.post-password-form input, .post-password-form label {
  margin: 0;
}

.post-password-form input[type="password"] {
  height: 60px;
  border-width: 2px;
  padding: 0 15px;
}

.post-password-form input[type="submit"] {
  background: var(--color_primary);
  color: #fff;
  border: 0;
  height: 60px;
  border-radius: 10px;
}

.post-password-form input[type="submit"]:hover {
  background: #0954ec;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color_primary);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form-result {
  display: none;
}

.faq-form input:not([type='checkbox']):not([type='submit']), .faq-form textarea {
  background: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #0f163b;
  transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
  color: var(--color_primary);
  text-decoration: none;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Primary Menu
--------------------------------------------------------------*/
.site-header {
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.051);
}

.site-header.header-transparent {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.site-header .site-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
}

.site-header .site-logo a {
  font-size: 30px;
  font-weight: 700;
  padding: 22px 0;
  display: block;
  color: #fff;
}

.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.site-header .site-logo .logo-sticky {
  display: none;
}

.site-header .add-menu {
  margin: 0;
  padding: 31px 0;
  list-style: none;
  font-weight: 500;
}

.site-header .add-menu li a {
  color: #fff;
}

.site-header .tt-hamburger {
  width: 24px;
  cursor: pointer;
}

.site-header .tt-hamburger.active {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 992px) {
  .site-header .tt-hamburger {
    display: none;
  }
}

.site-header .tt-hamburger:focus {
  outline: 0;
}

.site-header .tt-hamburger .bar {
  background: #fff;
  height: 2px;
  display: block;
}

.site-header .tt-hamburger .bar:not(:last-child) {
  margin-bottom: 5px;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  backdrop-filter: saturate(1) blur(20px) !important;
}

.header-position .site-header.header-fixed.showed {
  top: 32px;
}

@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo a {
  color: #0f163b;
}

.site-header.header-fixed.showed .site-logo h3 {
  color: #0f163b;
}

.site-header.header-fixed.showed .add-menu li a {
  color: #0f163b;
}

.site-header.header-fixed.showed .tt-hamburger .bar {
  background: #0f163b;
}

@media (min-width: 992px) {
  .site-header .container {
    position: relative;
  }
}

.site-header:not(.mobile-header) .menu-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
}

.site-header:not(.mobile-header) .site-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header:not(.mobile-header) .site-main-menu > li {
  padding: 24px 0;
}

.site-header:not(.mobile-header) .site-main-menu > li > a {
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.site-header:not(.mobile-header) .site-main-menu > li > a:after {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.site-header:not(.mobile-header) .site-main-menu > li > a:hover {
  color: #fff;
}

.site-header:not(.mobile-header) .site-main-menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu {
  left: auto;
  right: 0;
}

.site-header:not(.mobile-header) .site-main-menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu li ul {
  right: 100%;
}

.site-header:not(.mobile-header) .site-main-menu > li:not(.mega-menu) {
  position: relative;
}

.menu-light .site-header:not(.mobile-header) .site-main-menu > li > a {
  color: #fff;
}

.site-header:not(.mobile-header) .site-main-menu > li.full_width_menu {
  position: static;
}

.site-header:not(.mobile-header) .site-main-menu > li.full_width_menu > .sub-menu {
  width: 100%;
  padding: 0 !important;
}

.site-header:not(.mobile-header) .site-main-menu > li.half_width_menu > .sub-menu {
  width: 700px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 !important;
}

.site-header:not(.mobile-header) .site-main-menu li {
  display: inline-block;
}

.site-header:not(.mobile-header) .site-main-menu li:not(:last-child) {
  margin-right: 40px;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children > a:after {
  content: "\e61a";
  font-family: 'themify';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu {
  margin: 0;
  padding: 15px 0;
  position: absolute;
  top: 115%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: .25rem;
  min-width: 220px;
  box-shadow: 0 5px 10px #14303a15;
  z-index: 2222;
  display: block !important;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu li a {
  font-size: 14px;
  padding: 7px 25px;
  display: block;
  line-height: 1.5;
  color: #464A56;
  font-weight: 500;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu li a:hover {
  color: var(--color_primary);
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu li .sub-menu {
  padding: 15px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 220px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 10px #14303a15;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children .sub-menu li:hover ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.site-header:not(.mobile-header) .site-main-menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.site-header:not(.mobile-header) .site-main-menu .mega-menu-wrapper {
  min-width: 320px;
}

.site-header:not(.mobile-header) .site-main-menu .mega-menu-wrapper.full-width_menu {
  max-width: 1170px;
  width: 100%;
}

.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
  width: auto;
}

.site-header:not(.mobile-header).submenu-align-right .menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu {
  left: auto;
  right: 0;
}

.site-header:not(.mobile-header).submenu-align-right .menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu li ul {
  right: 100%;
}

.site-header:not(.mobile-header) .nav-right {
  margin-left: 50px;
}

.site-header:not(.mobile-header) .nav-right .nav-btn {
  padding: 13px 31px;
  min-width: auto;
  border-radius: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 500;
}

.site-header:not(.mobile-header) .nav-right .nav-btn:hover {
  color: var(--color_primary);
  background-color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  backdrop-filter: saturate(1) blur(20px) !important;
}

.header-position .site-header.header-fixed.showed {
  top: 32px;
}

@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}

.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
  background: #0f163b;
}

.site-header.header-fixed.showed .site-main-menu > li {
  padding: 27px 0;
}

.site-header.header-fixed.showed .site-main-menu li a {
  color: #0f163b;
}

.site-header.header-fixed.showed .site-main-menu li a:hover {
  color: var(--color_primary);
}

.site-header.header-fixed.showed .nav-right {
  margin-left: 50px;
}

.site-header.header-fixed.showed .nav-right .nav-btn {
  min-width: auto;
  background-color: var(--color_primary);
  border-color: var(--color_primary);
  line-height: 1;
  box-shadow: none;
  color: #fff;
}

.site-header.header-fixed.showed .nav-right .nav-btn:hover {
  color: var(--color_primary);
  background-color: transparent;
}

.error404 .site-header {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.error404 .site-header:not(.mobile-header) .site-logo .logo-sticky {
  display: block;
}

.error404 .site-header:not(.mobile-header) .site-logo .main-logo {
  display: none;
}

.error404 .site-header .site-main-menu > li > a {
  color: #0f163b;
}

.error404 .site-header .site-main-menu > li > a:hover {
  color: var(--color_primary);
}

.error404 .site-header .nav-right .nav-btn {
  border-color: #f1f2f5;
  color: #686a74;
}

.error404 .site-header .nav-right .nav-btn:hover {
  color: #fff;
  background: var(--color_primary);
  border-color: var(--color_primary);
}

.error404 .site-header.mobile-header .site-logo .main-logo {
  display: none;
}

.error404 .site-header.mobile-header .site-logo .logo-sticky {
  display: block;
}

.error404 .tt-hamburger .bar {
  background: #0f163b;
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.menu-trigger {
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: 0px solid transparent;
}

@media (max-width: 991px) {
  .menu-trigger {
    justify-content: center;
    display: block !important;
  }
}

.menu-trigger .dot_icon {
  display: flex;
  flex-wrap: wrap;
  width: 24px;
  height: 24px;
  margin: -2px;
  overflow: hidden;
}

.menu-trigger .dot_icon .dot {
  width: 4px;
  height: 4px;
  background: #0f163b;
  margin: 2px;
  transition: all 0.3s linear;
}

.menu-light .menu-trigger .dot_icon .dot {
  background: #fff;
}

.menu-trigger:hover .dot_icon .dot:nth-child(odd) {
  transform: translate(8px, 8px);
}

.menu-trigger:hover .dot_icon .dot:nth-child(5) {
  opacity: 0;
}

#site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}

.close-menu {
  height: 50px;
  width: 50px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  position: absolute;
  top: 25px;
  left: 20px;
  color: #051441;
}

.menu {
  list-style: none;
}

.menu ul {
  list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .site-header {
    height: auto;
    /*--------------------------------------------------------------
		### Main Nav
		--------------------------------------------------------------*/
  }
  .site-header .site-logo .logo-sticky {
    display: none;
  }
  .site-header .tt-hamburger {
    display: block;
  }
  .site-header.header-fixed.showed .logo-sticky {
    display: block;
  }
  .site-header.header-fixed.showed .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
  }
  .site-header .site-logo a {
    padding: 13px 0;
  }
  .site-header .nav-right {
    display: none;
  }
  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 400px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding: 94px 0;
    left: -100px;
    transition-duration: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
  }
  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}

@media (max-width: 991px) and (max-width: 780px) {
  .header-position .site-header .main-nav-container {
    top: 46px;
  }
}

@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav-container.open {
    opacity: 1;
    left: 0;
    visibility: visible;
  }
  .site-header .main-nav-container li {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
  }
  .site-header .main-nav-container li a {
    font-size: 16px;
    color: #0f163b;
    position: relative;
    z-index: 1;
    padding: 8px 25px;
    display: block;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 400;
    border-left: 2px solid transparent;
  }
  .site-header .main-nav-container li.menu-item-has-children > a {
    position: relative;
  }
  .site-header .main-nav-container li.menu-item-has-children > a:after {
    content: "\e61a";
    font-family: 'themify';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 12px;
  }
  .site-header .main-nav-container li.menu-item-has-children > a.active:after {
    content: "\e622";
  }
  .site-header .main-nav-container li.menu-item-has-children li a {
    font-size: 16px;
  }
  .site-header .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
    background: var(--color_primary);
  }
  .header-position .site-header.header-fixed.showed .main-nav-container {
    top: 0;
  }
  .site-header .main-nav {
    position: static;
    z-index: 3333;
    line-height: 1.2;
  }
  .site-header .main-nav .site-main-menu {
    padding-left: 0;
    list-style: none;
  }
  .site-header .main-nav .site-main-menu ul {
    list-style: none;
  }
  .site-header .main-nav .site-main-menu ul li {
    padding: 0;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }
  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }
  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }
  .site-header .main-nav .sub-menu li.active a.active .ti-plus {
    color: var(--color_primary);
  }
  .site-header .main-nav .sub-menu li.current-menu-item a.active {
    color: var(--color_primary);
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: var(--color_primary);
    background: #f8f9fa;
    border-color: var(--color_primary);
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-bottom: 0;
  }
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }
  .site-header .main-nav .site-logo a {
    font-size: 40px;
  }
  .site-header .main-nav .menu,
  .site-header .main-nav .menu ul {
    list-style: none;
  }
  .site-header .main-nav .nav-item:before,
  .site-header .main-nav .nav-item.current-menu-item:before,
  .site-header .main-nav .nav-item.current-menu-ancestor:before {
    background-color: var(--color_primary);
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: var(--color_primary);
  }
  .site-header .main-nav .nav-right .cu_btn {
    padding: 13px 26px;
    min-width: auto;
    margin-top: 0;
  }
  .site-header .main-nav.hidden {
    display: none;
  }
}

@media screen and (max-width: 991px) and (max-width: 1024px) {
  .site-header .main-nav .close-menu {
    display: block;
  }
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

.tt-menu-item {
  transition: all 0.3s ease-in-out;
  border-radius: 0.375rem;
}

.tt-menu-item .description {
  margin: 0;
}

.tt-menu-item .menu-link {
  display: block;
  padding: 0 !important;
}

.tt-menu-item .wrapper {
  padding: 18px 15px;
}

.tt-menu-item.style-one {
  display: block;
  color: #464646;
  border-radius: 0.375rem;
}

.tt-menu-item.style-one .icon-container {
  font-size: 18px;
}

.tt-menu-item.style-one .icon-container img {
  height: 22px;
}

.tt-menu-item.style-one .description {
  color: #8392a5;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.tt-menu-item.style-one:hover {
  background-color: #fafafa;
}

.tt-menu-item.style-two .wrapper {
  display: flex;
  align-items: center;
}

.tt-menu-item.style-two .wrapper .icon-container {
  margin-right: 0.75rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  flex: 0 0 2.5rem;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 50%;
}

.tt-menu-item.style-two .wrapper .description {
  color: #8392a5;
}

.tt-menu-item.style-two .wrapper .box-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3rem;
  margin: 0;
}

.tt-menu-item.style-two:hover .box-title {
  color: var(--color_primary);
}

.tt-menu-item.style-two:hover {
  background-color: #fafafa;
}

.tt-menu-item.style-three .wrapper {
  display: flex;
  align-items: center;
}

.tt-menu-item.style-three .wrapper .icon-container {
  font-size: 16px;
  color: var(--color_primary);
  margin-right: 10px;
}

.tt-menu-item.style-three .wrapper .description {
  color: #8392a5;
}

.tt-menu-item.style-three .wrapper .box-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3rem;
  margin: 0;
}

.tt-menu-item.style-three .top-wrapper {
  display: flex;
}

.tt-menu-item.style-three:hover {
  background-color: #fafafa;
}

.tt-menu-item.style-four .wrapper {
  display: flex;
  align-items: center;
}

.tt-menu-item.style-four .wrapper .icon-container {
  margin-right: 10px;
  max-width: 2.5rem;
  color: var(--color_primary);
  font-size: 20px;
}

.tt-menu-item.style-four .wrapper .description {
  color: #8392a5;
}

.tt-menu-item.style-four .wrapper .box-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3rem;
  margin: 0;
}

.tt-menu-item.style-four:hover .box-title {
  color: var(--color_primary);
}

.tt-menu-item.style-four:hover {
  background-color: #fafafa;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  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;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875em;
  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;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.alignright.size-full {
  margin-bottom: 60px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.content-area {
  padding: 120px 0;
  min-height: 35vh;
}

@media (max-width: 991px) {
  .content-area {
    padding: 80px 0;
  }
}

.blog-archive-wrapper {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .blog-archive-wrapper {
    padding: 80px 0;
  }
}

.sidebar_left {
  flex-direction: row-reverse;
}

.page_404_wrapper .banner_404_text {
  max-width: 500px;
  margin: 0 auto 40px;
}

.page_404_wrapper .search_result_form {
  max-width: 400px;
  margin: 0 auto 30px;
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #01064a 0%, #104ac1 100%);
}

@media (max-width: 1024px) {
  .page-header {
    height: 350px !important;
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 350px !important;
  }
}

.page-header .page-header_wrapper, .page-header .single-post-header {
  position: relative;
  z-index: 22;
}

.page-header .page-header_wrapper {
  margin-top: 75px;
}

.page-header .single-post-header {
  margin-top: 67px;
}

.page-header .page-header_title {
  font-size: 50px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #fff;
}

@media (max-width: 991px) {
  .page-header .page-header_title {
    font-size: 35px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .page-header .page-header_title {
    font-size: 48px !important;
  }
}

.page-header .breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumbs a {
  color: #fff;
}

.page-header .breadcrumbs a:hover {
  color: #fff;
}

.page-header .breadcrumbs .separator {
  font-size: 10px;
  display: inline-block;
  margin: 0 10px;
}

.page-header .right-shape-image {
  position: absolute;
  right: 0;
  top: 80%;
  width: 370px;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .page-header .right-shape-image {
    display: none;
  }
}

.bg-pattern {
  position: absolute;
  right: 0;
  top: 0;
}

.menu-transparent ~ .page-header .page-header_wrapper {
  margin-top: 85px;
}

.single-post-header-bg {
  height: 600px;
}

/*--------------------------------------------------------------
## Middle Area
--------------------------------------------------------------*/
#header-middle-area > div {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 991.98px) {
  #header-middle-area > div {
    padding: 10px 0;
  }
  #header-middle-area #middle-logo {
    margin-bottom: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sideber Content
--------------------------------------------------------------*/
.sidebar_left .col-lg-4 {
  order: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget:not(:last-child) {
  margin-bottom: 40px;
}

.widget .widget-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget ul li {
  position: relative;
}

.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget ul li a {
  color: #5f6065;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed #dcdcdc;
}

.widget ul li a .post-count {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.widget ul li a:hover {
  color: var(--color_primary);
}

.widget ul li a:hover .post-count {
  color: var(--color_primary);
}

.widget ul li:last-child a {
  border-bottom: none;
}

.sidebar .widget {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #f1f2f5;
  background: #f1f2f5;
}

.sidebar .widget .widget-title {
  position: relative;
  padding-bottom: 15px;
}

.sidebar .widget .widget-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color_primary);
}

.sidebar .widget ul ul {
  padding-left: 20px;
}

.sidebar .widget ul li {
  position: relative;
}

.sidebar .widget ul li a {
  padding-left: 20px;
}

.sidebar .widget ul li a:before {
  content: "\35";
  font-family: eleganticons;
  position: absolute;
  left: -5px;
  top: 12px;
  font-size: 20px;
  line-height: 1;
}

.sidebar .widget ul li:first-child {
  padding-top: 0 !important;
}

.sidebar .widget ul li:first-child:before {
  top: 2px;
}

.sidebar .widget.widget_search {
  padding: 0;
  border: 0;
}

.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
}

.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_product_categories li,
.widget_rss li,
.widget_pages li,
.widget_nav_menu li {
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
}

.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  border-bottom: 0;
}

.widget_recent_entries li .children,
.widget_recent_comments li .children,
.widget_archive li .children,
.widget_categories li .children,
.widget_meta li .children,
.widget_product_categories li .children,
.widget_rss li .children,
.widget_pages li .children,
.widget_nav_menu li .children {
  margin-top: 5px;
  padding-left: 10px;
}

.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  margin-bottom: 0;
}

.widget_recent_entries a,
.widget_recent_comments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_product_categories a,
.widget_rss a,
.widget_pages a,
.widget_nav_menu a {
  display: block;
  font-size: inherit;
  font-family: inherit;
}

.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.widget_meta a:hover,
.widget_product_categories a:hover,
.widget_rss a:hover,
.widget_pages a:hover,
.widget_nav_menu a:hover {
  color: var(--color_primary);
}

.widget_recent_comments ul {
  margin-top: 10px;
}

.widget_rss ul li {
  padding-left: 0 !important;
  margin-bottom: 25px;
}

.widget_rss ul li:before {
  display: none;
}

.widget_rss ul li .rsswidget {
  font-weight: 600;
  color: #051441;
  line-height: 1.4;
}

.widget_rss ul li .rssSummary {
  color: #051441;
  line-height: 1.4;
}

.widget_rss ul li .rss-date {
  margin-bottom: 5px;
  display: block;
}

.widget_rss ul li cite {
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}

.widget_rss a {
  border-bottom: 0 !important;
  display: inline-block;
}

.widget_pages .sub-menu,
.widget_nav_menu .sub-menu {
  padding-left: 15px !important;
}

.widget_pages .sub-menu > li,
.widget_nav_menu .sub-menu > li {
  border-bottom: 0;
}

.widget_categories li,
.widget_product_categories li {
  margin: 0;
  padding: 0;
  position: relative;
}

.widget_categories a,
.widget_product_categories a {
  display: block;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.widget_recent_comments .recentcomments {
  position: relative;
  padding-left: 90px !important;
  word-break: break-word;
  display: inline-block;
  border-top: 0 !important;
  width: 100%;
  padding-bottom: 10px;
  min-height: 90px;
}

.widget_recent_comments .recentcomments:first-child {
  padding-top: 0;
}

.widget_recent_comments .recentcomments a {
  line-height: 30px;
  border-bottom: 0 !important;
  padding-left: 0 !important;
  font-weight: 400;
}

.widget_recent_comments .recentcomments a:before {
  display: none;
}

.widget_recent_comments .recentcomments:before {
  content: '\77' !important;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "ElegantIcons";
  height: 70px;
  width: 70px;
  line-height: 68px !important;
  text-align: center;
  border-radius: 50%;
  font-size: 22px !important;
  border: 2px solid #e7e7eb;
  color: var(--color_primary);
}

.widget_recent_comments .recentcomments:first-child:before {
  top: 0;
}

.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}

.widget_recent_comments .recentcomments a {
  display: inline-block;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 14px;
}

.widget_calendar td,
.widget_calendar th {
  padding: 10px 0;
  text-align: center;
  min-width: auto;
}

.widget_calendar td#today {
  background: var(--color_primary);
  color: #fff;
  border-radius: 3px;
}

.widget_calendar td#today a {
  color: #fff;
}

@media (max-width: 991.98px) {
  .page-content .widget {
    margin: 0 0 52px;
  }
}

@media (max-width: 767.98px) {
  .page-content .widget {
    margin: 0 0 32px;
  }
  .page-sidebar {
    margin-bottom: 50px;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content {
    padding-right: 30px;
    border: 1px solid #eee;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content:after {
    display: none;
  }
  .single-post .page-main-content {
    padding-bottom: 20px;
  }
}

.tagcloud a {
  font-size: inherit !important;
  display: inline-block;
  line-height: 1.7;
  background: #f8fcff;
}

.tagcloud a:hover {
  color: var(--color_primary);
}

.tagcloud .tagcloud {
  margin-top: 20px;
}

/* Recent Post */
.qhost-widget-recent-posts {
  display: flex;
  flex-wrap: wrap;
}

.qhost-widget-recent-posts:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 18px;
  border-bottom: 1px dashed #cccdd1;
}

.qhost-widget-recent-posts .recent-posts-image_wrapper {
  width: 70px;
  height: 70px;
  margin-right: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.qhost-widget-recent-posts .recent-posts-image_wrapper img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.qhost-widget-recent-posts .recent-posts-content_wrapper {
  flex: 1;
}

.qhost-widget-recent-posts .post-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.3;
}

.qhost-widget-recent-posts .post-title a {
  color: #0f163b;
  line-height: 1.2;
}

.qhost-widget-recent-posts .post-title a:hover {
  color: var(--color_primary);
}

.qhost-widget-recent-posts .posted-on {
  color: #777983;
  font-size: 16px;
}

.qhost-widget-recent-posts .posted-on a {
  color: #777983;
}

.about-widget_wrapper {
  max-width: 290px;
}

.about-widget_wrapper p {
  color: #fff;
  margin-bottom: 20px;
}

.about-widget_wrapper .footer-logo {
  margin-bottom: 35px;
}

.about-widget_wrapper .footer-logo a {
  display: block;
  max-width: 150px;
}

.about-widget_wrapper .footer-logo a img {
  height: 52px;
}

/* Tags */
.tagcloud {
  color: #2b2350;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}

.sidebar .tagcloud {
  margin-right: 0;
}

.tagcloud a {
  background-color: rgba(25, 98, 246, 0.059);
  color: var(--color_primary);
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px !important;
  text-transform: capitalize;
  margin: 0 4px 10px 0;
  padding: 11px 19px;
  line-height: 1;
}

.tagcloud a:hover {
  background: var(--color_primary);
  color: #fff;
  position: relative;
  z-index: 2;
}

.site-footer .widget-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.site-footer .widget-title:after {
  display: none;
}

.site-footer .wp-caption .wp-caption-text {
  color: rgba(255, 255, 255, 0.502);
}

.site-footer .calendar_wrap caption {
  color: #fff;
  background: #0c3384;
}

.site-footer table {
  border-color: rgba(255, 255, 255, 0.102);
}

.site-footer table thead {
  background: #092869;
}

.site-footer .widget_calendar td, .site-footer .widget_calendar th {
  color: rgba(255, 255, 255, 0.502);
}

.site-footer .widget_search .search-form input {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.302);
  color: #fff;
}

.site-footer .widget_search .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .widget_search .search-form .search-submit {
  color: #fff;
}

.site-footer .widget_search .search-form .search-submit:hover {
  color: #fff;
}

.site-footer .widget {
  margin-bottom: 70px;
}

.site-footer .widget .footer-logo {
  margin-bottom: 22px;
}

.site-footer .widget .about_text {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.502);
}

.site-footer .widget ul li {
  color: rgba(255, 255, 255, 0.502);
  border: none;
  padding: 0;
  margin-bottom: 9px;
}

.site-footer .widget ul li a {
  color: rgba(255, 255, 255, 0.502);
  font-size: 15px;
  position: relative;
  display: block;
  font-weight: 400;
  padding: 0;
  border-bottom: 0;
  display: inline-block;
}

.site-footer .widget ul li a:hover {
  color: #fff;
}

.site-footer .widget ul li a:hover .post-count {
  color: #fff;
}

.site-footer .widget ul.menu li {
  border-bottom: 0;
}

.site-footer .widget ul.menu li:not(:last-child) {
  margin-bottom: 14px;
}

.site-footer .widget ul.menu li a {
  padding: 0;
}

.site-footer .widget ul.menu li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 1px;
  width: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.site-footer .widget ul.menu li a:hover {
  color: #fff;
}

.site-footer .widget ul.menu li a:hover:after {
  width: 100%;
}

.site-footer .widget ul.menu li .sub-menu {
  padding-left: 14px;
}

.site-footer .widget ul.menu li .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .site-footer .widget {
    margin-bottom: 60px;
  }
}

.site-footer .widget .footer-social-link {
  margin-top: 30px;
}

.site-footer .widget .footer-social-link li {
  display: inline-block;
  border-bottom: 0;
}

.site-footer .widget .footer-social-link li:not(:last-child) {
  margin-right: 7px;
}

.site-footer .widget .footer-social-link li a i {
  height: 40px;
  width: 40px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease-in-out;
  background: var(--color_primary);
  display: block;
}

.site-footer .widget .footer-social-link li a i.ti-facebook {
  background: #4267b2;
}

.site-footer .widget .footer-social-link li a i.ti-twitter-alt {
  background: #1da1f2;
}

.site-footer .widget .footer-social-link li a i.ti-pinterest {
  background: #e60023;
}

.site-footer .widget .footer-social-link li a i.ti-linkedin {
  background: #0073b1;
}

.site-footer .widget .footer-social-link li a i.ti-dribbble {
  background: #ea4c89;
}

.site-footer .widget .footer-social-link li a i:hover {
  opacity: 0.9;
}

.site-footer .widget .footer-social-link li a:hover {
  color: #fff;
}

.site-footer .widget_recent_comments .recentcomments:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer .tagcloud a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.502);
}

.site-footer .tagcloud a:hover {
  color: #fff;
  background: var(--color_primary);
  border-color: var(--color_primary);
}

.site-footer select {
  border-color: rgba(255, 255, 255, 0.302);
}

.site-footer .widget_rss a {
  color: #fff;
}

.site-footer .widget_rss ul li .rssSummary {
  color: rgba(255, 255, 255, 0.305);
}

.site-footer .textwidget p {
  color: rgba(255, 255, 255, 0.502);
}

.site-footer .calendar_wrap table tr a, .site-footer .calendar_wrap table td a {
  color: #fff;
}

.site-footer nav.wp-calendar-nav {
  background: #0c3384;
}

.site-footer nav.wp-calendar-nav a {
  color: rgba(255, 255, 255, 0.502);
}

.site-footer nav.wp-calendar-nav a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .site-footer .footer-wrapper {
    padding-top: 100px !important;
  }
}

.site-footer .widget_recent_entries li .children,
.site-footer .widget_recent_comments li .children,
.site-footer .widget_archive li .children,
.site-footer .widget_categories li .children,
.site-footer .widget_meta li .children,
.site-footer .widget_product_categories li .children,
.site-footer .widget_rss li .children,
.site-footer .widget_pages li .children,
.site-footer .widget_nav_menu li .children {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .sidebar-container {
    padding-left: 15px !important;
  }
  .sidebar {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.blog-list .post.sticky {
  display: block;
  border-color: var(--color_primary);
}

.blog-list .post.sticky .blog-content .entry-title a {
  color: var(--color_primary);
}

.updated:not(.published) {
  display: none;
}

.no-results .page-content {
  padding: 50px 0 120px;
  text-align: left;
}

@media (max-width: 991px) {
  .no-results .page-content {
    padding: 50px 0 80px;
  }
}

.page-content,
.entry-content,
.entry-summary {
  word-break: break-word;
}

.page-content:after,
.entry-content:after,
.entry-summary:after {
  content: '';
  clear: both;
  display: block;
}

.page-header .page-title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.page-content {
  padding: 120px 0;
}

.page-template-default .page-content {
  padding: 114px 0 97px;
}

.page-template-default .page-content .comments-area {
  padding: 34px 0 23px;
}

.page-template-default .page-content .page-links {
  margin-bottom: 20px;
}

.blog-post-archive {
  padding: 120px 0;
}

.search-no-results .page-content .page-content {
  padding: 20px 0 0;
}

.post-author {
  font-weight: 600;
  color: #0f163b;
  display: block;
}

.post-author img {
  border-radius: 50% !important;
  margin-right: 5px;
}

.post-author:hover {
  color: #6730e3;
}

#post-pagination {
  margin-top: 60px;
}

.post-wrapper.blog-masonry {
  width: calc(100% + 30px);
}

.post-wrapper.blog-masonry .post-item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}

.post-wrapper.blog-masonry.column-3 .post-item {
  width: calc(33.33% - 30px);
}

.post-wrapper .post-item {
  margin-bottom: 60px;
}

.post-grid .post-thumbnail,
.post-grid .post-image {
  border-radius: 4px;
  background-color: #9cc2f7;
  overflow: hidden;
  display: block;
}

.post-grid .post-thumbnail img,
.post-grid .post-image img {
  transition: all 0.4s ease-in-out;
}

.post-grid .blog-content {
  padding-top: 11px;
  position: relative;
}

.post-grid .blog-content .has-background-dim .wp-block-cover-text {
  color: #fff;
}

.post-grid .blog-content .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.post-grid .blog-content .post-meta-wrapper .post-cat a {
  padding: 3px 20px;
  background: rgba(25, 98, 246, 0.078);
  color: var(--color_primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.post-grid .blog-content .post-meta-wrapper .post-cat a:hover {
  color: #fff;
  background: var(--color_primary);
}

.post-grid .blog-content .entry-title {
  margin: 10px 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.post-grid .blog-content .entry-title a {
  color: #2c2c51;
}

.post-grid .blog-content .entry-title a:hover {
  color: var(--color_primary);
}

.post-grid .blog-content .blog-footer .post-meta {
  display: flex;
  justify-content: space-between;
}

.post-grid .blog-content .post-meta li:not(:last-child):after {
  top: 50%;
}

.post-grid:hover img {
  transform: scale(1.07);
}

.post-grid.style-two {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.post-grid.style-two .post-thumbnail,
.post-grid.style-two .feature-image,
.post-grid.style-two .feature-image img,
.post-grid.style-two .post-image {
  border-radius: 0;
}

.post-grid.style-two .entry-meta a,
.post-grid.style-two .post-categories a {
  font-weight: 500;
}

.post-grid.style-two .blog-content {
  padding: 20px 30px 30px;
}

.post-grid.post-single .blog-content {
  padding: 0;
}

.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}

.post-meta li {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  color: #777983;
}

.post-meta li:not(:last-child) {
  margin-right: 15px;
}

.post-meta li i {
  margin-right: 8px;
  color: var(--color_primary);
}

.post-meta li a {
  margin: 0;
}

@media (max-width: 576px) {
  .post-meta li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.post-meta li .author {
  margin-left: 5px;
}

.post-meta li .author a {
  color: #50658e;
}

.post-meta li .author a:hover {
  color: var(--color_primary);
}

.post-meta li a {
  color: #8a8da1;
}

.post-meta li a:hover {
  color: var(--color_primary);
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-categories li {
  display: inline-block;
  position: relative;
}

.post-categories li:not(:last-child) a:after {
  content: '/';
  position: absolute;
  right: -15px;
  top: 0;
}

.entry-meta a,
.post-categories a {
  color: var(--color_primary);
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 400;
}

.entry-meta a:not(:last-child):after,
.post-categories a:not(:last-child):after {
  content: '/';
  position: absolute;
  right: -15px;
  top: 0;
}

.blog-posts-list .blog-post-list {
  overflow: hidden;
}

.blog-posts-list .blog-post-list:not(:last-child) {
  margin-bottom: 50px;
}

/** Blog List */
.blog-post-list {
  width: 100%;
}

.blog-post-list .post-thumbnail {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
}

.blog-post-list .post-thumbnail img {
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.blog-post-list .post-thumbnail:hover img {
  transform: scale(1.05);
}

.blog-post-list .entry-header {
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .blog-post-list .blog-content {
    padding: 24px 30px 30px;
  }
}

.blog-post-list .entry-content .entry-title {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-post-list .entry-content .entry-title a {
  color: #0f163b;
}

.blog-post-list .entry-content .entry-title a:hover {
  color: var(--color_primary);
}

.blog-post-list .entry-content p {
  margin-bottom: 24px;
}

.blog-post-list.sticky {
  box-shadow: none;
}

.blog-post-list.sticky .post-thumbnail {
  margin-bottom: 0;
}

.blog-post-list.sticky .blog-content {
  background: #F2F4F8;
}

.blog-post-list.sticky .entry-content .entry-title a {
  color: var(--color_primary);
}

.blog-post-list.sticky .entry-content .entry-title a:hover {
  color: var(--color_primary);
}

.blog-post-list .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-list .blog-footer .read-more {
  position: relative;
  color: #0f163b;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.blog-post-list .blog-footer .read-more i {
  font-size: 23px;
  transition: all 0.3s ease-in-out;
  color: #777983;
  margin-left: 3px;
}

.blog-post-list .blog-footer .read-more:hover {
  color: var(--color_primary);
}

.blog-post-list .blog-footer .read-more:hover i {
  transform: translateX(3px);
  color: var(--color_primary);
}

.blog-post-list .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-list .post-meta-wrapper .post-meta {
  color: #8a8da1;
  font-size: 15px;
  line-height: 1;
  padding: 0;
}

@media (max-width: 991px) {
  .blog-post-list .post-meta-wrapper .post-meta {
    margin-bottom: 5px;
  }
}

.blog-post-list .post-meta-wrapper .post-meta i {
  display: inline-block;
  vertical-align: -2px;
  line-height: 1;
  color: var(--color_primary);
}

.blog-post-list .post-meta-wrapper .post-meta a {
  color: #8a8da1;
  display: inline-block;
}

.blog-post-list .post-meta-wrapper .post-meta a:hover {
  color: var(--color_primary);
}

.post-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-meta-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #8a8da1;
  font-weight: 400;
}

.post-meta-list li i {
  margin-right: 10px;
  color: #5c6f96;
  font-size: 14px;
}

.post-meta-list li a {
  color: #8a8da1;
  font-weight: 400;
  font-size: 16px;
}

.post-meta-list li a:hover {
  color: var(--color_primary);
}

.share_social-wpapper {
  display: flex;
  align-items: center;
}

.share_social-wpapper .share-text {
  color: #0f163b;
  font-weight: 600;
}

.social-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.social-share-link li:not(:last-child) {
  margin-right: 10px;
}

.social-share-link li a {
  background-color: transparent;
  display: inline-block;
  font-size: 14px;
  color: #848ca5;
}

.social-share-link li a i {
  height: 40px;
  width: 40px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease-in-out;
  background: var(--color_primary);
  font-size: 16px;
}

.social-share-link li a i.fa-facebook-f {
  background: #4267b2;
}

.social-share-link li a i.fa-twitter {
  background: #1da1f2;
}

.social-share-link li a i.fa-pinterest-p {
  background: #e60023;
}

.social-share-link li a i.fa-linkedin-in {
  background: #0073b1;
}

.social-share-link li a i.fa-dribbble {
  background: #ea4c89;
}

.social-share-link li a i:hover {
  opacity: 0.9;
}

.social-share-link li a:hover {
  color: #fff;
}

blockquote {
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
  padding: 70px 40px 42px;
  position: relative;
  margin: 54px 0 52px;
  overflow: hidden;
  border-radius: 10px;
  border-left: 3px solid var(--color_primary);
}

blockquote p {
  font-size: 18px;
  color: #0f163b;
  margin-bottom: 0;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
}

blockquote cite {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #0f163b;
  padding-top: 10px;
  display: block;
}

blockquote:before {
  content: '';
  position: absolute;
  left: 40px;
  top: 20px;
  background-color: var(--color_primary);
  -webkit-mask-image: url(../images/quote-2.svg);
  mask-image: url(../images/quote-2.svg);
  -webkit-mask-size: cover;
  width: 35px;
  height: 35px;
  z-index: 1;
  background-repeat: no-repeat;
  opacity: 0.2;
}

blockquote:after {
  content: '';
  position: absolute;
  background-color: var(--color_primary);
  -webkit-mask-image: url(../images/quote.svg);
  mask-image: url(../images/quote.svg);
  -webkit-mask-size: cover;
  width: 104px;
  height: 100px;
  z-index: 1;
  right: 40px;
  bottom: -25px;
  opacity: 0.1;
  background-repeat: no-repeat;
}

.blog-container {
  padding: 120px 0;
}

.single-post .page-content {
  padding: 0;
}

.blog .page-content {
  padding: 120px 0;
}

.post-grid .feature-image {
  overflow: hidden;
}

.post-grid .feature-image img {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .single-post-header-bg {
    min-height: 400px !important;
    height: auto !important;
  }
}

.single-post-header .single-post-title {
  color: #fff;
  font-size: 50px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .single-post-header .single-post-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .single-post-header .single-post-title {
    font-size: 34px;
  }
}

.single-post-header .post-meta li {
  color: rgba(255, 255, 255, 0.8);
}

.single-post-header .post-meta li i {
  color: #fff;
}

.single-post-header .post-meta li a {
  color: rgba(255, 255, 255, 0.8);
}

.single-post-header .post-meta li a:hover {
  color: #fff;
}

.post-single {
  margin-bottom: 0;
}

.post-single .feature-image {
  margin-bottom: 28px;
}

.post-single .post-meta {
  padding-top: 0;
}

.post-single .entry-content .entry-title {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 25px;
}

.post-single .entry-content .wp-block-image {
  margin-top: 30px;
}

.post-single .entry-content .wp-block-image img {
  border-radius: 10px;
}

.post-single .entry-content blockquote p {
  font-size: 20px;
  margin: 0;
}

.post-single .wp-block-image {
  text-align: center;
}

.post-single .wp-block-image {
  margin-bottom: 39px;
}

.post-single .edit-link {
  margin-left: 15px;
}

.post-single .single-post-header {
  margin-bottom: 50px;
}

.post-single .single-post-header .single-post-title {
  font-size: 36px;
  margin-bottom: 25px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.post-single .post-meta-cat {
  margin-bottom: 20px;
}

.post-single .post-meta-cat a {
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 5px;
  background-color: #37a45d;
  min-width: auto;
  font-weight: 400;
  margin: 0 5px;
  border: 0px solid transparent;
  display: inline-block;
}

.post-single .post-meta-cat a:first-child {
  background-color: #e9683e;
}

.post-single .feature-image img {
  border-radius: 10px;
}

.post-single .entry-footer {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 2px solid #f3f3f5;
}

.post-single .entry-footer .tag_list .tagcloud a {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .post-single .entry-footer {
    display: block;
  }
  .post-single .entry-footer .share_social-wpapper {
    margin-top: 15px;
  }
}

.tag_list .tags {
  color: #051441;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-image-banner {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .feature-image-banner {
    height: 380px;
  }
}

.feature-image-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.feature-image-banner .single-post-header {
  position: relative;
  z-index: 2;
}

.feature-image-banner .single-post-header .single-post-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 30px;
  }
}

.feature-image-banner .single-post-header .post-meta {
  margin-top: 24px;
}

.feature-image-banner .single-post-header .post-meta li, .feature-image-banner .single-post-header .post-meta a {
  color: #fff;
}

.feature-image-banner .single-post-header .post-meta a:hover {
  color: var(--color_primary);
}

.single_type-2 .blog-content-area {
  padding-top: 0;
}

.blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.blog-share .share-title p {
  color: #2b2350;
  display: inline-block;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}

.share-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-link li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0 !important;
}

.share-link li:before {
  display: none;
}

.share-link li:last-child {
  margin-right: 0;
}

.share-link li a {
  display: block;
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 43px;
  color: #aba8a4;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #e5dada;
}

.share-link li a:hover {
  background: var(--color_primary);
  color: #fff;
  border-color: var(--color_primary);
}

@media (max-width: 991px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: 100%;
    margin-right: 0;
  }
  .comment-list .comment .comment-body.menu-comments .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-content {
    padding-bottom: 20px;
  }
  .comment-list .comment .comment-body .comment-content h4 {
    font-size: 18px;
  }
  .comment-list .comment .comment-body .comment-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .comment-list .children {
    padding-left: 70px;
  }
  .comment-respond .comment-reply-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}

@media (max-width: 420px) {
  .comment-list .comment .comment-body .comment-content .ratings {
    position: static;
  }
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 20px;
}

.page-links a,
.page-links .current {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #eff1f7;
  color: #0f163b;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  font-size: 16px;
  margin-left: 5px;
}

.page-links a:hover,
.page-links .current:hover {
  background: var(--color_primary);
  color: #fff;
}

.page-links .current {
  background: var(--color_primary);
  color: #fff;
}

.post-navigation {
  margin-bottom: 50px;
}

.post-navigation .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #f1f2f5;
  border-bottom: 1px solid #f1f2f5;
  position: relative;
  width: calc(100% + 2%);
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: calc(50% - 2%);
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: #333;
  margin-right: 2%;
  flex: 1;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  display: block;
  outline: 0;
}

.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: #fff;
}

.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background: var(--color_primary);
}

.post-navigation .nav-links .nav-previous {
  padding-right: 30px;
}

.post-navigation .nav-links .nav-next {
  padding-left: 30px;
}

.first-lg {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

/* Author Box */
.fiana_post_author_box {
  background: #faf8f5;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  border-radius: 6px;
  max-width: 670px;
}

.fiana_post_author_box .profile_image {
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
}

.fiana_post_author_box .profile_image img {
  border-radius: 50%;
}

.fiana_post_author_box .profile_content {
  flex: 1;
}

.fiana_post_author_box .profile_content .profile_name {
  font-size: 20px;
  line-height: 28px;
  color: #0f163b;
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: 600;
}

.fiana_post_author_box .profile_content .author-job {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
  display: inline-block;
}

.fiana_post_author_box .profile_content .profile_bio p {
  font-size: 16px;
  color: #827f79;
  margin-bottom: 0;
  font-weight: 500;
}

.fiana_post_author_box .user-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fiana_post_author_box .user-social-link li {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.post-share {
  display: inline-block;
  flex: 1;
}

.share-trigger .share-items {
  float: right;
}

.share-trigger .share-items a {
  height: 35px;
  width: 35px;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  color: #fff;
}

.share-trigger .share-items a.facebook-bg {
  background: #3b5998;
}

.share-trigger .share-items a.facebook-bg:hover {
  background: #263961;
}

.share-trigger .share-items a.twitter-bg {
  background: #3cf;
}

.share-trigger .share-items a.twitter-bg:hover {
  background: #00ace6;
}

.share-trigger .share-items a.google-plus-bg {
  background: #dc4a38;
}

.share-trigger .share-items a.google-plus-bg:hover {
  background: #aa2d1e;
}

.share-trigger .share-items a.linkedin-bg {
  background: #0077B5;
}

.share-trigger .share-items a.linkedin-bg:hover {
  background: #004569;
}

@media (max-width: 991px) {
  .blog-container {
    padding: 80px 0;
  }
  #secondary {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    padding: 50px 0;
  }
}

.search-header {
  margin-bottom: 30px;
}

.search_page_404_wrapper {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.search_page_404_wrapper .page-title {
  margin-bottom: 14px;
}

.search_page_404_wrapper .banner_404_text {
  margin-bottom: 30px;
}

.search_result_form .search-form {
  display: flex;
  border: 1px solid rgba(5, 20, 65, 0.2);
  margin-bottom: 20px;
  border-radius: 10px;
}

.search_result_form .search-form input {
  border: none;
  border-radius: 0;
  padding: 20px;
  margin: 0;
  border-radius: 10px;
}

.search_result_form .search-form .search-submit {
  border: 0;
  background: transparent;
  padding: 15px 20px;
  color: var(--color_primary);
  outline: 0;
}

.no-results .page-content {
  padding: 0 0 120px;
}

@media (max-width: 991px) {
  .no-results .page-content {
    padding: 0 0 80px;
  }
}

.pagination-wrapper ~ .sidebar {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  margin-top: 30px;
}

.blog-archive-wrapper #post-pagination {
  margin-top: 80px;
  text-align: center;
}

#post-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
}

#post-pagination .page-numbers li {
  display: inline-block;
}

#post-pagination .page-numbers li a,
#post-pagination .page-numbers li span {
  display: inline-flex;
  height: 45px;
  width: 45px;
  line-height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f2f5;
  text-align: center;
  color: #7b8a9e;
  margin-right: 10px;
  border-radius: 50%;
}

@media (max-width: 576px) {
  #post-pagination .page-numbers li a,
  #post-pagination .page-numbers li span {
    margin-right: 5;
  }
}

#post-pagination .page-numbers li a:hover,
#post-pagination .page-numbers li a .current,
#post-pagination .page-numbers li span:hover,
#post-pagination .page-numbers li span .current {
  background: var(--color_primary);
  border-color: var(--color_primary);
  color: #fff;
}

#post-pagination .page-numbers li a:hover a,
#post-pagination .page-numbers li a .current a,
#post-pagination .page-numbers li span:hover a,
#post-pagination .page-numbers li span .current a {
  color: #fff;
}

#post-pagination .page-numbers li a.current,
#post-pagination .page-numbers li span.current {
  background: var(--color_primary);
  color: #fff;
  border-color: var(--color_primary);
}

#post-pagination .page-numbers li i {
  font-size: 20px;
}

#post-pagination .page-numbers li.next {
  line-height: 54px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination .page-numbers li {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 16px;
  margin-right: 10px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: 1px solid #e7e7f6;
  border-radius: 50%;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a,
.woocommerce nav.woocommerce-pagination .page-numbers li span {
  display: block;
  line-height: 50px;
  font-size: 16px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a i,
.woocommerce nav.woocommerce-pagination .page-numbers li span i {
  font-size: 18px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.current, .woocommerce nav.woocommerce-pagination .page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li span.current,
.woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background: var(--color_primary);
  border-color: var(--color_primary);
}

.woocommerce nav.woocommerce-pagination .page-numbers li i {
  font-size: 14px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li svg {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}

.woocommerce nav.woocommerce-pagination .page-numbers li.next, .woocommerce nav.woocommerce-pagination .page-numbers li.prev {
  line-height: 45px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.prev, .woocommerce nav.woocommerce-pagination .page-numbers li a.next {
  line-height: 48px;
}

.woocommerce nav.woocommerce-pagination .page-numbers li a.prev:hover svg path, .woocommerce nav.woocommerce-pagination .page-numbers li a.next:hover svg path {
  fill: #fff !important;
}

.woocommerce nav.woocommerce-pagination .page-numbers li:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background: var(--color_primary);
  color: #fff;
}

.woocommerce nav.woocommerce-pagination .page-numbers li:hover a,
.woocommerce nav.woocommerce-pagination .page-numbers li .current a {
  color: #fff;
}

.woocommerce nav.woocommerce-pagination .page-numbers li.current {
  background: var(--color_primary);
  color: #fff;
}

.woocommerce .pprefix-post-navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .prev_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .next_title,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .prev_title {
  font-size: 16px;
  font-weight: 600;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .date_post,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .date_post {
  font-size: 14px;
  font-weight: 500;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .meta-wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .meta-wrapper {
  display: block;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist {
  display: block;
  width: 100px;
  position: relative;
  overflow: hidden;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(25, 98, 246, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover:before,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover:before {
  opacity: 1;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover i,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover i {
  opacity: 1;
  visibility: visible;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper,
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .next-link-info_wrapper {
  flex: 2;
}

.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_prev {
  margin-right: 20px;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  justify-content: flex-end;
  text-align: right;
}

.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_next {
  margin-left: 20px;
}

.woocommerce .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: var(--color_primary);
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
}

.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  position: absolute;
  right: 0;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev {
  left: -80px;
  text-align: right;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev i {
  margin-right: 20px;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  right: -80px;
  text-align: left;
}

.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next i {
  margin-left: 20px;
}

.woocommerce .format-gallery:hover .gp-slider-prev,
.woocommerce .format-gallery:hover .gp-slider-next {
  opacity: 1;
  visibility: visible;
}

.woocommerce .format-gallery:hover .gp-slider-prev {
  left: -40px;
  text-align: right;
}

.woocommerce .format-gallery:hover .gp-slider-next {
  right: -40px;
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.widget_search .search-form {
  border-radius: 10px;
  position: relative;
  background: #f1f2f5;
}

.widget_search .search-form label {
  margin: 0;
  width: 100%;
}

.widget_search .search-form input {
  padding: 11px 30px;
  border-radius: 10px;
  width: 100%;
  color: #8a8da1;
  height: 60px;
  margin: 0;
  background: transparent;
}

.widget_search .search-form input::placeholder {
  color: #8a8da1;
}

.widget_search .search-form .search-submit {
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  font-size: 18px;
  outline: 0;
  right: 20px;
  top: 52%;
  color: var(--color_primary);
  transform: translateY(-50%);
}

.widget_search .search-form .search-submit:hover {
  color: var(--color_primary);
}

#search-menu-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

#search-menu-wrapper .close-search {
  color: #fff;
  z-index: 9999999;
  opacity: 5;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 40px;
  cursor: pointer;
}

#search-menu-wrapper .overlay-bg {
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#search-menu-wrapper.toggled {
  opacity: 1;
  visibility: visible;
}

#search-menu-wrapper .wrapper {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#search-menu-wrapper .search-form {
  width: 100%;
}

#search-menu-wrapper .search-form input {
  border-radius: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  height: 80px;
  color: #fff;
  font-size: 30px;
}

#search-menu-wrapper .search-form button i {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

#search-menu-wrapper .search-form button i:hover {
  color: var(--color_primary);
}

.sea-wrapper .search-form {
  display: flex;
  align-items: center;
}

.sea-wrapper .search-form label {
  margin: 0;
  width: 100%;
}

.sea-wrapper .search-form input {
  margin: 0;
}

.sea-wrapper .search-form .search-submit {
  background: var(--color_primary);
  color: #fff;
  border: 0;
  height: 54px;
  border-radius: 4px;
  margin-left: 20px;
}

.sea-wrapper .search-form .search-submit:hover {
  background: #004ce5;
  color: #fff;
}

/*--------------------------------------------------------------
## Author Box
--------------------------------------------------------------*/
.author-info_wrapper {
  border-radius: 4px;
  padding: 30px 25px;
  margin-top: 75px;
  background: #FAF8FC;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .author-info_wrapper {
    padding: 20px 15px;
  }
}

.author-info_avatar {
  margin-right: 20px;
  width: 120px;
}

@media (max-width: 480px) {
  .author-info_avatar {
    width: 80px;
  }
}

.author-info_avatar img {
  border-radius: 50%;
}

.author-info_content {
  flex: 2;
}

.author-info_name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 15px;
}

.author-info_name span {
  margin-right: 7px;
  font-size: 14px;
  display: block;
}

.author-info_description {
  color: #535a69;
}

.author-info_description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.author-info_social-wrapper {
  line-height: 1;
  margin-top: 19px;
}

.author-info_wrapper .title_soc_share {
  font-size: 14px;
  font-weight: bold;
  margin-right: 20px;
}

.author-info_social-link {
  display: inline-block;
  margin-right: 13px;
  color: #bfc1c2;
  font-size: 14px;
}

.author-info_social-wrapper a {
  color: #333333;
}

.author-info_social-wrapper a:hover {
  color: var(--color_primary);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-section {
  padding: 80px 0;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#comments {
  margin-top: 75px;
}

#comments .comments-title {
  font-size: 26px;
  font-weight: 700;
  border-bottom: 1px solid #f1f2f5;
  padding-bottom: 15px;
  margin-bottom: 48px;
}

#comments .comment .comment-form {
  margin-bottom: 45px;
}

.comments-area .comment-inner {
  margin-bottom: 50px;
}

.comments-area .reply-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f163b;
  margin-bottom: 30px;
}

.comments-area .no-comments {
  margin: 0;
  line-height: 11px;
}

.comment-list-wrapper {
  max-width: 730px;
  margin: 0 auto 80px;
  border-bottom: 1px solid #f1f2f5;
}

.page .comment-list-wrapper {
  margin-top: 40px;
}

.page .comment-respond .comment-reply-title,
.page .comment-respond .comment-notes, .page .comment-respond .logged-in-as {
  text-align: left;
}

.page .comment-list {
  margin-bottom: 0;
}

.page .comment-respond {
  margin-top: 60px;
}

.comments-section .comment-list-wrapper {
  padding-top: 0;
  border: 0;
}

.comment-list {
  padding: 0;
  list-style: none;
  overflow: auto;
  margin-bottom: 0;
}

.comment-list > li {
  margin-bottom: 10px;
}

.comment-list .comment-body {
  margin-bottom: 20px;
}

.comment-list .comment .comment-body {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 35px;
}

.comment-list .comment .comment-body .comment-avatar {
  margin-right: 25px;
  border-radius: 50%;
  height: 75px;
  width: 75px;
}

.comment-list .comment .comment-body .comment-avatar img {
  border-radius: 50%;
}

.comment-list .comment .comment-body .comment_content {
  margin-top: 8px;
}

.comment-list .comment .comment-body .comment_content p {
  margin: 0;
}

.comment-list .comment .comment-body .comment_info {
  position: relative;
  overflow: auto;
  flex: 2;
}

.comment-list .comment .comment-body .comment_info .comment_author_says {
  margin-top: 0;
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #0f163b;
}

.comment-list .comment .comment-body .comment_info .meta-wrapper {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #908f8f;
}

.comment-list .comment .comment-body .comment_info .meta-wrapper span {
  display: inline-block;
}

.comment-list .comment .comment-body .comment_info .comment-reply-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}

.comment-list .comment .comment-body .comment_info p img {
  margin: 15px 0 5px;
}

.comment-list .comment .comment-body .comment-reply-link {
  color: #0f163b;
  font-weight: 500;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  font-size: 14px;
}

.comment-list .comment .comment-body .comment-reply-link i {
  font-size: 18px;
  margin-left: 3px;
  vertical-align: middle;
}

.comment-list .comment .comment-body .comment-reply-link:hover {
  color: var(--color_primary);
}

.comment-list .comment .children {
  margin: 0;
  padding-left: 50px;
  list-style: none;
}

.comment-list .comment .children .comment-avatar {
  height: 60px;
  width: 60px;
}

.comment-list .comment .children .comment .comment-body .comment-reply-link {
  margin-left: 80px;
}

#comments .comment-list .comment-respond {
  margin: 20px 0;
  max-width: 100%;
}

#comments .comment-list .comment-respond #cancel-comment-reply-link {
  font-size: 14px;
  color: var(--color_primary);
  margin-left: 5px;
}

.children .comment-respond {
  margin-left: 80px !important;
}

.comment-respond .comment-reply-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 40px;
}

#review_form .comment-respond .comment-notes, #review_form
.comment-respond .logged-in-as {
  text-align: left;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}

.comment-form .comment-form-author {
  padding-right: 15px;
}

.comment-form .comment-form-email {
  padding-left: 15px;
  float: right;
}

.comment-form textarea {
  height: 160px;
  margin-bottom: 20px;
}

.comment-form #submit {
  margin-bottom: 0;
  background-color: var(--color_primary);
  color: #fff;
  border: 2px solid transparent;
  padding: 12px 41px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
}

.comment-form #submit:hover {
  color: var(--color_primary);
  border-color: var(--color_primary);
  background: transparent;
}

.comment-form #submit:focus {
  outline: 0;
}

.comment-form .comment-form-cookies-consent {
  margin-bottom: 20px !important;
  font-size: 16px;
  color: #797986;
  position: relative;
}

.comment-form .comment-form-cookies-consent:after {
  content: '';
  display: block;
  clear: both;
}

.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}

.comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
}

.comment-form .comment-form-cookies-consent label:not(:empty) {
  padding-left: 0.75em;
}

.comment-form .comment-form-cookies-consent label:before, .comment-form .comment-form-cookies-consent label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
}

.comment-form .comment-form-cookies-consent label:before {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(5, 20, 65, 0.2);
  cursor: pointer;
  transition: background .3s;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked + label:before {
  background: var(--color_primary);
  border: none;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked + label:after {
  transform: translate(0.17em, 0.25em) rotate(-45deg);
  width: 0.60em;
  height: 0.25em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}

#review_form input[type="text"],
#review_form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}

#review_form input[type="text"]::placeholder,
#review_form textarea::placeholder {
  color: #75757d;
}

#review_form input[type="text"]:focus,
#review_form textarea:focus {
  border-color: rgba(25, 98, 246, 0.5);
}

@media (max-width: 991px) {
  .comment-list .comment .children {
    padding-left: 50px;
  }
}

@media (max-width: 576px) {
  .comment-list .comment .comment-body .comment-avatar {
    width: 55px;
    height: 55px;
  }
  .comment-list .comment .children {
    padding-left: 20px;
  }
  .comment-list .comment .children .comment .comment-body .comment-avatar {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# 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%;
}

iframe {
  border-width: 0px;
}

.entry-content iframe {
  max-height: 500px;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}

.wp-block-image figcaption {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## 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;
}

.blog-content .gallery {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
## Block
--------------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  background: #0f163b;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
  background: var(--color_primary);
  color: #fff;
}

.wp-block-button .wp-block-button__link br {
  display: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #0f163b;
  border-color: #0f163b;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--color_primary);
  color: var(--color_primary);
}

.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-cover .wp-block-cover-text {
  padding: 30px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}

.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}

.wp-block-cover p:not(.has-text-color) {
  color: #fff !important;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  background-color: transparent;
}

.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-size: 1.6em;
  font-weight: 300;
}

.wp-block-quote.is-large:before, .wp-block-quote.is-large:after, .wp-block-quote.is-style-large:before, .wp-block-quote.is-style-large:after {
  display: none;
}

.wp-block-pullquote {
  border-top: 4px solid #f1f2f5;
  border-bottom: 4px solid #f1f2f5;
  color: #40464d;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color {
  background-color: #0073aa;
  padding-left: 0;
  padding-right: 0;
}

.entry .entry-content .wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  background-color: transparent;
}

.entry .entry-content .wp-block-pullquote blockquote:before, .entry .entry-content .wp-block-pullquote blockquote:after {
  display: none;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  color: #fff;
  padding-left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-top: calc(4 * 1rem);
  margin-bottom: calc(4.33 * 1rem);
  margin-right: 0;
  padding-left: 0;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  font-size: 1.6875em;
  line-height: 1.3;
  margin-bottom: .5em;
  margin-top: .5em;
}

.entry .entry-content .wp-block-pullquote p {
  font-size: 1.6875em;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: .5em;
  margin-top: .5em;
}

.entry .entry-content .wp-block-archives li,
.entry .entry-content .wp-block-categories li,
.entry .entry-content .wp-block-latest-posts li {
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}

.entry .entry-content .wp-block-archives li time,
.entry .entry-content .wp-block-categories li time,
.entry .entry-content .wp-block-latest-posts li time {
  line-height: 1;
}

.entry .entry-content .wp-block-archives li:before,
.entry .entry-content .wp-block-categories li:before,
.entry .entry-content .wp-block-latest-posts li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d92bb;
}

.entry .entry-content .wp-block-archives li a,
.entry .entry-content .wp-block-categories li a,
.entry .entry-content .wp-block-latest-posts li a {
  font-size: 16px;
  color: #465675;
}

.entry .entry-content .wp-block-archives li a:hover,
.entry .entry-content .wp-block-categories li a:hover,
.entry .entry-content .wp-block-latest-posts li a:hover {
  color: var(--color_primary);
}

.entry .entry-content .wp-block-archives li .children,
.entry .entry-content .wp-block-categories li .children,
.entry .entry-content .wp-block-latest-posts li .children {
  padding-left: 30px;
}

.entry .entry-content .wp-block-categories-list .children li {
  padding-left: 0;
}

.entry .entry-content .wp-block-categories-list .children li:before {
  display: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.wp-block-latest-comments {
  padding-left: 0;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 15px;
}

pre.wp-block-preformatted {
  margin-top: 20px;
}

.post_format-post-format-quote blockquote {
  margin-top: 0;
}

.wp-block-archives, .wp-block-categories-list {
  padding: 0;
  list-style: none;
}

.wp-block-archives li, .wp-block-categories-list li {
  margin-bottom: 10px;
}

.wp-block-archives li a, .wp-block-categories-list li a {
  color: #5f6065;
}

.wp-block-archives li a .post-count, .wp-block-categories-list li a .post-count {
  margin-left: 3px;
}

.wp-block-archives li a:hover, .wp-block-categories-list li a:hover {
  color: var(--color_primary);
}

.wp-block-archives-dropdown select {
  height: 50px;
  width: 100%;
  padding: 7px 20px;
  margin-bottom: 20px;
}

.wp-block-latest-comments__comment {
  font-size: 20px;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: #0f163b;
  font-weight: 600;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a:hover {
  color: var(--color_primary);
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.entry .entry-content .wp-block-separator, .entry .entry-content hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
  margin-left: 0;
}

.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 20px;
}

.wp-block-categories-dropdown .postform {
  margin-bottom: 20px;
}

.wp-block-search .wp-block-search__button {
  padding: 0 20px;
  height: 54px;
  border: 0;
  background: var(--color_primary);
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
}

.wp-block-search .wp-block-search__button:hover {
  background: #0f163b;
}

.wp-block-gallery.is-cropped .blocks-gallery-caption:last-child,
.wp-block-gallery.is-cropped {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .entry .entry-content .wp-block-pullquote.is-style-solid-color {
    padding-left: 10%;
    padding-right: 10%;
  }
  .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
    font-size: 2.22em;
    color: #fff;
  }
  .entry .entry-content .wp-block-pullquote p {
    font-size: 2.25em;
  }
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(8 * (100vw / 12) - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(8 * (100vw / 12) - 28px);
  }
}

@media only screen and (min-width: 1168px) {
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(6 * (100vw / 12) - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(6 * (100vw / 12) - 28px);
  }
}

.entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.entry .entry-content .wp-block-separator.is-style-dots:before, .entry .entry-content hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: .88889em;
  padding-left: .88889em;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #eff1f7;
}

.wp-block-separator.is-style-dots:before {
  content: "\00b7 \00b7 \00b7";
  color: #191e23;
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: serif;
}

.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}

.wp-block-table.is-style-stripes td {
  border-color: #f1f2f5;
  border-bottom-width: 1px;
}

.wp-block-table.is-style-stripes td:not(:first-child) {
  border-left-width: 1px;
}

.wp-block-table.is-style-stripes tr {
  border-top: 1px solid #f1f2f5;
}

.wp-block-table.is-style-stripes tr:last-child td {
  border-bottom-width: 1px;
}

/* Domain Search form */
.domain-wrapper .tt-input-inner.bg-transparent .sea-dom{
  background: #F2F2F5;
  border-radius: 3px 0 0 3px !important;
}
.domain-wrapper .tt-input-inner.bg-transparent input{
  height: 56px;
}

/*Column Roate*/
.column_roate-left .elementor-widget-wrap{
  transform: rotate(-10deg);
}
.column_roate-right .elementor-widget-wrap{
  transform: rotate(10deg);
}
@media (max-width: 992px) {
  .column_roate-left .elementor-widget-wrap,
  .column_roate-right .elementor-widget-wrap{
    transform: rotate(0);
  }
}