@font-face {
    font-family: '29LTAzer';
    src: url('../fonts/29LTAzer.eot');
    src: url('../fonts/29LTAzer.eot?#iefix') format('embedded-opentype'),
        url('../fonts/29LTAzer.woff2') format('woff2'),
        url('../fonts/29LTAzer.woff') format('woff'),
        url('../fonts/29LTAzer.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: '29LTAzer';
    src: url('../fonts/29LTAzerBold.eot');
    src: url('../fonts/29LTAzerBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/29LTAzerBold.woff2') format('woff2'),
        url('../fonts/29LTAzerBold.woff') format('woff'),
        url('../fonts/29LTAzerBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: '29LTAzer';
    src: url('../fonts/29LTAzerBlack.eot');
    src: url('../fonts/29LTAzerBlack.eot?#iefix') format('embedded-opentype'),
        url('../fonts/29LTAzerBlack.woff2') format('woff2'),
        url('../fonts/29LTAzerBlack.woff') format('woff'),
        url('../fonts/29LTAzerBlack.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "29LTAzer", sans-serif;
	color: #000;
	background-color: #F5F5F5;
	font-size:16px;
}

.inner-page {
  position: relative;
  padding-top: 120px!important;
}

a {
  color: #341D08;
  text-decoration: none;
    cursor: pointer;
	-webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

a:hover {
  color: #647ffa;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "29LTAzer", sans-serif;
  font-weight: 800;
}
img,
svg {
	max-width: 100%;
}

.bg-primary{
	background-color:#341D08!important
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #341D08;
  border-top-color: #ffd8b4;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #341D08;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #593310;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    padding: 5px 0;
    z-index: 997;
    transition: all 0.5s;
    /*box-shadow: 0px 0px 8px 5px rgb(0 0 0 / 5%);*/
}

.header_wrapper {

}
.header_wrapper .head-title {
    margin: 0;
    text-align: center;
    background-color: #341d08;
    color: #ffd8b4;
    font-size: 15px;
    height: 42px;
    line-height: 48px;
    box-sizing: border-box;
}
footer{

}

main {
    height: calc( 100vh - 228px);
    /* padding-left: 200px; */
}
iframe {
    border: 0;
    height: 100%;
    width: 100%;
}
.map_wrapper {
    height: 100%;
    width: 100%;
   
}
#header.header-scrolled {
	background: #fff;
	padding: 10px 0;
	box-shadow: 0px 0px 15px 15px rgb(0 0 0 / 3%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
    padding: 0;
    margin: 0;
    height: 68px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}
.navbar li {
  position: relative;
}
.navbar.navbar-light .nav-link:not(.btn-primary):not(.btn--outline-primary) {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: "29LTAzer", sans-serif;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
}
.navbar.navbar-light .nav-link i,
.navbar.navbar-light .nav-link:focus i {
  line-height: 0;
}

/* .navbar.navbar-light .nav-link:hover:not(.btn-primary):not(.btn--outline-primary),
.navbar .active,
.navbar .active:focus:not(.btn-primary):not(.btn--outline-primary),
.navbar li:hover > a {
  color: #333;
} */

.navbar .navbar-toggler-icon {
  background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
}
@media (min-width: 996px) {
  .navbar ul {
    margin: 0 50px 0 0;
  }
  
  .navbar.navbar-light .nav-link:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 3px;
    right: calc(50% - 15.5px);
    background-color: #341D08;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar.navbar-light .nav-link:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 25px;
  }

}
.dropdown-menu {
    padding: 5px;
    font-size: 14px;
    border: 1px solid rgb(174 174 174 / 15%);
    box-shadow: 0px 5px 3px 2px rgb(0 0 0 / 3%);
}

.dropdown-menu li a.dropdown-item {
    padding: 5px 10px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.dropdown-menu li a.dropdown-item i {
    font-size: 18px;
    vertical-align: middle;
    color: #341D08;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
    background-color: #e8ecff;
    color: #000;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: #e8ecff;
    color: #000;
}
.dropdown-menu[data-bs-popper] {
    right: auto;
    left: 0;
}
.navbar-light .navbar-nav .nav-link {
    min-height: 42px;
}
.navbar-light .navbar-nav .nav-link>i {
    font-size: 30px;
}

.navbar.navbar-light .user_menu .nav-link:not(.btn-primary):not(.btn--outline-primary) {
    padding: 10px 20px 10px 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}


.section-title {
  padding-bottom: 40px;
}


.dividers-header {
	position: relative;
    margin: 20px 0;
}

h2.section-title {
    display: block;
    padding-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    height: 55px;
    margin: 0;
	text-align: inherit;
}
h2.section-title span {
    position: relative;
    z-index: 10;
    color: #333;
}


.section-title h2 {
    margin: 0 0 40px 0;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "29LTAzer", sans-serif;
    color: #333;
}
.section-title h2::after {
    content: "";
    width: 250px;
    height: 5px;
    display: block;
    background: #62dbfb;
    margin: 4px auto;
}
.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "29LTAzer", sans-serif;

}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/

.table-responsive {
    padding: 0 20px;
}

table {
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 7%);
}

tbody, td, tfoot, th, thead, tr {
    vertical-align: middle;
}

.table th {
    background: rgba(255, 222, 106, 0.8);
    font-size: 14px;
    border-bottom: 3px solid #e2bd36;
}

.table td {
    background-color: #fff;
}


/************************************************************

				Custom Control Owl Carusel

************************************************************/


.owl-custom-control {
	position: absolute;
    width: 100%;
    z-index: 10;
    top: 50%;
    z-index: 1;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-custom-control .owl-theme .owl-nav [class*=owl-] {
	margin: 0 10px 0 0;
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 0;
    color: #444;
    background-color: #0000;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.owl-custom-control .custom-nav.owl-nav {
    margin: 0;
    direction: ltr;
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.owl-custom-control .owl-theme .owl-nav [class*="owl-"] {
    margin: 0 10px 0 0;
    padding: 0;
    height: 46px;
    width: 46px;
    line-height: 46px;
    box-sizing: content-box;
    border: 3px solid #0000;
    color: #000;
    background-color: #0000;
    border-radius: 50%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.owl-custom-control .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.owl-custom-control .owl-theme .owl-nav .owl-prev {
    margin-left: -60px;
}

.owl-custom-control .owl-theme .owl-nav .owl-next {
    margin-right: -60px;
}

.owl-custom-control .owl-theme .owl-nav [class*="owl-"] i {
	font-size: 30px;
	vertical-align: middle;
	color: inherit;
}

.owl-custom-control .owl-theme .owl-controls {
    background: transparent;
    position: static;
    margin: 0;
}

.owl-item > div {
  cursor: pointer;
  margin: 6% 8%;
  transition: margin 0.4s ease;
}
.owl-item.center > div {
  cursor: auto;
  margin: 0;
}
.owl-item:not(.center) > div:hover {
  opacity: .75;
}


/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/

.mt-5 {
    margin-top: 5rem!important;
}

.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none!important;
}
.btn-primary {
    color: #fff;
    background-color: #341D08;
    border-color: #341D08;
}
.btn-primary:hover {
    color: #fff;
    background-color: #593310;
    border-color: #593310;
}
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    background-color: #704218;
    border-color: #704218;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #647ffa;
    border-color: #647ffa;
}

.btn-outline-primary {
    color: #333333;
    border-color: #341D08;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #341D08;
    border-color: #341D08;
}

.btn-secondary {
    color: #000;
    background-color: #fde386;
    border-color: #e2bd36;
}
.btn-secondary:hover {
    color: #000;
    background-color: #ffe99a;
    border-color: #e2bd36;
}
.btn-check:active+.btn-secondary, .btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary:active, .show>.btn-secondary.dropdown-toggle {
    background-color: #ebc642;
    border-color: #ebc642;
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
    color: #000;
    background-color: #ffe99a;
    border-color: #e2bd36;
}

.btn-outline-secondary {
    color: #333333;
    border-color: #fde386;
}

.btn-outline-secondary:hover {
    color: #000;
    background-color: #fde386;
    border-color: #e2bd36;
}

.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: #341D08;
    border-color: #341D08;
}
.btn {
	border-width: 2px;
    padding: 8px 25px;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 600;
    outline: 0;
}
.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: none;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: none;
}

.btn-danger {
    background-color: #F05D5D;
    border-color: #F05D5D;
}
.btn-danger:hover {
    background-color: #e44e4e;
    border-color: #e44e4e;
}
.btn-outline-light {
    color: #153B41;
    border-color: #D0D0D0;
}
.btn-outline-light:hover {
    border-color: #647ffa;
}
.btn-group-lg>.btn, .btn-lg {
	padding: 10px 25px;
    font-size: 18px;
}


.text-primary {
    color: #784d25!important;
}
.text-danger {
    color: #f05d5d!important;
}
.bg-light {
    background-color: #F8F9FA!important;
}

.form-check-input:checked {
    background-color: #341d08;
    border-color: #341d08;
}

.form-control {
    font-size: 16px;
    height: calc(3rem + 5px);
    border: none;
    background: rgba(217, 217, 217, 0.28);
    border-radius: 10px;
    padding: 12px 20px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.form-control:focus {
	outline: none;
	box-shadow: none;
	background: rgba(217, 217, 217, 0.50);
}

.custom-select {
  height: calc(3rem + 2px);
  border: 2px solid #ebebeb;
  font-size: 16px;
}

.custom-select:focus {
  outline: none;
  box-shadow: none;
  border-color: #4272d7;
}

.custom-file,
.custom-file-input,
.custom-file-label {
  height: calc(3rem + 2px);
}

.custom-file-label::after {
  height: 3rem;
}

.custom-file-input {
  border: 2px solid #ebebeb;
}

.custom-file-label,
.custom-file-label::after {
  line-height: 2.8em;
}

.custom-file-input:lang(en)~.custom-file-label::after {
  content: "Ø¥Ø³ØªØ¹Ø±Ø§Ø¶";
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control.has-value {
  color: #b1b1b1 !important;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-control.has-value {
  /* Firefox 18- */
  color: #b1b1b1;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-control.has-value {
  /* Firefox 19+ */
  color: #b1b1b1;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control.has-value {
  color: #b1b1b1;
}

[type=email],
[type=file],
[type=number],
[type=password],
[type=tel],
[type=url],
code,
samp,
var {
  text-align: right;
  direction: rtl;
}

hr {
    background-color: #c8c8c8;
}


::-webkit-selection {
    color: #fff;
    background: #3a3a3a;
}

::-moz-selection {
    color: #fff;
    background: #3a3a3a;
}

::selection {
    color: #fff;
    background: #3a3a3a;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #5e737e;
}


/*====================================================================
				  Contact Form Activation
====================================================================*/
.alert-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 9999999;
    direction: ltr;
}
#success,
#error {
  position: relative;
  width:500px;
  height: 100px;
  top: calc(50% - 50px);
  left:calc(50% - 250px);
  background: rgba(0,0,0,0.8);
  text-align: center;
}
#success .wrapper,
#error .wrapper {
  display: table;
  width:100%;
  height: 100%;
}
#success .wrapper p,
#error .wrapper p{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#success {
  color: #57D1C9;
}
#error {
  color: #C9182B;
}
#error button,
#success button {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 20px;
    background: #0000;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 20px;
    outline: 0;
    border: 0;
}
label.error {
  display: none !important;
}
input.error,
textarea.error {
  border:1px solid #f03838 !important;
}
/*** 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	padding: 10px 0;
	color: #ffd8b4;
	font-size: 14px;
}

footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #fff;
  color: #422960;
  line-height: 1;
  padding: 0;
  line-height: 34px;
  margin: 0 2px 0;
  border-radius: 50%;
  text-align: center;
  width: 28px;
  height: 28px;
  transition: 0.3s;
}
footer .copyright {
    text-align: center;
    font-size: 11px;
}
footer .copyright a {
    color: #fff;
}
footer .img-wrapper img {
    height: 68px;
}

footer h6 {
    font-size: 20px;
    font-weight: 600;
	color:#fff
}
footer .social-links {
  text-align: center;
  direction: ltr;
  margin: 15px 0;
}
footer ul li{

}
footer ul li.snapchat i{
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #341d08;
}

footer ul li svg{
    fill: #ffd8b4;
    height: 30px;
}
footer ul li a {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 36px;
    border-radius: 50%;
    border: 2px solid #ffd8b4;
    padding: 0;
    text-align: center;
    background-color: #ffd8b4;
    color: #000;
}
footer ul li a:hover{
	color: #ffd8b4;
	background-color: #341d08;
}
footer ul li.snapchat:hover a i{
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffd8b4;
}

footer ul li a i {
    font-size: 17px!important;
    vertical-align: middle;
}
footer ul.social-list li img {
    height: 20px;
    opacity: .75;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
footer ul.social-list li:hover img {
    opacity: 1;
}

footer ul.social-list {
    margin: 0;
    gap: 8px;
    direction: ltr;
    padding: 0;
}



/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/



.search_wrapper {
	background-color: #341D08;
	padding: 10px 0;
}
.search_form{
	margin-bottom: auto;
	margin-top: auto;
	height: 56px;
	background-color: #fff;
	border-radius: 40px;
	padding: 6px;
}

.search_form .search_input{
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color: transparent;
    line-height: 45px;
    padding: 0 30px;
    width: calc(100% - 50px);
    caret-color: #341d08;
    transition: width 0.4s linear;
}

.search_btn{
	height: 45px;
	width: 45px;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: white;
	background-color: #784d25;
	border: 0;
	font-size: 19px;
}

.search_form:hover > .search_btn{
	background: #ab7645;
	color: #fff;
}


	
	
/*** 
/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/



@media (min-width: 992px) {
.navbar {
	width: 100%;
}

}
@media (max-width: 991px) {
main {
    height: calc( 100vh - 210px);
}
footer {
	padding: 15px 0;
}

h2.section-title {
	height: auto;
	font-size: 32px;
}
.section-title h2 {
	margin: 0 0 15px 0;
	font-size: 35px;
}
#header.header-transparent {
    background: #fff;
    box-shadow: 0px 0px 15px 15px rgb(0 0 0 / 10%);
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.1rem #333333;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  background-color: #f5f5f5;
}
ul.applyMenu {
  display: block;
}

}

@media screen and (max-width: 768px) {
	.navbar-brand {
		margin-left: 0;
	}
	#main {
		padding-bottom: 30px;
	}
	#footer {
		font-size: 14px;
		height: auto;
		background-image: none;
		background-color: #71489e;
	}
	.img-wrapper.f-logo {
		text-align: center!important;
		margin: 20px 0 0 0;
  }
	section {
		padding: 30px 0;
	}
	.section-title {
		margin-top: 30px;
		padding-bottom: 20px;
	}
	.navbar.navbar-light .user_menu .nav-link:not(.btn-primary):not(.btn--outline-primary) {
		padding: 10px 20px 10px 10px;
	}
	footer ul.social-list {

	}
	
}


