.links{
    margin-right: 10%;
    width: 40%;
    display: flex;
    justify-content: space-around;
}
.link{
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.7s;
}
.link:hover{
    transform: scale(1.1);
}
.company-section{
    background-image: url("images/home_page.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    padding: 100px 0px;
}
.hero-text{
    font-size: 30px;
    color: #ffffff;
    margin: 250px 10px;
    text-align: center;
}
.blue-bold-text{
    color: #1A237E;
}

.burger-menu {
    display: none;
    color: white;
    font-size: 30px;
    margin: 0px 20px;
}
  
.burger-menu:hover{
    transform: scale(1.1);
}
.burger-links{
    display: none;
    background: white;
    position: sticky;
    top: 50px;
}
.burger-links a{
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000000;
    transition: background-color 0.3s ease;
}
.burger-links a:hover {
    background-color: #f0f0f0;
}
.close-icon{
    display: none;
    font-size: 40px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 2px;
    left: 15px;
    width: 25px;
    height: 15px;
    transition: 0.7s;
}
.close-icon:hover{
    transform: scale(1.1);
}
.burger-links {
  display: none;
}
.burger-links.active {
  display: block;
}

.close-icon {
  display: none;
}
.close-icon.show {
  display: block;
}

.burger-menu.hide {
  display: none;
}
/* Button Style*/
.btn-style{
    border-radius: 10px;
    border: none;
    width: 180px;
    height: 40px;
    font-size: 20px;
    margin: 0px 20px;
    text-align: center;
    transition: 0.7s;
}
/* Check service button style */
.check-service-btn{
    background: #1A237E;
}
.check-service-btn:hover{
    transform: scale(1.1);
}
/* Link Button Style */
.link-service-btn{
    color: white;
    text-decoration: none;
}
.link-contact-btn{
    color: #1A237E;
    text-decoration: none;
}
/* Contact Button Style */
.contact-us-btn{
    background: white;
    border: none;
}
.contact-us-btn:hover{
    transform: scale(1.1);
}
/* Tablet */
@media (max-width: 650px){
    .links{
        width: 100%;
    }
    .hero-text{
        font-size: 25px;
    }
}
/* Phone */
@media (max-width: 400px){
    .links{
        display: none;
    }
    .hero-text{
        font-size: 20px;
    }
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 2px;
        left: 5px;
        padding: 10px;
    }
    .close-icon{
        display: none;
    }
    .btn-style{
        display: block;
        margin: 20px;
        width: 150px;
    }
}