a {
    text-decoration: none;
    outline: none;
    color: white;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: white;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 340px; /* Initial collapsed width */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    padding-top: 30px;
    transition: width 0.6s ease-out;
    border-right: 0.1px solid rgba(123, 123, 123, 0.736);
    height: 100vh; 
}


/* Sidebar Header */
.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0px;
    transition: transform 0.3s ease-in-out;
    position: relative;

}

.sidebar__logo {
    width: 55px;
    height: auto;
    margin-right: -5px;
    justify-content: flex-start;
    position: relative;  /* Allow positioning with translateX */
    left: -15px;
}

/* Updated logo-text styling */
.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(209, 129, 16);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    text-decoration: none;
    margin-left: -40px;

}
/* Active Item */
.sidebar__navItem:active {
    color: rgb(123, 123, 123);
}

.sidebar__navItem:active .sidebar__navIcon,
.sidebar__navItem:active .sidebar__navText,
.sidebar__navItem.services-item:active .sidebar__navIcon{
    color: rgb(123, 123, 123);
}
.sidebar__header {
    padding-left: 10px; /* Add padding to prevent logo from touching the sidebar border when collapsed */
}

/* Initially hide the text */
.sidebar__navText, .logo-text span {
    display: none;
}



/* Navigation Items */
.sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 20px;
}

.sidebar__navItem{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    width: 92%;
    transition: background-color 0.3s ease-in-out;
    box-sizing: border-box;
    margin-top: 17px;
}



.sidebar__navItem:hover {
    background-color: rgb(26, 26, 26);
}

.sidebar__navIcon {
    transition: margin-right 0.3s;
    margin-right: 12px;
}

/* Home Item with custom color */
.sidebar__navItem.services-item{
    color: rgb(209, 129, 16); /* Change text and icon color to company name color */
    font-weight: 700;
}

.sidebar__navItem.services-item:hover {
    background-color: rgb(26, 26, 26); /* Hover background color */
}

.sidebar__navItem.services-item .sidebar__navIcon {
    color: rgb(209, 129, 16); /* Icon color matching company name */
}

.sidebar__navText, .logo-text span {
    display: inline-block; /* Ensure text is always shown */
    font-weight: 600;

}
/* Home Item with custom color */
.sidebar__navItem.services-item {
    color: rgb(209, 129, 16); /* Change text and icon color to company name color */
}
.sidebar__navItem.services-item span{
    font-weight: bold;
}


/* Section Titles */
h2 {
    color: rgb(209, 129, 16);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}



/* Language Modal Styles */
.language-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    height: 200px; /* Increased height */
    width: 320px;  /* Adjust width */
}

/* Make modal visible */
.language-modal.active {
    display: flex;
}


/* Style for each language option */
.language-modal a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 0;
    transition: color 0.3s ease-in-out;
    padding: 10px 0;
    display: block;
    text-align: center;
}

/* Hover effect on language options */
.language-modal a:hover {
    color: rgb(123, 123, 123);
}

.language-modal a + a {
    border-top: 2px solid rgb(85, 84, 84);
    width: 75%;  /* Make the border span the full width of the modal */
    margin-top: 2px; /* Add space between the text and the border */
}


/* Language selector in Sidebar */
/* Updated Language Item */
.language-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    text-align: left;
    bottom: 30px;
    background-color: #000;
    justify-content: flex-start;
    padding: 15px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
    margin-top: 17px;
    width: 92%;  /* Ensure it matches the width of other items */
    margin-top: 17px; 
    box-sizing: border-box;
    padding-left: 20px; /* Adjust padding-left to match the other items */
    padding-right: 15px;
}




/* Language item in collapsed state */
.sidebar .language-item {
    justify-content: left;
    width: 92%; /* Keep the same width as in expanded state */
    padding-left: 12px; 
}


/* Active state for language item */
.language-item.active {
    background-color: rgb(38, 38, 38);
}

.language-item.active .sidebar__navIcon,
.language-item.active .sidebar__navText {
    color: rgb(123, 123, 123);
}
.sidebar:active .sidebar__navItem,
.sidebar__navItem.services-item:active{
    background-color: black;
}
.language-item.active {
    background-color: black; /* Ensure it applies specifically to the Language item */
}

#language-dropdown {
    position: absolute;
    bottom: 75px;
    left: 20px;
    background-color: #000000;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 150px;
    text-align: center;
    
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    display: none; /* Start as hidden */
}
/* Style when active */
#language-dropdown.active {
    opacity: 1;
    transform: translateY(0);
}
/* Style for each language option */
#language-dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    position: relative; /* Required for the pseudo-element */
    margin-left: -50px;
}

#language-dropdown a:hover {
    color: rgb(123, 123, 123);
}

#language-dropdown a:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%; /* Adjust to control the width of the border */
    height: 1px;
    background-color: rgb(85, 84, 84);
}


/* Title styles */
h2 {
    color: rgb(209, 129, 16); /* Make titles gold */
    font-size: 2rem; /* Adjust title size */
}
#language-dropdown a[data-lang="en"] {
    color: rgb(209, 129, 16); /* Gold color */
}


/* Search Box Styles */
.search-box-container {
    display: none;
    transition: all 0.3s ease-out;
    width: 85%; /* Match the width of other sidebar items */
    padding: 5px 15px;
    background-color: #000000;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: -10px;
}

.search-box-container input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #000000; 
    outline: none;   
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    color: white;
    border: 0.7px solid rgb(123, 123, 123);

}

* Suggestions List */
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px; /* Position it directly below the search bar */
    width: 92%;
    background-color: #000000;
    color: white;
    z-index: 1;
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
}

.suggestions-list li:hover {
    background-color: #000000;
}

/* Active Search Bar Styles */
.search-bar-active .search_icon {
    display: none; /* Hide the search icon and text */
}

.search-bar-active .search-box-container {
    display: block;
}




#suggestions li a:hover {
    color: rgb(123, 123, 123); /* Optional: Hover effect to make it gold (for example) */
}
/* Remove bullets and dot from the suggestions */
#suggestions {
    list-style-type: none;  /* Removes the bullets or dots */
    padding-left: 0;  /* Ensures no padding on the left */
    margin-left: -10px;
}

/* Move suggestion links a little to the left and set text color */
#suggestions li a {
    color: white; /* Change suggestion text to white */
    text-decoration: none; /* Optional: removes underline from links */
    padding-left: 10px; /* Moves text a little bit to the left */

}




/* Contact Section */
.contact-section {
    padding-top: 20px; /* Space inside the contact section */
    background-color: #00000080; /* Dark background for contrast */
    border-top: 0.1px solid rgba(123, 123, 123, 0.390);
    display: flex; /* Use flexbox to align items */
    justify-content: space-between; /* Distribute space between logo and contact info */
    align-items: center; /* Vertically center the items */
    margin-top: 0%;
}

/* Logo Section */
.logo-section {
    padding-left: 40px; /* Increase the left padding to move it further right */
    display: flex;
    flex-direction: column; /* Stack logo and company name vertically */
    align-items: center; /* Center the items horizontally */
    justify-content: center; /* Vertically align items */
    text-align: center; /* Center the text of the company name */
    margin-top: 130px;
}

.logo-section img {
    max-width: 100px; /* Adjust the logo size */
    height: auto; /* Ensure the image maintains its aspect ratio */
    display: block; /* Make the image a block-level element */
    margin-bottom: 3px; /* Add some space between logo and name */
    margin-left: 270px;

}

.logo-section h3 {
    color: rgb(209, 129, 16); /* Gold color for the company name */
    margin-top: -15px; /* Remove top margin */
    margin-left: 340px;
    font-weight: 400;
}


/* Contact Info Section */
.contact-info {
    max-width: 600px;
    padding: 20px;
    background-color: #00000080; /* Slightly lighter dark background */
    border-radius: 8px;
    margin-right: 20px; /* Add some space between contact info and right side */
}

.contact-info h2 {
    color: rgb(209, 129, 16); /* Title in gold */
    text-align: left; /* Align the title to the left */
    margin-bottom: 60px; /* Add some space between title and contact list */
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info li {
    color: white; /* White text for the contact info */
    margin-bottom: 15px;
}

.contact-info li a {
    color: rgb(209, 129, 16); /* Facebook link in goldenrod */
    text-decoration: none;
}

.contact-info li a:hover {
    text-decoration: underline; /* Add underline on hover */
}
.content-container{
    margin-left: 380px;
    margin-top: 50px;
}

.container {
    display: flex;
    flex-direction: column;
  }
  
  .section {
    display: flex;
    align-items: center;
    background-color: black;
    border-radius: 50px;
    border: 0.4px solid rgb(123, 123, 123);
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 300px;
    width: 95%;
    margin-bottom: 60px;
  }
  .section img{
    opacity: 0.9;
  }
  .image-container {
    width: 40%;
    height: auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  
  .section-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-left: -10px;
  }
  
  .title-container {
    width: 50%;
    padding: 10px;
    margin-left: 50px;
  }
  .section-text{
    font-size: 20px;
    font-weight: 600;
    color: rgb(183, 183, 183);
  }
  .section-title {
    font-size: 40px;
    color: rgb(209, 129, 16);
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .section.active .section-image {
    transform: scale(1.1);
}

.section.active {
    background-color: rgba(50, 48, 48, 0.464);
    transform: scale(1.05);
}

.section.active .section-title {
    color: rgb(180, 110, 10); /* A lighter gold when hovered */
}

  .truck-section{
    margin-top: -40px;
    margin-bottom: 80px;
}
.main-section-title{
    font-size: 60px;
    align-items: left;
    text-align: left;
    justify-content: left;
    margin-bottom: 40px;
    margin-top: 80px;

}
.concrete-section{
    margin-top: -80px;
    margin-bottom: 100px;
}

    /* Container for buttons */
.buttons-container {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    z-index: 1000;
  }
  
  /* Styling for the buttons */
  .scroll-button {
    background-color: rgb(100, 100, 100);
    color: white;
    border: none;
    padding: 20px 20px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    width: 180px;
  }
  
  /* Hover effect */
  .scroll-button:hover {
    background-color: rgb(75, 75, 75); /* Slightly lighter gold */
  }
  
  /* Active state when clicked */
  .scroll-button:active {
    background-color: rgb(123, 123, 123); /* Even lighter gold */
    transform: scale(0.98); /* Slightly shrink on click */
  }
  .call-section{
    margin-top: -80px;
    margin-bottom: 80px;
  }
  /* General section styling */
  .call-button {
    background-color: rgb(209, 129, 16);
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
    margin-left: 85%;
    padding: 20px 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 15px;
}
.call-button:hover {
    background-color: rgb(145, 88, 9); /* Darker gold */
}

.call-button:active {
    transform: scale(0.95);
}
.concrete-x-section{
    margin-top: -100px;
}

.call-x{
    margin-top: 10px;
}


  
.phone{
    display: none;
}



@media only screen and (max-width: 1200px) {
    .phone{
        display: inline;
    }
    .comp{
        display: none;
    }

    body {
        background: black;
        color: white;
        margin: 0;
        font-family: Arial, sans-serif;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }
    
    a {
        text-decoration: none;
    }
    .content-container_ph{
        padding: 30px;
    }
    .logo-container_ph {
        display: flex;
        align-items: center;
    }
    
    .company-name_ph {
        color: rgb(209, 129, 16);
    }
    
    .header_ph {
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        background: black;
        padding: 10px 4vw;
        border-bottom: 0.4px solid rgba(123, 123, 123, 0.547);
        z-index: 10;
        box-sizing: border-box;
        gap: 20px;
    }
    
    
    #language-dropdown_ph {
        position: fixed;
        top: 63px;
        right: 0vw;
        background-color: #000000;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        width: 120px;
        max-height: 300px;
        overflow-y: auto;
        text-align: center;
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        z-index: 1000;
        overflow: visible;
    }
    
    #language-dropdown_ph.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    #language-dropdown_ph a:hover {
        color: rgb(85, 84, 84);
    }
    
    #language-dropdown_ph a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        color: white;
        text-decoration: none;
        padding: 5px 0;
        margin: 20px 0;
        transition: background 0.3s;
    
    }
    
    #language-dropdown_ph a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30%; /* adjust as you like */
        height: 1px;
        background-color: rgb(85, 84, 84);
    }
    
    
    .language-dropdown_ph .en_ph {
        color: rgb(209, 129, 16) !important;
        cursor: pointer;
    }
    .search-bar_ph {
        border: none;
        border: 0.7px solid rgba(123, 123, 123, 0.648);
        transition: all 0.3s ease-out;
        outline: none;
    }
    
    /* Basic styling for the search bar */
    .search-container_ph {
        flex: 1; /* 📏 Let it grow to fill middle space */
        display: flex;
        position: relative;
    }
    
    .language-item_ph {
        display: flex;
        align-items: center;
        font-size: 20px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
        margin-left: -5px;
    }
    
    
    .search-bar_ph {
        padding: 8px;
        border-radius: 7px;
        background-color: black;
        color: white;
        box-sizing: border-box;
        width: 100%;
    
    }
    
    .suggestions-list_ph {
        position: absolute;
        top: 100%;
        left: 0;
        width: 99%; /* Adjusted width */
        background-color: black;
        color: white;
        padding: 0;
        margin: 0;
        list-style: none;
        border-radius: 5px;
        border: 0.7px solid rgba(123, 123, 123, 0.648);
        display: none;
        max-height: 150px;
        overflow-y: auto;
        z-index: 100;
    }
    
    .suggestions-list_ph li {
        padding: 5px;
        cursor: pointer;
    }
    
    .suggestions-list_ph li a:hover {
        color: rgb(123, 123, 123);
    }
    
    .suggestions-list_ph li a {
        display: block;
        text-decoration: none;
        padding: 5px;
        font-size: 14px;
    
    
        color: rgb(255, 255, 255);
    }
    
    .language-item_ph.active {
        color: rgb(123, 123, 123);
    }
    
    .search-bar_ph:focus + .suggestions-list_ph {
        display: block;
    }
    
    .search-bar_ph {
        font-size: 12px;
    }
    
    /* Ensure the logo and company name are in the same line and properly aligned */
    .logo-container_ph {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0; /* 🛡 Prevent it from shrinking */
    }
    
    .company-logo_ph {
        height: 42px;
        width: auto;
        display: inline-block;
        vertical-align: middle; /* ✅ Ensures logo aligns with text */
    }
    
    .company-name_ph {
        font-size: 18px;
        font-weight: 800;
        color: rgb(209, 129, 16);
        white-space: nowrap;
        vertical-align: middle; /* ✅ Aligns text with logo */
        display: inline-block;
    }
    
    
    
    
    .bottom-nav_ph {
        position: fixed;
        bottom: 0px;
        width: 100%;
        background-color: black;
        display: flex;
        justify-content: space-around;
        padding: 2px 5px;
        border-top: 0.4px solid rgba(123, 123, 123, 0.547);
    }
    .icon_ph {
        color: white;
        font-size: 22px;
        margin: 20px 10px;
    }
    
    
    
    
    /* Full width bottom section */
    .contact-section_ph {
        background-color: #00000080;
        border-top: 0.1px solid rgb(123, 123, 123);
        display: flex;
        justify-content: space-between;  /* Left and right content */
        align-items: flex-end;           /* Align content to bottom */
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 60px;
        padding: 10px 20px;
    
    }
    
    /* Bottom left: Logo and Company Name */
    .logo-section_ph {
        display: flex;
        flex-direction: column;
        align-items: flex-start;     /* Align logo + name to left */
        justify-content: flex-end;   /* Align vertically to bottom */
        margin-bottom: 7px;
    }
    
    /* Logo styling */
    .logo-section_ph img {
        max-width: 60px;
        height: auto;
        margin-bottom: -10px;
    }
    
    /* Company name styling */
    .logo-section_ph h3 {
        color: rgb(209, 129, 16);
        font-weight: 500;
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
    }
    
    /* Bottom right: Contact Info */
    .contact-info_ph {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;   /* Align text to bottom */
        align-items: flex-end;       /* Align content to right */
        max-width: 800px;
        width: 100%;
        background-color: #00000080;
        border-radius: 6px;
        padding-left: 20px;
        text-align: left;
    }
    
    /* Contact title */
    .contact-info_ph h2 {
        color: rgb(209, 129, 16);
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Contact list styling */
    .contact-info_ph ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    /* Contact items */
    .contact-info_ph li {
        color: white;
        font-size: 14px;
        margin-bottom: 10px;
        font-size: 11px;
    
    }
    
    .contact-info_ph li a {
        color: rgb(209, 129, 16);
        text-decoration: none;
    }
    
    .contact-info_ph li a:hover {
        text-decoration: underline;
    }        
    .nav-link_ph {
        text-decoration: none;
        
    }

    /* Optional: Focus effect (when clicked, for better accessibility) */
    .nav-button_ph:focus {
        outline: none;
    }

    .nav-button_ph {
        color: white; /* Default color */
        transition: color 0.3s ease-in-out;
    }
   
    .nav-button_ph{
        background-color: black;
        border: black;

    }
    
    .nav-link_ph .nav-button_ph {
        display: block;
    }
    .icon_ph:hover {
        color: rgb(123, 123, 123); /* Change icon color */
    }
    .services_icon_ph{
        color: rgb(209, 129, 16);
    }

    /* Main Content */
    .main-content_ph {
        flex: 1;
        width: 100%;
        box-sizing: border-box;
        margin-top: 90px;
    }

/* Buttons Container */
.buttons-container_ph {
position: fixed;
top: 80px;
right: 10px;
display: flex;
flex-direction: row;
gap: 10px;
z-index: 1;
max-width: 100%;
}

/* Scroll Buttons */
.scroll-button_ph {
background-color: rgb(100, 100, 100);
color: white;
border: none;
padding: 12px 16px;
font-size: 60%;
cursor: pointer;
font-weight: bold;
border-radius: 12px;
transition: background-color 0.3s ease;
}

.scroll-button_ph:active {
background-color: rgb(75, 75, 75);
transform: scale(0.95);
}

/* Section */
.section_ph {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
border: 0.2px solid rgba(123, 123, 123, 0.629);
border-radius: 30px;
gap: 12px;
margin: 40px auto;
transition: transform 0.3s ease, background-color 0.3s ease;
overflow: hidden;
position: relative;
}

.section_ph:hover,
.section_ph:active {
background-color: rgba(50, 48, 48, 0.464);
transform: scale(1.1);
}

.section_ph:active .section-image_ph {
transform: scale(1.1);
}

/* Image Container */
.image-container_ph {
flex: 1;
text-align: center;
justify-content: center;
transition: transform 0.9s ease;

}

.section-image_ph {
width: 100%;
height: auto;
object-fit: cover;
transition: transform 0.3s ease;
display: block;
}

/* Text Container */
.title-container_ph {
flex: 1;
margin-top: -40px;

}

.section-title_ph {
font-size: 20px;
font-weight: bold;
color: rgb(209, 129, 16);

}

.section-text_ph {
font-size: 12px;
color: rgb(210, 210, 210);
font-weight: 600;
margin-top: -10px;
margin-right: 5px;
}

/* Section-specific spacing (if needed) */
.truck-section_ph,
.concrete-section_ph,
.concrete-x-section_ph,
.call-section_ph {
margin-top: -40px;
}

/* Main Section Title */
.main-section-title_ph {
font-size: 30px;
color: rgb(209, 129, 16);
text-align: left;
margin: 40px auto 20px;
}
.call-section_ph {
display: flex;
justify-content: flex-end;
margin-top: 20px;
margin-bottom: 100px;
}

.call-button_ph {
background-color: rgb(209, 129, 16);
color: white;
border: none;
padding: 13px 18px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
border-radius: 12px;
transition: all 0.3s ease-in-out;
}
.call-button_ph:active {
background-color: rgb(145, 88, 9);
transform: scale(0.95);
}

@media only screen and (max-width: 410px) {
    .scroll-button_ph {
        padding: 12px 12px;
        font-size: 10px;
    }
}
@media only screen and (max-width: 375px) {
    .scroll-button_ph {
        padding: 11px 10px;
        font-size: 10px;
    }
}
@media only screen and (max-width: 350px) {
    .scroll-button_ph {
        padding: 10px 9px;
        font-size: 8px;
    }
}
@media only screen and (max-width: 300px) {
    .scroll-button_ph {
        padding: 9px 8px;
        font-size: 7px;
    }
}
}