body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
      font-family: "Averta",Arial,sans-serif;
      font-family: 'EB Garamond';
      font-family: 'poppins';
      /*font-family: 'Noto Sans', sans-serif;*/
      overflow-x: hidden;
}

p {
    color: #848484;
    font-size: 16px;
    line-height: 28px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-family: 'lora';
}

.no-padding {
  padding: 0 !important;
}

.inline-block {
  display: inline-block;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  transition: all .3s ease-in 0s;
}

iframe {
  border: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus, a:hover {
  color: #28ABE3;
}

.sign_in_btn {
    padding: 10px 25px;
    color: #7531aa;
    background: none;
    border: 2px solid #7531aa;
    font-weight: 500;
    border-radius: 25px;
    transition: 0.3s ease;
}
.sign_in_btn:hover{
  border: 2px solid #7531aa;
  background: #7531aa;
  color: white;
}

.sign_up_btn {
    padding: 10px 25px;
    color: white;
    background: #7531aa;
    border: 2px solid #7531aa;
    font-weight: 500;
    border-radius: 25px;
    transition: 0.3s ease;
}
.sign_up_btn:hover{
  background: #5d267f;
  border: 2px solid #5d267f;
  color: white;
}



.btn-main {
  background: #28ABE3;
  border: 1px solid #28ABE3;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 40px;
  text-transform: uppercase;
  border-radius: 40px;
}

.hero{
  /*background-image: url("../images/hero_guy_seated_with_phone-upd-0420.png");*/
  background-size: cover;
  padding: 10% 0%;
  text-align: center;
  color: #fff;
background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

section.businessu {
    height: auto;
    width: 100%;
    background-image: linear-gradient(150deg, #fdbd4f, #fea048, #fe7e41, #fd5e37);
    padding: 4% 0%;
}


.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9);
    font-size: 40px;
    font-weight: 600;
}

.btn-main:hover {
  color: #fff;
}

.btn-transparent {
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 35px;
  text-transform: uppercase;
  border-radius: 40px;
  background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

.btn-transparent:hover {
  color: #fff;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.section {
  padding: 100px 0;
}

.btn:focus {
  color: #ddd;
}

#home {
  position: relative;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-xs {
  padding: 40px 0;
}

#preloader {
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 1;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999999999;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.preloader {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
}

.preloader span {
  position: absolute;
  display: block;
  bottom: 0;
  width: 9px;
  height: 5px;
  border-radius: 5px;
  background: #fff;
  -webkit-animation: preloader 2s infinite ease-in-out;
  animation: preloader 2s infinite ease-in-out;
}

.preloader span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.preloader span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.preloader span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

.preloader span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}

.preloader span:nth-child(6) {
  left: 55px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}

@-webkit-keyframes preloader {
  0% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    background: #28ABE3;
  }
  50%, 100% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
}

@keyframes preloader {
  0% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    background: #3498db;
  }
  50%, 100% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
  }
}

.title {
  padding-bottom: 50px;
  overflow: hidden;
}

.title h2 {
  font-weight: 600;
  font-size: 35px;
  color: #232323;
}

.title p {
  color: #848484;
  width: 50%;
  margin: 0 auto;
}

.title.title-white h2 {
  color: #fff;
}

.border {
  height: 2px;
  margin: 20px auto 20px;
  position: relative;
  width: 80px;
  background: #28ABE3;
}

.bg-gray {
  background: #f9f9f9;
}

.header-bradcrumb {
  background: transparent;
}

.header-bradcrumb a, .header-bradcrumb .active {
  color: #cfcfcf;
  font-weight: 200;
  font-family: "Source Sans Pro", sans-serif;
}

.header-bradcrumb a:hover {
  color: #28ABE3;
}

.colors-switcher {
  width: 100px;
  padding: 20px 18px 14px 20px;
  position: fixed;
  z-index: 1993;
  top: 90px;
  right: 0;
  background-color: #fff;
  border-radius: 2px 0 0 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .4s ease-in-out;
}

.colors-switcher #show-panel {
  position: absolute;
  left: -38px;
  top: 15px;
  width: 38px;
  height: 38px;
  z-index: 1992;
  display: block;
  background-color: #fff;
  border-radius: 2px 0 0 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  cursor: pointer;
}

.colors-switcher #show-panel i {
  color: #3D3D3D;
  font-size: 20px;
  line-height: 38px;
  margin-left: 10px;
}

.colors-list {
  margin: 0;
  padding: 0;
}

.colors-list li {
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 4px;
}

.colors-list li a {
  text-align: center;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  cursor: pointer;
}

.colors-switcher .colors-list a.light-red {
  background-color: #FF432E;
}

.colors-switcher .colors-list li a:hover {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.colors-switcher .colors-list a.light-red {
  background-color: #FF432E;
}

.colors-switcher .colors-list a.blue {
  background-color: #28ABE3;
}

.colors-switcher .colors-list a.light-blue {
  background-color: #69D2E7;
}

.colors-switcher .colors-list a.green {
  background-color: #5BB12F;
}

.colors-switcher .colors-list a.light-green {
  background-color: #BCCF02;
}

.colors-switcher .colors-list a.yellow {
  background-color: #FED136;
}

.slick-slide {
  outline: none;
}

.logo {
  /*margin-top: 10px;*/
  display: inline-block;
}

.single-page-header {
  background-image: url("../images/about/about-header.jpg");
  background-size: cover;
  padding: 140px 0 70px;
  text-align: center;
  color: #fff;
  position: relative;
}

.single-page-header:before {
    background: rgb(0 0 0);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

/*=================================================================
  Navigation
==================================================================*/
.navigation {
  font-family: 'Poppins', sans-serif;
  position: sticky;
    top: 0;
    z-index: 99;
    transition: .3s all;
    background: #fff;
  transition: .3s all;
  background: #fff;
}

h1.chng {
    font-size: 60px;
        margin-bottom: 3%;
}

.businessu-title h1 {
    color: #fff;
    font-size: 55px;
}

.hero-contain {
    height: auto;
    width: 40%;
    display: block;
    margin: auto;
}

.hero-contain1 {
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}


.hero-contain1 button {
    height: auto;
    width: 100%;
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 3% 0%;
    border-radius: 25px;
    margin-top: 1%;
    transition: 0.3s ease;
}
.hero-contain1 button:hover {
    border-color: #fd673a;
    background: #fd673a;
}

button.google-btn {
    background: transparent;
    color: white;
    transition: 0.3s ease;
}

button.google-btn:hover {
    border-color: #fd673a;
    background: #fd673a;
}

input[type="email"] {
    height: auto;
    width: 100%;
        padding: 3% 3%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff82;
    margin-bottom: 2%;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #2F414A;
}
input[type="password"]{
  height: auto;
    width: 100%;
    padding: 3% 3%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff82;
    margin-bottom: 2%;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #2F414A;

}

.hero-contain h1 {
    font-size: 50px;
}
.hero-contain p {
    font-size: .75rem;
    font-weight: 400;
    color: #fff;
    margin-top: 3%;
}

.hero-contain p a{
    color: #fff;
    text-decoration: underline;
}






.hero-contain1 h1 {
    font-size: 50px;
}
.hero-contain1 p {
    font-size: .75rem;
    font-weight: 400;
    color: #fff;
    margin-top: 3%;
}

.hero-contain1 p a{
    color: #fff;
    text-decoration: underline;
}


hr {
    background: #a3a3a378;
    border-top: 1px solid rgba(255,255,255,0.4) !important;
}

.hero-contain button {
    height: auto;
    width: 100%;
    background: #FCB32C;
    border: none;
    padding: 3% 0%;
    border-radius: 25px;
    margin-top: 1%;
}

.navigation .logo-default {
  display: none;
}

.navigation .navbar-light .navbar-nav .nav-item .nav-link {
  color: #848484;
  line-height: 26px;
  padding: 20px 10px;
  text-transform: capitalize;
  transition: .2s ease-in-out 0s;
  font-weight: 500;
    white-space: initial;
    font-size: 16px;
    font-family: 'lora';
}

.navigation .navbar-light .navbar-nav .nav-item .nav-link:hover, .navigation .navbar-light .navbar-nav .nav-item .nav-link:active, .navigation .navbar-light .navbar-nav .nav-item .nav-link:focus {
  background: none;
  color: #794f2c;
}

.navigation .navbar-light .navbar-nav .nav-item.active .nav-link {
  color: #28ABE3;
}

@media (max-width: 991px) {
  .navigation .nav-link {
    padding: 10px !important;
  }
}

.navigation .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.navigation .dropdown-menu {
  border: 0;
  border-radius: 0;
  top: 80%;
  left: 5px;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  background: #000;
  font-size: 13px;
}

@media (max-width: 991px) {
  .navigation .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: unset;
            transform-origin: unset;
    text-align: center;
  }
}

.navigation .dropdown-menu.show {
  display: block !important;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

@media (max-width: 991px) {
  .navigation .dropdown-menu.show {
    display: block;
  }
}

.navigation .dropdown-item {
  color: rgba(0, 0, 0, 0.8);
  transition: .2s ease;
  padding: 10px;
}

.navigation .dropdown-item:hover {
  color: #000000;
  background: transparent;
  padding-left: 12px;
}

@media (max-width: 991px) {
  .navigation {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
  }
  .navigation .navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
  }
  .navigation .logo-white {
    display: none;
  }
  .navigation .logo-default {
    display: block;
  }
  .navigation .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}

.sticky-header {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 20%);
  background: #fff;
}

.sticky-header .navbar-light .navbar-nav .nav-item .nav-link {
  color: #000;
}

.sticky-header .logo-white {
  display: none;
}

.sticky-header .logo-default {
  display: block;
}

.navbar-brand {
  height: auto;
  padding: 8px 0;
}

.navbar-brand h1 {
  margin: 0;
}

.hero-area {
  background-image: url("../images/slider/slider-bg-1.jpg");
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-area:before {
  content: '';
  background: rgba(0, 0, 0, 0.63);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-area .block {
  color: #fff;
}

.hero-area .block h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-area .block p {
  color: #fff;
  width: 50%;
  margin-bottom: 20px;
}

.hero-area .block .btn-main {
  margin-right: 8px;
}

.hero-area .block .btn-main:hover {
  opacity: .8;
}

.hero-area-video {
  height: 100vh;
  position: inherit !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-area-video .block {
  color: #fff;
  text-align: center;
}

.hero-area-video .block h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-area-video .block p {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-area-video .block .btn-main {
  margin-top: 20px;
}

.dark-bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.slider-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.slider-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}

.slider-item .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider-item h1 {
  color: #fff;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.slider-item p {
  color: #fff;
  margin-bottom: 20px;
}

.hero-slider {
  overflow-x: hidden;
}

.hero-slider .prevArrow {
  left: -100px;
}

.hero-slider .nextArrow {
  right: -100px;
}

.hero-slider:hover .prevArrow {
  left: 20px;
}

.hero-slider:hover .nextArrow {
  right: 20px;
}

/* slick style */
.slick-slide {
  outline: 0;
}

.slick-slide img {
  display: unset;
}

/* slick arrows */
.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  background: transparent;
  color: #fff;
  border: 0;
  line-height: 70px;
  font-size: 35px;
  transition: .2s ease;
  border-radius: 50%;
}


.slick-arrow:focus {
  outline: 0;
}
.prevArrow {
  left: 0px;
}

.prevArrow::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 35px;
}

.prevArrow::after {
  right: 20px;
}

.nextArrow {
  right: 0px;
}

.nextArrow::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 35px;
}

.nextArrow::after {
  left: 20px;
}

/* /slick arrows */
/*=================================================================
  About us section
==================================================================*/
.about {
  padding: 100px 0;
  background: #fff;
}

.about .btn-about {
  background: #28ABE3;
}

.about h4 {
  margin-top: 30px;
}

.about .feature-list {
  margin-top: 10px;
}

.about .feature-list li {
  width: 48%;
  display: inline-block;
  color: #666;
  font-size: 13px;
  font-family: "Catamaran", sans-serif;
  margin-bottom: 5px;
  font-weight: 600;
}

.about .feature-list li i {
  color: #28ABE3;
  margin-right: 8px;
}

/*=================================================================
  About us 2 section
==================================================================*/
.about-2 {
  background: #F7F7F7;
}

.about-2 .checklist {
  padding-left: 30px;
}

.about-2 .checklist li {
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
  color: #777;
  font-family: "Source Sans Pro", sans-serif;
}

.about-2 .checklist li:before {
  position: absolute;
  margin-right: 12px;
  margin-left: -45px;
  content: "\f375";
  font-family: "themefisher-font";
  opacity: 1;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 20px;
}

/*=================================================================
 Call To Action 1
==================================================================*/
.call-to-action {
  padding: 100px 0;
  background: url("../images/call-to-action/call-to-action-bg-2.jpg");
  background-size: cover;
  color: #fff;
}

.call-to-action h2 {
  line-height: 1.5;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .btn-main {
  margin-top: 20px;
}

/*=================================================================
 Call To Action 2
==================================================================*/
.call-to-action-2 {
  padding: 100px 0;
  background-image: url("../images/call-to-action/call-to-action-bg.jpg");
  background-size: cover;
  color: #fff;
}

.call-to-action-2 h2 {
  line-height: 1.5;
}

.call-to-action-2 p {
  color: #fff;
}

.call-to-action-2 .btn-main {
  margin-top: 20px;
}

/*=================================================================
  Contact
  ==================================================================*/
.contact-us {
  padding: 100px 0 50px 0;
}

.contact-form {
  margin-bottom: 40px;
}
.contact-form img{
  width: 100%;
}

.contact-form .form-control {
  background-color: transparent;
  border: 1px solid #dedede;
  box-shadow: none;
  height: 45px !important;
  color: #0c0c0c;
  height: 38px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  border-radius: 0;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form #contact-submit:hover {
  border-color: #28ABE3;
}

.contact-form #contact-submit {
  border: none;
  padding: 15px 0;
  width: 100%;
  margin: 0;
  background: #28ABE3;
  color: #fff;
  border-radius: 0;
}

.contact-form textarea.form-control {
  padding: 10px;
  height: 120px !important;
  outline: none;
}

.contact-details .contact-short-info {
  margin-top: 15px;
}

.contact-details .contact-short-info li {
  margin-bottom: 6px;
}

.map{
  padding: 5%;
}
.map-left iframe{
  height: 375px;
    width: 100%;
}

.social-icon {
  margin-top: 20px;
}

.social-icon ul li {
  display: inline-block;
  margin-right: 10px;
}

.social-icon ul li a {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #dedede;
  text-align: center;
}

.social-icon ul li a:hover {
  background: #28ABE3;
  color: #fff;
  border: 1px solid #28ABE3;
}

.social-icon ul li a:hover i {
  color: #fff;
}

.social-icon ul li a i {
  color: #55606a;
  display: inline-block;
  font-size: 20px;
  line-height: 50px;
  margin: 0;
}

.error {
  padding: 10px;
  color: #D8000C;
  border-radius: 2px;
  font-size: 14px;
  /*background-color: #FFBABA;*/
}

.success {
  background-color: #6cb670;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

#error, #success {
  display: none;
  margin-bottom: 10px;
}

.map {
  position: relative;
}

.map #map_canvas {
  height: 400px;
  color: white;
}

/*=================================================================
  Portfolio section
==================================================================*/
.portfolio-filter {
  margin-bottom: 40px;
  text-align: center;
}

.portfolio-filter button {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  text-transform: uppercase;
  background: #28ABE3;
  border: none;
  color: #fff;
  outline: none;
}

.portfolio-filter button.active {
  background: #28ABE3;
  color: #fff;
  border-radius: 50px;
}

.portfolio-block {
  position: relative;
  margin-bottom: 30px;
}

.portfolio-block:before {
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  content: '';
}

.portfolio-block:hover:before {
  opacity: 1;
}

.portfolio-block:hover .caption h4 {
  top: 45%;
}

.portfolio-block:hover .caption {
  opacity: 1;
  top: 55%;
}

.portfolio-block .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.portfolio-block .caption h4 {
  font-size: 16px;
}

.portfolio-block .caption h4 a {
  color: #fff;
}

.portfolio-block .caption .search-icon {
  background: #28ABE3;
  color: #fff;
  display: inline-block;
  padding: 4px 13px;
  font-size: 25px;
  border-radius: 30px;
}

/*=================================================================
  Services section
==================================================================*/
.services {
  padding: 100px 0 130px;
}

.services .service-block.color-bg {
  background: #28ABE3;
  color: #fff;
}

.services .service-block.color-bg i, .services .service-block.color-bg h3, .services .service-block.color-bg p {
  color: #fff;
}

.services .service-block .service-icon {
  margin-bottom: 30px;
}

.services .service-block i {
  font-size: 75px;
  color: #28ABE3;
}

.services .service-block h3 {
  color: #333;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

.services .service-block p {
  font-size: 14px;
  color: #666;
}

/*=================================================================
  Services section 2
==================================================================*/
.service-2 .service-item {
  border: 1px solid #eee;
  margin-bottom: 30px;
  padding: 50px 20px;
  transition: all 0.3s ease 0s;
}

.service-2 .service-item:hover {
  box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
}

.service-2 .service-item:hover i {
  background: #fff;
  color: #28ABE3;
}

.service-2 .service-item i {
  font-size: 30px;
  display: inline-block;
  background: #28ABE3 none repeat scroll 0 0;
  border-radius: 30px;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  height: 55px;
  line-height: 55px;
  margin-bottom: 20px;
  width: 55px;
  transition: all 0.3s ease 0s;
}

/*=================================================================
  Our skills
==================================================================*/
.team-skills .progress-block {
  margin-top: 40px;
}

.team-skills .progress-block span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 14px;
}

.team-skills .progress-block .progress {
  box-shadow: none;
  border-radius: 0;
  height: 10px;
}

.team-skills .progress-block .progress .progress-bar {
  background: #28ABE3;
  box-shadow: none;
}

.clients-logo-slider {
  margin-top: 50px;
}

/*=================================================================
  Step section
==================================================================*/
.development-steps .step {
  padding: 80px 20px;
}

.development-steps .step h4 {
  font-size: 20px;
  font-weight: 600;
}

.development-steps .step h4 i {
  font-size: 72px;
  font-weight: 500;
  margin-right: 10px;
}

.development-steps .step p {
  color: #cccccc;
  font-size: 14px;
  line-height: 22px;
}

.development-steps .step-1 {
  background-color: #f2f6f8;
}

.development-steps .step-1 h4 {
  color: #212121;
}

.development-steps .step-1 p {
  color: #838383;
}

.development-steps .step-2 {
  background-color: #28ABE3;
}

.development-steps .step-2 h4, .development-steps .step-2 p {
  color: #fff;
}

.development-steps .step-3 {
  background: #198dbf;
}

.development-steps .step-3 h4, .development-steps .step-3 p {
  color: #fff;
}

.development-steps .step-4 {
  background: #167da9;
}

.development-steps .step-4 h4, .development-steps .step-4 p {
  color: #fff;
}

/*=================================================================
  Our Team
  ==================================================================*/
.team {
  padding: 100px 0;
  background: #F6F6F6;
}

.team .team-member {
  background: #fff;
}

.team .team-member .member-content {
  padding: 25px 0;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  margin: 0 0 5px;
  color: #333;
}

.team .team-member .member-content span {
  font-size: 14px;
  color: #555;
}

.team .team-member .member-content p {
  color: #777;
  margin-top: 10px;
  padding: 0 15px;
}

.team .member-photo {
  overflow: hidden;
  position: relative;
}

.team .member-photo:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.team .member-photo img {
  transition: all 0.6s ease 0s;
}

.team .member-photo .mask {
  background: rgba(40, 171, 227, 0.7);
  position: absolute;
  width: 100%;
  bottom: 0;
  top: auto;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  right: 0;
  cursor: pointer;
  padding: 0;
  height: 80px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all .3s ease;
}

.team .member-photo .mask ul {
  text-align: center;
  position: relative;
  margin-top: 22px;
}

.team .member-photo .mask ul li {
  display: inline-block;
  margin-right: 7px;
}

.team .member-photo .mask ul li a {
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 35px;
}

.team .member-photo .mask ul li a::hover {
  background-color: #6cb670;
  border: 1px solid transparent;
}

.team .member-photo:hover .mask {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/*=================================================================
  Testimonial section
==================================================================*/
.testimonial {
  padding-top: 100px;
  background: #28ABE3;
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 80px;
  background-image: linear-gradient(146deg, rgba(156,80,214,1) 0%, rgba(57,1,102,1) 100%);
}

.testimonial:before {
  content: "";
  display: block;
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0;
  height: 150px;
  background-color: white;
}

.testimonial .item i {
  font-size: 60px;
  color: #fff;
  margin-bottom: 50px;
  display: inline-block;
}

.testimonial .item .client-details {
  padding-bottom: 30px;
}

.testimonial .item .client-details p {
  font-size: 17px;
  color: #fff;
  font-weight: 200;
  padding: 0 10%;
}

.testimonial .item .client-thumb img {
  display: inline-block;
  border-radius: 100%;
  width: 150px;
  height: auto;
}

/*=================================================================
  Latest Posts
==================================================================*/
.blog {
  padding-bottom: 110px;
  padding-top: 70px;
  background: #F6F6F6;
}

.blog-right-title{
  width: 100%;
  padding: 5%;
}

.popular_blogs p a{
  color: black;
  font-size: 16px;
  font-weight: 600;
}

.popular-posts{
  padding: 2%;
}

.post-item {
  background: #fff;
  margin-bottom: 20px;
  height: 100%;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);
  transition: 0.3s ease;
  
}
.post-item:hover{
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%);
}

.post-item .content {
  padding: 4%;
}

.post-item .media-wrapper img{
    height: 200px;
    width: 100%;
}

.post-item .content h3 a {
  color: #000;
  font-size: 20px;
}
.post-item .content h3 a:hover{
  color: #7531aa;
}

.post-item .content p {
  color: #757575;
  font-size: 14px;
  margin: 10px 0;
}

.post-item-footer{
  position: absolute;
  bottom: 0;
}

.post-item .content .btn-main {
  padding: 12px 25px;
  margin: 15px 0;
}

/* 8.2.1 Blog Details */
.blog-details h3 {
  font-size: 30px;
  color: #000;
  margin-bottom: 10px;
}

/* 8.2.2 Post Content */
.post-content ul {
  margin-bottom: 20px;
}

.post-content ul li {
  color: #aaa;
}

.post-content ul li a {
  color: #aaa;
}

.post-content p {
  margin-bottom: 30px;
}

.post-content blockquote {
  border-left: 2px solid #28ABE3;
  padding: 40px 35px;
  margin-bottom: 30px;
  background: #eeeeee;
}

.post-content-share {
  margin-bottom: 100px;
}

.post-content-share li {
  height: 45px;
  width: 45px;
  border: 1px solid #ddd;
  text-align: center;
  background: #fff;
  transition: .3s ease;
  margin-right: 10px;
}

.post-content-share li a i {
  line-height: 45px;
  color: #000;
  transition: .3s ease;
}

.post-content-share li:hover {
  background: #28ABE3;
  border-color: #28ABE3;
}

.post-content-share li:hover i {
  color: #fff;
}

/* 8.2.3 Comment List */
.comment-list {
  padding-left: 0;
  margin-bottom: 70px;
}

.comment-list-item {
  padding: 25px 0;
  position: relative;
  display: flex;
  border-bottom: 1px solid #ddd;
}

.comment-list-item:last-child {
  border: 0;
}

.comment-list-item-image {
  margin-right: 20px;
}
.comment-list-item-image img{
  width: 100%;
}

.comment-list-item-content h5 {
  color: #000;
  margin-bottom: 5px;
}

.comment-list-item-content h6 {
  color: #000;
  margin-bottom: 10px;
}

.comment-list-item-content p {
  margin-bottom: 5px;
}

.comment-list-item .comment-btn {
  position: absolute;
  top: 25px;
  right: 0;
  background: #fff;
  padding: 10px 30px;
  border: 1px solid #ddd;
  text-transform: capitalize;
  color: #000;
  font-size: 15px;
  transition: 0.3s ease;
}
.comment-list-item .comment-btn:hover {
    color: #fff;
    background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

@media (max-width: 575px) {
  .comment-list-item .comment-btn {
    position: unset;
  }
}



/* 8.2.4 Comment Form */
.comment-form {
  margin-top: 40px;
}

.comment-form .form-control {
  background-color: transparent;
  border: 1px solid #dedede;
  box-shadow: none;
  height: 45px !important;
  color: #0c0c0c;
  height: 38px;
  font-size: 14px;
  border-radius: 0;
  margin-bottom: 20px;
}

.comment-form textarea.form-control {
  height: 200px !important;
}

.comment-form .btn-primary {
  border-radius: 0;
  padding: 10px 20px;
  border: 0;
  background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

/* 8.2.5 Widget Style */
.widget {
  margin-bottom: 30px;
}

.widget h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.widget-search {
  position: relative;
}

.widget-search .form-control {
  border: 1px solid #dedede;
  border-radius: 0;
  height: 50px;
}

.widget-search-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
  border: 0;
}

.widget-search-btn i {
  color: #fff;
}

.widget-categories-list {
  padding-left: 0px;
}

.widget-categories-list li {
  border-bottom: 1px solid #ddd;
}

.widget-categories-list li:last-child {
  border: 0;
}

.widget-categories-list li a {
  display: block;
  padding: 15px 0;
  color: #000;
  font-size: 15px;
  transition: .3s ease;
}

.widget-categories-list li a i {
  font-size: 10px;
  margin-right: 10px;
}

.widget-categories-list li a:hover {
  background: #28ABE3;
  color: #fff;
  padding-left: 20px;
}

.widget-post-list {
  padding-left: 0;
}

.widget-post-list-item {
  padding: 15px 0;
  display: flex;
}

.widget-post-image {
  margin-right: 10px;
  height: 90px;
  width: 130px;
  overflow: hidden;
}

.widget-post-image img {
  height: 90px;
  width: auto;
}

.widget-post-content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  transition: .3s ease;
  color: #000;
}

.widget-post-content h5:hover {
  color: #28ABE3;
}

/*=================================================================
  Single Blog Page
==================================================================*/
#blog-banner {
  padding-bottom: 100px;
  padding-top: 150px;
}

#blog-page {
  margin: 0 0 40px;
}

.post-meta {
  font-size: 13px;
  margin: 20px 0 0;
  padding: 0 20px 10px;
}

.post-meta a {
  color: #28ABE3;
}

.post-meta > span {
  color: #666;
  border-right: 1px solid #dedede;
  display: inline-block;
  font-size: 13px;
  margin: 10px 10px 0 0;
  padding-right: 10px;
}

.post-meta > span:last-child {
  border-right: 0;
}

.post-meta > span i {
  margin-right: 5px;
}

.post-excerpt {
  padding: 0 20px;
  margin-bottom: 60px;
}

.post-excerpt h3 a {
  color: #000;
}

.post-excerpt blockquote {
  line-height: 22px;
  margin: 20px 0;
  font-size: 16px;
}

.single-blog {
  background-color: #fff;
  margin-bottom: 50px;
  padding: 20px;
}

.blog-subtitle {
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.next-prev {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  margin: 20px 0;
  padding: 25px 0;
}

.next-prev a {
  color: #000;
}

.next-prev a:hover {
  color: #28ABE3;
}

.next-prev .prev-post i {
  margin-right: 10px;
}

.next-prev .next-post i {
  margin-left: 10px;
}

.social-profile ul li {
  margin: 0 10px 0 0;
  display: inline-block;
}

.social-profile ul li a {
  color: #4e595f;
  display: block;
  font-size: 16px;
}

.social-profile ul li a i:hover {
  color: #28ABE3;
}

.comments-section {
  margin-top: 35px;
}

.author-about {
  margin-top: 40px;
}

.post-author {
  margin-right: 20px;
}

.post-author > img {
  border: 1px solid #dedede;
  max-width: 120px;
  padding: 5px;
  width: 100%;
}

.comment-list ul {
  margin-top: 20px;
}

.comment-list ul li {
  margin-bottom: 20px;
}

.comment-wrap {
  border: 1px solid #dedede;
  border-radius: 1px;
  margin-left: 20px;
  padding: 10px;
  position: relative;
}

.comment-wrap .author-avatar {
  margin-right: 10px;
}

.comment-wrap .media .media-heading {
  font-size: 14px;
  margin-bottom: 8px;
}

.comment-wrap .media .media-heading a {
  color: #28ABE3;
  font-size: 13px;
}

.comment-wrap .media .comment-meta {
  font-size: 12px;
  color: #888;
}

.comment-wrap .media p {
  margin-top: 15px;
}

.comment-reply-form {
  margin-top: 80px;
}

.comment-reply-form input, .comment-reply-form textarea {
  height: 35px;
  border-radius: 0;
  box-shadow: none;
}

.comment-reply-form input:focus, .comment-reply-form textarea:focus {
  box-shadow: none;
  border: 1px solid #28ABE3;
}

.comment-reply-form textarea, .comment-reply-form .btn-main {
  height: auto;
}
.btn-main {
    background: #28ABE3;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 40px;
    text-transform: uppercase;
    border-radius: 40px;
    background-image: linear-gradient(150deg, #fdbd4f, #fea048, #fe7e41, #fd5e37);
}
.btn-main1 {
      background: #28ABE3;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 20px 61px;
    text-transform: uppercase;
    border-radius: 40px;
    background-image: linear-gradient(150deg, #fdbd4f, #fea048, #fe7e41, #fd5e37);
}

/*===========Section-1==========*/
.section-1-banner{
  background: url('../images/pexels-alex-green-5699475.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.emi-1-banner{
  background: url('../images/emi-calc.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.gallery-1-banner{
  background: url('../images/gallery.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gallery-2-banner{
  background: url('../images/gallery-1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-1{
  padding: 5%;
}
.section-1-title{
  text-align: left;
}
.section-1-title h1{
  font-size: 46px;
}
.section-1-title h4{
  font-size: 22px;
}
.section-1-title p{
  color: white;
}
.section-1-title button{
    color: white;
    height: auto;
    background: linear-gradient(146deg, rgba(156,80,214,1) 0%, rgba(57,1,102,1) 100%);
    border: none;
    padding: 3% 6%;
    border-radius: 25px;
    transition: 0.3s ease;
}
.section-1-title button:hover{
    background: linear-gradient(300deg, rgba(156,80,214,1) 0%, rgba(57,1,102,1) 100%);

}
.about-2 {
    padding: 5%;
    background: #F7F7F7;
}
/*===========Section-2==========*/
.section-2 p{
  color: black;
  font-size: 20px;
}
.faq-title{
  text-align: center;
}
.faq-title h1{
    text-transform: uppercase;
    color: #794927;
}
 .faq-title p{
        font-size: 18px;
    }

/*===========Section-3==========*/
.section-3 h1 {
    font-size: 32px;
    color: #79512e;
    text-transform: uppercase;
    font-weight: 600;
}
.faq-title{
  text-align: center;
}

/*===========requirements==========*/
.req-title h1 {
    font-size: 32px;
    color: white;
    text-transform: uppercase;
}

.req{
    text-align: center;
    padding: 12px;
    border: 1px solid #ffffff42;
    height: 100%;
}
.req img{
    width: 48px !important;
    margin: auto;
}
.req p{
    font-size: 14px;
    color: white !important;
}

.amenities-bg{
    background: linear-gradient(118deg, rgba(114,74,38,1) 0%, rgba(46,46,46,1) 100%);
}
.amenities-img {
    padding: 12px;
    text-align: center;
    margin: auto;
    background: url('../images/bg-icon.png'), url('../images/bg-icon2.png');
    background-position: bottom right, top left;
    background-size: 20%;
    background-repeat: no-repeat;
}

.amenities-title p{
    font-size: 13px;
}

.amenities-img img{
    width: 64px;
}

.pro_focus h1{
    text-transform: uppercase;
    font-size: 26px;
}

/*===========Section-4==========*/
section.businessu.section-4 {
    padding: 5%;
}
.section-4 h1{
  color: white;
  font-size: 46px;
}

.single-page-header {
    background: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
    background-size: cover;
    padding: 8% 0%;
    text-align: center;
    color: #fff;
    position: relative;
}

button.days-btn {
  height: auto;
  width: 100%;
  padding: 3% 0%;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  background: #0f48af;
  color: #fff;
}

.support-section-1{
  padding: 5%;
}

/* width */
.my-gallery::-webkit-scrollbar {
  width: 10px;
  height: 6px;
}

/* Track */
.my-gallery::-webkit-scrollbar-track {
  background: #f1f1f1; 
    border-radius: 25px;
}
 
/* Handle */
.my-gallery::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 25px;
}

/* Handle on hover */
.my-gallery::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


.support-card{
  border-radius: 5px;
  border: 1px solid #00000024;
  text-align: center;
  padding: 5%;
  transition: 0.3s ease;
}
.support-card:hover{
  box-shadow: 0 12px 34px 0 rgb(0 0 0 / 10%);
}
.support-card img{
  width: 25%;
}

.developer{
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
}
.developer-box{
    text-align: center;
    padding: 12px;
}

.developer-box img{
    width: 55% !important;
    margin: auto;
}

.maps{
    height: 100%;
}
@media only screen and (max-width: 600px) {
  .maps iframe{
      height: 400px;
  }
}



/*==========Media-Query==========*/
@media screen and (max-width:  1024px){
    .section-1-title h1 {
        font-size: 42px;
    }
    .section-1-title h4 {
        font-size: 18px;
    }
    .title h2 {
        font-size: 30px;
    }
    .section-2 p {
        font-size: 16px;
    }
    .section-3 h1{
        font-size: 36px;
    }
    .req-title h1 {
        font-size: 52px;
    }
    .amenities-img img {
        width: 52px;
    }
}
@media screen and (max-width:  991px){
  .section-1-title h1 {
    font-size: 32px;
  }
  .section-1-title h4 {
    font-size: 18px;
  }
  .title h2 {
    font-size: 28px;
  }

  .section-2 p {
    font-size: 16px;
  }
  .section-3 h1 {
      font-size: 32px;
  }
}
@media screen and (max-width:  767px){
    .section-1-title{
        text-align: center;
    }
    .section-2{
        margin-top: 5%;
    }
    .section-3 {
        text-align: center;
    }
    .question{
        font-size: 18px !important;
    }
    .section-4-title{
        text-align: center;
    }
    .req-title h1 {
        font-size: 48px;
        text-align: center;
    }
}
@media screen and (max-width:  767px){
  .section-1-title h1 {
    font-size: 28px;
}
.section-1-title h4 {
    font-size: 16px;
}
.section-1-title button{
  font-size: 14px;
}
.title h2 {
    font-size: 22px;
}
.title p{
  width: 100%;
}
  .section-3 h1 {
    font-size: 28px;
  }
  .section-4 h1 {
    font-size: 36px;
}

.btn-main1{
  padding: 12px 50px;
}
}

@media screen and (max-width:  479px){
    .Modern-Slider .item h3{
        font-size: 24px !important;
    }
    .req-title h1{
        font-size: 32px;
    }
    .my-gallery {
        grid-template-columns: repeat(1, 1fr) !important;
    }
      img.logo-default {
        width: 120px !important;
    }
}

@media screen and (max-width:  320px){
  img.logo-default {
    width: 110px !important;
}
.sign_up_btn {
    padding: 5px 17px !important;
}
.sign_in_btn {
    padding: 5px 17px !important;
}
  .section-1-title h1 {
    font-size: 24px;
}
.section-1-title button{
  padding: 4% 8%;
}
.title h2 {
    font-size: 18px;
}
.section-3 h1 {
    font-size: 24px;
}
.btn-main{
  padding: 8px 18px;
  font-size: 12px;
}
.btn-main1 {
    padding: 8px 40px;
    font-size: 12px;
}
.question {
    font-size: 14px !important;
}
.question{
  padding: 14px !important;
}
.material-icons.drop{
  padding: 12px !important;
}
.answer{
  font-size: 14px !important;
}
.section-4 h1 {
    font-size: 28px;
}

.req-title h1 {
    font-size: 24px;
}
.req p {
    font-size: 12px;
}

 .Modern-Slider .item h3{
        font-size: 20px !important;
    }
    .faq-title p{
        font-size: 18px;
    }
    
    .developer-box p{
        font-size: 16px;
    }



}





/*=================================================================
  Footer section
==================================================================*/
.top-footer {
  padding: 5%;
  font-family: 'Poppins', sans-serif;
  background-color: #ecebeb;
  /*padding: 100px 0 80px;*/
}

.top-footer h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.top-footer p {
  font-size: 13px;
  line-height: 30px;
  color: #bdbdbd;
  font-weight: 300;
  letter-spacing: 1px;
  padding-right: 20px;
}

.top-footer li a {
    font-size: 16px;
    line-height: 30px;
    color: #343a40;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: color .3s;
    /*font-family: "Source Sans Pro", sans-serif;*/
    display: block;
}

.top-footer li a:hover {
  color: #6700b5;
}

.top-footer input[type="email"]{
  border: 1px solid #00000054;
  border-radius: 50px;
  outline: 0;
}

.top-footer button {
    height: auto;
    width: 100%;
    color: #6d2aa0;
    background: transparent;
    border: 2px solid #6d2aa0;
    padding: 3% 0%;
    border-radius: 50px;
    margin-top: 1%;
    transition: 0.3s ease;
}
.top-footer button:hover{
  color: white;
  background: #6d2aa0;
}

.footer-bottom {
  text-align: center;
  background-color: #ecebeb;;
  padding: 15px 0;
}

.footer-bottom h5 {
  font-size: 14px;
  line-height: 1;
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 7px;
  margin-bottom: 3px;
}

.footer-bottom h6 {
  font-size: 14px;
  line-height: 15px;
  color: black;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #795433;
}


.q-mark {
  font-family: Roboto-bold;
  color: #785533;
  padding: 18px 0 18px 18px;
}
.question {
  font-size: 20px;
  color: #5c5c5c;
  line-height: 1.5;
  padding: 20px;
  margin-bottom: 0;
}
.material-icons.drop {
  padding: 20px;
  font-size: 2rem;
  color: #785533;
  transition: transform 0.5s ease-in-out;
}
.answer {
  font-size: 16px;
  color: #5c5c5c;
  padding: 16px;
  /*padding-left: 52px;*/
  padding-bottom: 32px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border: 1px solid #b3b3b35c;
    box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
    border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .accordion {
    margin-bottom: 16px;
  }
}
.question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease-in-out;
  border-radius: 12px;
}
.answer-wrapper {
  display: none;
}
.icon-expend {
  transform: rotateX(180deg);
  transition: transform 0.75s ease-in-out;
}
.active,
.accordion:hover .question-wrapper {
  background-color: #ebebeb;
}
.active p,
.accordion:hover .question-wrapper p {
  color: #3d3d3d;
}
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 1144px;
  }
}

.page-404 {
  display: flex;
  align-items: center;
  height: 100vh;
}

.page-404 h1 {
  font-size: 200px;
}

/*============================================================
	For Small Desktop
==============================================================*/

@media screen and (max-width:  1024px){
  .navigation .navbar-light .navbar-nav .nav-item .nav-link{
    padding: 17px 11px;
    font-size: 14px;
  }
  .sign_up_btn {
    padding: 5px 20px;
  }
  .sign_in_btn{
    padding: 5px 20px;
  }

}

@media (min-width: 700px) and (max-width: 1090px) {
  .counters-item:before {
    display: none;
  }
}

@media (min-width: 980px) and (max-width: 1150px) {
  /* parallax section */
  .parallax-section {
    background-position: center top !important;
  }
  /* home slider */
  #slitSlider .carousel-caption h2 {
    font-size: 60px;
  }
  /* about us */
  .feature-desc h3 {
    margin-top: 0;
  }
  /* our team */
  .team-mate {
    margin-bottom: 30px;
  }
  .mask ul {
    top: 85px;
  }
  .mask ul li {
    margin: 0 5px;
  }
  .team-mate > h4 {
    margin-bottom: 10px;
  }
  .team-mate img {
    margin: 0 auto;
  }
  .member-info ul li {
    margin-right: 10px;
  }
  /* testimonial */
  .client-info {
    width: 55%;
  }
  /* blog page */
  .tab-post-nav li a {
    padding: 15px 8px;
  }
  /* single blog page */
  .author-bio h5 {
    margin-left: 70px;
  }
}

/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/
@media (min-width: 768px) and (max-width: 979px) {
  .counters-item:before {
    display: none;
  }
  /* parallax section */
  .parallax-section {
    background-position: center top !important;
  }
  /* navigation */
  .navbar-inverse .navbar-nav li a {
    padding: 20px 10px;
  }
  /* about us */
  .wrap-about {
    margin: 0 0 75px;
  }
  .about-content {
    margin: 0 auto;
    width: 60%;
  }
  /* fun facts */
  #counter {
    padding-bottom: 50px;
  }
  .counters-item {
    margin-bottom: 30px;
  }
  /* our team */
  .team-mate {
    margin: 0 auto 30px;
    width: 280px;
  }
  /* our skills */
  .skill-chart {
    margin: 0 auto 40px;
    width: 300px;
  }
  .skill-chart {
    margin: 0 auto 40px;
    width: 90%;
  }
  .skill-chart > h3 {
    margin: 15px 0;
  }
  /* pricing table */
  .pricing {
    margin: 0 auto 30px;
    width: 300px;
  }
  /* testimonial */
  .client-info {
    width: 75%;
  }
  /* latest posts */
  .note {
    margin-bottom: 30px;
  }
  /* blog page */
  .tab-post-nav li a {
    padding: 10px;
  }
  /* singla blog page */
  .author-social {
    margin-left: 0;
  }
}

/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/
@media only screen and (max-width: 767px) {
  .counters-item:before {
    display: none;
  }
  .clients-logo-slider {
    text-align: center;
  }
  /* parallax section */
  .parallax-section {
    background-position: center top !important;
  }
  /* h1 font size home slider */
  h1 {
    font-size: 30px;
  }
  .carousel-caption img {
    width: 70%;
  }
  #slitSlider .carousel-caption h2 {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 35px;
    margin-bottom: 25px;
  }
  #slitSlider .carousel-caption h3 {
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  #slitSlider .carousel-caption a {
    font-size: 14px;
  }
  .wrap-about {
    margin: 0 auto 80px;
    width: 85%;
  }
  .feature-desc a {
    margin: 5px 5px 5px 0;
  }
  /* fun facts */
  /* services */
  #services .title {
    padding-bottom: 60px;
  }
  /* our skills */
  .skill-chart {
    margin: 0 auto 40px;
    width: 280px;
  }
  /* our team */
  .team-mate {
    margin: 0 auto 31px;
    width: 280px;
  }
  .team-mate img {
    margin: 0 auto;
  }
  .member-info ul {
    text-align: center;
    margin-bottom: 10px;
  }
  /* pricing table */
  .pricing {
    margin: 0 auto 20px;
    width: 280px;
  }
  /* portfolio */
  .portfolio-filter ul li a {
    margin: 0 10px 10px 0;
    padding: 5px 10px;
  }
  /* testimonials */
  .sub-title h3 {
    font-size: 18px;
  }
  .client-info {
    width: 100%;
  }
  /* latest posts */
  #blog {
    padding-bottom: 0;
  }
  .note {
    margin-bottom: 30px;
  }
  .note .excerpt {
    padding: 0 20px 20px;
  }
  .all-post {
    margin: 20px 0 30px;
  }
  /* contact */
  .contact-info {
    margin: 0 0 30px;
  }
  #map-canvas {
    height: 250px;
  }
  /* footer */
  .social-icon ul li, .social-icon ul li:first-child {
    margin: 15px;
  }
  .social-icon ul li a {
    width: 50px;
    height: 50px;
  }
  .social-icon ul li a i {
    font-size: 24px;
    line-height: 50px;
  }
  .blog-title h1 {
    font-size: 28px;
  }
  /* blog page */
  #blog-page {
    margin: 0;
  }
  #blog-posts {
    margin: 0 0 40px;
  }
  .post-excerpt h3 {
    font-size: 20px;
  }
  .post-pagination ul li {
    margin: 0 10px 10px 0;
  }
  .tab-post-nav li a {
    padding: 8px 5px;
  }
  /* single blog page */
  .author-social {
    margin-left: 0;
  }
  .author-avatar {
    margin-right: 10px;
  }
}


@media only screen ()

/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .title h2 {
    font-size: 32px;
  }
  .hero {
    background-image: url(../images/hero_guy_seated_with_phone-upd-0420.png);
    background-size: cover;
    padding: 7% 0%;
    text-align: center;
    color: #fff;
    background: #4b6cb7;
    background: -webkit-linear-gradient(to right, #182848, #4b6cb7);
    background: linear-gradient(to right, #182848, #4b6cb7);
}
.hero-contain {
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}
  .counter .counter-title h2 {
    font-size: 35px;
  }
  /* about us */
  .wrap-about {
    margin: 0 auto 75px;
    width: 70%;
  }
  /* our team */
  .team-mate {
    margin: 0 auto 30px;
    width: 280px;
  }
  .team-mate img {
    margin: 0 auto;
  }
  /* portfolio */
  .og-grid li {
    width: 245px;
  }
  /* skills */
  .skill-chart {
    margin: 0 auto 40px;
    width: 300px;
  }
  /* pricing table */
  .pricing {
    margin: 0 auto 30px;
    width: 350px;
  }
  /* testimonials */
  .client-info {
    width: 74%;
  }
  /* latest posts */
  #blog {
    padding-bottom: 0;
  }
  .note {
    margin: 0 auto 30px;
    width: 75%;
  }
  /* contact */
  .contact-info {
    width: 100%;
  }
  /* blog page */
  .tab-post-nav li a {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 600px){
  .hero {
    background-image: url(../images/hero_guy_seated_with_phone-upd-0420.png);
    background-size: cover;
    padding: 15% 0%;
    text-align: center;
    color: #fff;
    background: #4b6cb7;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #182848, #4b6cb7);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #182848, #4b6cb7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.hero-contain {
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}
h1.chng {
    font-size: 39px;
}
}

.un {
    height: auto;
    width: 100%;
    padding: 1% 6%;
}

.benefits-card{
  height: 100%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 5%;
  background: #8d44c578;
}
.benefits-card h4{
  font-size: 22px;
}
.benefits-card p{
  line-height: 28px;
}
.benefits-card img{
  width: 25%;
}

.why_us h4{
  line-height: 38px;
  font-size: 20px;
}

.why_us abbr{
    display: inline-block;
    background-color: #6e2ca2;
    border-radius: 100%;
    width: 12px;
    height: 12px;
}
.why_us{
  text-align: left;
}
.description p{
  font-size: 18px;
}

@media screen and (max-width: 1024px){
  img.logo-default{
    width: 190px;
  }
  .description p{
  font-size: 18px;
}
.why_us h4 {
    line-height: 36px;
    font-size: 16px;
}
.why_us abbr {
    width: 10px;
    height: 10px;
}
}

@media screen and (max-width: 767px){
  .description p{
  font-size: 16px;
  line-height: 26px;
}
.why_us h4 {
    line-height: 36px;
    font-size: 16px;
}
.why_us abbr {
    width: 10px;
    height: 10px;
}
}

@media screen and (max-width: 320px){
  .description p{
  font-size: 14px;
  line-height: 24px;
}
.why_us h4 {
    line-height: 34px;
    font-size: 14px;
}
}



  /* ==== Main CSS === */
.img-fill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.img-fill img.img1 {
  /*min-height: 100%;
  min-width: 100%;*/
  /*position: relative;*/
  position: absolute;
  top:  2%;
  left: 10%;
  display: inline-block;
  max-width: 100%;
  width: 45%;
}
.img-fill img.img4 {
  /*min-height: 100%;
  min-width: 100%;*/
  position: absolute;
  bottom:  0;
  left: 10%;
  display: inline-block;
  max-width: 100%;
  z-index: 0;
}
.img-fill img.img2 {
  /*min-height: 100%;
  min-width: 100%;*/
  position: absolute;
  bottom:  0;
  left: 30%;
  display: inline-block;
  max-width: 100%;
  z-index: 0;
}
.img-fill img.img3 {
  /*min-height: 100%;
  min-width: 100%;*/
  position: absolute;
  bottom:  0;
  left: 10%;
  display: inline-block;
  max-width: 100%;
  z-index: 0;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0!important;
}

.slick-slide {
  float: left /* If RTL Make This Right */ ;
  padding: 0;
}

/* ==== Slider Style === */
.Modern-Slider .item .img-fill{
  height:170vh;
  background:#4CA8D4;
}

.Modern-Slider .item .img-fill .info{
  position:absolute;
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  background:#00000082;
  line-height:170vh;
  text-align:center;
}


.Modern-Slider .item .img-fill img{
  /*filter:blur(5px);*/
}

.Modern-Slider .item .info > div{
  display:inline-block!important;
  vertical-align:middle;
  width: 90%;
}

.Modern-Slider .NextArrow{
  position:absolute;
  top:50%;
  right:10px;
  width:45px;
  height:45px;
  /*background:rgba(0,0,0,.50);*/
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font-size:20px;
  color:#FFF;
  z-index:5;
}

/*.Modern-Slider .NextArrow:before{content:'\f105';}*/

.Modern-Slider .PrevArrow{
  position:absolute;
  top:50%;
  left:10px;
  width:45px;
  height:45px;
  /*background:rgba(0,0,0,.50);*/
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font-size:20px;
  color:#FFF;
  z-index:5;
}

/*.Modern-Slider .PrevArrow:before{content:'\f104';}*/

.Modern-Slider .slick-dots{
  position:absolute;
  height:5px;
  background:rgba(255,255,255,.20);
  bottom:0px;
  width:100%;
  left:0px;
  padding:0px;
  margin:0px;
  list-style-type:none;
}
.Modern-Slider .slick-dots li button{display:none;}
.Modern-Slider .slick-dots li{
  float:left;
  width:0px;
  height:5px;
  background:#d62828;
  position:absolute;
  left:0px;
  bottom:0px;
}

.Modern-Slider .slick-dots li.slick-active{
  width:100%;
  animation:ProgressDots 11s both;
}

.Modern-Slider .item h3{
  font-size:30px;
  text-transform:uppercase;
  color:#FFF;
  animation:fadeOutRight 1s both;
  margin:0;
  padding:0;
}

.Modern-Slider .item h5{
  margin:0;
  padding:0;
  font-size:20px;
  color:#FFF;
  text-transform: inherit;
  max-width:600px;
  overflow:hidden;
  animation:fadeOutLeft 1s both;
  font-weight: 400;
  line-height: 24px;
}

.Modern-Slider .item.slick-active h3{
  animation:fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h5{
  animation:fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active{
  animation:ease-in-out 1s both;
}
.Modern-Slider .item.slick-active img.img3{
  animation:zoomIn 1s both;
}
.Modern-Slider .item.slick-active img.img4{
  animation:fadeInLeft 1s both;
}
.Modern-Slider .item.slick-active img.img2{
  animation:fadeInLeft 1s both;
}

.Modern-Slider {background:#4CA8D4;}

/* ==== Slider Image Transition === */
@keyframes Slick-
{
    0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);} 
    100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);} 
}

@-webkit-keyframes ProgressDots{from{width:0px;}to{width:100%;}}
@keyframes ProgressDots{from{width:0px;}to{width:100%;}}

/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}


@media screen and (max-width: 1366px){
    .Modern-Slider .item .img-fill .info {
    line-height: 85vh;
}
.Modern-Slider .item .img-fill {
    height: 85vh;
}
}

@media screen and (max-width:  1199px){
    .img-fill img.img4 {
        width: 15%;
    }
    .img-fill img.img1 {
        width: 45%;
    }
    .img-fill img.img2 {
        width: 45%;
    }
    .img-fill img.img3 {
        width: 35%;
    }
    img.logo-default {
        width: auto !important;
        height: 70px !important;
    }
}
@media screen and (max-width:  767px){
    .Modern-Slider .item .img-fill {
        height: 70vh;
    }
    .Modern-Slider .item .img-fill .info{
        line-height: 70vh;
    }
}
@media screen and (max-width:  479px){
    .img-fill img.img3 {
        width: 50%;
    }
    .img-fill img.img4 {
        width: 20%;
    }
    .img-fill img.img1 {
        width: 60%;
        top:  10%;
    }
    .img-fill img.img2 {
        width: 60%;
    }
    .Modern-Slider .item .img-fill {
        height: 40vh;
    }
    .Modern-Slider .item .img-fill .info{
        line-height: 40vh;
    }
    .Modern-Slider .item h5{
        height: auto;
    }
}
@media screen and (max-width:  479px){
    .img-fill img.img3 {
        width: 65%;
    }
    .img-fill img.img1 {
        width: 70%;
        top:  10%;
    }
    
}

  #gallery {
  padding-top: 40px;
}
@media screen and (min-width: 991px) {
  #gallery {
    padding: 60px 30px 0 30px;
  }
}

.img-wrapper {
  position: relative;
  margin: 5px;
}
.img-wrapper img {
  width: 100%;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor:  zoom-in;
}
.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: none;
     object-fit: none;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 75%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}




.template-btn {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 20px;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.template-btn:hover {
  color: white;
  background: #f28500;
}
.portfolio-section {
  padding-top: 30px;
  transition: 1.3s;
  box-sizing: border-box;
  height: auto;
}

.portfolio-tab ul {
  text-align: center;
  margin-top: 50px;
}
.portfolio-tab ul li {
  color: #000;
  background: transparent;
  display: inline;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 2px solid #785533;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 575.98px) {
  .portfolio-tab ul li {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}
.portfolio-tab ul li:hover {
  background: #785533;
  color: #fff
}
.portfolio-tab ul .active {
  background: #785533;
  color: #fff
}
.clearfix:after {
  display: table;
  content: " ";
  clear: both;
}
.portfolio-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768.1px) and (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }   
  }
.portfolio-grid .portfolio {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  display:none;
  overflow:hidden;
}
.portfolio-wrapper {
  overflow:hidden;
  position: relative !important;
  cursor:pointer;
}
.portfolio-bg {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
  transform: scale(1)
}
.portfolio:hover .portfolio-bg{
  transform: scale(1.2)
}
.first .portfolio-bg{
  background-image: url('https://images.pexels.com/photos/267350/pexels-photo-267350.jpeg?cs=srgb&dl=accounts-applications-apps-267350.jpg&fm=jpg');
  
}
.second .portfolio-bg{
  background-image: url('https://images.pexels.com/photos/1053687/pexels-photo-1053687.jpeg?cs=srgb&dl=art-art-materials-artwork-1053687.jpg&fm=jpg');
}
.third .portfolio-bg{
  background-image: url('https://images.pexels.com/photos/6224/hands-people-woman-working.jpg?cs=srgb&dl=brainstorming-campaign-collaborate-6224.jpg&fm=jpg');
  
}
.portfolio .label {
  position: absolute;
  width: 100%;
  height:100%;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden
}

.portfolio .label-bg {
  background: #232323;
  opacity: 0.7;
  width: 100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  transition: 1px;
}
.portfolio .label-text {
  color:#fff;
  position: relative;
  z-index:500;
  padding:50px 20px;
}
.portfolio:hover .label {
  opacity: 1;
  visibility: visible;
}
.portfolio .text-category {
  display:block;
}
.portfolio .template-btn {
  background: #e30b5d;
  border: 1px solid #e30b5d;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 500
}


.btn-submit{
  border: 1px solid white;
  border-radius: 0;
  padding: 10px 30px;
  color: white;
}
.btn-submit:hover{
  color: #795433;
  background: white;
}

.contact{
  padding: 8%;
  background: linear-gradient(117.97deg, #724A26 0.84%, #2E2E2E 133.58%);
}
.contact .form-control{
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
}
.contact .form-control::placeholder{
  color: #ffffff85;
}
.contact .form-control:focus{
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid white;
  box-shadow: 0 0 0 0.2rem rgb(243 243 243 / 19%);
}

.btn-primary {
    color: #fff;
    background-color: #79512e;
    font-size: 18px;
    border-color: #79512e;
    font-family: 'Lora';
    padding: 10px 20px;
}


.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgb(121 81 46 / 22%);
    color: #79512e;
}

.btn-primary:hover {
    color: #fff;
    background-color: #79512e;
    border-color: #79512e;
}

.download_btn {
    position: fixed;
    bottom: 12px;
    z-index: 999;
    right: 12px;
}
.download_btn a{
    color: #3e3e3e;
}

.download_btn span{
     height: 64px;
    width: 64px;
    background: #ffffff;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgb(0 0 0 / 30%);
    border: 1px solid #0000002e;
}


.download_btn span img{
    width: 32px;
}

@media screen and (max-width: 991px){
    .download_btn span{
        height: 50px;
        width: 50px;
    }
    .download_btn span img {
        width: 32px;
    }
    .download_btn p {
        display: none;
    }
}
@media screen and (max-width: 767px){
    .download_btn span{
        height: 42px;
        width: 42px;
    }
    .download_btn span img {
        width: 26px;
    }
    .download_btn p {
        display: none;
    }
}



.banner_section{
    padding: 100px 5%; 
    background: linear-gradient(117.97deg, #724A26 0.84%, #2E2E2E 133.58%);
   
}

.banner_section_bg {
    position: relative;
    z-index: 0;
}

.banner_section_bg:before {
    content: "";
    height: 60%;
    width: 80%;
    position: absolute;
    border: 4px solid #684627;
    bottom: -40px;
    right: -13px;
    z-index: -1;
}
.demo__background {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    top: -90px;
}
.section-caption {
    display: block;
    position: relative;
    color: #f0f0f0;
    font-size: 80px;
    font-weight: 500;
    top: 0;
    font-family: 'Lora';
}

.section-caption-res {
    display: block;
    position: relative;
    color: #f0f0f0;
    font-size: 45px;
    font-weight: 500;
    top: 0;
    font-family: 'Lora';
    line-height: 1;
}

    .Slider-slide img {
      height: 540px;
    }

@media screen and (max-width: 991px){
    .demo__background {
        top: -52px;
    }
       .section-caption {
            font-size: 42px;
        }
    .Slider-slide img {
        border-radius: 20px 0;
        height: 100%;
        width: 100%;
    }
    .section-caption-res{
          font-size: 17px;
    }
}
@media screen and (max-width: 767px){
    .demo__background {
        top: -42px;
        text-align: center;
    }
    .section-caption {
        font-size: 36px;
    }
}
@media screen and (max-width: 479px){
    .demo__background {
        top: -45px;
    }
    .section-caption {
        text-align: center;
    }
}
@media screen and (max-width: 320px){
    .demo__background {
        top: -36px;
    }
    .section-caption {
        font-size: 30px;
    }
    .btn-primary {
        font-size: 14px;
    }
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #79512e;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(121 81 46 / 16%);
}

#plans{
    cursor: grab;
    overflow: auto;;
}
div#myModal {
    backdrop-filter: blur(3px);
}

.coming_soon{
    padding: 4px 0;
    background: linear-gradient(117.97deg, #724A26 0.84%, #2E2E2E 133.58%);
}
.coming_soon p{
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    text-align: center;
}


.commercial-header {
    padding: 15px 10px;
    background: white;
    position: fixed;
    top: 115px;
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;   
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center; 
    z-index: 98;
    scroll-behavior: smooth;
}


@media(max-width: 1199px){
    .commercial-header {
        top: 86px;
    }
}

@media(max-width: 575px){
    .commercial-header {
    justify-content: flex-start; 
    }
}

.commercial-header::-webkit-scrollbar {
    display: none;
}

.commercial-header a{
  color: black;
  font-size: 12px;
  padding: 8px 11px;
  border: 1px solid #000;
  border-radius: 7px;
  white-space: nowrap;
}

.commercial-header a.active {
  background: linear-gradient(118deg, rgba(114,74,38,1) 0%, rgba(46,46,46,1) 100%);
  color: #fff;
  border: none;
}
.header-margin{
  margin-top: 65px;
}
/* ================== */

