/*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: Vertiglast - Real Estate Landing Page
Version: 1.0

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

    I.General
    II.Page Prealoader
    III.Header & Navigation
    IV.Hero Section
    V.About Section
    VI.Testimonial Section
    VII.Plans and Planning
    VIII.CTA Section
    IX.Responsive Styles

-------------------------------------------------------------------
[Color codes]

Background:	#FFF; (white)
Content:	#222; (black)
Footer:		#222;

a (standard): #FFD012;
a (hover): #FFD012;
a (visited): #FFD012;	
a (active):	#FFD012;

[Colors]

Primary Color: #FFD012;
Accent Color: #222;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Cabin|Raleway:300'); /* Cabin and Raleway Font */

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #FFD012;
}
/* -Link Styling- */
a {
    color: #FFD012;
    font-family: Raleway, sans-serif;
	text-decoration: none;
}
a:visited {
    color: #FFD012;
    text-decoration: none;
}
a:hover {
    color: #FFD012;
	text-decoration: underline;
}
a:active {
    color: #FFD012;
    text-decoration: underline;
}
a:focus {
    color: #FFD012;
    text-decoration: none;
}
/* -Resets- */
html, body { 
    color: #222;
    font-size: 16px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
	overflow-x: hidden;
}
/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
}
/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
	font-family: Cabin, sans-serif;
    font-weight: bold;
}
h1 {
    font-size: 2.50rem; /* 36px */
} 
h2 {
    font-size: 2.25rem; /* 24px */
}
h3 {
    font-size: 1.50rem; /* 20px */
}
h4 {
    font-size: 1.25rem;
}
p {
    font-family: Raleway, sans-serif;
    font-size: 0.9375rem; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
    font-weight: 300;
}
li {
    font-family: Raleway, sans-serif;
    font-weight: bold;
}
li p {
    font-weight: bold;
}
.heading {
    position: relative;
    background: #fff;
    text-align: center;
}
.heading::before {
    position: absolute;
    left: -20px;
    top: -14px;
    display: inline-block;
    content: " ";
    width: 50px;
    height: 70px;
    background: none;
    border: 3px solid #FFD012;
    z-index: -2;
}
.strong {
    font-weight: bold;
}
.subtle {
	color: #999;
}
.spaced {
    letter-spacing: 5px;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
ul {
    list-style-type: none;
    padding: 0;
}
/* -Margins and Floats- */
.floated-left {
     float: left;
}
.floated-right {
    float: right;
}
.inline {
	display: inline;
}
.tiny-margin {
    margin-bottom: 3em /* 32px */
}
.small-margin {
	margin-bottom: 6em; /* 96px */
}
.medium-margin {
	margin-bottom: 8em; /* 128px */
}
.large-margin {
	margin-bottom: 12em; /* 192px */
}
/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background: #FFD012;
    margin: 10px 0;
}
.short-hr-center::after {
    border-top: 1px solid;
    border-color: #FFD012;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px auto 0 auto;
}
/* -General Button Styles */
button {
    outline: none !important;
}
.button {
    height: auto;
    width: auto;
    margin: 20px auto;
    padding: 9px 22px;
    font-family: Raleway, sans-serif;
    font-weight: bold;
    color: #222;
    border: none;
    border-radius: 999px;
    background: #FFD012;
	display: inline-block;
    outline: none;
	transition: all 0.2s ease;
    box-shadow: 0 10px 22px rgba(255, 208, 18, 0.22);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    cursor: pointer;
}
.button:visited {
    color: #222;
}
.button:hover {
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
    color: #222;
    box-shadow: 0 14px 30px rgba(255, 208, 18, 0.3);
}
.button:focus {
    color: #222;
}
/* --------------------------- /////////// II. PAGE PRELOADER /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    background: #FFF;
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}
.loader-logo {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    color: #222;
    top: 25%;
    margin: 0 auto;
    font-family: Cabin, sans-serif;
    font-size: 2.25rem;
    font-weight: bold;
}
#progress {
    width: 0;
    height: 2px;
    background: #FFD012;
    position: relative;
    top: 30%;
}
.loader-text {
    position: relative;
    color: #222;
    top: 35%;
    font-size: 1.5rem;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease; 
    transition: all 0.5s ease;
}
/* --------------------------- /////////// III. HEADER & NAVIGATION /////////// --------------------------- */
#main-logo {
    color: #FFF;
    font-family: Cabin, sans-serif;
    font-size: 1.5rem; /* 28px */;
    font-weight: bold;
}
.logo-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}
.brand-logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: 190px;
}
.brand-logo-dark {
    display: none;
}
.navbar-light.scrolled .brand-logo-light {
    display: none;
}
.navbar-light.scrolled .brand-logo-dark {
    display: block;
}
.loader-brand {
    width: min(320px, 72vw);
    margin: 0 auto;
}
.navbar-light {
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0);
    z-index: 900;
}
.scrolled {
    background-color: rgba(255,255,255,1); /* navbar background gradient */
    z-index: 900;
    border: 1px solid #f9f9f9;
}
.navbar-light.scrolled .navbar-nav .nav-link{
    color: #222;
}
.navbar-light.scrolled #main-logo {
    color: #222;
}
.nav-link {
    font-size: 1rem;
    margin-top: 5px;
    transition: 0.2s;
}
.navbar-light .navbar-nav .nav-link {
    color: #FFF;
}
.navbar-light .navbar-nav .active>.nav-link {
    color: #FFF;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #FFD012;
}
.navbar-light .navbar-nav .nav-link:active {
    color: #FFD012;
}
.navbar-light .navbar-nav .nav-link:focus {
    color: #FFD012;
}
.lang-switcher-item {
    margin-left: 10px;
}
.lang-switcher {
    display: inline-flex;
    align-items: center;
    direction: ltr;
    border: 1px solid rgba(255, 208, 18, 0.75);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.lang-link {
    display: inline-block;
    padding: 6px 10px;
    font-size: 0.85rem;
    line-height: 1;
    text-decoration: none !important;
    color: #FFF;
    background: transparent;
    transition: 0.2s ease;
}
.lang-link + .lang-link {
    border-left: 1px solid rgba(255, 208, 18, 0.45);
}
.lang-link:hover,
.lang-link:focus {
    color: #222;
    background: #FFD012;
}
.lang-link.active {
    color: #222;
    background: #FFD012;
}
.navbar-light.scrolled .lang-switcher {
    border-color: #FFD012;
}
.navbar-light.scrolled .lang-link {
    color: #222;
}
.navbar-light.scrolled .lang-link.active,
.navbar-light.scrolled .lang-link:hover,
.navbar-light.scrolled .lang-link:focus {
    color: #222;
    background: #FFD012;
}

.navbar-toggler {
    border: none;
    cursor: pointer;
}
#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #FFD012;
    margin: 7px 0;
    transition: .3s ease-in-out;
}
/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* --------------------------- /////////// IV. HERO SECTION /////////// --------------------------- */
/* -Hero Image- */
.hero-unit {
    background-image: linear-gradient(rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.55)), url(../images/4.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 720px;
}
.angled-section {
    -webkit-clip-path: polygon(100% 80%, 50% 100%, 0 80%, 0 0, 100% 0);
    clip-path: polygon(100% 80%, 50% 100%, 0 80%, 0 0, 100% 0);
}
#logo {
    width: min(320px, 72vw);
    max-width: 100%;
    height: auto;
}
/* -Hero Image Caption- */
.hero-caption {
    display: block;
    position: relative;
    margin-top: 15vh;
    color: #FFF;
	text-shadow: none; 
    padding: 20px;
    z-index: 5;
    text-align: center;
}
.hero-caption h1 {
    font-size: 3rem;
    margin: 5px 0;
    font-weight: bold;
}
.hero-caption p {
    font-size: 1.7rem;
    padding-top: 0;
}
.hero-subcopy {
    max-width: 720px;
    margin: 10px auto 0 auto;
    font-size: 1rem !important;
    line-height: 1.8rem;
}
#hero-section .button {
    margin: 25px 10px 0;
    padding: 6px 15px;
}
.button-secondary {
    background: transparent;
    border: 1px solid #FFD012;
    color: #FFF !important;
}
.button-secondary:visited,
.button-secondary:focus,
.button-secondary:hover {
    color: #FFF !important;
}
.button-outline-dark {
    background: transparent;
    border: 1px solid #222;
    color: #222 !important;
    box-shadow: none;
}
.button-outline-dark:hover,
.button-outline-dark:focus {
    background: #222;
    color: #FFF !important;
    box-shadow: none;
}
.project-preview {
    display: block;
}
.project-preview img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.product-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
#about-section img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
#arrow {
    display: block;
    margin: 40px auto 0 auto;
    width: 70px;
    height: auto;
    font-size: 2rem;
}
/* --------------------------- /////////// V. ABOUT SECTION /////////// --------------------------- */
.feature {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.feature i {
    display: block;
    margin: 0 auto 25px auto;
    font-size: 3.5rem;
    width: auto;
    height: auto;
    border-radius: 50%;
}
#about-section .col-md-7 {
    padding-right: 0;
}
#about-section .col-md-5 {
    padding-left: 0;
    background: #F9F9F9;
}
#about-section .col-md-7.flipped {
    padding-left: 0;
}
#about-section .col-md-5.flipped {
    padding-right: 0;
}
.text-wrapper {
    margin: 30% 0 0 15px;
    padding: 20px;
}
.text-wrapper.flipped {
    margin: 30% 0 0 0;
}
#project-details-section .project-story {
    background: #FFF;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255, 208, 18, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.project-kicker {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 12px;
}
#project-details-section .project-story p {
    margin-bottom: 14px;
}
.project-facts {
    display: grid;
    gap: 15px;
}
.info-card {
    background: #F9F9F9;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 208, 18, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.info-card span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 6px;
}
.info-card strong {
    display: block;
    line-height: 1.6rem;
}
/* --------------------------- /////////// VI. TESTIMONIAL SECTION /////////// --------------------------- */
#testimonial-section {
    width: 100%;
    height: auto;
    color: #FFF;
    padding: 6em;
    background-image: linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)), url(../images/20.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.name {
    font-family: Raleway, sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px 0 0 0;
}
.name::before {
    border-top: 1px solid #FFD012;
    display: inline-block;
    position: relative;
    top: -7px;
    right: 10px;
    margin: 0 auto;
    width:  25px;
    content: "";
}
.name::after {
    border-top: 1px solid #FFD012;
    display: inline-block;
    position: relative;
    top: -7px;
    left: 10px;
    margin: 0 auto;
    width:  25px;
    content: "";
}
/* --------------------------- /////////// VII. PLANS AND PRICING SECTION /////////// --------------------------- */
.product-showcase {
    display: flex;
    align-items: flex-end;
}
.feature-list ul {
    margin: 20px 0 0 0;
}
.feature-list li {
    padding: 5px 5px 10px 5px;
}
.feature-list li i {
    margin: 0 5px 0 0;
}
.feature-list div {
    float: right;
    padding: 50px;
    background: #F9F9F9;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.feature-list h3 {
    padding-left: 25px;
}
.carousel-indicators {
    bottom: -16px;
}
.carousel-indicators li {
    background-color: #F3F3F3;
}
.carousel-indicators li.active {
    background-color: #FFD012;
}
.details-wrapper {
    display: block;
    margin: 2.5em 0;
    background: #FFF;
}
.details-wrapper h3 {
    padding: 5px 0;
}
.price {
    font-family: Cabin, sans-serif;
    font-size: 1.50rem;
    padding: 5px 0 10px 0;
}
.unit-meta {
    font-size: 0.88rem;
    color: #666;
    margin-top: 4px;
}
.unit-update-note {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6rem;
    color: #555;
}
.unit-cta-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 15px 20px;
}
.unit-cta-row .button {
    margin: 0;
}
.product-image {
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}
/* lightbox border styling */
.lightbox .lb-image {
    border: 2px solid #EEE;
}
.lb-outerContainer {
    border-radius: 0;
}
.lightbox-wrapper {
    display: block;
    position: relative;
}
.lightbox-wrapper .icon-open {
    width: 20%;
    height: auto;
    position: absolute;
    top: 35%;
    left: 42%;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8));
    padding: 10px;
    opacity: 0;
    z-index: 2;
    transition: 0.3s ease;
}
.lightbox-wrapper:hover .icon-open {
    opacity: 1;
}
.lightbox-wrapper:hover .product-image {
    transform: scale(0.9);
}
.product-border {
    position: relative;
    border: 1px solid #FFD012;
    width: 95%;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-border:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
.product-border i {
    display: block;
    width: 130px;
    background: #FFF;
    font-size: 3rem;
    margin: 10px auto 0 auto;
}
.partners li {
    display: inline-block;
    padding: 30px 30px 20px 30px;
}
.brands-wrapper {
    position: relative;
    border: 1px solid #FFD012;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #FFF;
}
.brands-wrapper h3 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 35px;
    background: #FFF;
}
#gallery-section .row > div {
    margin-bottom: 30px;
}
.amenity-card {
    background: #FFF;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 208, 18, 0.32);
    margin-bottom: 24px;
    height: calc(100% - 24px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.amenity-card i {
    font-size: 2rem;
    color: #FFD012;
    display: block;
    margin-bottom: 14px;
}
.amenity-card h3 {
    margin-bottom: 10px;
}
.location-card {
    background: #FFF;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 208, 18, 0.32);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.location-points {
    margin: 18px 0 0 0;
}
.location-points li {
    margin-bottom: 10px;
    font-weight: 600;
}
.map-frame-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 208, 18, 0.25);
}
.location-map {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}
.floating-contact {
    position: fixed;
    left: 12px;
    bottom: 28px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.floating-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease, margin-bottom 0.25s ease;
    margin-bottom: 0;
}
.floating-contact.open .floating-actions {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-bottom: 10px;
}
.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 128px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}
.btn-icon {
    font-size: 0.95rem;
    line-height: 1;
}
.floating-toggle {
    border: 0;
    cursor: pointer;
    background: #FFD012;
    color: #222 !important;
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.35rem;
}
.toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.toggle-icon {
    display: inline-block;
    line-height: 1;
    transition: transform 0.25s ease;
}
.floating-contact.open .floating-toggle {
    background: #222;
    color: #FFD012 !important;
}
.floating-contact.open .toggle-icon {
    transform: rotate(180deg);
}
.share-btn {
    background: #FFD012;
    color: #222 !important;
}
.whatsapp-btn {
    background: #25D366;
    color: #FFF !important;
}
.call-btn {
    background: #222;
    color: #FFF !important;
}
.gallery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.gallery-card:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.82) 100%);
    color: #FFF;
}
.gallery-overlay strong {
    font-size: 1rem;
    margin-bottom: 4px;
}
.gallery-overlay small {
    font-size: 0.85rem;
    line-height: 1.4rem;
}
/* --------------------------- /////////// VIII. CTA SECTION /////////// --------------------------- */
#cta-section {
    width: 100%;
    height: auto;
    color: #FFF;
    background-image: linear-gradient(rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.82)), url(../images/18.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#cta-section .container {
    padding: 12em 0;
}
#contactForm {
    float: right;
    margin: 0 2em 0 0;
}
#contactForm input {
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7));
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #FFD012;
    border-left: none;
    outline: none;
    color: #FFF;
    font-family: Raleway, sans-serif;
    padding: 8px;
    margin: 15px 0 0 0;
}
#contactForm input:focus {
    border-left: 1px solid #FFD012;
}
#contactForm textarea {
    width: 100%;
    height: 100px;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7));
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #FFD012;
    border-left: none;
    outline: none;
    color: #FFF;
    font-family: Raleway, sans-serif;
    padding: 8px;
    margin: 15px 0 0 0;
}
.help-block.with-errors ul li {
    color: #FFD012;
    text-align: left;
    padding-top: 5px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFF;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #FFF;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #FFF;
}
:-moz-placeholder { /* Firefox 18- */
  color: #FFF;
}
#contactForm .button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
}
.agent-card img {
    width: 40%;
    border-radius: 50%;
    border: 1px solid #FFD012;
    margin: -45px 0 10px 0;
}
.agent-card {
    display: inline-block;
    float: left;
    width: auto;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7));
    margin: 6em 0 0 2em;
    padding: 0 20px 20px 20px;
    border: 1px solid #FFD012;
}
.agent-name {
    font-size: 1.2rem;
    font-weight: bold;
}
#footer {
    width: 100%;
    height: 40px;
    padding: 5px 0 0 0;
    border-top: 1px solid #FFD012;
    background: linear-gradient(rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.5));
    overflow: hidden;
}
/* --------------------------- /////////// IX. RESPONSIVE STYLES /////////// --------------------------- */
@media (max-width : 1023px) {
    #cta-section .container {
        padding: 4em 25px;
    }
    .text-wrapper, .text-wrapper.flipped {
        margin-top: 0;
    }
    .feature-list div {
        padding: 20px;
    }
    .navbar-light{
        background-color: rgba(17,17,17,0.5); /* navbar background gradient */
    }
    .scrolled {
        background-color: rgba(255,255,255,1); /* navbar background gradient */
    }
}
@media (max-width : 767px) {
    .small-margin {
	   margin-bottom: 3em;
    }
    .medium-margin {
        margin-bottom: 6em;
    }
    .large-margin {
        margin-bottom: 8em;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .feature {
        margin-top: 3em;
    }
    .hero-unit {
        min-height: 0;
    }
    .feature-list {
        margin-bottom: 2em;
    }
    .feature-list div {
        width: 100%;
        float: none;
        text-align: center;
    }
    #about-section .col-md-7 {
        padding: 0;
    }
    .product-border i {
        margin-bottom: 1em;
    }
    .text-wrapper, .text-wrapper.flipped {
        margin: 3em 0;
    }
    .lightbox-wrapper .icon-open {
        width: 15%;
    }
    .details-wrapper {
        float: none;
        margin: -16px 0 2em 0;
        padding: 0 25px;
    }
    .product-showcase {
        box-sizing: border-box;
        margin: 0 0 5em 0;
    }
    .partners {
        margin-top: 2em;
    }
    #contactForm {
        float: none;
        margin-bottom: 4em;
        margin-right: 0;
    }
    #contactForm input {
        width: 100%;
    }
    .agent-card {
        float: none;
        margin-left: 0;
    }
    .floating-contact {
        left: 8px;
        bottom: 72px;
    }
    .floating-btn {
        min-width: 112px;
        padding: 9px 12px;
        font-size: 0.88rem;
    }
    .floating-toggle {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.2rem;
    }
    .btn-icon {
        font-size: 0.95rem;
    }
    .reset {
        margin: 0;
    }
}

@media (max-width : 479px) {
    #logo {
        width: min(240px, 70vw);
    }
    .brand-logo {
        height: 36px;
        max-width: 150px;
    }
    h1 {
        font-size: 2rem;
    }
    .hero-caption h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    .hero-caption p {
        font-size: 1.2rem;
    }
    .heading:before {
        display: none;
    }
    #testimonial-section {
        padding: 3em 2em;
    }
    .feature-list h3 {
        padding: 0;
    }
    .feature-list i {
        display: none;
    }
}