/* -------------------------------------------------------------------
 * Plugin Name           : Havestar - Responsive Mega & DropDown Menu
 * Author Name           : Yucel Yilmaz
 * Author URI            : https://codecanyon.net/user/aip_theme3434
 * Created Date          : 01 February 2020
 * Version               : 1.0
 * File Name             : style.css
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   Base                               
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components                               
   ------------------------ /
 * 04.Buttons  
   ------------------------ /
   Layout                               
   ------------------------ /
 * 05.Navbar
 * 06.Hero 
 * 07.Footer
 * 08.Responsive

/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

body, html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #677294;
}

a:link, a:hover, a:active, a:visited {
  text-decoration: none;
  color: #677294;
}

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

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

/* ---------------------------------------------------------------- */
/* 02.Typography                                                  
/* ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  color: #000;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 55px;
}

h2, .h2 {
  font-size: 42px;
}

h3, .h3 {
  font-size: 44px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  color: #a1a1a1;
  margin: 0;
  line-height: 28px;
}

.colum-text {
  text-align: center;
}

/* ---------------------------------------------------------------- */
/* 03.Helper Class                                                  
/* ---------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-heading .section-title {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.section-heading .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: #615dfa;
  transform: translateX(-50%);
}

.bg-light-grey {
  background: #f5f5f5;
}

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

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                   
/* ---------------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 5px;
  border: none;
  outline: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}
.button.default-button {
  background: #615dfa;
  color: #fff;
}
.button.default-button:hover {
  background: #4e49f9;
}

/* ---------------------------------------------------------------- */
/* 05.Navbar                                                   
/* ---------------------------------------------------------------- */
.header {
  padding: 10px 0;
  z-index: 3333;
}
.header .nav-link {
  font-size: 12px;
  font-weight: 500;
  padding: 20px 15px !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  position: relative;
  color: #fff;
  line-height: 28px;
}
.header .nav-link.active:after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  content: "";
  position: absolute;
  background: #615dfa;
}
.header .nav-link:not(.active):after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  z-index: -7;
  content: "";
  position: absolute;
  background: #615dfa;
  transition: transform 0.4s ease;
  transform-origin: 100% 0;
  transform: scaleX(0);
}
.header .nav-link:not(.active):hover:after {
  transform: scaleX(1);
  transform-origin: 0 0;
}
.header .dropdown:hover .nav-link:after {
  transform: scaleX(1);
  transform-origin: 0 0;
}
.header .dropdown-toggle {
  padding-right: 25px !important;
}
.header .dropdown-toggle:before {
  top: 50%;
  right: 0;
  content: "\f078";
  font-weight: 700;
  font-size: 12px;
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  transition: all 0.25s ease;
  transform: translateY(-50%);
}
.header .dropdown-toggle[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 20px;
}
.header .dropdown-toggle:after {
  content: "";
  border: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: initial;
}
.header .dropdown-menu {
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 13px 35px 0 rgba(43, 50, 54, 0.1);
}
.header .dropdown-menu .dropdown-item {
  width: 100%;
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.header .dropdown-menu .dropdown-item:focus, .header .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background: #615dfa;
  padding-left: 25px;
}
.header .navbar-toggler {
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0 10px 0 0;
}
.header .navbar-toggler .togler-icon-inner span {
  height: 3px;
  margin: 5px;
  width: 30px;
  display: block;
  background: #fff;
  transition: all 0.3s ease;
}
.header .navbar-toggler .togler-icon-inner span:nth-child(2) {
  margin-left: auto;
  width: 20px !important;
}
.header .navbar-toggler .togler-icon-inner span:nth-child(3) {
  margin-bottom: 0;
}
.header .navbar-toggler[aria-expanded=true] .togler-icon-inner span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.header .navbar-toggler[aria-expanded=true] .togler-icon-inner span:nth-child(2) {
  opacity: 0;
}
.header .navbar-toggler[aria-expanded=true] .togler-icon-inner span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.header.header-shrink {
  padding: 0;
  background: #fff;
  box-shadow: 0 13px 35px 0 rgba(43, 50, 54, 0.1);
  animation: stickyMenu 0.7s ease-in-out;
}
.header.header-shrink .nav-link {
  color: #000;
}
.header.header-shrink .togler-icon-inner span {
  background: #000;
}
.header .login-btn-mobile, .header .signup-btn-mobile, .header .search-btn-mobile {
  display: none;
}
.header .navbar-brand {
  margin-right: 0;
  padding: 0;
}
.header .navbar-brand img {
  display: none;
}
.header .navbar-brand img.logo-transparent {
  display: block;
}

.mega-menu-item {
  position: static;
}
.mega-menu-item .dropdown-menu {
  width: 100% !important;
  right: 0;
  margin: 0 auto;
}
.mega-menu-item .mega-menu-wrapper .container {
  background: #fff;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column {
  padding: 0;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column:last-child {
  border-right: 0;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column h6 {
  padding: 25px 28px;
  background: #615dfa;
  color: #fff;
  font-weight: 400;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column:last-child ul {
  border-right: 0;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 28px;
  font-weight: 400;
  color: #000;
  transition: all 0.25s ease;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li:last-child {
  border-bottom: 0;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li:hover {
  color: #fff;
  background-color: #615dfa;
  border-color: #615dfa;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li:hover a {
  color: #fff;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #000;
  font-size: 15px;
}
.mega-menu-item .mega-menu-wrapper .mega-menu-column ul li a i {
  margin-right: 10px;
  font-size: 12px;
}

@keyframes stickyMenu {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.custom-modal {
  z-index: 4444;
}
.custom-modal .search-button {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 16px;
  color: #fff;
  border: none;
  align-items: center;
  text-align: center;
  position: absolute;
  justify-content: center;
  background: #615dfa;
  transition: all 0.25s linear;
  border-radius: 0 3px 3px 0;
}
.custom-modal .search-button:hover {
  background: #312cf8;
}
.custom-modal .modal-content {
  background: transparent;
}
.custom-modal .modal-content .modal-header {
  padding: 20px 30px;
  background: #615dfa;
  border-radius: 5px 5px 0 0;
}
.custom-modal .modal-content .modal-header .modal-title {
  color: #fff;
  font-size: 1.1rem;
}
.custom-modal .modal-content .modal-header button {
  opacity: 1;
}
.custom-modal .modal-content .modal-header button span {
  font-weight: 400;
  color: #fff;
}
.custom-modal .modal-content .modal-body {
  padding: 30px 30px 20px 30px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.custom-modal .modal-content .modal-body .popup-form-group {
  position: relative;
  overflow: hidden;
}
.custom-modal .modal-content .modal-body .popup-form-group .popup-form-control {
  height: 60px;
  outline: none;
  width: 100%;
  border: none;
  color: #000;
  padding: 0 20px 0 50px;
  margin-bottom: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 5px 15px 0 rgba(43, 50, 54, 0.1);
}
.custom-modal .modal-content .modal-body .popup-form-group .popup-form-control:focus {
  outline: none;
  border: none;
  box-shadow: 0 10px 28px 0 rgba(43, 50, 54, 0.1);
}
.custom-modal .modal-content .modal-body .popup-form-group > textarea.popup-form-control {
  height: auto;
  padding: 18px 50px;
}
.custom-modal .modal-content .modal-body .popup-form-group > span {
  position: absolute;
  top: 22px;
  left: 16px;
  font-size: 16px;
  color: #615dfa;
  border-radius: 0 5px 5px 0;
}
.custom-modal .modal-content .modal-body .popup-form-btn {
  border: none;
  outline: none;
  width: 100%;
  display: block;
  border-radius: 5px;
  padding: 20px 60px;
  color: #fff !important;
  background: #615dfa;
  transition: all 0.25s linear;
  box-shadow: 0 10px 16px 0 rgba(97, 93, 250, 0.15);
}
.custom-modal .modal-content .modal-body .popup-form-btn:hover {
  color: #fff !important;
  background: #4944f9;
  box-shadow: 0 10px 30px rgba(97, 93, 250, 0.2);
}
.custom-modal .modal-content .modal-body .custom-control {
  display: flex;
  align-items: center;
  min-height: auto;
  line-height: 26px;
  margin-bottom: 20px;
}
.custom-modal .modal-content .modal-body .custom-control .custom-control-label {
  margin-left: 15px;
  padding-left: 10px;
  color: #000;
}
.custom-modal .modal-content .modal-body .custom-control .custom-control-label:before {
  background: #fff;
  border: 1px solid #615dfa;
  box-shadow: none !important;
}
.custom-modal .modal-content .modal-body .custom-control .custom-control-input:checked ~ .custom-control-label:before {
  color: #fff;
  border-color: #615dfa;
  background: #615dfa;
}

/* ---------------------------------------------------------------- */
/* 06.Hero                                                   
/* ---------------------------------------------------------------- */
.hero {
  padding-top: 118px;
  background: #272A33;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-box {
  border: 2px solid #fff;
  padding: 30px;
}
.table-box p {
  color: #fff;
}

.custom-container {
  padding: 30px;
  border: 2px solid #fff;
}

.round-corner {
  border-radius: 20px;
}

@media screen and (max-width: 992px) {
  .table-box {
    margin-bottom: 30px;
  }
}
/* ---------------------------------------------------------------- */
/* 08.Footer                                                   
/* ---------------------------------------------------------------- */
.footer {
  background: #272A33;
}
.footer .copyright-wrap {
  padding: 30px;
}
.footer .copyright-wrap .copyright-inner .copyright-text {
  text-align: center;
  color: #fff;
  opacity: 0.85;
}

/* ---------------------------------------------------------------- */
/* 09.Responsive                                                   
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media screen and (max-width: 991.98px) {
  .header .container, .header, .header ul li {
    padding: 0;
  }
  .header .container {
    max-width: 100%;
  }
  .header .navbar-nav .nav-link {
    color: #000;
    padding: 10px 15px !important;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .header .navbar-nav .nav-link:after {
    display: none;
  }
  .header .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
  .header .navbar-nav .dropdown-toggle:before {
    top: 27px;
    right: 20px;
  }
  .header .navbar-nav .dropdown-toggle[aria-expanded=true]:before {
    transform: rotate(180deg);
    top: 11px;
  }
  .header .navbar-nav .dropdown-menu {
    box-shadow: none;
    background: #f5f5f5;
    border-top: 0;
  }
  .header .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #615dfa;
  }
  .header .main-menu {
    background: #fff;
  }
  .header .navbar-nav .nav-link:not(.active):hover, .header .navbar-nav .nav-link.active {
    background: #615dfa;
    color: #fff !important;
    border-color: #615dfa;
  }
  .header .navbar-brand {
    padding: 10px 0 10px 15px;
  }
  .header .signup-btn-mobile, .header .login-btn-mobile, .header .search-btn-mobile {
    display: block;
    position: absolute;
    top: 32px;
    font-size: 16px;
    background: transparent;
    border: none;
    color: #fff;
  }
  .header .login-btn-mobile {
    right: 60px;
  }
  .header .search-btn-mobile {
    right: 90px;
  }
  .header .signup-btn-mobile {
    right: 120px;
  }
  .search-btn-resp, .signup-btn-resp, .login-btn-resp {
    display: none;
  }
  .mega-menu-item .mega-menu-resp {
    overflow: hidden;
    overflow-y: scroll;
  }
  .mega-menu-item .mega-menu-resp .mega-menu-wrapper {
    height: 320px;
  }
  .mega-menu-item .mega-menu-resp .mega-menu-wrapper .mega-menu-column:nth-child(2) {
    border-right: 0;
  }
  .mega-menu-item ul li {
    background: #f5f5f5;
  }
  .header-shrink .login-btn-mobile {
    color: #000;
  }
  .header-shrink .search-btn-mobile {
    color: #000;
  }
  .header-shrink .signup-btn-mobile {
    color: #000;
  }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Large devices (desktop, less than min-width: 992px)
/* ---------------------------------------------------------------- */
@media screen and (min-width: 992px) {
  .dropdown-menu {
    border: 0;
    top: 100%;
    left: 0;
    transform-origin: top;
    transform: rotateX(90deg);
    color: #000;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    display: initial;
    min-width: 250px;
    border-radius: 0;
    position: absolute;
  }
  .dropdown-menu.show {
    opacity: 1;
    top: 100%;
    transform: rotateY(0deg);
    visibility: visible;
    transition: all 0.5s ease;
  }
}
/* ------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  body, html {
    font-size: 14px;
  }
  .mega-menu-item .mega-menu-resp {
    overflow: hidden;
    overflow-y: scroll;
  }
  .mega-menu-item .mega-menu-resp .mega-menu-wrapper .mega-menu-column ul {
    border-right: 0;
  }
}

/*# sourceMappingURL=style.css.map */
