/* Common */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #cc5000;
}
.home-page .lattis-sec-1{
    min-height:100vh;
}
.home-page .lattis-sec-7.lattis-sec-1.latis-orange{
     min-height:100%;
}
.home-page .hero-right{
    position:unset;
}
.home-page .lattis-sec-2 p{
    margin-bottom:0 !important;
}
.home-page .lattis-sec-5{
    border-bottom:1px solid #ccc;
}
html {
    scroll-behavior: smooth;
}
.hero-right{
    position:unset !important;
    min-height:unset !important;
}
body {
    font-family: 'Helvetica Neue';
    color: #1f1f1f;
    overflow-x: hidden;
    animation: fadeIn 0.6s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.lattis-properties:nth-child(1){
    height:230px;
}
.message-control-scale h3{
    font-size: 32px;
    margin-bottom:14px;
    font-weight:600;
}
.approach-list-intent {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 0;
    gap:18px;
}

.approach-list-intent li {
    font-size: 25px;
    color: #1f1f1f;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}
footer ul li a:hover{
    color:black;
}
.approach-list-intent li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background-image: url('../images/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
nav .container{
       background-color: white;
    padding: 10px 25px;
    border-radius: 10px;
    margin: 0px 30px;
}   
/* Smooth transitions for all elements */
* {
    transition-property: transform, opacity, background-color, border-color, color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.message-control-scale{
    margin-top:80px;
}

/* Disable transitions during page load */
body.loading * {
    transition: none !important;
}
.hero-right {
  position: relative;
  width: 100%;
  min-height: 260px; /* same as hero height */
}

.hero-right img {
  position: absolute;
  bottom: 0;
  right: 0;

  max-width: 31%;
  height: auto;
}
.lattis-btn {
     font-size: 22px;
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    padding: 10px 32px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;
    border-radius: 12px;
}
.lattis-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 80, 0, 0.2);
}
.navbar-nav .nav-item .nav-link {
    font-size: 17px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.navbar-brand {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-brand:hover {
    transform: scale(1.05);
}
h3.box-orange-heading-h3{
    font-size: 32px !important;
    font-weight: 600;
    transition: color 0.3s ease;
    color: var(--primary-color) !important;
}
/* Common Ends */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Animations */
section {
    animation: fadeIn 0.6s ease-out;
}

.lattis-sec-1 h1,
.lattis-sec-1 h2,
.lattis-sec-1 h3,
.lattis-sec-1 p {
    animation: fadeInUp 0.8s ease-out;
}

.lattis-sec-1 h2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.lattis-sec-1 h3 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.lattis-sec-1 p {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.lattis-sec-2 h2,
.lattis-sec-2 p {
    animation: fadeInUp 0.8s ease-out;
}

.lattis-properties {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.lattis-properties:nth-child(1) {
    animation-delay: 0.1s;
}

.lattis-properties:nth-child(2) {
    animation-delay: 0.2s;
}

.lattis-properties:nth-child(3) {
    animation-delay: 0.3s;
}

.lattis-properties:nth-child(4) {
    animation-delay: 0.4s;
}

.lattis-properties:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(204, 80, 0, 0.15);
}

.lattis-sec-3,
.lattis-sec-4,
.lattis-sec-6 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.lattis-sec-3 img,
.lattis-sec-4 img,
.lattis-sec-6 img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.8s ease-out;
}

.lattis-sec-3 img:hover,
.lattis-sec-4 img:hover,
.lattis-sec-6 img:hover {
    transform: scale(1.03);
}

.lattis-sec-5 ul li {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.lattis-sec-5 ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.lattis-sec-5 ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.lattis-sec-5 ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.lattis-sec-5 ul li {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lattis-sec-5 ul li:hover {
    transform: translateX(10px);
}

/* Section 1 */
.lattis-sec-1 {
    /*background-image: url("../images/section-1-banner.png");*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 10px solid var(--primary-color);
    padding: 200px 0 160px;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dd !important;
}

.lattis-sec-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 80, 0, 0.05) 0%, transparent 100%);
    animation: fadeIn 1s ease-out;
}
.lattis-sec-1 h1 {
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom:0px;
}
.lattis-sec-1 h2 {
    font-size: 90px;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    margin-bottom:0;
    line-height: 1;
    font-weight:600;
}
.lattis-sec-1 h3 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    margin-bottom:0;
}
.lattis-sec-1 p {
    font-size: 23px;
    text-align: center;
}
/* Section 1 Ends */

/* Section 2 */
.lattis-sec-2 {
    background-image: url("../images/section-2-banner.png");
    background-color: #f8f7f5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}
.lattis-sec-2 h2 {
    color: var(--primary-color);
    font-size: 75px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.lattis-sec-2 p {
    font-size: 25px;
    text-align: center;
    margin-bottom: 100px;
}
.lattis-properties {
    text-align: center;
    padding: 40px 16px;
    background-color: #e8e3dd;
    border-bottom: 5px solid var(--primary-color);
    cursor: pointer;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-radius:10px;
}

.lattis-properties h3 {
    font-size: 20px;
    transition: color 0.3s ease;
}

.lattis-properties:hover h3 {
    color: var(--primary-color);
}
/* Section 2 Ends */

/* Section 3 */
.lattis-sec-3 {
    background-color: #e8e3dd;
    padding: 100px 0 100px;
    position: relative;
}

.lattis-sec-3 > .container > .row > div:first-child {
    animation: slideInLeft 0.8s ease-out;
}

.lattis-sec-3 > .container > .row > div:last-child {
    animation: slideInRight 0.8s ease-out;
}
.lattis-sec-3 h2:first-child {
    font-size: 50px;
    text-transform: uppercase;
}
.lattis-sec-3 h2:last-of-type {
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height:1;
}
.lattis-sec-3 h3 {
    font-size: 40px;
    color: var(--primary-color);
}
.lattis-sec-3 p {
    font-size: 23px;
}

/* Section 3 Ends */

/* Section 4 */
.lattis-sec-4 {
    background-image: url("../images/section-4-banner.png");
    background-color: #f8f7f5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    padding: 100px 0 100px;
    position: relative;
}

.lattis-sec-4 > .container > .row > div:first-child {
    animation: slideInLeft 0.8s ease-out;
}

.lattis-sec-4 > .container > .row > div:last-child {
    animation: slideInRight 0.8s ease-out;
}

.lattis-sec-4 .row.align-items-start {
    align-items: flex-start;
}

.lattis-sec-4 .lattis-properties {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lattis-sec-4-data h2:first-child {
    font-size: 50px;
    text-transform: uppercase;
}
.lattis-sec-4-data h2:last-of-type {
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}
.lattis-sec-4-data h3 {
       font-size: 35px;
    margin-bottom: 25px;
    font-weight: 300;
}
.lattis-sec-4-data p {
    font-size: 23px;
    margin-bottom: 0;
}
/* Section 4 Ends */

/* Section 5 */
.lattis-sec-5 {
    background-image: url("../images/lattis-one-patten-5.png");
    /*background-color: var(--primary-color);*/
    /*background-size: cover;*/
    background-repeat: no-repeat;
    background-position: top;
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}
.lattis-sec-7.lattis-sec-1.latis-orange {
    padding-top:100px !important;
    padding-bottom:100px !important;
}
.lattis-sec-5 h2,
.lattis-sec-5 h3,
.lattis-sec-5 p {
    animation: fadeInUp 0.8s ease-out;
}

.lattis-sec-5 h3 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.lattis-sec-5 p {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}
.lattis-sec-5 h2 {
    font-size: 54px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}
.lattis-sec-5 h3 {
    font-size: 68px;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}
.lattis-sec-5 p {
    font-size: 30px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-top: 50px;
}
.lattis-sec-5 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5rem;
    list-style-type: none;
    list-style-image: url('../images/check-mark.png');
    row-gap: 15px;
}
.lattis-sec-5 ul li {
    font-size: 24px;
    color: #000;
    line-height: 1;
}
/* Section 5 Ends */

/* Section 6 */
.lattis-sec-6 {
    background-color: #fff;
    position: relative;
}

.lattis-sec-6 > .container > .row > div:first-child {
    animation: slideInLeft 0.8s ease-out;
}

.lattis-sec-6 > .container > .row > div:last-child {
    animation: slideInRight 0.8s ease-out;
}

.lattis-sec-6 h2:last-of-type {
    font-size: 62px;
}
/* Section 6 Ends */

/* Section 7 */
.lattis-sec-1 {
    background-image: url("../images/hero-bg-pattern.png");
    border-bottom: 10px solid var(--primary-color);
    padding-top:200px;
    padding-bottom:100px !important;
    position: relative;
}

.lattis-sec-7.lattis-sec-1.latis-orange{
    background-image: url("../images/section-5-banner.png");
    border-bottom: 10px solid var(--primary-color);
    padding-top:200px;
    padding-bottom:0 !important;
    position: relative;
}
.lattis-sec-7.lattis-sec-1.latis-orange h1{
    color:white;
}
.lattis-sec-7.lattis-sec-1.latis-orange{
    padding-bottom:100px !important;
}
.lattis-sec-7.lattis-sec-1.latis-orange h2{
    color:black;
    margin-bottom: 20px;
     -webkit-text-stroke: 2px white;
}
.lattis-sec-7.lattis-sec-1.latis-orange .lattis-btn{
    margin:auto;
        background-color: #fff;
        color:black;
}
.lattis-sec-7.lattis-sec-1.latis-orange .lattis-btn:hover{
    margin:auto;
    background-color: #fff;
    opacity:0.8;
}
.lattis-sec-7.lattis-sec-1 h1,
.lattis-sec-7.lattis-sec-1 h2,
.lattis-sec-7.lattis-sec-1 h3 {
    animation: fadeInUp 0.8s ease-out;
}

.lattis-sec-7.lattis-sec-1 h2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.lattis-sec-7.lattis-sec-1 h3 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}
/* Section 7 Ends */

        footer {
  font-family: Helvetica, Arial, sans-serif;
}

/* Background */
footer .lattis-section {
  background: #D35400; /* EXACT ORANGE */
  color: #fff;
}

/* Logo */
footer .logo {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
footer img{
    margin-bottom:20px;
}
footer .logo span {
  font-weight: 300;
}

/* Text */
footer .heading {
  font-size: 34px;
  font-weight: 700;
  text-align:left;
}

footer .tagline {
  font-size: 34px;
  color: #000;
  margin: 20px 0 30px;
  text-align:left;
  line-height: 1;
}

/* Button */
footer .demo-btn {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size:20px;
  pointer-events: all;
}

footer .demo-btn:hover {
    background-color: black;
}

/* Titles */
footer .footer-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Links */
footer .links li a{
  margin-bottom: 10px;
  font-size: 22px;
  color:#fff;
  text-decoration:none;
}

/* Informer */
footer .info-text {
 font-size: 22px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}
iframe .text-element p{
    display:none !important;
}
hl-app #_builder-form .heading-element div p {
    display:none !important;
}



/* Media */
@media screen and (max-width: 1400px) {
    .lattis-sec-1 h1 {
        font-size: 48px;
    }
    .lattis-sec-1 h2 {
        font-size: 80px;
    }
    .lattis-sec-1 h3 {
        font-size: 50px;
    }
    .lattis-sec-1 p {
        font-size: 20px;
    }
    .lattis-btn {
        font-size: 20px;
        padding: 12px 24px;
    }
    .lattis-sec-2 h2 {
        font-size: 60px;
    }
    .lattis-sec-2 p {
        font-size: 20px;
    }
    .lattis-properties h3 {
        font-size: 18px;
    }
    .lattis-sec-3 h2:first-child {
        font-size: 42px;
    }
    .lattis-sec-3 h2:last-of-type {
        font-size: 90px;
    }
    .lattis-sec-3 h3 {
        font-size: 32px;
    }
    .lattis-sec-3 p {
        font-size: 20px;
    }
    .lattis-sec-4-data h2:first-child {
        font-size: 38px;
    }
    .lattis-sec-4-data h2:last-of-type {
        font-size: 90px;
    }
    .lattis-sec-4-data h3 {
        font-size: 28px;
    }
    .lattis-sec-4-data p {
        font-size: 20px;
    }
    .lattis-sec-5 h2 {
        font-size: 42px;
    }
    .lattis-sec-5 h3 {
        font-size: 78px;
        line-height: 1;
    }
    .lattis-sec-5 ul li {
        font-size: 20px;
    }
    .lattis-sec-5 p {
        font-size: 24px;
    }
    .lattis-sec-3 h2:last-of-type {
        font-size: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .lattis-properties h3 {
        font-size: 20px;
    }
    .lattis-sec-3 h2:first-child {
        font-size: 38px;
    }
    .lattis-sec-3 h2:last-of-type {
        font-size: 70px;
    }
    .lattis-sec-3 h3 {
        font-size: 26px;
    }
    .lattis-sec-3 p {
        font-size: 18px;
    }
    .lattis-sec-4-data h2:last-of-type {
        font-size: 70px;
    }
    .lattis-sec-4-data h3 {
        font-size: 22px;
    }
    .lattis-sec-5 h2 {
        font-size: 36px;
    }
    .lattis-sec-5 h3 {
        font-size: 80px;
    }
    .lattis-sec-5 ul li {
        font-size: 18px;
    }
    .lattis-sec-5 p {
        font-size: 20px;
    }
}
@media screen and (max-width: 991px) {
    .lattis-sec-1, .lattis-sec-2, .lattis-sec-3, .lattis-sec-4, .lattis-sec-5, .lattis-sec-6, .lattis-sec-7 {
        padding: 150px 0 120px;
    }
    .lattis-sec-1 h1 {
        font-size: 40px;
    }
    .lattis-sec-1 h2 {
        font-size: 100px;
    }
    .lattis-sec-1 h3 {
        font-size: 36px;
    }
    .lattis-sec-1 p {
        font-size: 18px;
    }
    .lattis-btn {
        font-size: 18px;
        padding: 8px 18px;
    }
    .lattis-sec-2 h2 {
        font-size: 40px;
    }
    .lattis-sec-2 p {
        font-size: 18px;
    }
    .lattis-sec-3 h2:first-child {
        text-align: center;
    }
    .lattis-sec-3 h2:last-of-type {
        text-align: center;
    }
    .lattis-sec-3 h3 {
        text-align: center;
    }
    .lattis-sec-3 p {
        text-align: center;
    }
    .lattis-sec-4-data h2:first-child {
        text-align: center;
    }
    .lattis-sec-4-data h2:last-of-type {
        text-align: center;
    }
    .lattis-sec-4-data h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    .lattis-sec-4-data p {
        text-align: center;
        margin-bottom: 40px;
    }
    .lattis-sec-4 .row.align-items-start {
        margin-bottom: 0;
    }
    .lattis-sec-4 .lattis-properties {
        margin-bottom: 30px !important;
    }
    .lattis-sec-5 ul {
        flex-wrap: wrap;
        gap: 4rem;
        row-gap: 1rem;
    }
}
@media screen and (max-width: 767px) {
    .lattis-sec-1, .lattis-sec-2, .lattis-sec-3, .lattis-sec-4, .lattis-sec-5, .lattis-sec-6, .lattis-sec-7 {
        padding-top: 125px;
        padding-bottom: 60px !important;
    }
    .lattis-sec-1 h1 {
        font-size: 36px;
    }
    .lattis-sec-1 h2 {
        font-size: 58px;
    }
    .lattis-sec-1 h3 {
        font-size: 30px;
    }
    .lattis-sec-1 p {
        font-size: 16px;
    }
    .lattis-btn {
        font-size: 16px;
        margin:auto;
    }
    .lattis-sec-2 h2 {
        font-size: 36px;
    }
    .lattis-sec-2 p {
        margin-bottom: 30px;
        font-size: 16px;
    }
    .lattis-sec-2 p {
        font-size: 16px;
    }
    .lattis-sec-3 h2:first-child {
        font-size: 32px;
    }
    .lattis-sec-3 h2:last-of-type {
        font-size: 62px;
    }
    .lattis-sec-3 h3 {
        font-size: 22px;
    }
    .lattis-sec-3 p {
        font-size: 16px;
    }
    .lattis-sec-4-data h2:first-child {
        font-size: 36px;
    }
    .lattis-sec-4-data h2:last-of-type {
        font-size: 60px;
    }
    .lattis-sec-4-data h3 {
        font-size: 20px;
    }
    .lattis-sec-4-data p {
        font-size: 18px;
    }
    .lattis-sec-5 h2 {
        font-size: 28px;
    }
    .lattis-sec-5 h3 {
        font-size: 60px;
    }
    .lattis-sec-5 ul {
        justify-content: flex-start;
    }
    .lattis-sec-5 p {
        font-size: 18px;
    }
}
@media screen and (max-width: 576px) {
    .lattis-sec-1 h1 {
        font-size: 30px;
    }
    .lattis-sec-7.lattis-sec-1.latis-orange {
    padding-bottom: 80px !important;
}
     .lattis-sec-2, .lattis-sec-3, .lattis-sec-4, .lattis-sec-5, .lattis-sec-6, .lattis-sec-7 {
        padding: 60px 0 60px;
    }
   
    .hero-right img {
        max-width:80%;
    }
    .approach-sec-2 h2 {
    font-size: 36px;
}
    .lattis-sec-1 h2 {
        font-size: 40px;
    }
    .lattis-sec-1 h3 {
        font-size: 24px;
    }
    .lattis-sec-2 h2 {
        font-size: 32px !important;
    }
    .lattis-properties h3 {
        font-size: 18px;
    }
    .lattis-sec-3 h2:first-child {
        font-size: 24px;
    }
    .lattis-sec-3 h2:last-of-type {
        font-size: 38px !important;
    }
    .lattis-sec-4-data h2:first-child {
        font-size: 24px;
    }
    .lattis-sec-4-data h2:last-of-type {
        font-size: 42px;
    }
    .lattis-sec-7.lattis-sec-1.latis-orange {
    padding-top: 60px !important;
    padding-bottom:60px !important;
    }
    .lattis-sec-4-data h3 {
        font-size: 18px;
    }
    .lattis-sec-4-data p {
        font-size: 16px;
    }
    .lattis-sec-4-data {
        padding-left: 0 !important;
    }
    .lattis-sec-5 h2 {
        font-size: 24px;
    }
    .lattis-sec-5 h3 {
        font-size: 42px;
    }
    .lattis-sec-5 p {
        font-size: 16px;
    }
    .lattis-sec-5 ul li {
        font-size: 16px;
    }
    .lattis-sec-6 h2:last-of-type {
        font-size: 36px;
    }
    .lattis-sec-3 img{
        margin-bottom:25px;
    }
    footer img {

        width:285px;
    }
    footer .tagline {
    font-size: 26px;
    }
    footer .heading {
    font-size: 20px !important;
    }
    footer .tagline {
    font-size: 24px !important;
    }
    h3.box-orange-heading-h3{
    font-size: 36px !important;
    }
   .hero-right{
       display:none;
   }
   .home-page .lattis-sec-1{
       min-height:100%;
   }
   .home-page .lattis-sec-1{
       padding-bottom:60px !important;
   }
   .message-control-scale {
       margin-top:60px;
   }
}
@media screen and (max-width: 425px) {
a.navbar-brand img{
    width:170px !important;
}
}
/* Media Ends */