﻿#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #123ebc;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #123ebc;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
a:hover,
a:active {
  color: #123ebc;
  text-decoration: none;
}
.h-100vh {
  height: 100vh;
}
.theme-overlay[data-overlay-dark]:before {
  background: #123ebc;
}
.text-primary {
  color: #123ebc!important;
}
.text-blanc {
  color: #fff !important;
}
.text-secondary {
  color: #285cb1 !important;
}
.text-dark {
  color: #282b2d !important;
}
.bg-primary {
  background: #33cf02!important;
}
.bg-secondary {
  background: #285cb1 !important;
}
.ptifont{
	font-size: 11px;
}
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #1e2022;
  background: #fff;
}
.scroll-to-top:hover i {
  color: #1e2022;
}
.scroll-to-top:visited {
  color: #1e2022;
  text-decoration: none;
}
.butn {
  color: #fff;
  background: #0223cf;
  text-align: center !important;
  display: inline-block;
  padding: 13px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
  border: unset;
}
.butn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f99218;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.butn:hover,
.butn:active,
.butn:focus {
  color: #fff !important;
  background: #f99218;

}
.butn:hover:before,
.butn:active:before,
.butn:focus:before {
  transform-origin: left center;
  transform: scale(1, 1);
  background: #f99218;

}
.butn.medium {
  padding: 9px 32px !important;
}
.butn.small {
  padding: 8px 20px !important;
}
.butn.primary {
  background: #123ebc;
}
.butn.primary:hover:before,
.butn.primary:active:before,
.butn.primary:focus:before {
  background: #fff;
}
.butn.primary:hover,
.butn.primary:active,
.butn.primary:focus {
  color: #123ebc!important;
}
.butn.primary.secondary-hover:hover:before,
.butn.primary.secondary-hover:active:before,
.butn.primary.secondary-hover:focus:before {
  background: #285cb1;
}
.butn.primary.secondary-hover:hover,
.butn.primary.secondary-hover:active,
.butn.primary.secondary-hover:focus {
  color: #fff !important;
}
.min-vh-100 {
  min-height: 100vh;
}
.height-300 {
  height: 300px;
}
.list-style1 li {
  background: #efefef;
  border: none;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 5px;
}
.list-style1 li:hover,
.list-style1 li:active,
.list-style1 li:focus {
  background-color: #123ebc;
}
.list-style1 li:hover a,
.list-style1 li:active a,
.list-style1 li:focus a {
  color: #fff;
}
.list-style1 li:last-child {
  margin-bottom: 0;
}
.list-style2 li {
  line-height: 24px;
  position: relative;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.list-style2 li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #123ebc;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  z-index: 2;
}
.list-style2 li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  z-index: 1;
  border: 1px solid #123ebc;
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #123ebc;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #123ebc#123ebctransparent;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: #123ebc;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #123ebc#123ebctransparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #123ebc;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #123ebc;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #123ebc;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #123ebc#123ebctransparent;
}

.input-icon {
    position: relative
}

span.input-icon {
    display: inline-block
}

.input-icon>input {
    padding-left: 24px;
    padding-right: 6px;
}

.input-icon.input-icon-right>input {
    padding-left: 6px;
    padding-right: 24px
}

.input-icon>.ace-icon {
    padding: 0 5px;
    z-index: 2;
    position: absolute;
    top: 33px;
    bottom: 1px;
    left: 3px;
    line-height: 35px;
    display: inline-block;
    color: #000;
    font-size: 20px;
}

.input-icon.input-icon-right>.ace-icon {
    left: auto;
    right: 9px
}

.input-icon>input:focus+.ace-icon {
    color: #579
}

.input-icon~.help-inline {
    padding-left: 8px
}

/* loan-calculator */
.loan-calculator {
  margin-top: 160px;
}

.loan-calculator form input ::before {
  content: "€";
  color: ;
  font-weight: 400;
  opacity: 0.9;
}
.loan-calculator .result {
}

.loan-calculator .result .left {
}

.loan-calculator .left h3 {
}

.loan-calculator .result .value {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(20, 33, 61, 0.2) !important;
}

.loan-calculator .result .value::before {
  content: "€";
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-right: 6px;
  opacity: 0.9;
}

.loan-calculator .calculate-btn {
  display: block;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.loan-calculator .right {
  width: 50%;
}

#banner{
  min-height: 630px !important;
}
  #banner2 {
    min-height: 300px !important;
  }

.calculator-loan input {
  margin-bottom: 20px !important;
  min-height: 46px;
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 0.375rem 1.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.calculator-loan input ::before {
  content: "€";
  color: ;
  font-weight: 400;
  opacity: 0.9;
}
.calculator-loan label {
  font-weight: bold;
  font-size: 16px;
}
.calculator-loan .results-label {
  margin-bottom: 10px;
  display: block;
  text-align: left;
  font-size: 22px;
}
.calculator-loan .results > p {
  display: inline-block;
  width: 49%;
  font-size: 18px;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.calculator-loan .results p strong {
  font-weight: 500;
}
.calculator-loan .results p:nth-child(3),
.calculator-loan .results p:last-child {
  margin-bottom: 0;
}
.calculator-rate, .rate {
    background: #fff !important;
    border: 0px solid !important;
    font-weight: 900 !important;
    font-size: 30px  !important;
    padding-top: 0 !important;
}
.main-title {
  padding-right: 44px;
  padding-left: 44px;
  position: relative;
  color: #285cb1;
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-block;
  text-transform: uppercase;
}
.main-title.title-left {
  padding-left: 0;
}
.main-title .line-right,
.main-title .line-left {
  width: 31px;
  height: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.main-title .line-right {
  left: 0;
}
.main-title .line-left {
  right: 0;
}
.main-title .line-left:before {
  content: "";
  background-color: #285cb1;
  position: absolute;
  height: 2px;
}
.main-title .line-right:before,
.main-title .line-left:after,
.main-title .line-right:after {
  content: "";
  background-color: #285cb1;
  position: absolute;
  height: 2px;
}
.main-title.white .line-left:before,
.main-title.white .line-right:before,
.main-title.white .line-left:after,
.main-title.white .line-right:after {
  background-color: #fff;
}
.main-title .line-left:before,
.main-title .line-right:before {
  width: 100%;
  top: 0;
  right: 0;
}
.main-title .line-left:after,
.main-title .line-right:after {
  width: 17px;
  bottom: 0;
}
.main-title .line-left:before,
.main-title .line-left:after {
  left: 0;
}
.main-title .line-right:before,
.main-title .line-right:after {
  right: 0;
}
.page-title-section h1 {
  font-size: 48px;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.page-title-section2 h1 {
  font-size: 48px;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.page-title-section ul,
.page-title-section2 ul {
  margin-bottom: 0;
  margin-top: 8px;
}
.page-title-section ul li,
.page-title-section2 ul li {
  display: inline-block;
}
.page-title-section ul li:last-child a,
.page-title-section2 ul li:last-child a {
  color: #d3d3d3;
}
.page-title-section ul li:last-child:after,
.page-title-section2 ul li:last-child:after {
  content: none;
}
.page-title-section ul li:after,
.page-title-section2 ul li:after {
  content: "\e622";
  font-weight: 700;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.6);
  font-family: "themify";
  padding: 0 5px 0 10px;
}
.page-title-section ul li a,
.page-title-section2 ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.page-title-section .active a,
.page-title-section2 .active a {
  color: #fff;
}
.card-style1 {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 5px;
}
.card-style1 .service-data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 30px 22px 40px;
  background-color: #33cf02;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(19, 191, 54, 0.95)',endColorStr='rgba(131, 236, 56, 0.95)');
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.card-style1 .card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(51 207 2 / 57%);
  padding: 45px 40px;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(100%);
  border-radius: 5px;
}
.card-style1 .card-body .service-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 20px;
}
.card-style1 .card-body .service-title {
  margin-bottom: 0;
  font-size: 22px;
}
.card-style1:hover .service-data {
  transform: translateY(100%);
  opacity: 0;
}
.card-style1:hover .card-body {
  transform: translateY(0%);
  opacity: 1;
}
.card-style2 {
  border: unset;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
}
.card-style2 .card-body {
  padding: 45px 30px 30px 40px;
}
.card-style2 span {
  position: absolute;
  right: 40px;
  top: -32px;
  height: 60px;
  width: 60px;
  background-color: #123ebc;
  border-radius: 50%;
  font-size: 25px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.card-style3 {
  border: unset;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  height: 100%;
}
.card-style3 .card-body {
  transition: all 0.7s ease;
}
.card-style3 img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style3:hover .card-body {
  background-color: #285cb1;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.card-style3:hover .butn {
  background-color: #fff;
  color: #285cb1;
}
.card-style3 .card-body h3 {
  color: #282b2d;
}
.card-style3:hover .card-body h3,
.card-style3:hover .card-body h6 {
  color: #fff;
}
.card-style4 {
  border: none;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.card-style4 img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style5 {
  border: unset;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  height: 100%;
}
.card-style6 {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.card-style6 img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style6 .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000;
  transition: all 300ms linear 0ms;
  transform: scaleX(0);
  opacity: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style6:hover .item-overlay {
  opacity: 0.7;
  transform: scaleX(1);
}
.card-style6 .btn-readmore {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
  z-index: 2;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
.card-style6 .btn-readmore a {
  display: inline-block;
  font-size: 32px;
  color: #fff;
  height: 54px;
  width: 54px;
  line-height: 50px;
  text-align: center;
  background-color: #285cb1;
  border-radius: 100%;
}
.card-style6 .btn-readmore a:hover {
  background-color: #123ebc;
}
.card-style6:hover .btn-readmore {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.card-style7 .card-body {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
}
.card-style7:hover .card-body {
  opacity: 1;
  visibility: visible;
}
.card-style7 .card-body .social-icon-style3 {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.card-style7 .card-body .team-content {
  display: inline-block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.card-style7:hover .card-body .team-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}
.card-style7:hover .card-body .social-icon-style3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}
.card-style7:hover .card-body .social-icon-style3 li {
  display: inline-block;
}
.card-style8 {
  border: none;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.card-style8 img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style8 .video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.card-style8 .social-icon a {
  color: #285cb1;
}
.card-style8 .social-icon a:hover {
  color: #123ebc;
}
.about-img .image-box {
  position: relative;
  display: block;
  padding-right: 40px;
  margin-right: 20px;
  padding-bottom: 120px;
}
.about-img .image-box .image-2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}
.about-img .image-box .image-1 {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.content-box ul li {
  line-height: 24px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.content-box ul li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #123ebc;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  z-index: 2;
}
.content-box ul li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  z-index: 1;
  border: 1px solid #123ebc;
}
.about-box {
  position: absolute;
  left: 150px;
  bottom: 55px;
  border-radius: 5px;
  background-color: #33cf02;
  padding: 30px 20px;
  width: 180px;
  text-align: center;
}
.testimonial-carousel .user-img .quote i {
  font-size: 55px;
  position: absolute;
  top: 115px;
  right: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.testimonial-carousel .owl-nav {
  margin-top: 0;
}
.testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 1rem;
  right: inherit;
}
.testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  left: inherit;
}
.testimonial-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50% !important;
  background-color: #285cb1 !important;
}
.testimonial-carousel.owl-theme .owl-nav button:hover {
  background-color: #123ebc!important;
}
.testimonial-carousel.owl-theme .owl-nav button span {
  color: #fff;
}
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #123ebc;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@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;
  }
}
.filtering {
  margin-bottom: 40px;
}
.filtering span {
  cursor: pointer;
  font-size: 14.4px;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 5px;
  padding: 6px 15px;
  background: #285cb1;
  color: #ffffff;
  border-radius: 5px;
}
.filtering span:last-child {
  margin: 0;
}
.filtering .active {
  color: #ffffff;
  background: #123ebc;
}
.portfolio-box:before {
  background-color: #123075;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: auto;
  height: auto;
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
  content: "";
  position: absolute;
  transition: all 0.4s ease 0.2s;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 5px;
}
.portfolio-box:hover:before {
  opacity: 0.93;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.portfolio-box .portfolio-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
  z-index: 2;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 50px;
  padding-right: 50px;
}
.portfolio-box:hover .portfolio-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.pot-data-list {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.portfolio-carousel .owl-carousel .owl-dots.disabled {
  display: block;
}
.portfolio-carousel.owl-theme .owl-dots .owl-dot span {
  width: 24px;
  height: 5px;
  background-color: #285cb1;
}
.portfolio-carousel.owl-theme .owl-dots .owl-dot.active span,
.portfolio-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #123ebc;
}
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline;
  margin-right: 20px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  background: #efefef;
  font-weight: 700;
  text-align: center;
  padding: 8px 20px;
  border-radius: 5px;
  color: #575a7b;
  border: none;
  line-height: 25px;
}
.pagination a:hover {
  background-color: #123ebc;
  color: #ffffff;
}
.pagination .active a {
  background-color: #f7f7f7;
  color: #002147;
  border: 1px solid #dbdbdb;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ff6d34;
}
.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
.accrue-field-rate p{
    margin-bottom: 0px !important;
}
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  margin-top: 0 !important;
  border: none;
}
.accordion-style .card:last-child {
  margin-bottom: 0;
}
.accordion-style .card-header {
  border: 0;
  background: none;
  padding: 0;
  border-bottom: none;
}
.accordion-style .btn-link {
  color: #123ebc;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  padding: 15px 55px;
  text-decoration: none;
}
.accordion-style .btn-link:hover {
  text-decoration: none;
}
.accordion-style .btn-link.collapsed {
  color: #575a7b;
}
.accordion-style .btn-link.collapsed:after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1rem;
  color: #123ebc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.accordion-style .btn-link:after {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1rem;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #123ebc;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.accordion-style .card-body {
  padding-top: 0px;
  padding-left: 3.5rem;
  padding-bottom: 0;
}
.accordion-style .card-body:before {
  position: absolute;
  content: "";
  border-style: dashed;
  border-width: 0 0 0 1.2px;
  border-color: #123ebc;
  left: 20px;
  top: 0;
  z-index: 1;
  bottom: 0;
}
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
  padding-left: 0;
}
.resp-tabs-list li {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  min-width: 180px;
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #6f6f6f;
}
.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}
.resp-tab-content {
  display: none;
  padding: 0;
}
.resp-tabs-list li.resp-tab-active i {
  color: #fff;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
.resp-tab-content {
  float: left;
  width: 100%;
}
h2.resp-accordion {
  background: #fff !important;
  cursor: pointer;
  display: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  border-top: 0px solid #e4e4e4;
  margin: 0px;
  padding: 15px 21px;
  float: left;
  width: 100%;
}
h2.resp-tab-active {
  border-bottom: 0px solid #e4e4e4 !important;
  background: #123ebc!important;
  color: #fff;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #e4e4e4 !important;
  background: #00baee;
}
.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.tab-style1 .resp-tabs-list li {
  min-width: 140px;
  text-align: center;
  padding: 10px 13px 10px 14px;
  border-radius: 5px;
}
.tab-style1 .resp-tabs-list li.resp-tab-active {
  background-color: #33cf02!important;
  color: #fff;
}
.tab-style1 .resp-tab-content {
  padding: 20px 0 0px 0;
}
.tab-style1 .resp-tabs-list .resp-tab-item:before,
.tab-style1 .resp-tabs-list .resp-tab-item:after {
  display: none;
}
.tab-style1 h2.resp-accordion {
  border-top: 1px solid #e4e4e4;
}
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 35%;
  padding-right: 30px;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 34px 40px !important;
  margin: 0 0 12px;
  cursor: pointer;
  float: none;
  position: relative;
  z-index: 1;
  border: none;
  background-color: #fff;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.resp-vtabs .resp-tabs-list li:last-child {
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-width: 12px;
  border-color: transparent transparent transparent #123ebc;
  border-style: solid;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: none;
  float: left;
  width: 65%;
  min-height: 250px;
  clear: none;
}
.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
  background-color: #123ebc;
}
.resp-vtabs li.resp-tab-active h3,
.resp-vtabs li.resp-tab-active p {
  color: #fff;
}
.resp-vtabs li.resp-tab-active:after {
  opacity: 1;
}
.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.tab-style2 .resp-tabs-list li {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  min-width: 164px;
  text-align: center;
  padding: 8px 10px;
  position: relative;
  border-radius: 5px;
}
.tab-style2 .resp-tabs-list li.resp-tab-active {
  background-color: #123ebc;
  color: #fff;
}
.tab-style2 .resp-tabs-list li.resp-tab-active:after {
  opacity: 1;
}
.tab-style2 .resp-tabs-list li:after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -36px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-width: 12px;
  border-color: #f48f19 transparent transparent transparent;
  border-style: solid;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
}
.loan-type ul li {
  margin-bottom: 15px;
}
.loan-type ul li a {
  display: block;
  box-shadow: 0px 0px 23px 0 rgba(0, 0, 0, 0.12);
  padding: 16px 18px;
  transition: all 0.5s ease;
  border-radius: 5px;
}
.loan-type ul li.active a {
  color: #ffffff !important;
  border-color: #123ebc;
  background: #123ebc;
}
.loan-type ul li a:hover {
  color: #285cb1;
}
.modal-backdrop {
  z-index: 99999;
}
.modal {
  z-index: 999999;
}
.icon-gallery .d-table {
  margin-top: 30px;
}
.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff;
}
.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #123ebc;
}
pre[class*="language-"] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0;
}
.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.html-code:before {
  color: #c8dfab;
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out;
}
.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}
.html-code .copy-element {
  top: 15px;
  right: 30px;
}
.html-code:hover .copy-element,
.html-code:hover .source-element {
  opacity: 1;
}
.box-hover:hover .copy-element,
.box-hover:hover .source-element {
  opacity: 1;
}
.copy-element > a,
.source-element > a {
  border-radius: 0.25rem;
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer !important;
  font-weight: 600;
}
.copy-element > a:hover,
.source-element > a:hover {
  background: #123ebc;
  color: #fff !important;
}
.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px;
}
.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;
  border-radius: 5px;
  margin: 40px auto;
  border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
  display: block !important;
  height: 0;
  position: absolute;
  z-index: -1;
  padding: 0;
  opacity: 0;
  margin: 0;
}
.white-popup-block:before {
  color: rgba(3, 169, 245, 0.2);
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.white-popup-block:hover .copy-element {
  opacity: 1;
}
.white-popup-block .copy-element {
  top: 45px;
  right: 30px;
}
.box-hover {
  position: relative;
}
.box-hover .container {
  position: relative;
}
.inner-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 20px;
}
  .copy-element,
  .source-element {
    top: 65px;
  }
}
.contact-box {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.contact-box .media i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background: #285cb1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
}
.countdown {
  list-style: none;
  padding-left: 0;
}
.countdown li {
  border-right: 1px solid rgba(59, 59, 59, 0.13);
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  color: #232323;
}
.countdown li:first-child {
  padding-left: 0;
}
.countdown li:last-child {
  padding-right: 0;
  border-right: none;
}
.countdown li span {
  font-size: 50px;
  margin-bottom: 5px;
  position: relative;
}
.countdown li span:before {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.sidebar .widget {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.sidebar .form-search .input-group .form-control {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #ecf3ff;
  display: block;
  outline: 0;
  border-radius: 5px;
  transition: 0.5s;
}
.sidebar .form-search .input-group button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  z-index: 1;
  border: none;
  padding: 0 !important;
  color: #fff;
  background-color: #285cb1;
  transition: 0.5s;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.sidebar .tags a {
  background: #efefef;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 10px 0 0;
  display: inline-block;
}
.sidebar .tags a:hover {
  background: #123ebc;
  color: #fff;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #123ebc;
}
.form-check-input:checked {
  border-color: #123ebc;
  background-color: #123ebc;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
}
.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: #123ebc;
  height: 22px;
  line-height: 22px;
  width: 22px;
  border-radius: 50%;
}
.social-icon-style2 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style2 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
.social-icon-style2 li a {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  border: 0px solid;
  background: #6d8d05;
  height: 22px;
  line-height: 22px;
  width: 22px;
  border-radius: 50%;
}
.bleublanc{
  background: #0a58ca !important;
  color: #fff !important;
  border: solid #0a58ca !important;
}
.margo{
 margin: 0 10px;
}
.social-icon-style1 li a:hover {
  background: #285cb1;
}
.social-icon-style1 li:last-child {
  margin-right: 0;
}
.social-icon-style2 a {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
  background: #123ebc;
  height: 35px;
  line-height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #123ebc;
}
.social-icon-style2 a:hover {
  color: #123ebc;
  background: #fff;
  border: 1px solid #123ebc;
}
.social-icon-style3 li a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 38px;
  color: #123ebc;
  font-size: 16px;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
}
.social-icon-style3 li a:hover {
  background-color: #123ebc;
  border: 1px solid rgba(249, 146, 24, 0.2);
  color: #fff;
}
.services-block {
  margin-top: -70px;
  position: relative;
  z-index: 9;
  overflow: visible;
  background-color: rgba(225, 225, 225, 0.2);
}
.along{
  font-size: 11px;
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #ff6d34;
}
.lg-progress-bar .lg-progress {
  background-color: #ff6d34;
}
.lg-backdrop.in {
  opacity: 0.85;
}
.search-form_input {
  color: #123ebc;
}
.search-frame h4 a:hover {
  color: #123ebc;
}
.search-frame .search_list .match {
  color: #123ebc;
}
.search-frame .search_list li:before {
  color: #123ebc;
}
.search-frame .search_list li + li {
  border-top: 3px solid #123ebc;
}
.search-frame .search {
  color: #123ebc;
}
.coltet{
  background-color: #6d8d05;
}
.blanco li a {
  color: #ffffff;
}
footer {
  padding: 40px 0 0;
  background: #191919;
}
footer .newsletter-form input {
  border: none;
}
.footer-bar {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  text-align: center;
  background: #0c0c0c;
}
.header-bar {
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: center;
  background: #f7f7f7;
}
.txt-head{
  font-weight: 700;
  font-size: 13px;
}
.footer1 .form-control {
  border: none;
  color: #616870;
  font-size: 16px;
  font-weight: 500;
  height: 53px;
  border-radius: 5px;
}
.footer1 .footer-link li a {
  color: #fff;
}
.footer1 .footer-link li a:hover {
  color: #123ebc;
}
.footer1 .media img {
  border-radius: 5px;
}
.footer1 .footer-top {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.buy-theme {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 130px;
  right: -89px;
  background: #123ebc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.buy-theme i {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.all-demo i {
  font-size: 15px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.buy-theme:hover,
.all-demo:hover {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  right: 0px;
  background: #232323;
}
.buy-theme span,
.all-demo span {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 0;
}
.buy-theme:hover span,
.all-demo:hover span {
  opacity: 1;
  color: #fff;
}
.buy-theme:hover i,
.all-demo:hover i {
  color: #fff;
}
.buy-theme a,
.all-demo a {
  color: #232323;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}
.all-demo {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 172px;
  right: -105px;
  background: #285cb1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
#simple-dialog {
    position: fixed;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
}
#modal {
    position: fixed;
    width: 35%;
    background-color: #ffffff;
    top: 30%;
    text-align: center;
    color: #2c3e50;
    margin: 0 auto;
    left: 30%;
    padding: 30px;
}

  .header-style1 {
    position: fixed !important;
    width: 100%;
  }
  .parseuh .parso {
    padding:0px;
  }


.langmainset, #langmainset{
    padding: 0px 14px 2px 14px ;
    display:block;
    font-weight:500;
    border:1px solid #e8e8e8;
    text-align: center;
}
.langmainset img, #langmainset img{
    position: relative;
    top: 10px;
    height: 11px;
}
.langmainset e, #langmainset e{
    display: inline-block;
    font-size: 11px;
}
.langsboxset {
    padding-left: 0px;
    list-style: none;
    position: fixed;
    z-index: 9000;
    background-color: #fff;
}
.langsboxset ul{
    list-style: none;
    padding: -1px 2px;
}
.langsboxset li{
    list-style: none;
    padding: -1px 2px;
}
#langsboxsetcontener ul{
    display: none;
}
#langsboxsetcontener ul:hover{
    display: block;
}
#langsboxsetcontener a:hover {
    display: block;
    background-color: #2169EC;
    color: #fff;
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0);
    z-index: 1000;
}

@media screen and (max-width: 991px) {
  #modal {
    font-size: 15px;
    top: 10%;
    left: 20%;
    width: 60%;
  }
  .loan-calculator .result {
    margin: 70px 0;
  }
  .parseuh div {
    display: inline-block;
    padding: 0px;
    margin: 0px 2px;
  }
  .parsa {
    width: 45%;
  }
  .parsi {
    width: 30%;
  }
  .parso {
    width: 20%;
    padding-left: 0px;
  }
  .social-icon-style2 li {
    margin-right: 3px;
}
  .blanco li a {
    color: #333;
  }
  .margo{
   font-size: 11px;
   margin: 0 0px;
  }
  .social-icon-style2 {
    padding: 0px;
}
  .navbar {
    padding-left: 5% !important;
  }
  .loan-calculator h1 {
    font-size: 10px;
  }
  #banner {
    min-height: 1060px !important;
  }
  #banner2 {
    min-height: 300px !important;
  }
  .services-block {
    margin-top: -39%;
  }
  .services-block .container{
    margin: 0px 10px;
  }
  .services-block .container .row .col-sm-6{
    display: inline-block;
    width: 50%;
  }
  .header-style1 .navbar-toggler{
    border-radius: 5px;
  }
  .h5, h5 {
    font-size: 0.95rem;
  }
  .loan-calculator {
    margin-top: 200px;
  }
  .loan-calculator .calculate-btn {
    font-size: 1rem;
  }
  .langmainset, #langmainset {
    padding: 0px 3px 2px 3px;
    margin: 1px 0px;
    display: block;
    font-weight: 500;
    border: 1px solid #e8e8e8;
  }
  .petred {
    font-size: 10px;
  }
}


@media screen and (max-width: 452px) {
  #modal {
    top: 10%;
    left: 0 !important;
    width: 100% !important;
  }
  #inscription {
    margin-top: 1rem !important;
  }
}

