/*
	Delex by TEMPLATE STOCK
	templatestock.co @templatestock
	Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
*/


/* TABLE OF CONTENTS
	1) Reset
	2) Help classes
	3) Pre-loader
	4) Parallax
	5) Navigation
	6) Home
	7) Services
	8) Twitter-tweets
	9) Contact
	10) Footer
	11) Responsive
	12) Back-to-top
*/




/* 1 Reset
----------------------------------------------------------------------------- */

html,body {
  height: 100%;
}
body {
  font-family: 'Signika Negative', sans-serif;
  font-weight: 400;
  color: #535353;
}
*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:focus {
    outline: 0 !important
}
iframe {
    border: none;
    width:100%;
}
a {
  color: inherit;
}
a:hover,a:focus,a:active {
  text-decoration: none;
}
p {
  color: #737373;
}
img {
  max-width: 100%;
}
h1,h2,h3,h4,h5,h6,p {
  font-family: 'Signika Negative', sans-serif;
}
textarea {
  max-width: 100%;
}
.btn {
  font-size: 14px;
  font-family: 'Signika Negative', sans-serif;
  text-transform: uppercase;
  border-radius: 0;
}
.btn:focus,.btn:active:focus {
  outline: none;
  color: #ffffff;
}
.btn-custom,.btn-custom-sm{
	border-radius: 3px;
	padding: 0.8em 1.8em;
	color: #fff;
	font-weight: 700;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
	text-transform: uppercase;
}
.btn-custom:hover,.btn-custom:focus,.btn-custom-sm:hover,.btn-custom-sm:focus{
  color: #fff;
  background-color: #6C6767;
  border-color: #6C6767;
}
.btn-custom-sm {
	padding: 0.5em 1em;
}
.form-control {
	box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0px;
	height: 38px;
}
.form-control:focus {
	outline: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.progress {
	height: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid #bbb;
}
.progress-bar {
	height: 6px;
	box-shadow: none;
	margin: 1px;
	border-radius: 3px;
}
section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

/* 2 Help-classes
----------------------------------------------------------------------------- */
.no-padding {
	padding: 0px;
}
.color-l-orange {
	color: #ff8b8b;
}
.color-l-blue {
	color: #77afea;
}
.color-l-yellow {
	color: #f4d382;
}
.color-l-purple {
	color: #ad8ede;
}
.color-l-pink {
	color: #ff3e75;
}
.color-l-green {
	color: #77dfa2;
}
.bg-light-orange {
	background-color: #ff8b8b;
	color: #ffffff;
}
.bg-light-blue {
	background-color: #77afea;
	color: #ffffff;
}
.bg-light-yellow {
	background-color: #f4d382;
	color: #ffffff;
}
.bg-light-purple {
	background-color: #ad8ede;
	color: #ffffff;
}
.bg-light-pink {
	background-color: #ff3e75;
	color: #ffffff;
}
.bg-light-green {
	background-color: #77dfa2;
	color: #ffffff;
}
.title {
	font-family: 'Kameron', serif;
	font-weight: 700;
}
.titleHR {
	background: none repeat scroll 0 0 #e1e1e1;
	height: 3px;
	margin: 20px auto 0;
	position: relative;
	text-align: center;
	width: 130px;
	margin-bottom: 20px;
}
.titleHR span {
	border-left: 5px solid #f7f7f7;
	border-right: 5px solid #f7f7f7;
	display: inline-block;
	height: 3px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 0px;
	width: 50px;
}

/* 3 Pre-loader
----------------------------------------------------------------------------- */
.animationload {
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#fff; /* change if the mask should have another color then white */
  z-index:999999;
}
.loader {
    width:220px;
    height:220px;
    text-align:center;
    position:absolute;
    left:50%;
    top:50%;
    margin:-110px 0 0 -110px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

.loader:before {
    content:"";
    width:76px;
    height:76px;
    border-radius:50%;
    border:4px solid rgba(26,79,139,0.18);
    border-top-color:#1a4f8b;
    border-right-color:#d8b06a;
    animation:spinnerRing 0.95s linear infinite;
    box-shadow:0 0 0 5px rgba(26,79,139,0.06);
}

.loader-text {
    margin-top:16px;
    color:#1a4f8b;
    font-family:'Manrope',sans-serif;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.8px;
    text-transform:uppercase;
}

@keyframes spinnerRing {
    to {
        transform:rotate(360deg);
    }
}


/* 4 Parallax
----------------------------------------------------------------------------- */
.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}

/* 5 Navigation
----------------------------------------------------------------------------- */
.navbar-custom {
	background: transparent;
	margin-bottom: 0px;
	z-index: 1000;
	border: none;
	color: #333;
	position: fixed;
	transition: background-color 1s ease-in-out, border 1s ease-in-out;
	-moz-transition: background-color 1s ease-in-out, border 1s ease-in-out;
	-webkit-transition: background-color 1s ease-in-out, border 1s ease-in-out;
	-o-transition: background-color 1s ease-in-out, border 1s ease-in-out;
}
.navbar-custom .navbar-brand,.navbar-custom .navbar-brand:hover {
	color: #ffffff;
	padding: 30px 15px;
	font-size: 22px;
	font-weight: 700;
	font-family: 'Kameron', serif;
}
.small .navbar-brand,.small .navbar-brand:hover {
	color: #333;
}
.navbar-custom .nav {
	padding: 15px 0px;
}
.navbar-custom .navbar-nav>li>a {
	color: #e3e3e3;
    font-size: 14px;
    text-transform: uppercase;
}
.small .navbar-nav>li>a {
	color: #000;
}
nav.small {
   background-color: #fff;
   -moz-box-shadow: 0 3px 5px rgba(0,0,0,.1);
   -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
   box-shadow: 0 3px 5px rgba(0,0,0,.1);
}
.navbar-custom .navbar-nav>.active>a, .navbar-custom .navbar-nav>.active>a:hover, .navbar-custom .navbar-nav>.active>a:focus,
.navbar-custom .navbar-nav>.open>a, .navbar-custom .navbar-nav>.open>a:hover, .navbar-custom .navbar-nav>.open>a:focus,
.navbar-custom .navbar-nav>li>a:hover, .navbar-custom .navbar-nav>li>a:focus {
	background-color: transparent;
}

/* 6 Home
----------------------------------------------------------------------------- */
.main-home {
	padding: 330px 0px 250px 0;
	z-index: 1;
	text-align: center;
	position: relative;
	font-size: 13px;
	color: #fff;
	background: #000;
	min-height: 400px;
}
.home-page-photo {
	background-image: url(../images/bg-5.jpg);
	background-size: cover;
	z-index: -1;
	position: absolute;
	top: 0;
	opacity: 0.50;
	right: 0;
	bottom: 0;
	left: 0;
}

.home__header-content {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}
.home__header-content h1{
	font-family: 'Kameron', serif;
}
.home__header-content p{
	font-weight: 300;
	font-size: 16px;
	margin-top: 20px;
}
.home__header-content a.btn-default {
	margin-top: 15px;
}
/*--- Carousel --*/
#main-home-carousel .intro-title {
	font-family: 'Kameron', serif;
}
#main-home-carousel .intro-text {
	color: #cacaca;
	font-weight: 300;
	margin-bottom: 30px;
}

/* 7 Services
----------------------------------------------------------------------------- */
.services-item{
	padding: 40px 20px;
}
.services-item i{
	font-size: 48px;
	margin-bottom: 20px;
}
.services-item h5{
	font-weight: 700;
	font-size: 16px;
	margin-top: 20px;
	text-transform: uppercase;
}

/* 11 Twitter-tweets
----------------------------------------------------------------------------- */
#twitter_tweet {
	background: url(../images/pattern1.png), url(../images/bg-4.jpg);
}
.twitter_tweet h5{
    font-weight: 300;
    line-height: 20px;
    color: rgba(255,255,255,0.77);
}
.twitter_tweet i{
    font-size: 30px;
}


/* 13 Contact
----------------------------------------------------------------------------- */
.form-main {
	padding-top: 30px;
}
.error {
	margin: 8px 0px;
	display: none;
	color: red;
}
#ajaxsuccess {
	font-size: 16px;
	width: 100%;
	display: none;
	clear: both;
	margin: 8px 0px;
}
#contact .con_sub_text {
	margin-top: 20px;
}
#contact textarea.form-control{
	height: 120px;
}

/* 14 Footer
----------------------------------------------------------------------------- */
footer p{
	margin-bottom: 20px;
}
#footer {
	padding: 40px 0px 0px 0px;
	background-color: #f7f7f7;
    border-top: 1px solid #e4e4e4;
}
.footer-content {
	padding: 40px 0px 80px;
}
.footer-bottom {
	background-color: #000;
	color: #a1a1a1;
	padding: 20px 0px 1px;
}
.footer-socials {
	position: relative;
	margin: 47px 0px 20px 0px;
	text-align: center;
}
.footer-socials a{
	display: inline-block;
}
.footer-socials i {
	width: 42px;
	height: 42px;
	line-height: 42px;
	background: transparent;
	border: 2px solid #E7EBEF;
	margin: 0px auto;
	position: relative;
	display: inline-block;
	margin: 0px 5px;
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	color: #282A2E;
}

/* 15 Responsive
----------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
	.navbar-custom {
		background-color: #ffffff;
	}
	.navbar-custom .navbar-brand {
		color: #000;
		padding: 15px;
	}
	.work-list li {
		width: 100%;
		display: block;
	}
}

/* 16 Back-to-top
----------------------------------------------------------------------------- */
.back-to-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 0px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
}
.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}




/*==================================
STYLE SWITHER - Demo purpose only
==================================*/ 

#style-switcher div h3 {
    color: #1D1D1D;
    font-size: 16px;
    margin: 8px 3px 12px;
}
#style-switcher {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
    left: -189px;
    position: fixed;
    top: 17%;
    width: 189px;
    z-index: 9999;
    padding: 10px 5px;
}
#style-switcher div {
    padding: 5px 10px;
}
#style-switcher .bottom {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #252525;
    padding: 0;
}
#style-switcher .bottom a.settings {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
    display: block;
    height: 41px;
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    padding: 3px;
}
#style-switcher .bottom a {
  text-decoration: none;
}

#style-switcher .bottom a.settings i {
    margin-left: 8px;
    color: gray;
    font-size: 18px;
    position: absolute;
    margin-top: 9px;
}

ul.pattern {
    list-style: none outside none;
    margin: 0 0 0px;
    overflow: hidden;
  padding:0;
  border-radius: 0px;
}
ul.pattern li {
    float: left;
    margin: 2px;
}
ul.pattern li a {
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
}

ul.pattern .color1 {
  background-color: #00bc95;
}
ul.pattern .color2 {
  background-color: #d13a7a;
}
ul.pattern .color3 {
  background-color: #e24348;
}
ul.pattern .color4 {
  background-color: #1aace7;
}
ul.pattern .color5 {
  background-color: #6a5a8c;
}
ul.pattern .color6 {
  background-color: #F94c00;
}
ul.pattern .color7 {
  background-color: #1f7f5c;
}
ul.pattern .color8 {
  background-color: #336699;
}
ul.pattern .color9 {
  background-color: #Fbce43;
}
ul.pattern .color10 {
  background-color: #a06081;
}
ul.pattern .color11 {
  background-color: #737f97;
}
ul.pattern .color12 {
  background-color: #9932cc;
}

@media only screen and (max-width: 479px) {
#style-switcher {
    display: none;
}
}

/* 2026 premium optimization overrides */
:root {
  --brand-navy: #0d223f;
  --brand-blue: #1a4f8b;
  --brand-gold: #d8b06a;
  --text-main: #4f5b6d;
  --text-strong: #1a2433;
  --bg-light: #f4f7fb;
  --card: #ffffff;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-main);
  line-height: 1.72;
}

h1, h2, h3, h4, h5, h6, .title, .navbar-custom .navbar-brand {
  font-family: 'Fraunces', serif;
}

section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section-heading {
  margin-bottom: 36px;
}

.title {
  font-size: 38px;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #67758a;
  font-size: 17px;
}

.navbar-custom {
  background: rgba(8, 21, 40, 0.56);
  backdrop-filter: blur(7px);
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-brand:hover {
  color: #ffffff;
  padding: 22px 15px;
  font-size: 25px;
}

.navbar-custom .nav {
  padding: 10px 0;
}

.navbar-custom .navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.9px;
}

nav.small {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(12, 30, 54, 0.09);
}

.small .navbar-brand,
.small .navbar-brand:hover,
.small .navbar-nav > li > a {
  color: #0f2544;
}

.main-home {
  padding: 180px 0 105px;
  min-height: 700px;
  background: linear-gradient(130deg, #071321, #123b66);
}

.home-page-photo {
  opacity: 0.22;
}

.home-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 176, 106, 0.34), transparent 36%),
    radial-gradient(circle at 78% 84%, rgba(38, 118, 203, 0.30), transparent 35%);
}

.home__header-content {
  position: relative;
  z-index: 2;
  top: auto;
  transform: none;
  max-width: 980px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

#main-home-carousel .intro-title {
  font-size: 52px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

#main-home-carousel .intro-text {
  color: rgba(240, 245, 252, 0.93);
  font-size: 18px;
  margin-bottom: 12px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-custom,
.btn-custom-sm {
  border-radius: 999px;
  padding: 11px 22px;
  border: 1px solid #b88f49;
  background: linear-gradient(120deg, var(--brand-gold), #b88f49);
  color: #18253b;
  font-weight: 800;
  text-transform: uppercase;
  transition: all .3s ease;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom-sm:hover,
.btn-custom-sm:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #172840;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 11px 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: #172840;
  background: #ffffff;
}

#services {
  background: #ffffff;
}

.services-item {
  background: var(--card);
  border: 1px solid #dfe9f6;
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 12px 28px rgba(14, 35, 63, 0.06);
  margin-bottom: 20px;
  min-height: 252px;
}

.icon-border {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border-radius: 50%;
  background: #eef4fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-item i {
  font-size: 30px;
  margin: 0;
}

.services-item h5 {
  margin-top: 16px;
  margin-bottom: 10px;
  text-transform: none;
  font-size: 17px;
  color: #1f2f46;
}

#google {
  background: linear-gradient(120deg, rgba(11, 29, 53, 0.91), rgba(18, 59, 102, 0.89)), url(../images/bg-4.jpg) center center/cover no-repeat;
}

#google .title,
#google .section-subtitle,
#google h5,
#google p,
#google i {
  color: #ffffff;
}

.service-carousel .work-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 30px 26px;
  min-height: 264px;
}

.service-carousel .work-item i {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-carousel .work-item h5 {
  margin-bottom: 12px;
  font-size: 21px;
}

#contact {
  background: var(--bg-light);
}

.contact-info-card {
  background: #0f2443;
  color: #dee8f8;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 16px 34px rgba(15, 36, 67, 0.25);
}

.contact-info-card h4 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 0;
}

.contact-info-card p,
.contact-info-card strong {
  color: #dee8f8;
}

.contact-info-card hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 22px 0;
}

.portal-wrap {
  margin-top: 20px;
}

.form-main {
  padding: 26px;
  background: #ffffff;
  border: 1px solid #d8e5f4;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(12, 31, 57, 0.09);
}

.form-control {
  height: 44px;
  border-radius: 8px;
  border: 1px solid #cbdaeb;
}

#contact textarea.form-control {
  height: 126px;
}

#contact label {
  font-weight: 700;
  color: #2c3f5c;
}

#footer {
  background: #0a1528;
  border-top: none;
  padding: 24px 0 10px;
}

.footer-bottom {
  background: transparent;
  color: #c4d4ed;
  padding: 0;
}

.footer-bottom p {
  margin-bottom: 6px;
}

.footer-bottom a {
  color: #efca86;
}

.back-to-top {
  bottom: 18px;
  right: 22px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 34, 63, 0.28);
}

@media only screen and (max-width: 991px) {
  .main-home {
    min-height: 660px;
    padding: 150px 0 86px;
  }

  #main-home-carousel .intro-title {
    font-size: 44px;
  }

  .contact-info-card {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .navbar-custom {
    background: rgba(255, 255, 255, 0.97);
  }

  .navbar-custom .navbar-brand,
  .navbar-custom .navbar-brand:hover,
  .navbar-custom .navbar-nav > li > a {
    color: #0f2544;
  }

  .navbar-custom .navbar-header .navbar-brand,
  .navbar-custom .navbar-header .navbar-brand:hover {
    font-size: 16px !important;
    line-height: 1.2 !important;
    padding: 15px 10px !important;
    max-width: calc(100% - 56px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-toggle {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .main-home {
    min-height: 610px;
    padding: 125px 0 68px;
  }

  #main-home-carousel .intro-title {
    font-size: 34px;
  }

  #main-home-carousel .intro-text {
    font-size: 16px;
  }

  .title {
    font-size: 32px;
  }
}

.nav-agent-login {
  padding-top: 10px;
  padding-left: 10px;
}

.nav-agent-login .btn-custom-sm {
  padding: 8px 16px;
}

@media only screen and (max-width: 767px) {
  .nav-agent-login {
    padding: 8px 15px 12px;
  }
}
