/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 500;
  src: local("Muli Regular"), url("../fonts/text-font/Muli-Regular.woff") format("woff");
}
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 600;
  src: local("Muli SemiBold"), url("../fonts/text-font/Muli-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 700;
  src: local("Muli Bold"), url("../fonts/text-font/Muli-Bold.woff") format("woff");
}
/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Muli";
  color: #595959;
  background-color: #fff;
  font-size: 16px;
  font-size: 1.0666666667rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #595959;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0D0845;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.box-style {
  padding: 0 50px;
}
@media (max-width: 1700px) {
  .box-style {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .box-style {
    padding: 0 10px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.section-bg {
  background: #F9F9FC;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-validation-active label.error {
  color: red;
  font-size: 0.9333333333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}
.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #415678;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}
.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(65, 86, 120, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #415678;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: #415678;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title span {
  text-transform: uppercase;
  font-size: 16px;
  color: #415678;
  font-family: "Muli";
  display: block;
  letter-spacing: 0.2em;
}
@media (max-width: 575px) {
  .section-title span {
    font-size: 15px;
  }
}
.section-title h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 170.9%;
  margin: 0;
  position: relative;
  font-family: "Jost", sans-serif;
  color: #0D0845;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 35px;
    line-height: 55px;
  }
}
.section-title p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.theme-btn, .view-cart-btn,
.theme-btn-s3,
.theme-btn-s4 {
  background: #415678;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
}
.theme-btn:hover, .view-cart-btn:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn:active, .view-cart-btn:active,
.theme-btn-s3:hover,
.theme-btn-s3:focus,
.theme-btn-s3:active,
.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
  background: #364864;
  color: #fff;
}
.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn:focus:after, .view-cart-btn:focus:after, .theme-btn:active:after, .view-cart-btn:active:after,
.theme-btn-s3:hover:after,
.theme-btn-s3:focus:after,
.theme-btn-s3:active:after,
.theme-btn-s4:hover:after,
.theme-btn-s4:focus:after,
.theme-btn-s4:active:after {
  border: 1px solid #415678;
}
.theme-btn:hover:after, .view-cart-btn:hover:after,
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .theme-btn, .view-cart-btn,
  .theme-btn-s3,
  .theme-btn-s4 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .theme-btn, .view-cart-btn,
  .theme-btn-s3,
  .theme-btn-s4 {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.theme-btn-s2 {
  background: transparent;
  color: #415678;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 1px solid #415678;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  background: #384a67;
  color: #fff;
}
@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.theme-btn-s4:hover {
  background: #364864;
}
.theme-btn-s4:hover:after {
  border: 1px solid #364864;
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
  background: #415678;
  color: #fff;
}
.view-cart-btn:after {
  display: none;
}
.view-cart-btn:hover {
  background-color: #33435e;
}
.view-cart-btn.s1 {
  background: rgba(65, 86, 120, 0.2);
  color: #415678;
}
.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #415678;
  -webkit-box-shadow: 0 0 5px 0 #536e99;
  -moz-box-shadow: 0 0 5px 0 #536e99;
  -o-box-shadow: 0 0 5px 0 #536e99;
  -ms-box-shadow: 0 0 5px 0 #536e99;
  box-shadow: 0 0 5px 0 #536e99;
}
.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form select::-ms-expand { /* for IE 11 */
  display: none;
}
.form ::-webkit-input-placeholder { /* Edge */
  font-style: normal;
}
.form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-style: normal;
}
.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}
.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}
.social-links li a {
  background-color: #536e99;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #415678;
}

.page-title {
  background: url(../images/page-title.jpg) no-repeat center top/cover;
  min-height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-title {
    min-height: 250px;
  }
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #202026;
  content: "";
  z-index: -1;
  opacity: 0.5;
}
.page-title .breadcumb-wrap {
  text-align: center;
}
@media (min-width: 991px) {
  .page-title .breadcumb-wrap {
    margin-top: 25px;
  }
}
.page-title .breadcumb-wrap h2 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}
.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}
.page-title .breadcumb-wrap ol li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.page-title .breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}
.page-title .breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
.page-title .breadcumb-wrap ol li a:hover {
  color: #415678;
}

.preloader {
  background-color: #21252f;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  overflow: hidden;
}
.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
.preloader * {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.preloader img {
  max-width: 70px;
}
.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}
.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  -webkit-transform-origin: 60px 60px;
  -moz-transform-origin: 60px 60px;
  -ms-transform-origin: 60px 60px;
  -o-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  -moz-transform: scale3d(0.5, 0.5, 1);
  -ms-transform: scale3d(0.5, 0.5, 1);
  -o-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@-o-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** newsletter-widget ***/
  /*** tag-widget ***/
  /*** contact-widget ***/
}
@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}
@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}
.blog-sidebar .widget h3 {
  font-size: 23px;
  font-size: 1.5333333333rem;
  color: #0D0845;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  font-family: "Jost", sans-serif;
  padding-bottom: 20px;
  font-weight: 700;
}
.blog-sidebar .widget h3:before {
  content: "";
  background-color: #415678;
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.blog-sidebar .widget h3:after {
  content: "";
  background-color: #f2f2f2;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 65px;
  bottom: 0;
  border-radius: 10px;
}
.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}
.blog-sidebar .search-widget form div {
  position: relative;
}
.blog-sidebar .search-widget input {
  background-color: #fff;
  height: 70px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 1px 10px rgba(16, 45, 72, 0.15);
}
.blog-sidebar .search-widget input:focus {
  background-color: rgba(65, 86, 120, 0.1);
}
.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  font-size: 1.3333333333rem;
  color: #fff;
  background-color: #415678;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  border-radius: 6px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-sidebar .about-widget {
  text-align: center;
  background-color: #F9F9FC;
  padding: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}
.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}
.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}
.blog-sidebar .about-widget ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}
.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}
.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #fff;
  border-radius: 50%;
}
.blog-sidebar .about-widget h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 1rem;
  margin-bottom: 1.2em;
}
.blog-sidebar .about-widget a {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-size: 0.9333333333rem;
  color: #0D0845;
  text-decoration: underline;
}
.blog-sidebar .about-widget a:hover {
  color: #415678;
}
.blog-sidebar .category-widget ul {
  list-style: none;
}
.blog-sidebar .category-widget ul li {
  font-size: 19px;
  font-size: 1.2666666667rem;
  position: relative;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}
.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
  padding-top: 12px;
}
.blog-sidebar .category-widget ul a {
  display: block;
  color: #474f62;
  font-size: 16px;
  font-weight: 600;
}
.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #EAEAEA;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #415678;
}
.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}
.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
}
.blog-sidebar .recent-post-widget .post .img-holder {
  width: 90px;
  float: left;
}
.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 6px;
}
.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}
.blog-sidebar .recent-post-widget .post h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0 0 0.3em;
  font-family: "Muli";
}
@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #0D0845;
}
.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #415678;
}
.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.8666666667rem;
  color: #585858;
}
.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}
.blog-sidebar .instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.blog-sidebar .instagram-widget ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.blog-sidebar .instagram-widget ul li img {
  width: 100%;
}
.blog-sidebar .newsletter-widget p {
  font-size: 18px;
  color: #0D0845;
  text-align: left;
}
.blog-sidebar .newsletter-widget span {
  font-size: 15px;
  color: #585858;
}
.blog-sidebar .newsletter-widget span a {
  color: #0D0845;
  font-weight: 700;
}
.blog-sidebar .newsletter-widget span a:hover {
  color: #415678;
}
.blog-sidebar .newsletter-widget .form input {
  border: 0;
  display: block;
  width: 100%;
  height: 55px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0px 1px 10px rgba(16, 45, 72, 0.15);
  padding: 15px;
  text-align: center;
}
.blog-sidebar .newsletter-widget .form input:focus {
  box-shadow: 0px 1px 10px rgba(16, 45, 72, 0.15);
}
.blog-sidebar .newsletter-widget .form button {
  background: #415678;
  width: 100%;
  height: 55px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  border: none;
  margin: 20px 0;
}
.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}
.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}
.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding: 5px 18px;
  color: #0D0845;
  background: rgba(65, 86, 120, 0.1);
  border-radius: 5px;
}
.blog-sidebar .tag-widget ul li a:hover {
  background: #415678;
  color: #fff;
}
.blog-sidebar .contact-widget {
  border: 0;
  background: url(../images/bg-2.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 30px 40px;
}
.blog-sidebar .contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}
@media (max-width: 1200px) {
  .blog-sidebar .contact-widget {
    padding: 20px;
  }
}
.blog-sidebar .contact-widget h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}
.blog-sidebar .contact-widget h2::before {
  left: 28px;
  background: url(../images/Single-title-shape2.png) no-repeat right center;
}
.blog-sidebar .contact-widget p {
  color: #fff;
  font-size: 18px;
}
.blog-sidebar .contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}
.blog-sidebar .contact-widget a::before {
  font-family: "themify";
  content: "\e628";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  .blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .blog-single-section.blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}
.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}
.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #0D0845;
  background: rgba(65, 86, 120, 0.1);
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #415678;
  border-color: #415678;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 1rem;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  background-color: #415678;
  position: relative;
  z-index: 111;
}
@media (max-width: 991px) {
  .site-header {
    margin-bottom: 0;
    border-radius: 0;
    background: #415678;
    border-top: 1px solid rgba(35, 35, 35, 0.09);
  }
}

.site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.navbar-brand {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.navbar-brand:hover {
  color: #fff;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.site-header .navigation > .container {
  position: relative;
  justify-content: center;
}
@media (max-width: 450px) {
  .site-header .navigation > .container {
    justify-content: flex-start;
  }
}

.site-header .row {
  width: 100%;
}

@media (max-width: 991px) {
  .site-header .navigation {
    padding: 20px 0;
  }
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  justify-content: flex-end;
}

.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a.active,
.site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .navbar-header button span:last-child {
    margin: 0;
  }
}
.site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul {
    z-index: 101;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current a {
    color: #415678;
  }
  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .site-header .navbar-toggler .first-angle,
  .site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header .x-close .middle-angle {
    opacity: 0;
  }
  .site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}
.site-header .navigation {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 991px) {
  .site-header .navigation .col {
    padding-left: 0;
  }
}
.site-header .navigation > .container {
  position: relative;
}
@media (max-width: 991px) {
  .site-header .navigation {
    padding: 20px 0;
  }
}
.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > a {
    font-size: 16px;
    padding: 30px 20px;
    display: block;
    color: #fff;
    font-weight: 700;
    position: relative;
  }
}
@media screen and (min-width: 992px) and (max-width: 1870px) {
  .site-header #navbar > ul > li > a {
    padding: 35px 18px;
  }
}
@media screen and (min-width: 992px) {
  .site-header #navbar > ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 235px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 1.0666666667rem;
    display: block;
    padding: 10px 15px;
    color: #0D0845;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  .site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #415678;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .site-header #navbar > ul > li .sub-menu a:hover:after, .site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }
  .site-header #navbar > ul > li a:hover, .site-header #navbar > ul > li a.active {
    color: #fff;
  }
  .site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .site-header #navbar > ul .menu-item-has-children > a:hover, .site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }
  .site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .site-header .navbar-header .open-btn {
    display: none;
  }
  .site-header #navbar .close-navbar {
    display: none;
  }
}
.site-header .menu-close {
  display: none;
}
@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
  }
  .site-header .mobail-menu button {
    background-color: #2f415e;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }
  .site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }
  .site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .site-header #navbar {
    background: #2f415e;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
  .site-header #navbar .navbar-nav {
    display: block;
  }
  .site-header #navbar > ul {
    position: relative;
    z-index: 101;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current {
    color: #415678;
  }
  .site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }
  .site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }
  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }
  .site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .site-header .navbar-toggler .first-angle,
  .site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header .x-close .middle-angle {
    opacity: 0;
  }
  .site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}
.site-header .navbar-header .navbar-brand img {
  max-width: 70px;
}
@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}

@media (max-width: 440px) {
  .site-header .navbar-header .navbar-brand {
    margin-right: 0;
  }
  .site-header .navbar-header .navbar-brand img {
    max-width: 60px;
  }
}
@media (max-width: 370px) {
  .site-header .navbar-header .navbar-brand img {
    max-width: 60px;
  }
}
@media (max-width: 1700px) {
  .site-header {
    padding: 0 30px;
  }
}
@media (max-width: 1500px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 15px;
  }
  .site-header {
    padding: 0 10px;
  }
}
@media (max-width: 1400px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 10px;
  }
}
@media (max-width: 1200px) {
  .site-header #navbar > ul > li > a {
    padding: 30px 6px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li > a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .header-right .theme-btn, .header-right .view-cart-btn {
    padding: 20px 12px;
  }
}
@media (max-width: 991px) {
  .site-header #navbar > ul > li > a {
    padding: 15px 30px;
  }
}
@media (max-width: 991px) {
  .site-header,
  .header-style-2 {
    z-index: 99;
  }
}
.site-header .navigation.sticky-header {
  padding: 0 130px;
  background: #415678;
}

@media (max-width: 1700px) {
  .site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}
@media (max-width: 1400px) {
  .site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .site-header .navigation.sticky-header {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}
/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 hero-slider*/
.hero-slider {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 0;
}
.hero-slider .container-fluid {
  padding: 0;
}
.hero-slider .hero-img {
  text-align: center;
}
.hero-slider .hero-img img {
  width: 100%;
}
@media (max-width: 575px) {
  .hero-slider .hero-img img {
    min-height: 500px;
    object-fit: cover;
  }
}
.hero-slider .hero-slider-text {
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
  position: absolute;
  top: 50px;
  left: 2%;
  max-width: 650px;
}
@media (max-width: 1399px) {
  .hero-slider .hero-slider-text {
    left: 5%;
    max-width: 550px;
  }
}
@media (max-width: 991px) {
  .hero-slider .hero-slider-text {
    left: 20px;
  }
}
@media (max-width: 575px) {
  .hero-slider .hero-slider-text {
    padding: 30px 15px;
    width: 94%;
    left: 3%;
  }
}
.hero-slider .hero-slider-text h2 {
  font-size: 50px;
  color: #fff;
}
@media (max-width: 1399px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-slider .hero-slider-text h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
4. footer
--------------------------------------------------------------*/
.site-footer {
  background: #202026;
  background-size: cover;
  position: relative;
  font-size: 15px;
  overflow: hidden;
}
.site-footer ul {
  list-style: none;
}
.site-footer p {
  color: #fff;
}
.site-footer li {
  color: #fff;
}
.site-footer .container {
  position: relative;
}
.site-footer .upper-footer {
  padding: 100px 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1800px) {
  .site-footer .upper-footer {
    padding: 80px 50px;
  }
}
@media (max-width: 991px) {
  .site-footer .upper-footer {
    padding: 60px 30px 0;
  }
}
@media (max-width: 767px) {
  .site-footer .upper-footer {
    padding: 30px 20px 0;
  }
}
@media (max-width: 991px) {
  .site-footer .upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .site-footer .upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}
.site-footer .widget-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .site-footer .widget-title {
    margin-bottom: 20px;
  }
}
.site-footer .widget-title h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Jost", sans-serif;
}
@media (max-width: 991px) {
  .site-footer .widget-title h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.site-footer .about-widget .logo {
  font-size: 45px;
  font-family: "Jost", sans-serif;
  color: #415678;
  line-height: 40px;
}
@media (max-width: 991px) {
  .site-footer .about-widget .logo {
    font-size: 40px;
  }
}
.site-footer .about-widget .logo span {
  position: relative;
}
.site-footer .about-widget .logo span i {
  position: absolute;
  left: 1px;
  top: 3px;
  font-size: 13px;
}
.site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}
.site-footer .about-widget p:last-child {
  margin-bottom: 0;
}
.site-footer .about-widget .logo {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.site-footer .about-widget ul {
  overflow: hidden;
  padding-top: 10px;
}
.site-footer .about-widget ul li {
  font-size: 22px;
  float: left;
}
.site-footer .about-widget ul li a {
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 40px;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
}
.site-footer .about-widget ul li a:hover {
  background: #fff;
  color: #415678;
}
.site-footer .about-widget ul li + li {
  margin-left: 25px;
}
@media screen and (max-width: 1600px) {
  .site-footer .about-widget ul li + li {
    margin-left: 10px;
  }
}
.site-footer .link-widget {
  overflow: hidden;
}
@media screen and (min-width: 1500px) {
  .site-footer .link-widget {
    padding-left: 65px;
  }
}
@media (max-width: 1199px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .site-footer .link-widget {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .site-footer .link-widget {
    max-width: 350px;
  }
}
.site-footer .link-widget ul li {
  position: relative;
}
.site-footer .link-widget ul li a {
  color: #fff;
  font-size: 17px;
}
.site-footer .link-widget ul li a:hover {
  text-decoration: underline;
}
.site-footer .link-widget ul li + li {
  padding-top: 15px;
}
.site-footer .contact-ft {
  margin-top: 20px;
  padding-right: 60px;
}
@media (max-width: 1500px) {
  .site-footer .contact-ft {
    padding-right: 0px;
  }
}
.site-footer .contact-ft ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #fff;
  font-size: 16px;
}
.site-footer .contact-ft ul li i {
  position: absolute;
  left: 0;
  top: 2px;
}
.site-footer .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}
@media (max-width: 1200px) {
  .site-footer .instagram {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .site-footer .instagram {
    margin-top: 0px;
  }
}
.site-footer .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}
.site-footer .instagram ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.site-footer .instagram ul li img {
  width: 100%;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/* 3.4 features-area */
.features-area {
  padding-bottom: 90px;
  padding-top: 250px;
}
@media (max-width: 991px) {
  .features-area {
    padding-bottom: 80px;
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .features-area {
    padding-top: 150px;
  }
}
.features-area .features-item {
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
  padding: 50px 20px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 575px) {
  .features-area .features-item {
    display: block;
    text-align: center;
  }
}
.features-area .features-item h2 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 0;
}
.features-area .features-item p {
  margin-bottom: 40px;
}

.info-area {
  background: url(../images/bg.jpg) no-repeat center top/cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.info-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
  opacity: 0.75;
  z-index: -1;
}
.info-area .info-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.info-area .info-text h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 30px;
}
.info-area .info-text p {
  color: #fff;
  margin-bottom: 30px;
}

/* 3.3 wpo-project-area */
.project-area .container-fluid {
  padding: 0;
}
.project-area .project-wrap .project-item {
  position: relative;
}
.project-area .project-wrap .project-item .project-img {
  position: relative;
  z-index: 1;
}
.project-area .project-wrap .project-item .project-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
  visibility: hidden;
}
.project-area .project-wrap .project-item .project-img .left-border {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.project-area .project-wrap .project-item .project-img .left-border:before {
  position: absolute;
  left: 0;
  top: 15px;
  height: 1px;
  width: 0;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.project-area .project-wrap .project-item .project-img .left-border::after {
  position: absolute;
  left: 15px;
  top: 0;
  height: 0;
  width: 1px;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.project-area .project-wrap .project-item .project-img .right-border {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.project-area .project-wrap .project-item .project-img .right-border:before {
  position: absolute;
  right: 0;
  bottom: 15px;
  height: 1px;
  width: 0;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.project-area .project-wrap .project-item .project-img .right-border::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  height: 0;
  width: 1px;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.project-area .project-wrap .project-item .project-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 111;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.project-area .project-wrap .project-item .project-text h2 {
  font-size: 40px;
  line-height: 58px;
}
@media (max-width: 575px) {
  .project-area .project-wrap .project-item .project-text h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.project-area .project-wrap .project-item .project-text h2 a {
  color: #fff;
}
.project-area .project-wrap .project-item .project-text h2 a:hover {
  color: #fff;
}
.project-area .project-wrap .project-item .project-text span {
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
}
@media (max-width: 575px) {
  .project-area .project-wrap .project-item .project-text span {
    font-size: 16px;
  }
}
.project-area .project-wrap .project-item:hover .project-img:before {
  opacity: 0.75;
  visibility: visible;
}
.project-area .project-wrap .project-item:hover .project-img .left-border:before {
  width: 300px;
}
@media (max-width: 1500px) {
  .project-area .project-wrap .project-item:hover .project-img .left-border:before {
    width: 200px;
  }
}
@media (max-width: 450px) {
  .project-area .project-wrap .project-item:hover .project-img .left-border:before {
    width: 120px;
  }
}
.project-area .project-wrap .project-item:hover .project-img .left-border::after {
  height: 300px;
}
@media (max-width: 1500px) {
  .project-area .project-wrap .project-item:hover .project-img .left-border::after {
    height: 200px;
  }
}
@media (max-width: 450px) {
  .project-area .project-wrap .project-item:hover .project-img .left-border::after {
    height: 120px;
  }
}
.project-area .project-wrap .project-item:hover .project-img .right-border:before {
  width: 300px;
}
@media (max-width: 1500px) {
  .project-area .project-wrap .project-item:hover .project-img .right-border:before {
    width: 200px;
  }
}
@media (max-width: 450px) {
  .project-area .project-wrap .project-item:hover .project-img .right-border:before {
    width: 120px;
  }
}
.project-area .project-wrap .project-item:hover .project-img .right-border::after {
  height: 300px;
}
@media (max-width: 1500px) {
  .project-area .project-wrap .project-item:hover .project-img .right-border::after {
    height: 200px;
  }
}
@media (max-width: 450px) {
  .project-area .project-wrap .project-item:hover .project-img .right-border::after {
    height: 120px;
  }
}
.project-area .project-wrap .project-item:hover .project-text {
  opacity: 1;
  visibility: visible;
}
.project-area .project-wrap .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.project-area .project-wrap .owl-nav [class*=owl-] {
  padding: 0;
  margin: 0;
  color: #415678;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
  background: none;
}
.project-area .project-wrap .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
  color: #415678;
}
.project-area .project-wrap .owl-nav .owl-prev,
.project-area .project-wrap .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .project-area .project-wrap .owl-nav .owl-prev,
  .project-area .project-wrap .owl-nav .owl-next {
    display: none;
  }
}
.project-area .project-wrap .owl-nav .owl-prev {
  left: 35px;
}
.project-area .project-wrap .owl-nav .owl-next {
  right: 35px;
}
.project-area .project-wrap .owl-dots {
  text-align: center;
  bottom: -10px;
  position: relative;
}
.project-area .project-wrap .owl-dots button {
  width: 10px;
  height: 12px;
  border: 0;
  background: #d4e6f5;
  margin-right: 10px;
  border-radius: 50%;
}
.project-area .project-wrap .owl-dots .owl-dot.active {
  background-color: #415678;
}
.project-area .project-wrap:hover .owl-nav .owl-prev,
.project-area .project-wrap:hover .owl-nav .owl-next {
  opacity: 1;
}

/* 3.8 wpo-contact-section */
.wpo-contact-section .contact-info-wrap .contact-info-item {
  margin-bottom: 55px;
  display: flex;
  align-items: center;
}
.wpo-contact-section .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}
.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-icon {
  margin-right: 20px;
}
.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-icon i {
  font-size: 50px;
  color: #0D0845;
}
.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-text h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #0D0845;
  margin-bottom: 10px;
}
.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #0D0845;
  margin-bottom: 0;
}
.wpo-contact-section .wpo-contact-map {
  padding: 20px 0;
  border-top: 1px solid #e5e4e4;
  border-bottom: 1px solid #e5e4e4;
}
.wpo-contact-section .wpo-contact-map iframe {
  height: 415px;
  width: 100%;
  filter: grayscale(100%);
}
.wpo-contact-section .wpo-contact-section-wrapper {
  position: relative;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
  padding: 60px 40px 80px;
  position: relative;
  z-index: 9;
  border: 1px solid #e5e4e4;
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 40px 20px;
    max-width: 360px;
  }
}
@media (max-width: 991px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
    max-width: 100%;
    margin: 50px 0;
  }
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid #e5e4e4;
  background: transparent;
  color: #595959;
  border-radius: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  padding: 10px;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-webkit-input-placeholder {
  color: #595959;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:-ms-input-placeholder {
  color: #595959;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::placeholder {
  color: #595959;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area textarea.form-control {
  height: 130px;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control {
  color: #595959;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area {
  margin-top: 50px;
  text-align: center;
}
.wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
  border: 0;
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
  border-radius: 350px;
  padding: 120px 50px 100px;
}
@media (max-width: 1199px) {
  .wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 90px 15px 60px;
  }
}
@media (max-width: 991px) {
  .wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 120px 50px 100px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 90px 15px 60px;
  }
}
.wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-section.s2 .wpo-contact-section-wrapper .wpo-contact-form-area h2 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
19. villa-description-section 
--------------------------------------------------------------*/
.villa-description-section .villa-description h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.villa-description-section.winter .villa-description {
  padding: 40px;
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
}
.villa-description-section.winter .villa-description ul {
  list-style: none;
}
.villa-description-section.winter .villa-description ul li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
}
.villa-description-section.winter .villa-description ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background: rgba(65, 86, 120, 0.1);
  content: "\e64c";
  font-family: "themify";
  text-align: center;
  color: #415678;
  font-size: 14px;
}

/*9.2 portfolio-section*/
.portfolio-section,
.portfolio-section-s2 {
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1700px) {
  .portfolio-section,
  .portfolio-section-s2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .portfolio-section,
  .portfolio-section-s2 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .portfolio-section,
  .portfolio-section-s2 {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .portfolio-section,
  .portfolio-section-s2 {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .portfolio-section,
  .portfolio-section-s2 {
    padding-bottom: 30px;
  }
}
.portfolio-section .portfolio-grids,
.portfolio-section-s2 .portfolio-grids {
  margin: 0 -15px;
}
@media (max-width: 1199px) {
  .portfolio-section .portfolio-grids,
  .portfolio-section-s2 .portfolio-grids {
    margin: 0 -10px;
  }
}
.portfolio-section .portfolio-grids .grid,
.portfolio-section-s2 .portfolio-grids .grid {
  width: 25%;
  padding: 0 15px 30px;
  position: relative;
  overflow: hidden;
  float: left;
}
@media (max-width: 1399px) {
  .portfolio-section .portfolio-grids .grid,
  .portfolio-section-s2 .portfolio-grids .grid {
    padding: 0 10px 20px;
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  .portfolio-section .portfolio-grids .grid,
  .portfolio-section-s2 .portfolio-grids .grid {
    padding: 0 10px 20px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .portfolio-section .portfolio-grids .grid,
  .portfolio-section-s2 .portfolio-grids .grid {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .portfolio-section .portfolio-grids .grid,
  .portfolio-section-s2 .portfolio-grids .grid {
    width: 100%;
  }
}
.portfolio-section .portfolio-grids .grid img,
.portfolio-section-s2 .portfolio-grids .grid img {
  width: 100%;
  transition: all 0.3s;
  transform: scale(1);
}
.portfolio-section .portfolio-grids .grid .img-holder,
.portfolio-section-s2 .portfolio-grids .grid .img-holder {
  overflow: hidden;
  position: relative;
}
.portfolio-section .portfolio-grids .grid .portfolio-content,
.portfolio-section-s2 .portfolio-grids .grid .portfolio-content {
  position: absolute;
  left: 50%;
  bottom: -200px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  width: 100%;
  max-width: 94%;
  transform: translateX(-50%);
  font-family: "Muli";
  text-align: center;
  padding: 20px;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .portfolio-section .portfolio-grids .grid .portfolio-content,
  .portfolio-section-s2 .portfolio-grids .grid .portfolio-content {
    padding: 10px;
  }
}
.portfolio-section .portfolio-grids .grid .portfolio-content h4,
.portfolio-section-s2 .portfolio-grids .grid .portfolio-content h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px;
  text-transform: capitalize;
}
.portfolio-section .portfolio-grids .grid .portfolio-content h4 a,
.portfolio-section-s2 .portfolio-grids .grid .portfolio-content h4 a {
  color: #0D0845;
}
.portfolio-section .portfolio-grids .grid .portfolio-content h4 a:hover,
.portfolio-section-s2 .portfolio-grids .grid .portfolio-content h4 a:hover {
  color: #415678;
}
.portfolio-section .portfolio-grids .grid .portfolio-content span,
.portfolio-section-s2 .portfolio-grids .grid .portfolio-content span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #415678;
}
.portfolio-section .portfolio-grids .grid:hover .portfolio-content,
.portfolio-section-s2 .portfolio-grids .grid:hover .portfolio-content {
  bottom: 20px;
}
.portfolio-section .portfolio-grids .grid:hover img,
.portfolio-section-s2 .portfolio-grids .grid:hover img {
  transform: scale(1.2);
}

.plans-section .plans-wrap .plans-item {
  padding: 15px;
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
  margin-bottom: 30px;
}
.plans-section .plans-wrap .plans-item .plans-img {
  position: relative;
}
.plans-section .plans-wrap .plans-item .plans-img .download-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  border: 2px solid #415678;
}
.plans-section .plans-wrap .plans-item .plans-img .download-btn i {
  font-size: 20px;
  color: #415678;
}
.plans-section .plans-wrap .plans-item .plans-img .download-btn:hover {
  background: #415678;
}
.plans-section .plans-wrap .plans-item .plans-img .download-btn:hover i {
  color: #fff;
}
.plans-section .plans-wrap .plans-item .plans-content {
  padding: 30px;
  padding-bottom: 10px;
  text-align: center;
}
.plans-section .plans-wrap .plans-item .plans-content h4 {
  font-size: 30px;
}
.plans-section .plans-wrap .plans-item .plans-content h4 a {
  color: #0D0845;
}

.portfolio-section-s2 .portfolio-grids .grid {
  width: 33.33%;
  padding: 0 15px 30px;
  position: relative;
  overflow: hidden;
  float: left;
}
@media (max-width: 991px) {
  .portfolio-section-s2 .portfolio-grids .grid {
    padding: 0 10px 20px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .portfolio-section-s2 .portfolio-grids .grid {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .portfolio-section-s2 .portfolio-grids .grid {
    width: 100%;
  }
}

/*--------------------------------------------------------------
19. contact-pg-section
--------------------------------------------------------------*/
.contact-pg-section {
  padding-bottom: 0px;
}
.contact-pg-section .contact-title {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contact-pg-section .contact-title {
    margin-bottom: 30px;
  }
}
.contact-pg-section .contact-title h2 {
  font-size: 35px;
  font-size: 2.3333333333rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .contact-pg-section .contact-title h2 {
    font-size: 25px;
    font-size: 1.6666666667rem;
  }
}
.contact-pg-section form input,
.contact-pg-section form select,
.contact-pg-section form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}
@media (max-width: 991px) {
  .contact-pg-section form input,
  .contact-pg-section form select,
  .contact-pg-section form textarea {
    height: 45px;
  }
}
.contact-pg-section form input:focus,
.contact-pg-section form select:focus,
.contact-pg-section form textarea:focus {
  border-color: #415678;
  background: transparent;
}
.contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}
.contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}
.contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.contact-pg-section form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}
.contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}
.contact-pg-section form .submit-area .theme-btn, .contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 0px;
  font-family: "Muli";
  font-size: 16px;
}
.contact-pg-section form .submit-area .theme-btn:after, .contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 0px;
}
.contact-pg-section form > div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}
@media (max-width: 600px) {
  .contact-pg-section form > div {
    width: calc(100% - 25px);
    float: none;
  }
}
.contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}
.contact-pg-section .office-info {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .contact-pg-section .office-info {
    padding-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  .contact-pg-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .contact-pg-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}
.contact-pg-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}
.contact-pg-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 110px;
  text-align: center;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.contact-pg-section .office-info .office-info-item .office-info-icon .icon .fi:before {
  font-size: 35px;
  color: #415678;
}
.contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
}
.contact-pg-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}
.contact-pg-section .contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .contact-pg-section .contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}

.contact-map-section .contact-map {
  height: 550px;
}
.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(100%);
}
.contact-map-section h2.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */