:root {
  --dark-primary-color: #b98862;
  --primary-color: #b98862;
  --secondary-color: red;
  --thrird-color: green;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-size: 16px;
    color: #000;
    background-color: #fff;            
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: url(../images/logo-overlay-brown.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* .wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/logo-overlay.png);
    background-position: center center;
    background-size: contain    ;
    transform: rotate(45deg) scale(1.25);
    background-repeat: no-repeat;
    opacity: 0.035;
    z-index: -1;
} */

.home-div {
    /* background-color: var(--primary-color);
	border: 10px solid var(--primary-color); */
}

.home-div-white-div
{
	/* background-color: #fff; */
    padding: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.home-div-white-div::after {
    /* content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/logo-overlay.png);
    background-position: center center;
    background-size: contain    ;
    transform: rotate(45deg) scale(1.25);
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: -1; */
}

.home-div .logo {
    max-width: 90%;
    height: auto;
    padding: 5px;
	max-height: 175px;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
    display: block;
    filter: brightness(0.2);
}

.home-div h1
{
    color: var(--primary-color);
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
    margin: 0 0px 7px 0px;
    line-height: 0;
}

.home-div h1:after {
	content: '';
	display: block;
	margin: auto;
	height: 5px;
	animation: underline 1.5s infinite;
	margin-top: 5px;
}

.home-div h1.style1:after {
    animation: underline1 1.5s infinite;
}

@keyframes underline {
  0% { width: 0%; background-color: var(--dark-primary-color); }
  60% {width: 60%; background-color: transparent;}
}

@keyframes underline1 {
    0% { width: 0%; background-color: #000; }
    60% {width: 60%; background-color: transparent;}
  }

.home-div h2 {
	text-align: center;
    font-size: 18px;
    margin-bottom: 1rem;
}

.home-div h2 small {
    display: block;
    color: #7b7b7b;
    font-size: .8em;
    font-style: italic;
    margin: 3px 0 0;
}

.home-cta-btns-ul {
	list-style-type: none;
	text-align: center;
    padding-left: 0px;
    margin-bottom: 0;
}

.home-cta-btns-ul.style1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.home-cta-btns-ul li {
    display: inline-block;
    margin: 0px 12px;
    text-align: center;
}

.home-cta-btns-ul.style1 li {
    width: 50%;   
    padding: 10px 10px; 
    margin: 0;
}

.border-right {
    border-right: 1px dashed #ddd;
}

.border-btm {
    border-bottom: 1px dashed #ddd;
}

.home-cta-btns-ul li a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-size: 14px;
}

.home-cta-btns-ul li a i {
	color: #fff;
	background: var(--primary-color);
	font-weight: 500;
	text-decoration: none;
	font-size: 22px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s ease;
}

.home-cta-btns-ul.style1 li a i.fa-phone {
    background: #075e54;
}

.home-cta-btns-ul.style1 li a i.fa-whatsapp {
    background: #25d366;
}

.home-cta-btns-ul.style1 li a i.fa-envelope {
    background: #003666;
}

.home-cta-btns-ul.style1 li a i.fa-globe {
    background: #7f181b;
}

.home-cta-btns-ul li a i:hover {
	background-color: #fff;
	color: var(--primary-color);
	box-shadow: 1px 1px 10px #b0b0b0;
}

.home-div-content-div {
    padding: 0px 10px 10px 10px;
}

.contact-points-ul {
	list-style-type: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    text-align: center;
}

.contact-points-ul li {
	color: #fff;
	padding: 5px 0px;
	font-weight: 500;
    font-size: 16.3px;
    border-bottom: 1px dashed #ddd;
}

.contact-points-ul li:first-child {
    border-top: 1px dashed #ddd;
}

.contact-points-ul li a {
	color: #000;
	text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.contact-points-ul li a i, .contact-points-ul li i {
	font-size: 16px;
	color: #000;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
}

.contact-points-ul li a span, .contact-points-ul li span {
	margin-left: 5px;
}

.home-2-btns {
	text-align: center;
	margin: 10px 0px 20px 0px;
}

.social-ul {
	list-style-type: none;
	margin-left: 0px;
	text-align: center;
	margin-bottom: 0px;
	padding-left: 0px;
}

.social-ul li {
	display: inline-block;
	margin: 0px 2px;
}

.social-ul li a {
	color: #fff;
}

.social-ul li a i {
	background: #313335;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
	transition: all 0.3s ease;
	font-size: 16px;
}

.social-ul li a .active-i:hover {
	background: #fff;
	color: #000;
}

.social-ul li a .fa-facebook {
	background-color: #1877f2;
}

.social-ul li a .fa-twitter {
	background-color: #1da1f2;
}

.social-ul li a .fa-instagram {
	background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-ul li a .fa-linkedin {
	background-color: #0077b5;
}	

.theme-share-option {
	display: inline-block;
}

.social-ul .theme-share-option li {
    display: block;
}

.social-ul .theme-share-option li a {
    color: inherit;
}

.theme-share-option .dropdown-menu {
    margin-top: 8px !important;
}

.theme-share-option .dropdown-menu a i {
    padding-right: 5px;
    background: transparent;
    width: auto;
    height: auto;
    border: 0;
    font-size: 16px;
    line-height: inherit;
}

.qr-code {
    text-align: center;
    margin: 0;
}

.qr-code img {
    width: 120px;
}

.quick-actions {
    padding: 20px 15px;
    display: flex;
    justify-content: center;
}

.quick-actions .btn {
    background-color: #222;
    border: 0;
    margin: 0 5px;
    /* min-width: 140px; */
}

.quick-actions .btn:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.quick-actions .btn i {
    margin-right: 7px;
}

.modal-dialog-centered {
    justify-content: center;
}

#qrcodeModal .modal-content {
    width: 155px;
}

@media (max-width:479px) {
    
}