@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
body{
    position: relative;
}
.allbodybutton {
    position: fixed;
    bottom: 10px;
    right: 20px;
}

.language-switch {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    /* Ensures dropdown is on top of other content */
}

.language-switch select {
    padding: 10px;
    font-size: 16px;
}

.phone-link svg {
    margin-right: 8px;
}

.phone-link svg {
    margin-right: 8px;
}

.email-link svg {
    margin-right: 8px;
}

.navbar {
    padding: 10px 20px;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 1px 0;
}

.navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.navbar .container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.navbar .container .row .col {
    flex: 0 0 auto;
    padding: 20px;
}

.repair-text {
    font-size: 20px;
    font-weight: 600;
}

.f-col {
    flex: 0 0 20%;
}

@media(max-width: 991px) {
    .f-col  {
        flex: 0 0 50% !important;

    }

    .t-col {
        flex: 0 0  50% !important;
        display: flex;
        justify-content: end;
    }

    .s-col {
        order: -1;
        flex: 0 0 100% !important;
    }
}
@media(max-width: 520px) {
.navbar .number-text{
    font-size: 14px !important;
}
.allbodybutton{
    font-size: 14px !important;
}
.mail-text{
    font-size: 14px !important;
}
.navbar a {
    color: black;
    display: flex;
    align-items: center;
    padding: 10px 10px !important;
}
}
.s-col{
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
}
.t-col {
    flex: 0 0 20%;
}

.navbar a {
    color: black;
    padding: 10px 20px;
}

.navbar .mail-text {
    font-size: 17px;
}

.navbar .number-text {
    background-color: #E16B0B;
    font-weight: bold;
    font-size: 25px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border: 1px solid #E16B0B;
    transition: 0.6s;
}

.navbar .number-text:hover {
    background-color: transparent;
    color: black;
}

.allbodybutton {
    background-color: #E16B0B;
    font-weight: bold;
    font-size: 25px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border: 1px solid #E16B0B;
    transition: 0.6s;
}

.allbodybutton:hover {
    background-color: transparent;
    color: black;
}

.hero-sec{
    width: 100%;
}
.hero-sec .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.hero-sec .container .row {
    display: flex;
    flex-wrap: wrap;
}

.hero-sec .container .row .col {
    flex: 0 0 100%;
}

.hero-sec .container .row .col .img-div img {
    width: auto;
    max-width: 100%;
    margin: auto;
    height: calc (100vh - 140px);
}
.pb-100 {
    padding-bottom:100px;
}