:root {
    --sany-orange:#f88120;
    --sany-blue:#010180;
}

body {
    font-family: 'Roboto';
    font-size: 1.1rem;
}

.navbar {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;  
    min-height: 80px;
}



.navbar-brand {
    display: flex;
     align-items: flex-end;
  
}

.navbar-brand .brand {
    height:54px;
    width: auto;
}

.navbar-brand span {
    display: inline-block;
    height: 24px;
    margin:0 0.8rem;
}

.navbar-brand .nuo {
    height: 24px;
    width: auto;
}

.checkService {
    right:2rem;
}


.btn-primary {
    background-color: var(--sany-blue);
    border:none;
}

.btn-primary:hover {
    background-color: var(--sany-orange);
}

/* menu */ 

.navbar-nav a {
    margin:0 0.3rem;
    color:var(--sany-blue)
}

.navbar-nav a:hover {
    color:var(--sany-orange)
}

.navbar .tel {
    display: inline-block;
    background-color: var(--sany-orange);
    color:#fff;
    padding-left:0.8rem !important;
    padding-right:0.8rem !important;
    border-radius: 5px;
    margin-left: 1rem;
}

.navbar .tel:hover {
    background-color:var(--sany-blue)
}

/* hero */ 


.hero {
    padding:3rem 1rem;
    position: relative;
    overflow: hidden;
}


.hero .container {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    z-index: 0;
    right: 0;
    top:5%;
    width:25vw;
    height: auto;
}

.hero h1 {
    font-weight: 600;
    font-size:2rem;
    color:var(--sany-orange);
    margin-bottom:2rem;
}

.hero .hero-text {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    justify-content: center;
    height: 100%;
}

.hero a {
    color:var(--sany-blue);
}

.hero a:hover {
    color:var(--sany-orange);
    text-decoration: none;
}

.hero h1 span {
    color:var(--sany-blue);
}

/* net */

.net {
    background: var(--sany-orange);
    padding:5rem 1rem 3rem 1rem;
    overflow: hidden;
}

/* tv */

.tv {
    background: var(--sany-blue);
    padding:5rem 1rem;
    overflow: hidden;
}

/* services */

.services {
    background:#fff;
    padding:5rem 1rem;
   box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
   position: relative;
   z-index: 1;
}


.service {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.service .container {
    position: relative;
    z-index: 1;
}

.service .overlay {
    width: 100%;
    height: 1000px;
    background:rgba(255,255,255,1);
    position:absolute;
    z-index: 0;
    
    display: flex;
}

.net .overlay {
    transform: skew(-14deg);
    right: -40vw;
}

.tv .overlay {
    transform: skew(14deg);
    right: 40vw;
}

/* service*/

.service-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-text.right {
     padding-left: 3rem;
}

.service-text.left {
     padding-right: 3rem;
}

.service-text h4 {
    font-weight: 500;
    font-size:1.2rem;
    margin-bottom: 1rem;
}

.service-text h2 {
    font-weight: 600;
    font-size:2rem;
    margin-bottom:2rem;
}

.service-text p {
    margin-bottom:1.5rem;
}

.service-text ul {
    list-style: none;
    display: inline-block;
    width:80%;
    margin:0;
    padding:0;
}


.service-text ul li {
    display: inline-flex;
    float:left;
    width: 50%;
    padding-left:1.5rem;
    position: relative;
}

.service-text ul li:before {
    content: '✔';
    font-size:1.2rem;
    position: absolute;
    float:left;
    left:0rem;
}

.service-text .btn-service {
    display: inline-block;
    margin-top:2rem;
    padding:1rem 1.4rem;
    border-radius: 50px;
    background-color: #fff;
    font-weight: 500;
    color:#000;
    text-decoration: none;
}

.service-text .btn-service:hover {
    background-color: var(--sany-blue);
    color:#fff;
}

.net .btn-service {
    color:#fff;
    background: var(--sany-orange);
}

.net .service-text ul li:before {
    color: var(--sany-orange);
}

.net .service-text h2 span {
    color: var(--sany-orange);
}


.tv .btn-service {
    color:#fff;
    background: var(--sany-blue);
}

.tv .btn-service:hover {
     background: var(--sany-orange);
}

.tv .service-text ul li:before {
    color: var(--sany-blue);
}

.tv .service-text h2 span {
    color: var(--sany-blue);
}

.services h2 {
    font-weight: 600;
    font-size:2rem;
    margin-bottom:2rem;
}

footer {
    background-color: #f0f0f0;
    padding: 5rem 1rem;
}

footer strong {
    display: inline-block;
    margin-bottom:1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand .brand {
    height: 80px;
    width: auto;
}

.footer-brand span {
    margin:1rem 0;
}

.footer-brand .nuo {
     height: 48px;
    width: auto;
}


footer a {
    color:var(--sany-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width:764px) {
    .navbar-brand span {
       display: none;
    }

    .navbar-brand .brand {
        height: 46px;
        margin-right: 8px;
    }

    .navbar-brand .nuo {
        height: 20px;
    }

  

    .hero-text {
        padding-right: 0;
    }

    .service-text.right {
        padding-left: 0;
    }

    .service-text.left {
        padding-right: 0;
    }

    .footer-brand {
        margin-bottom:2rem;
    }

    .navbar-toggler {
        background-color: var(--sany-blue);
        color:#fff;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .tv img {
        margin-bottom:2rem;
    }

    .service-text ul li {
        width: 100%;
        margin-bottom:0.4rem;
    }

    .hero img {
        margin-bottom: 2rem;
    }

}


@media (max-width:1024px) {
 .net .overlay, 
    .tv .overlay {
        transform: none;
        right: 0;
        width: 100%;
        top: 190px;
        left: 0;
    }

      .navbar-nav a.tel {
        margin-left: 0rem;
    }
}