
/*----------------------------------------*/
/*  FONT STYLE
/*----------------------------------------*/
@font-face {
    font-family: 'Riffic Free';
    src: url('../fonts/RifficFree-Bold.woff2') format('woff2'),
        url('../fonts/RifficFree-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
--blue: #27aae1;
--green: #8dc63f;
--red: #ec2024;
--orange: #f7941e;
--yellow: #f4cd0b;
--purple: #2b044d;
--pink: #f9b8c4;
}
.color-blue {
  color: var(--blue)
}
.color-green {
  color: var(--green)
}
.color-orange {
  color: var(--orange)
}
.color-red {
  color: var(--red)
}

html, body {
  overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #707b8e
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: #2b044d;
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}
p {
    font-family: "Poppins", sans-serif;
    color: #707b8e;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}
main {
  overflow: hidden;
}

.f-left {
    float: left;
}
.f-right {
    float: right;
}
.fix {
    overflow: hidden;
}
.clear {
    clear: both;
}
.img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}
a {
    color: #27aae1;
}
a:hover {
    color: #292930;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    text-decoration: none;
}
a,
button {
    outline: medium none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}
 
input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}


/*----------------------------------------*/
/*  NAV MENU
/*----------------------------------------*/
.header-transparrent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}
.logo {
  padding: 9px 0;
}
.main-header {
    z-index: 3;
}

.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0 5px;
}
.main-header .main-menu ul li > a {
    color: #212121;
    font-weight: 400;
  padding: 39px 6px;
  display: block;
  font-size: 15px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: normal;
  letter-spacing: 1px;
}

.main-header .main-menu ul li:first-child a{
  color: var(--green);
}
.main-header .main-menu ul li:nth-child(2) a{
  color: var(--red);
}
.main-header .main-menu ul li:nth-child(3) a{
  color: var(--orange);
}
.main-header .main-menu ul li:nth-child(4) a{
  color: var(--yellow);
}
.main-header .main-menu ul li:nth-child(5) a{
  color: var(--blue);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header .main-menu ul li > a {
        padding: 39px 6px;
    }
}
.main-header .main-menu ul li > a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 20px;
    background: #c5cacc;
    height: 1px;
    width: 0;
    transition: 0.3s;
}
.main-header .main-menu ul li:hover > a::before {
    width: 100%;
}
.main-header .main-menu ul li.active > a::before {
    width: 100%;
}
.main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: #fff;
    left: 0;
    top: 80%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    padding: 17px 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.main-header .main-menu ul ul.submenu > li {
    margin-left: 7px;
    display: block;
}
.main-header .main-menu ul ul.submenu > li > a {
    padding: 6px 10px !important;
    font-size: 14px;
    text-transform: capitalize;
}
.main-header .main-menu ul ul.submenu > li > a::before {
    position: absolute;
    content: "";
    left: -5px;
    background: #212121;
    height: 2px;
    width: 0;
    transition: 0.3s;
    top: 50%;
}
.main-header .main-menu ul ul.submenu > li > a:hover {
    padding-left: 15px !important;
}
.main-header .main-menu ul ul.submenu > li > a:hover::before {
    width: 10px;
}
.header-area .header-top .header-info-right .header-social a i {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}
.header-area .header-top .header-info-right .header-social a:hover i {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.top-bg {
    background: #002d5b;
}
.header-sticky ul li a {
    padding: 10px 19px;
}
.header-sticky.sticky-bar.sticky .main-menu ul > li > a {
    padding: 25px 6px;
}
.header-sticky.sticky-bar.sticky .main-menu ul > li > a::before {
    bottom: 11px;
}
.slicknav_menu .slicknav_icon-bar {
    background-color: #2b044d !important;
}
.slicknav_nav {
    margin-top: 0px;
}
.header-sticky.sticky-bar.sticky .header-btn .get-btn {
    padding: 20px 20px;
}
.header-area .slicknav_btn {
    top: -63px;
}
.slicknav_menu .slicknav_nav a:hover {
    background: transparent;
    color: #8f1bdc;
}
.slicknav_menu {
    background: transparent;
    margin-top: 5px !important;
}
.mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
}
.dropdown .dropdown-menu {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*----------------------------------------*/
/*  BTN STYLE
/*----------------------------------------*/
.btn {
    background: #27aae1;
    -moz-user-select: none;
    text-transform: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 0;
    margin-bottom: 0;
    padding: 30px 44px;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
}
.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #5fc7f3;
    z-index: 1;
    border-radius: 5px;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
}
.btn:hover::before {
    transform: scaleX(1);
    color: #fff !important;
    z-index: -1;
}
.btn:hover{
  color: #fff
}
.header-btn {
    background: #4043bc;
    padding: 20px 11px;
    min-width: 120px;
    position: relative;
}
.header-btn::before {
    background: #ec4683;
}
.card-btn1 {
    background: #712fda;
    border-radius: 6px;
    padding: 30px 40px;
    text-transform: uppercase;
}
.card-btn1::before {
    background: #ff374b;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.radius-btn {
    padding: 30px 43px;
    border-radius: 30px;
}
.border-btn {
    background: none;
    -moz-user-select: none;
    border: 2px solid #8f1bdc;
    padding: 18px 38px;
    margin: 10px;
    text-transform: capitalize;
    color: #8f1bdc;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
    border-radius: 5px;
    position: relative;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.border-btn::before {
    border: 2px solid transparent;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #8f1bdc;
    z-index: -1;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleY(0);
}
.border-btn:hover::before {
    transform: scaleY(1);
    order: 2px solid transparent;
}
.border-btn.border-btn2 {
    padding: 17px 52px;
}
 
.breadcrumb > .active {
    color: #888;
}

.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    background: #fff;
}

/*----------------------------------------*/
/*  SCROLL UP
/*----------------------------------------*/
#scrollUp {
    background: #f7941e;
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 18px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
}
#scrollUp:hover {
    color: #fff;
}

/*----------------------------------------*/
/*  SLIDER
/*----------------------------------------*/
.slider-height {
    min-height: none;
    background-repeat: no-repeat;
    background-position: center center;
}

.slick-slide {
    box-shadow: none;
    border-color:none;
    color: none;
    background: none;
    outline:none;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: unset;
    -moz-user-select: unset;
    -ms-user-select: unset;
    user-select: unset;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slider-padding {
    padding-top: 180px;
    padding-bottom: 140px
}

.slider-area {
    margin-top: -1px;
}
.slider-area .hero__caption {
    position: relative;
    text-align: center
}
.slider-area .hero__caption span {
    display: inline-block;
    color: #2b044d;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.slider-area .hero__caption h1 {
    font-size: 5vw;
    color: #2b044d;
    font-family: 'Riffic Free';
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 32px;
}
.slider-area .hero__caption p {
    margin-bottom: 54px;
    padding: 0 13vw;
}
.slider-area .hero__caption .slider-btns a.video-btn {
    background: #8dc63f;
    color: #fff;
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 16px;
}
.slider-area .hero__caption .slider-btns a.video-btn:hover.ani-btn {
  color: #fff;
    animation: 1.3s cubic-bezier(0.8, 0, 0, 1) 0s normal none infinite running pulse;
    box-shadow: 0 0 0 0 rgba(61, 1, 68, 0.302);
    -webkit-animation: 1.3s cubic-bezier(217, 70, 233, 1) 0s normal none infinite running pulse;
}
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(83, 16, 90, 0);
    }
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(187, 22, 206, 0);
    }
}
.slider-area .hero__img img {
    position: relative;
    right: -63px;
}

.slider-area .hero-cap h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
}
.hero-caption span {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
    padding-left: 95px;
    position: relative;
}
.hero-caption span::before {
    position: absolute;
    content: "";
    width: 75px;
    height: 3px;
    background: #8f1bdc;
    left: 0;
    top: 52%;
    transform: translateY(-50%);
}
.hero-caption h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

/*----------------------------------------*/
/*  CIRCLES COLORS
/*----------------------------------------*/
.main__circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main__circle {
  position: absolute;
  border-radius: 50%;
}

.main__circle:first-child {
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: #FFDC60;
}

/*----------------------------------------*/
/*  FLTING BALLS 
/*----------------------------------------*/
.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
  width: 100vw;
  z-index: -1;
/*  display: none*/
}


/*----------------------------------------*/
/*  SECTION TITLE
/*----------------------------------------*/
.section-padding.sub-page {
  padding: 150px 0;
}

.section-tittle h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 50px;
    font-family: 'Riffic Free';
}


/*----------------------------------------*/
/*  QUALITY
/*----------------------------------------*/
.section-padding.sub-page .quality {
  margin: 0 0 0 0
}
.quality {
  position: relative;
  margin: 0px 0 90px 0
}

.quality__head {
  position: relative;
  padding: 300px 0 90px;
}

.quality__stage {
  margin-bottom: 24px;
  color: #C75C6F;
}

.quality__top {
  margin-bottom: 48px;
}

.quality__info {
  max-width: 410px;
}

.quality__line, .quality__preview, .quality__circle, .quality__icon {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.quality__line {
  position: absolute;
  top: 0;
  left: calc(50% - 517px);
  bottom: -1px;
  font-size: 0;
}

.quality__line .quality__pic {
  width: auto;
  height: 100%;
}

.quality__preview {
  top: 126px;
  right: calc(50% - 724px);
  width: 480px;
  font-size: 0;
}

.quality__pic {
  width: 100%;
}

.quality__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #E3E6E9;
}

.quality__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  min-height: 450px;
  height: auto;
  padding-top: 5px;
  border-bottom: 1px solid #E3E6E9;
}

.quality__col:nth-child(2n+1) {
  border-right: 1px solid #E3E6E9;
}

.quality__col:nth-child(2n+1) .quality__item {
  margin-left: auto;
  margin-right: 100px;
}

.quality__col:nth-child(2n) .quality__item {
  margin-left: 100px;
}

.quality__col:nth-child(1) .quality__icon {
  top: -18px;
  left: -18px;
  width: 295px;
}

.quality__col:nth-child(2) .quality__icon {
  top: -50px;
  left: -71px;
  width: 255px;
}

.quality__col:nth-child(3) .quality__icon {
    top: -30px;
    left: -33px;
    width: 202px;
}

.quality__col:nth-child(4) .quality__icon {
    top: -41px;
    left: -162px;
    width: 348px;
}

.quality__col:nth-child(5) .quality__icon {
    top: -35px;
    left: -103px;
    width: 300px;
}

.quality__col:nth-child(6) .quality__icon {
    top: -84px;
    left: -63px;
    width: 230px;
}

.quality__col:nth-child(7) .quality__icon {
    top: -56px;
    left: -103px;
    width: 300px;
}

.quality__col:nth-child(8) .quality__icon {
    top: 0;
    left: -44px;
    width: 230px;
}

.quality__item {
  position: relative;
  max-width: 420px;
  padding-left: 180px;
}

.quality__category {
  margin-bottom: 24px;
  line-height: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.quality__text {
  margin-bottom: 46px;
  color: #707b8e;
}

.quality__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  color: #292930;
}

.quality__circle {
  border-radius: 50%;
  display: none
}

.quality__circle:first-child {
    top: -572px;
    right: calc(0% - 277px);
    width: 448px;
    height: 448px;
    background: #27aae1;
    z-index: 9;
}

.quality__circle:nth-child(2) {
  top: 356px;
  right: calc(50% - 618px);
  width: 40px;
  height: 40px;
  background: #FFDC60;
}


/*----------------------------------------*/
/*  FEATURES
/*----------------------------------------*/

.best-features-area {
    position: relative;
}
.best-features-area .single-features {
    display: flex;
}
.best-features-area .single-features:first-child .features-icon span {
  background: var(--orange);
}
.best-features-area .single-features:nth-child(2) .features-icon span {
  background: var(--red);
}
.best-features-area .single-features:nth-child(3) .features-icon span {
  background: var(--green);
}
.best-features-area .single-features:nth-child(4) .features-icon span {
  background: var(--blue);
}
.best-features-area .single-features .features-icon span {
    position: relative;
    color: #fff;
    font-size: 30px;
    height: 67px;
    width: 67px;
    display: block;
    line-height: 67px;
    border-radius: 50%;
    text-align: center;
    background: var(--blue)
}
.best-features-area .single-features .features-caption {
    padding-left: 19px;
    margin: 20px 0 60px 0;
}
.best-features-area .single-features .features-caption h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #23182c;
}
.best-features-area .features-shpae {
    position: absolute;
    left: 30px;
    top: 100px;
}
.best-features-area .features-shpae.features-shpae2 {
    top: 300px;
}
.best-features-area .features-shpae img {
    max-width: 80%;
}


/*----------------------------------------*/
/*  SAY SOMTHING CTA
/*----------------------------------------*/
.say-something-aera {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 90px 0;
}
.say-something-aera .say-something-cap h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #2b044d;
    font-family: 'Riffic Free';
}

.say-something-aera .say-shape .say-shape1 {
    position: absolute;
    left: -99px;
    bottom: -140px;
}
.say-something-aera .say-shape .say-shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 700px;
}

 /*----------------------------------------*/
/*  FACILITY
/*----------------------------------------*/
.facility {
  margin-top: 35px
}
.facility img {
  margin-bottom: 35px
}
.facility.responsive-imgs img {
  margin-bottom: 35px!important;
  width: 1200px!important
}
 /*----------------------------------------*/
/*  STAFF
/*----------------------------------------*/
.keystaff {
  margin-top: 35px
}
.team-member {
  margin-bottom: 35px;
  position: relative;
  min-height: 215px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-member.keystaff {
  min-height: 400px 
}
.team-member:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #c5cacc;
  border-radius: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-member img {
  position: relative;
  border-radius: 0;
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 25px;
  z-index: 2;
}
.team-member .member-info {
  position: relative;
  text-align: center;
  padding: 40px 20px 47px;
  width: 100%;
  z-index: 3;
}
.team-member .member-info h3 {
  font-size: 25px;
  padding-bottom: 0;
}
.team-member .member-info p {
  margin-bottom: 10px;
}
.team-member .member-info .site-btn {
  min-width: 127px;
}

 /*----------------------------------------*/
/*  GALLERY
/*----------------------------------------*/
.gallery-thumnail {
  width: 100%;
  position: absolute;
  left: 0;
}
.gallery-thumnail img {
  overflow: hidden;
  max-width: fit-content;
  width: auto;
  height: 450px;
  padding-top: 60px;
  margin-left: 50px;
}
.listing-pro-gallery {
  margin-top: 35px;
  list-style-type: none!important;
  padding-left: 0!important
}
.single-listing-gallery {
  position: relative;
  z-index: 1;
  width: 24.7%;
  padding-bottom: 25px;
/*  margin: 0.9%;
  margin-right: 1.9%;*/
  margin-left: 0;
  top: 0; 
}
/*ul#animated-thumbnials li:nth-of-type(1),
ul#animated-thumbnials li:nth-of-type(3){
  padding-right: 25px;
}
*/
ul#animated-thumbnials li {
  display: inline-block;
  padding-right: 25px;
  list-style-type: none;
}

li.single-listing-gallery {
    padding-left: 0
}

li.single-listing-gallery:before {
  display: none;
}

.single-listing-gallery a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
  top: 50%;
/*  transform: translateY(-50%);*/
}

.single-listing-gallery a {
  display: block;
  width: 100%;
  height: 200px;
  position: relative;
  border-bottom: 0;
  z-index: 10;
}

/* gallery subpages */
ul#animated-thumbnials-2 .gallery-thumnail {
  width: 100%;
  position: absolute;
  left: 0;
}
ul#animated-thumbnials-2 .gallery-thumnail img {
  overflow: hidden;
  max-width: fit-content;
  width: auto;
  height: 150px;
  padding-top: 60px;
  margin-left: 50px;
}
ul#animated-thumbnials-2 .listing-pro-gallery {
  margin-top: 35px;
  list-style-type: none!important;
}
ul#animated-thumbnials-2 .single-listing-gallery {
  position: relative;
  z-index: 1;
  width: 25%;
  padding-bottom: 25px;
/*  margin: 0.9%;
  margin-right: 1.9%;*/
  margin-left: 0;
  top: 0; 
}
ul#animated-thumbnials-2 li.single-listing-gallery:nth-of-type(4),
ul#animated-thumbnials-2 li.single-listing-gallery:nth-of-type(8),
ul#animated-thumbnials-2 li.single-listing-gallery:last-of-type{
  padding-right: 0;
}

ul#animated-thumbnials-2 li.single-listing-gallery {
    padding-right: 25PX
}

ul#animated-thumbnials-2 li.single-listing-gallery:before {
  display: none;
}

ul#animated-thumbnials-2 .single-listing-gallery a img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

ul#animated-thumbnials-2 .single-listing-gallery a {
  display: block;
  width: 100%;
  height: 150px;
  position: relative;
  z-index: 10;
}


/*----------------------------------------*/
/*  CONTACT
/*----------------------------------------*/
.contact-info {
  margin-bottom: 13px;
}
.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.contact-info .media-body p {
  font-size: 15px;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.contact-info__icon {
  margin-right: 20px;
}
.contact-info__icon i, .contact-info__icon span {
  font-size: 27px;
}
.form-contact .form-control {
  border: 3px solid #ced4da;
  border-radius: 5px;
  height: 70px;
  padding-left: 18px;
  font-size: 18px;
  background: transparent;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
}
.form-contact .form-control:focus,
.form-contact .form-control:active {
  border: 3px solid #b6b6b9;
  outline:0 !important;
  box-shadow: none!important;
}
table tr th {
  padding-right: 15px;
  font-size: 15px
}

/*----------------------------------------*/
/*  FOOTER
/*----------------------------------------*/
.footer-padding {
    padding-top: 120px;
    padding-bottom: 100px;
}
.footer-area .footer-logo {
    margin-bottom: 30px;
}
.footer-area .footer-pera .info1 {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-area .footer-pera .info2 {
    margin-bottom: 50px;
    line-height: 1.8;
}
.footer-area .footer-pera.footer-pera2 p {
    padding: 0;
}
.footer-area .footer-tittle h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 48px;
    font-weight: 700;
}
.footer-area .footer-tittle ul li {
    color: #012f5f;
    margin-bottom: 15px;
}
.footer-area .footer-tittle ul li a {
    color: #868c98;
    font-weight: 300;
}
.footer-area .footer-tittle ul li a:hover {
    color: #27aae1;
    padding-left: 5px;
}
.footer-area .footer-form {
    margin-top: 40px;
}
.footer-area .footer-form form {
    position: relative;
}
.footer-area .footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 1px solid #fff;
    background: #f9f9fe;
}
.footer-area .footer-form form .form-icon button {
    position: absolute;
    top: 1px;
    right: 0;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 11px 22px;
    background: #8f1bdc;
    line-height: 1;
}
.footer-area .info.error {
    color: #8f1bdc;
}
.footer-area .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #fafafa;
    background: #fafafa;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    color: #949eb2;
    margin-right: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.footer-area .footer-copy-right {
    padding-top: 20px;
}

.footer-area .footer-copy-right p {
    color: #000;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
}
.footer-area .footer-copy-right p i {
    color: #f9218d;
}
.footer-area .footer-copy-right p a {
    color: #27aae1;
    position: absolute;
    margin-left: 7px;
}
.footer-area .footer-copy-right p a:hover {
    color: #27aae1;
}
.footer-social a:hover {
    background: #8f1bdc;
}
.footer-social a:hover i {
    color: #fff;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/*----------------------------------------*/
/*  PRELOADING
/*----------------------------------------*/
.bounce-animate {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}
.preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border-style: solid;
    border-width: 3px;
    border-top-color: #8f1bdc;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-circle2 {
    border-top-color: #0078ff;
}
.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-img img {
    max-width: 55px;
}
.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}