
/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Source+Sans+Pro:ital,wght@0,600;0,700;0,900;1,400&display=swap");
:root {
  --font-family: 'Rubik', sans-serif;
  --main-color: #8a5542;
  --body-color: #616161;
  --heading-color: #111111;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 16px;
  --transition: all ease .5s;
  --border-radius: 4px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  font-size: var(--font-size);
  font-family: var(--font-family);
  color: var(--body-color);
  background-color: #f5f6fa;
  scroll-behavior: smooth;
  
}
a {
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}
a:hover {
  text-decoration: none;
  color: var(--main-color);
}
a:focus {
  text-decoration: none;
}
button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 500;
  line-height: 1.3;
}
h3 {
  font-size: 20px;
  line-height: 1.6;
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}
p
 {
  font-size: var(--font-size);
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child 
{
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: var(--main-color);
  border: 1px solid #ececed;
  background-color: #f5f6fa;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: var(--black-color);
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.ebeef5-bg-color {
  background-color: #ebeef5;
}

.f5f6fa-bg-color {
  background-color: #f5f6fa;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: var(--white-color);
  padding: 15px 40px;
  line-height: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  background-color: var(--main-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--main-color);
  margin-bottom: -4px;
  text-transform: capitalize;
}

.default-btn:hover {
  color: var(--main-color);
  border-color: var(--main-color) !important;
  background-color: transparent;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -6px auto 0px;
}

.section-title span {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  color: var(--main-color);
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: var(--main-color);
}

.section-title.white-title h2 {
  color: var(--white-color);
}

/*===== DEFAULT STYLE END ======*/
/*====================================================
HOME PAGE ONE STYLE
======================================================*/

/*
Nav Area Style
======================================================*/
.navbar-area.navbar-area-two {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.navbar-expand-md .navbar-collapse{
  justify-content: center;
}

.navbar-area .main-nav {
  background-color: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.navbar-area .main-nav::before{
  content: '';
  left: 0;
  top: 0;
  background-color: #00767c;
  width: 445px;
  height: 100%;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}
.navbar-area .main-nav .container-fluid {
  max-width: 1470px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-area .main-nav .navbar {
  padding: 0;
}

.navbar-area .main-nav .navbar .navbar-brand {
  font-size: 0;
  padding: 0;
  margin: 0;
  max-width: 190px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 15px 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-size: 16px;
  color: var(--heading-color);
  text-transform: capitalize;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
  padding: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a i {
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 120px;
  left: 0;
  padding: 0;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  z-index: 99;
  display: block;
  padding: 0;
  background-color: var(--white-color);
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-top: 2px solid var(--main-color);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 15px;
  color: var(--body-color);
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
  text-transform: capitalize;
  display: block;
  font-weight: 500;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 12px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 100%;
  top: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: -2px !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  position: absolute;
  right: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--body-color);
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -4px !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu:last-child .dropdown-menu {
  left: auto;
  right: -100%;
}

.navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--white-color);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area .others-option .option-item {
  display: inline-block;
  position: relative;
  line-height: 1;
  top: 0;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #dadada;
}

.navbar-area .others-option .option-item .search-overlay {
  display: none;
}

.navbar-area .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--white-color);
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  margin-top: 27px;
  border-top: 2px solid var(--border-radius);
  border-radius: var(--border-radius);
}

.navbar-area .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--heading-color);
  outline: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--main-color);
}

.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--main-color);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 0;
}

.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--heading-color);
}

.navbar-area .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--white-color);
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

.navbar-area .others-option .option-item .search-btn:hover {
  color: var(--white-color);
}

.navbar-area .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--white-color);
}

.navbar-area .others-option .option-item .close-btn:hover {
  color: var(--white-color);
}

.navbar-area .others-option .option-item .close-btn.active {
  display: block;
}

.navbar-area .others-option .cart-icon {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  top: 5px;
}

.navbar-area .others-option .cart-icon a i {
  font-size: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  line-height: 1;
}

.navbar-area .others-option .cart-icon a span {
  position: absolute;
  top: -4px;
  right: -7px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
  text-align: center;
  color: var(--white-color);
  font-size: 11px;
}

.navbar-area .others-option .cart-icon a:hover i {
  color: var(--main-color);
}

.navbar-area .others-option .register {
  display: inline-block;
}

.navbar-area .others-option .register .default-btn {
  padding: 15px 30px;
  margin-bottom: -10px;
  position: relative;
  top: -4px;
}

.no-brokerje{
  position: absolute;
  max-width: 180px !important;
  bottom: 25px;
  left: 30px;
  z-index: 99;
}

.mobile-nav {
  display: none;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: 20px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--black-color);
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--main-color);
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  left: 0;
  top: 10px;
  max-width: 262px;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner {
  padding: 15px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--white-color);
}

.others-option-for-responsive .option-inner .others-option {
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 10px;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.others-option-for-responsive .option-inner .others-option .option-item {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}

.others-option-for-responsive .option-inner .others-option .option-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

/*
Banner Area Style
======================================================*/
.banner-area {
  background-image: url(../img/banner-img/banner-bg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 870px;
  padding-top: 130px;
  overflow: hidden;
}

.banner-area .container-fluid {
  max-width: 1470px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-area .social {
  position: relative;
}

.banner-area .social .social-wrap {
  position: absolute;
  top: 50%;
  right: -115px;
  z-index: 1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.banner-area .social .social-wrap li {
  display: inline-block;
  padding: 0 5px;
}

.banner-area .social .social-wrap li.follow-us {
  text-transform: capitalize;
  color: var(--white-color);
  position: relative;
  padding-right: 70px;
}

.banner-area .social .social-wrap li.follow-us::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 85px;
  width: 50px;
  height: 1px;
  background-color: var(--white-color);
  z-index: 1;
}

.banner-area .social .social-wrap li a i {
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.banner-area .social .social-wrap li a:hover i {
  color: var(--main-color);
}

.banner-content {
  margin-top: -275px;
}

.banner-content h1 {
  color: var(--white-color);
  font-size: 55px;
  margin-bottom: 25px;
}

.banner-content p {
  color: var(--white-color);
  margin-bottom: 35px;
}

.banner-area-two {
  background-color: #f5f6fa;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.banner-area-two .container-fluid {
  max-width: 1470px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-area-two .banner-content {
  margin-top: 180px;
}

.banner-area-two .banner-content h1 {
  color: var(--heading-color);
}

.banner-area-two .banner-content p {
  color: var(--body-color);
}

.banner-area-two .banner-img {
  margin-top: 180px;
  position: relative;
  z-index: 0;
}

.banner-area-two .banner-img .banner-shape-1 {
  position: absolute;
  top: 0;
  left: -40px;
  z-index: -1;
  -webkit-animation: moveBounce-top 9s linear infinite;
          animation: moveBounce-top 9s linear infinite;
}

.banner-area-two .banner-img .banner-shape-2 {
  position: absolute;
  top: 215px;
  left: -70px;
  z-index: -1;
  -webkit-animation: moveBounce-top 15s linear infinite;
          animation: moveBounce-top 15s linear infinite;
}

.banner-area-two .banner-img .banner-shape-3 {
  position: absolute;
  top: 380px;
  left: -160px;
  z-index: -1;
  -webkit-animation: moveBounce-top 9s linear infinite;
          animation: moveBounce-top 9s linear infinite;
}

.banner-area-two .banner-img .banner-shape-4 {
  position: absolute;
  top: 380px;
  left: -400px;
  z-index: -1;
  -webkit-animation: rotate3d 4s linear infinite;
          animation: rotate3d 4s linear infinite;
}

.banner-area-two .banner-img .banner-shape-5 {
  position: absolute;
  top: 490px;
  left: -490px;
  z-index: -1;
}

.banner-area-two .banner-img .banner-shape-6 {
  position: absolute;
  top: 515px;
  left: 0;
  z-index: -1;
  text-align: center;
  right: 150px;
}

.banner-area-two .banner-img .banner-shape-7 {
  position: absolute;
  top: 475px;
  z-index: -1;
  text-align: center;
  right: 160px;
}

.banner-area-two .banner-img .banner-shape-8 {
  position: absolute;
  top: 200px;
  z-index: -1;
  text-align: center;
  right: 0;
  -webkit-animation: moveBounce-top 4s linear infinite;
          animation: moveBounce-top 4s linear infinite;
}

.banner-area-three {
  background-image: url(../img/banner-img/banner-bg-3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 870px;
  overflow: hidden;
}

.banner-area-three .container-fluid {
  max-width: 1470px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-area-three .banner-content {
  margin-top: 140px;
}

.banner-area-three .enroll-wrap {
  background-color: var(--white-color);
  max-width: 500px;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: 100px;
}

.banner-area-three .enroll-wrap .courses-title {
  background-color: var(--main-color);
  padding: 25px 30px 20px;
}

.banner-area-three .enroll-wrap .courses-title span {
  color: var(--white-color);
}

.banner-area-three .enroll-wrap .courses-title h3 {
  color: var(--white-color);
  margin-bottom: 0;
}

.banner-area-three .enroll-wrap .courses-form {
  border: 1px solid var(--main-color);
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control {
  background-color: #f8f9fb;
  border-color: #e1e2e3;
  color: #616161;
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control::-webkit-input-placeholder {
  color: #616161 !important;
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control:-ms-input-placeholder {
  color: #616161 !important;
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control::-ms-input-placeholder {
  color: #616161 !important;
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control::placeholder {
  color: #616161 !important;
}

.banner-area-three .enroll-wrap .courses-form .form-group .form-control:focus {
  border-color: var(--main-color);
}

.banner-area-three .enroll-wrap .courses-form .form-group .nice-select {
  background-color: #f8f9fb;
  border-color: #e1e2e3;
}

.banner-area-three .enroll-wrap .courses-form .form-group .nice-select span {
  color: #616161;
  font-size: 16px;
}

.banner-area-three .enroll-wrap .courses-form .form-group .nice-select::after {
  border-color: var(--body-color);
}

.banner-area-three .enroll-wrap .courses-form .default-btn {
  background-color: var(--main-color);
  color: var(--white-color);
}

.banner-area-three .enroll-wrap .courses-form .default-btn:hover {
  background-color: var(--white-color) !important;
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

@-webkit-keyframes moveBounce-top {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce-top {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.rotated {
  -webkit-animation-name: rotated;
          animation-name: rotated;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes rotated {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotated {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.slider-img img{
  width: 100%;
}
.slider-con{
  background: rgba(0,0,0,0.64);
  padding: 10px;
  position: absolute;
  z-index: 9;
  bottom: 30%;
  left: 10%;
  max-width: 560px;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* #hero .carousel-item::before {
  content: '';
  background-color: rgba(4, 12, 21, 0.5);
} */

.coming-soon{
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding: 0px 35px;
  background: #9c0a0e;
  margin: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero .slider-heading{
  color: #f3b740;
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    text-shadow: 2px 3px 5px rgb(0 0 0 / 60%);
    border-left: 3px solid;
    padding-left: 10px;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;  
}

.banner-mob{
  display: none;

}

@media (max-width: 678px) {
  .banner-dex{
    display: none;
  }
  .banner-mob{
    display: block;    
  }
}

@media (min-width: 1200px) {
  /* #hero p {
    width: 50%;
  } */
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #d17854;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #00767c;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #fbb83f;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  #hero {
    height: 100%;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
  .slider-con {
    position: relative;
    left: 0;    
  }
  #hero .carousel-inner , #hero .carousel , #hero .carousel .carousel-item{
    position: relative;
  }
  #hero .carousel{
    top: 0;
  }
}

@media (max-width: 768px) {
  /* #hero {
    height: 50vh;
  } */
  #hero h2 {
    font-size: 30px;
  }
  #hero .carousel{
    top: 50px;
  }
  .slider-con{
    position: relative;
    left: 0;
    bottom: 0;
    height: 310px;
  }
  #hero .slider-heading{
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


.main-btn {
  line-height: 50px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  padding: 0 32px;
  background-color: #d17854;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  z-index: 2;
  font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 1199px) {
  .main-btn {
    padding: 0 40px;
    font-size: 16px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .main-btn {
    padding: 0 35px;
    font-size: 14px;
    line-height: 60px;
  }
}

.main-btn::after {
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  background-color: #14212b;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: '';
  z-index: -1;
  width: 85px;
  border-radius: 30px;
  transform: translate(-50%); 
}

.main-btn:hover {
  color: #fff;
}

.main-btn:hover::after {
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
}

.main-btn.main-btn-2 {
  background-color: #fff;
  color: #14212b;
}

.main-btn.main-btn-2::after {
  background-color: #ff4a17;
}

.main-btn.main-btn-2:hover {
  color: #fff;
}

.main-btn.main-btn-3 {
  background-color: #14212b;
  color: #fff;
}

.main-btn.main-btn-3::after {
  background-color: #ff4a17;
}

.main-btn.main-btn-4:hover {
  color: #14212b;
}

.main-btn.main-btn-4:hover::after {
  background-color: #fff;
}

@media (max-width: 1199px) {
  .view-moore-btn .main-btn {
    padding: 0 35px;
  }
}




/*=======  About CSS  =======*/
.about-text {
  /* padding-left: 80px; */
}

@media (max-width: 1199px) {
  .about-text {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .about-text {
    padding-left: 0;
    margin-top: 25px;
  }
}

.about-text .about-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-text .about-list li {
  color: #14212b;
}

.about-text .about-list li i {
  color: #ff4a17;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.about-text-two {
  padding-left: 45px;
}

@media (max-width: 991px) {
  .about-text-two {
    padding-left: 0;
    margin-top: 50px;
  }
}

.about-text-two .about-list {
  margin-bottom: 40px;
}

.about-text-two .about-list li {
  padding-left: 70px;
  margin-top: 30px;
  position: relative;
}

.about-text-two .about-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #ff4a17;
  border: 2px solid #ff4a17;
  border-radius: 50%;
}

.about-text-three {
  color: #c2d9eb;
  padding-left: 0;
  padding-right: 60px;
}

@media (max-width: 1199px) {
  .about-text-three {
    padding-right: 0;
  }
}

.about-text-three .section-title .title {
  color: #fff;
}

.about-text-three .about-list {
  margin-bottom: 50px;
}

.about-text-three .about-list li {
  color: #c2d9eb;
  font-weight: 600;
}

.about-illustration-img {
  position: relative;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-illustration-img .illustration-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50%;
  max-width: 525px;
}

@media (max-width: 991px) {
  .about-illustration-img .illustration-img {
    position: unset;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 0 auto 50px;
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .about-illustration-img .illustration-img {
    max-width: 450px;
  }
}


.section-gap {
  padding-top: 60px;
}

.section-title .title-tag {
  font-size: 20px;
  font-weight: 700;
  color: #d17854;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .section-title .title-tag {
    font-size: 18px;
  }
  .section-gap {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}

.section-title .title-tag::before, .section-title .title-tag::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #d17854;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.section-title .title-tag::after {
  left: auto;
  right: 0;
}

.section-title.left-border .title-tag {
  padding-left: 45px;
}

.section-title.left-border .title-tag::before {
  display: block;
}

.section-title.both-border .title-tag {
  padding: 0 45px;
}

.section-title.both-border .title-tag::before, .section-title.both-border .title-tag::after {
  display: block;
}

.section-title .title {
  font-size: 50px;
  line-height: 1.1;
}

@media (max-width: 1199px) {
  .section-title .title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .section-title .title {   
    font-size: 30px;
    line-height: 1.5;
  }
}

@media (max-width: 399px) {
  .section-title .title {
    font-size: 24px;
  }
}

.media-sec{
position: relative;
overflow: hidden;
}

.media-sec::before{
  position: absolute;
    left: 90px;
    top: 200px;
    content: '';
    z-index: -1;
    background-image: url(../img/star.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat;
}
.media-sec::after{
  position: absolute;
    right: 90px;
    bottom: 200px;
    content: '';
    z-index: -1;
    background-image: url(../img/star.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

.media-sec .line-one{
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}

.media-sec .line-two{
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  transform: rotate(370deg);
}

.footer{
  background: #111111;
  text-align: center;
  padding: 10px;
  margin: 0px 0px 0px 0px;

}
.footer p{
  color: var(--white-color);;
}

.footer-con{
    background: rgb(34 34 34);
    background-size: cover;
    padding: 54px 0 35px;
}
.footer-con p{
  color: #fff;
}


















.icon-bar2 {
  position: fixed;
  top: 19%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  right: 0px;
  -webkit-transition: .6s ease-in-out;
  -o-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  background: #f3b740;
  padding: 5px;
  box-shadow: -3px 14px 10px rgba(0, 0, 0, .2);
  border-radius: 5px;
}
.icon-bar2 a span {
  color: #fff;
  display: inline-block;
}
.icon-bar2 i{
padding: 3px;
  background: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color:#000000;
  text-align: center;
  line-height: 1.6;
  margin-right: 0px;
 
}
.icon-bar2:hover {
position: fixed;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 9;
right: 0;
}

.whatsapp-new {
position: fixed;
  z-index: 21;
  right: -5px;
  top: 45%;
}

.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes tada {
0% {
  -webkit-transform: scale(1);
  transform: scale(1);
}

10%, 20% {
  -webkit-transform: scale(0.9) rotate(-3deg);
  transform: scale(0.9) rotate(-3deg);
}

30%, 50%, 70%, 90% {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

40%, 60%, 80% {
  -webkit-transform: scale(1.1) rotate(-3deg);
  transform: scale(1.1) rotate(-3deg);
}

100% {
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
}

@keyframes tada {
0% {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

10%, 20% {
  -webkit-transform: scale(0.9) rotate(-3deg);
  -ms-transform: scale(0.9) rotate(-3deg);
  transform: scale(0.9) rotate(-3deg);
}

30%, 50%, 70%, 90% {
  -webkit-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

40%, 60%, 80% {
  -webkit-transform: scale(1.1) rotate(-3deg);
  -ms-transform: scale(1.1) rotate(-3deg);
  transform: scale(1.1) rotate(-3deg);
}

100% {
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
}

.tada {
-webkit-animation-name: tada;
animation-name: tada;
}





.modal-box {

font-family: Raleway, sans-serif

}



.modal-box .show-modal {

position: fixed;

color: #fff;

font-size: 18px;

font-weight: 600;

text-transform: capitalize;

padding: 10px 15px;

margin: 0;

border-radius: 0 15px;

border: none;

outline: 0;

box-shadow: 10px 10px 10px rgba(0, 0, 0, .2);

display: block;

bottom: 9px;

right: 8px;

z-index: 99;

animation: color-me-in 1s infinite ease-in-out alternate-reverse

}



@keyframes color-me-in {

0% {

  background: #9c0a0e

}

50% {

  background: #fbb83f

}

100% {

  background: #9c0a0e

}

}



.modal-box .show-modal:hover {

color: #fff;

border: none;

outline: 0;

text-decoration: none

}



.modal-backdrop.in {

opacity: 0

}



.modal-box .modal {

top: 70px!important

}



.modal-box .modal-dialog {

max-width: 450px;

margin: 30px auto 10px

}



.modal-box .modal-dialog .modal-content {

/*border: none;*/

/*border-top: 25px solid #e2b400*/
border-top: 5px solid #d17854;
  background-image: url(../img/formback.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 0 20px -7px rgba(0, 0, 0, 0.8);
  position: relative;
  height: 550px;
  padding-top: 40px;
}


.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}

.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}

@keyframes tada {
0% {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

10%, 20% {
  -webkit-transform: scale(0.9) rotate(-3deg);
  -ms-transform: scale(0.9) rotate(-3deg);
  transform: scale(0.9) rotate(-3deg);
}

30%, 50%, 70%, 90% {
  -webkit-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

40%, 60%, 80% {
  -webkit-transform: scale(1.1) rotate(-3deg);
  -ms-transform: scale(1.1) rotate(-3deg);
  transform: scale(1.1) rotate(-3deg);
}

100% {
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
}

.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
.enq_btn {
  position: absolute;
  display: grid;
  width: 100%;
  grid-template-columns: 50% 50%;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.enq_btn .call-buttun, .whatsapp-btn {
  padding: 10px;

  text-align: center;
  color: #fff;

}
.enq_btn .call-buttun{
  border-right: 1px solid #fff;
  background: #2196f3;
}
.enq_btn .whatsapp-btn {
  border-left: 1px solid #fff;
  background: #07bc4c;
}
.enq_btn .call-buttun a, .whatsapp-btn a{
  color: #fff;
}

/*Section Title*/
.section_gap-sm-100{
  padding-top: 100px;
  padding-bottom: 70px;
}
.section-title1 {
  text-align: center;
  max-width: 550px;
  margin: -8px auto 5px;
}

.section-title1 img {
  margin-bottom: 15px;
  max-width: 170px;
}

.section-title1 h2 {
  font-size: 35px;
  margin-bottom: 15px;
  background-image: linear-gradient( to right, #C4913C 0, #9E6924 24%, #cf9b46 62%, #915a12 100%  );
    color: transparent;
    -webkit-background-clip: text;
    text-transform: uppercase;
}

.section-title1 h2 span {
  background-image: linear-gradient( to right, #000000 0, #232323 24%, #000000 62%, #232323 100%  );
    color: transparent;
    -webkit-background-clip: text;
    
}
.min-he300 {
  margin-bottom: 30px;
}
.section-title1 .h3 {
  font-size: 35px;
  margin-bottom: 15px;
 color: #fff;
}




.advisor-content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 22px;
}
.advisor-content ul li {
  list-style-type: none;
  display: block;
  color: #444444;
  margin-bottom: 12px;
  font-size: 16px;
  position: relative;
  display: flex;
  border-bottom: 1px solid #eeecec;
  padding-bottom: 20px;
}
.advisor-content ul li:before {
  left: 0;
  color: #dbad59;
  content: "\eb85";
  display: inline-block;
  font-family: boxicons;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  /* position: absolute; */
  top: 17px;
  font-weight: 100;
  margin-right: 9px;
  margin-top: 6px;
}
.max-h2{
  max-height: 505px;
  overflow: hidden;
  overflow-y: scroll;
}

/* background-sec */
.mb-50{
  margin-bottom: 50px;
}
.background-sec{
  background-image: url(../img/background.jpg);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0; 
}
.background-sec::before{
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.64);
  width: 100%;
  height: 100%;
  top: 0;
}
.amenities .advisor-content li{
  color: #fff;
}




.modal-box .modal-dialog .modal-content .close {

  color: #d17854;
  font-size: 35px;
  font-weight: 300;
  text-shadow: none;
  opacity: 1;
  position: absolute;
  left: auto;
  right: -13px;
  top: -23px;
  z-index: 1;
  transition: all 0.3s;

}



/*.modal-box .modal-dialog .modal-content .close {*/

/*	color: #1b1b1b;*/

/*	font-size: 25px;*/

/*	text-shadow: none;*/

/*	opacity: 1;*/

/*	position: absolute;*/

/*	right: 8px;*/

/*	top: -27px;*/

/*	z-index: 1;*/

/*	transition: all .3s*/

/*}*/



.modal-box .modal-dialog .modal-content .close:hover {

color: #1b1b1b

}
.whatsapp-new {
  position: fixed;
    z-index: 21;
    right: -76px;
    top: 45%;
    max-width: 120px;
}


.modal-box .modal-dialog .modal-content .modal-body {

/*background: #2a4282;*/

padding: 20px 20px 30px!important;

text-align: center;

top: 120px;

}



.modal-box .modal-dialog .modal-content .modal-body .title {

color: #d17854;

font-family: Miniver, cursive;

font-size: 45px;

text-transform: capitalize;

margin: 0 0 5px 0

}
.modal-box .modal-dialog .modal-content .modal-body span {
color: #fff;
font-size: 30px;
font-weight: 300;
text-transform: uppercase;
display: block
}
.modal-box .modal-dialog .modal-content .modal-body .sub-heading {
color: #fff;
font-size: 15px;
margin: 0 0 20px 0
}
.modal-box .modal-dialog .modal-content .modal-body .form-control {
  color: #171616;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  height: 40px;
  padding: 2px 15px 2px 15px;
  border-radius: 25px;
  border: 1px solid #175c85;
  display: inline-block;
  transition: all .3s;
  background-color: #ffffff;
}
.modal-box .modal-dialog .modal-content .modal-body .form-control:focus {
box-shadow: none;
border: 1px solid #dbdbdb;
}
.modal-box .modal-dialog .modal-content .modal-body .form-control::placeholder {
color: #495057;
font-size: 16px;
font-weight: 600;
}


.modal-box .modal-dialog .modal-content .modal-body .login100-form-btn {
color: #FCFCFC;
  background: #9b0c10;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 20px;
  border: 1px solid #9b0c10;
  border-radius: 50px;
  overflow: hidden;
  display: block;
  transition: all 0.3s;
}



.modal-box .modal-dialog .modal-content .modal-body .login100-form-btn:hover {
background-color: #fff;
text-shadow: 2px 2px #e2b400
}

@media only screen and (max-width:576px) {
.modal-dialog {
  width: 93%!important
}
.main-btn{
  display: none;
}
.playpause{
  width: 50px !important;
}
}



.video-div {
  width: 100%;  
  position: relative;
}
.video-div video{
  width: 100%;
}
.playpause {
  background-image:url(../img/play.png);
  background-repeat:no-repeat;
  width:100px;
  height:100px;
  position:absolute;
  left:0%;
  right:0%;
  top:0%;
  bottom:0%;
  margin:auto;
  background-size:contain;
  background-position: center;
}

.mt-50{
  margin-top: 50px;
}



/* disclamer-popup */

.disclamer-popup {
	width: 300px;
    z-index: 1035;
    display: none;
    max-width: 80%;
    position: fixed;
    left: 0;
    bottom: 0%;
  
}

.disclamer-popup .disclamer-content {   
    font-size: 16px;
    border-bottom: 1px solid #d17854;
    background: #d17854;
    padding:15px 4px 3px 15px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 400;
    color: #222
}

.disclamer-popup .disclamer-content h4 {
	color: #ffffff;
    text-align: center;
    /* text-shadow: 2px 2px 4px rgb(250 235 215); */
    border-bottom: 1px solid #ca9c89;
}

.disclamer-popup .disclamer-content p {
    color: #222
}

.disclamer-popup .modal-footer {
    text-align: center;
	justify-content: center;
	padding: 0px;
}
.disclamer-content-p{
	height: 130px;
	overflow: auto;
	text-align: justify;
	padding: 0px 10px 0px 0px;
}

.disclamer-close{
	background: #000000;
    color: #fff;
    border: 2px solid #000000;
    margin-top: 3px;
    padding: 10px 10px;
    font-size: 13px;
}
.disclamer-close-top{
	background: #000000;
    color: #fff;
	border: none !important;
    position: absolute;
    right: 4px;
	top: 3px;
	padding: 4px;
	z-index: 9;
	cursor: pointer;
}

.btn-success:active,
.btn-success:focus,
.btn-success:hover {
    background: #3a0430 !important;
    border-color: #3a0430 !important
}

.disclamer-footer-main{
	display: flex;
    width: 100%;    
    padding: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}
.disclamer-footer-main p{
	padding: 0px;
    display: block;
    margin: 0;
    max-width: 50%;
	color: #575757;
	font-size: 16px;

}


/* read more */

.btn-read-more{
  background: #2b2b2beb;
  color: #fff;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 45%);
  position: relative;
}
.btn-read-more:hover{
  background: #ff5821;
  color: #fff;  
}
.btn-read-more:active, .btn-read-more:focus{
  border: 0px;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 45%);
}

.btn-read-more1{
 
  color: #ff5821;  
  position: relative;
}
.btn-read-more:hover{
  background: #ff5821;
  color: #fff;  
}
.btn-read-more:active, .btn-read-more:focus{
  border: 0px;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 45%);
}
.d-none-dextop{
  display:none !important;
}

.btn-read-more1 , .btn-read-more{
display: none;
}
.btn-read-more1:focus , .btn-read-more:focus{

  box-shadow:0px 0px 0px rgba(0,0,0,0);
}

@media screen and (max-width:768px) {
  .text,.text1,.text2, .text3, .text4 , .text5{
    display:none;
    }
    .btn-read-more1 , .btn-read-more{
      display:block;
      }
}


@media screen and (max-width: 1380px) and (min-width: 991px) {


}


@media screen and (max-width:768px) {
    .disclamer-popup {
		width: 300px;
		z-index: 1035;
		display: none;
		max-width: 67%;
		position: fixed;
		left: 0;
		bottom: 8%;
	}
	.disclamer-footer-main{
		padding: 5px 0px 15px 0px;
		margin-bottom: 20px;
	}
	.disclamer-footer-main p{
		max-width: 100%;
	}
  .no-brokerje {
    display: none !important;
}
.advisor-content{
  margin-top: 10px;
}

}
/* disclamer-popup */