/*-- font-family: "Space Grotesk", sans-serif; --*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/*-- font-family: "Inter", sans-serif; --*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*--  font-family: "IBM Plex Mono", monospace; --*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


/*----*/
:root {
    --theme-primary-color: #8a2aff;
    --theme-primaryDark-color: #651cbe;
    --theme-primaryMid-color: #a55cff;
    --theme-primaryLight-color: #bc85ff;
    --theme-primarySoft1: #f7f1ff;
	--theme-primarySoft2: #eee4ff;
    --theme-primarySoft3: #e2d2ff;
    --theme-primarySoft4: #d7b9ff;
    --theme-black-color: #221e2b;
    --theme-gray-color: #34303c;
    --theme-grayDark-color: #130f1b;
    --theme-grayMid-color: #4f4468;
    --theme-grayLight-color: #f5f5f5;
    --bs-container-sm: 600px;
    --bs-container-md: 800px;
    --bs-container-lg: 1000px;
    --bs-container-xl: 1200px;
    --bs-container-xxl: 1400px;
    --font-head: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
 }
 /*====== STYLES GENERALES ==========*/
body {
    padding: 0;
    margin: 0;
    color: #ffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75rem;
    background: #221e2b;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  color: #000000;
   font-family: var(--font-head);
}
a {
  color: var(--theme-primary-color);
  transition: all .3s ease;
  text-decoration: none;
}
a:hover {
  color: var(--theme-primaryDark-color);
  text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
hr {
    margin: 1rem 0;
    color: #8f899d;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}
.mainBG {
    min-height: 100svh;
    color: #f8f4ff;
    background: #08050e;
    isolation: isolate;
}

.mainBG::before {
    content: "";
    position: fixed;
    z-index: 0;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 16% 8%,
            rgba(138, 42, 255, .28),
            transparent 31%
        ),
        radial-gradient(
            circle at 82% 34%,
            rgba(165, 92, 255, .18),
            transparent 28%
        ),
        radial-gradient(
            circle at 45% 82%,
            rgba(90, 28, 172, .20),
            transparent 34%
        ),
        url("../img/hero-matrix-bg-01.png") top center / cover no-repeat,
        #08050e;
}
/*======= THEME COLORS ==============*/
.text-themePrimary{
	color:var(--theme-primary-color)!important;
}
.text-themePdark{
	color:var(--theme-primaryDark-color)!important;
}
.text-themePmid{
	color:var(--theme-primaryMid-color)!important;
}
.text-themePlight{
	color:var(--theme-primaryLight-color)!important;
}
.text-themeGray{
	color:var(--theme-gray-color)!important;
}

.bg-themePrimary{
	background:var(--theme-primary-color)!important;
}
.bg-themePdark{
	background:var(--theme-primaryDark-color)!important;
}
.bg-themePmid{
	background:var(--theme-primaryMid-color)!important;
}
.bg-themePlight{
	background:var(--theme-primaryLight-color)!important;
}
.bg-themeGray{
	background:var(--theme-gray-color)!important;
}
/*======= THEME BUTTON ==============*/
.btn{
    --bs-btn-line-height: unset!important;
    transition: all .3s ease!important;
}
.btn-sm{    
    padding: 0.25rem 1.25rem!important;
}
/*--Theme Primary--*/
.btn-themePrimary {
    color: #ffffff;
    background: rgba(138, 42, 255, .84);
    border: 1px solid rgba(213, 185, 255, .28);
    box-shadow: 0 10px 28px rgba(99, 24, 192, .28);
}
.btn-themePrimary:hover{    
    color: #ffffff!important;
    background: rgba(138, 42, 255, 1);
    border: 1px solid rgba(213, 185, 255, .78);
}
.btn-themePrimary:focus{
    color: #ffffff!important;
    background: rgba(138, 42, 255, 1);
    border: 1px solid rgba(213, 185, 255, .78);
}

.btn-outline-themePrimary {
    background: transparent;
    border-color: var(--theme-primary-color)!important;
    color: var(--theme-primary-color)!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-themePrimary:hover{    
    background: var(--theme-primary-color)!important;
	border-color: var(--theme-primary-color)!important;
    color: #fff!important;
}
.btn-outline-themePrimary:focus{
    background: var(--theme-primary-color)!important;
    border-color: var(--theme-primary-color)!important;
    color: #fff!important;
    box-shadow: 0 0 0 0.2rem rgb(138 42 255 / 50%);
}
/*--Theme Secondary--*/

.btn-themeSecondary{
    color: #000;
    background: var(--theme-primaryMid-color);
    border: 1px solid var(--theme-primaryMid-color);
    box-shadow: 0 10px 28px rgba(99, 24, 192, .28);
}
.btn-themeSecondary:hover{
    color: #000!important;
    background: var(--theme-primaryLight-color)!important;
    border: 1px solid var(--theme-primaryLight-color)!important;
}
.btn-themeSecondary:focus{
    color: #000!important;
    background: var(--theme-primaryLight-color)!important;
    border: 1px solid var(--theme-primaryLight-color)!important;
}


/*--Theme White--*/
.btn-themeWhite {
    background: #fff!important;
    border-color: #fff!important;
    color: var(--theme-primaryDark-color)!important;
}
.btn-themeWhite:hover{
    background: rgba(213, 185, 255, .78) !important;
    border-color: rgba(213, 185, 255, .78) !important;
    color: var(--theme-primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgb(132 205 255 / 30%);
}
.btn-themeWhite:focus{
    background: rgba(213, 185, 255, .78) !important;
    border-color: rgba(213, 185, 255, .78) !important;
    color: var(--theme-primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgb(138 42 255 / 50%);
}

.btn-outline-themeWhite {
    background: transparent;
    border-color: #fff!important;
    color: #fff!important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-outline-themeWhite:hover{    
    background: #fff!important;
	border-color:#fff!important;
    color: #222!important;
}
.btn-outline-themeWhite:focus{
    background: #fff!important;
    border-color:#fff!important;
    color: var(--theme-primaryDark-color)!important;
    box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 25%);
}

/*======= HEADER SECTION ==============*/
.header {
  transition: all 0.5s;
  z-index: 997;
  color: #ffffff;
  background: rgba(9, 6, 14, .76);
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}	 
.header .topbar {
  background-color: var(--theme-grayDark-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #FFFFFF;
  font-size: 1rem;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: #FFFFFF;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: #FFFFFF;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
   color: #FFFFFF;
   opacity:0.5;
}
.header {
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 55px;
  margin: 12px 12px 12px 0px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 25px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--theme-primaryMid-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--theme-primary-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--theme-primaryMid-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 15px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--theme-primary-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--theme-primary-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--theme-primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--theme-primaryDark-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--theme-primary-color);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--theme-primary-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(255 255 255);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 65px 0;
  display: flex;
  align-items: center;
  background: transparent;
}
.hero .container {
  position: relative;
}
.hero .secCard{
	padding: clamp(28px, 4vw, 45px);
	background: rgba(20, 13, 31, .15);
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 34px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
	backdrop-filter: blur(8px) saturate(125%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
	transition: opacity .8s ease, transform .95s cubic-bezier(.2, .7, .2, 1);
}
.hero .eyebrow {
	margin: 0 0 22px;
	color: var(--theme-primaryLight-color);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .25em;
	text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 15px 0;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}
.hero h1 span {
  color: #decdff;
}
.hero p {
  color: var(--theme-primarySoft3);
  margin: 5px 0 15px 0px;
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*------ Section Styles ------*/
.sectionMarg{
	margin:60px 0;
}
.sectionPadg{
	padding: 75px 0;
}
.sectionLtBluBG{
	background: #edf8ff;
}
.sectionLtGrayBG{
	background: #f7f7f7;
}
.themeSection{
	position:relative;
	z-index:2;
}	
.sectionBG1{
	color: #f8f4ff;
	background: rgba(29, 19, 43, .32);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-top: 1px solid rgba(255, 255, 255, .09);
	border-bottom: 1px solid rgba(255, 255, 255, .09);
	padding: 75px 0;
}				   
.sectionTitle {
    margin-bottom: 1.75rem;
}
.sectionTitle .infoCont {
    font-size: 1.35rem;
    line-height: 1.35;
    font-weight: 400;
    color: var(--theme-primarySoft2);
}
.sectionTitle .mainHeading {
    font-size: 2.75rem;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 2.85rem;
    color: #fff;
}
.sectionTitle .subHeading {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.sectionList .title{
	margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 700;
}
.sectionList ul {
    padding-inline-start: 20px;
    list-style: square;
}
.sectionList ul li {
    position: relative;
    font-size: 1.15rem;
    line-height: 1.5rem;
    margin-bottom: 0.85rem;
}
.sectionContent p, .sectionList p, .pointListSec p {
    font-size: 1.25rem;
    line-height: 1.5;
}
/*----*/
.pointListSec .title {
    color: #000;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.pointListSec .title:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #d0d4d8;
}
.pointListSec .title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 125px;
	height: 3px;
	background: #d0d4d8;
}
.pointListSec ul {
    padding-inline-start: 30px;
}
.pointListSec ul li {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.pointListSec ul li::after {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url(../img/bultPoint1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -30px;
    position: absolute;
    left: 0;
    top: 4px;
}
.pointListSec.tick2 ul li::after  {
    background-image: url(../img/bultPoint2.svg)!important;
}
.pointListSec.tick3 ul li::after {
    background-image: url(../img/bultPoint3.svg)!important;
}
.pointListSec.tick4 ul li::after {
    background-image: url(../img/bultPoint4.svg)!important;
}
.pointListSec.tick5 ul li::after {
    background-image: url(../img/bultPoint5.svg)!important;
}
.infoList ul {
    padding-inline-start: 20px!important;
    list-style: disc!important;
}
.infoList ul li{
    position: relative!important;
    font-size: 1.05rem!important;
    line-height: 1.4rem!important;
    margin-bottom: 0.75rem!important;
}
.infoList ul li::after{
    left: 2px!important;
    top: 0px!important;
	background-image: unset!important;
	background: unset!important;
}
/*------*/
.icon-card1{
    background: rgba(13, 8, 22, .74);
    border: 1px solid rgba(213, 185, 255, .17);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .46);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
}
.icon-card1 .title{
    display:flex;
    align-items: start;
    gap: 5px;
    margin-bottom: 15px;
}
.icon-card1 .title img{
    width: 42px;
}
.icon-card1 .title h3{
	color: #ffffff;
	font-size: 1.85rem;
	font-weight: 700;
}
.icon-card1 .title h4{
	color: #ffffff;
	font-size: 1.35rem;
	margin-bottom: 4px;
	font-weight: 300;
}
.icon-card1 .content p{
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 20px;
}
/*--/--*/
.cardBG1 {
	background: rgba(165, 92, 255, .08)!important;
}
.cardBG2 {
	background: rgba(138, 42, 255, .2)!important;
}
.icon-card2 {
    padding: 45px;
    border-radius: 30px;
    height: 100%;
    border-top: 5px solid var(--theme-grayMid-color);
    color: #ffffff;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(25px) saturate(145%);
    -webkit-backdrop-filter: blur(25px) saturate(145%);
}
.icon-card2 .cardIcon{
	width: 75px;
	height: 75px;
	align-items: center;
	display: inline-flex;
	justify-content: center;
	margin-bottom: 20px;
}
.icon-card2 .cardTitle{
	font-size: 1.95rem;
	line-height: 1.15;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}
.icon-card2 .cardList{
    padding-inline-start: 20px;
    list-style: disc;
}
.icon-card2 .cardList li {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.25rem;
    margin-bottom: 0.85rem;
}
.icon-card2 .cardContent p {
    position: relative;
    font-size: .925rem!important;
    line-height: 1.65rem;
    font-weight: 300;
    margin-bottom: 0;
}
/*--/--*/
/*---*/
.stat-box {
    height: 100%;
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.stat-icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content h2 {
    margin: 0 0 5px;
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
}

.stat-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--theme-primarySoft3);
    font-weight: 500;
}

@media (max-width: 991px) {
    .stat-box {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }
}
/*-----*/
/*---Footer Styles--*/
.footerSec {
    padding: 60px 0 45px;
    transition: all 0.5s;
    z-index: 997;
    color: #ffffff;
    background: rgba(9, 6, 14, .66);
    border-top: 1px solid;
    border-color: rgba(255, 255, 255, .12);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}
.footerSec .logo{
   height: 80px;
   margin-bottom: 15px;
}
.footerSec .info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 100px;
    transition: all 0.3s ease;
    height: 100%;
    background: rgba(13, 8, 22, .74);
    border: 1px solid rgba(213, 185, 255, .17);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .46);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.footerSec .info-card .card-icon {
    width: 46px;
    height: 46px;
    background: rgb(101 28 190 / 50%);
    color: var(--theme-primaryLight-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footerSec .info-card .card-icon i {
    font-size: 20px;
    line-height: 2;
}
.footerSec .info-card .card-content {
    flex: 1;
}
.footerSec .info-card .card-content h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--theme-primaryMid-color);
    margin-bottom: 3px;
    opacity: 0.75;
}
.footerSec .info-card .card-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.35;
    font-weight: 600;
}
/*---//---*/

/*================================================
//--//--> SMALL DEVICES (landscape phones, 576px and up)
==================================================*/
@media (min-width: 320px) and (max-width: 767.98px) {
	.header .logo img {
		height: 45px;
		margin: 10px 10px 10px 0px;
	}
}