:root {
    --primary: #ff5315;
    /* --primary: rgb(241, 86, 35); */
    /* --secondary: #051b10; */
    --secondary: #082c1b;
    /* rgb(8, 44, 27) */
    --bgColor: #F6F8FA;
}

::selection {
    background: var(--primary);
    color: #fff
}

body {
    padding-top: 150px;
    background-color: var(--bgColor);
}

.customContainer {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    z-index: 1;
}

select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
}

select option {
    min-height: 5px;
    padding: 0
}

select,
input,
input[type="text"] {
    padding: 10px;
    margin: 0;
    height: auto;
    min-width: 270px;
    border-radius: 4px;
    box-shadow: none;
    line-height: 25px;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
#dropdownButton:hover {
    border-color: rgba(241, 86, 35, 0.8) !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(241, 86, 35, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(241, 86, 35, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(241, 86, 35, 0.6);
}

button img {
    max-width: 14px;
}

button a {
    color: inherit;
    text-decoration: none;
}

button a:hover {
    color: inherit;
    text-decoration: none;
}

#response {
    width: 100%;
    border: none;
    background-color: var(--bgColor);
}

.primaryButton {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    transition: opacity 0.2s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;
}

.primaryButton:hover {
    background-color: rgba(241, 86, 65, 1);
}

.primaryButtonOutline:hover {
    /* opacity: 0.8; */
    background-color: rgba(241, 86, 35, 0.1);
}

.primaryButtonOutline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 4px;
    width: fit-content;
    padding: 5px;
    transition: opacity 0.2s ease-in-out;

    display: flex;
}



.header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-style: solid;
    border-color: rgba(194, 224, 255, 0.08);
    border-width: 0px 0px thin;
    /* background-color: red; */
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--secondary);
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px 30px;
}

.header a {
    color: inherit
}

.header a:hover {
    text-decoration: none;
    color: inherit
}

.header nav {
    margin: 0
}

.header .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* flex-direction: row; */
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%;
}

.header .nav .logo {
    max-width: 160px;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.header .menuItem {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.header .menuItem:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    left: 0;
    bottom: -10px;
    transition: width .3s ease-in-out
}

.header .navMobile .menuItem:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    left: 0;
    bottom: -5px;
    transition: width .3s ease-in-out
}

.header .menuItem:hover:after {
    width: 100%
}


.header .navMobile {
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    /* flex-direction: row; */
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%;
    transition: all .2s ease-in-out;
}

.header .navMobile .logoMobile {
    max-width: 130px;
}

.header .hamburgerMenuButton {
    position: relative;
    /* background-color: red; */
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header .hamburgerMenuButton.pressed {
    gap: 0
}

.header .hamburgerMenuButton .line {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.2s ease-in-out
}

.header .hamburgerMenuButton.pressed .line2 {
    display: none;
}

.header .hamburgerMenuButton.pressed .line1 {
    transform: rotate(45deg);
    transform-origin: 43%
}

.header .hamburgerMenuButton.pressed .line3 {
    transform: rotate(-45deg);
    transform-origin: 46%
}

.header .navMobile .navListMobile {
    display: none;
    position: absolute;
    margin-top: 40px;
    right: 10px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;

    -webkit-box-shadow: 3px 3px 10px 3px #dddddd;
    -moz-box-shadow: 3px 3px 10px 3px #dddddd;
    box-shadow: 3px 3px 10px 3px #dddddd;
}


.header .navMobile .showNavListMobile {
    display: block;
}

.header .navMobile .navListMobile .menuItem:not(:last-child) {
    margin-bottom: 25px;
}


.heroTextWrapper h1,
.heroTextWrapper p {
    color: var(--secondary)
}

.heroTextWrapper h1 {
    font-size: 28px;
    font-weight: bold;
}

.heroTextWrapper p {
    font-size: 14px;
    line-height: 26px;
}


/* .heroSection {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 60vh;
} */

.heroSection .heroImage {
    position: absolute;
    z-index: 0;

    height: auto;

    left: 0;
    top: 0;
}

.sectionsWrapper {
    position: relative;
}


.sectionCard {
    background-color: #fff;
    /* overflow: hidden; */
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    width: auto;
    position: relative;
    z-index: 1;
}

.sectionCard .cardHeader {
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
}

.sectionCard .cardHeader .cardTitle {
    margin: 0;
    line-height: inherit;
}

.sectionCard .cardHeader .locationAddress {
    padding-top: 10px;
    color: #9f9f9f
}

.sectionCard .cardBody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* align-items: end; */
    padding-top: 25px;
}

.sectionCard .cardBody table td {
    /* border: 1px solid #e5e5e5; */
    padding: 5px 10px 5px 0
}


.textWithButton {
    display: flex;
    align-items: center;
    gap: 20px
}

.sectionCard p {
    margin: 0
}

.sectionCard h2 {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 600;
}

#dropdownButton {
    /* position: relative; */
    padding: 10px 30px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
}

.locationDropdown {
    position: absolute;
    display: none;
    top: 80px;
    right: 0;
    max-width: 200px;
    height: 40vh;
    background-color: #fff;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 4px;
    padding: 10px;
    z-index: 999;

    -webkit-box-shadow: 3px 3px 10px 3px #dddddd;
    -moz-box-shadow: 3px 3px 10px 3px #dddddd;
    box-shadow: 3px 3px 10px 3px #dddddd;
}

.locationDropdown.locationDropdownVisible {
    display: block;
}

.locationDropdown ul {
    list-style: none;
    margin: 0
}

.locationDropdown li {
    padding-bottom: 5px;
}

.locationDropdown li a {
    border-radius: 2px;
    padding: 5px;
    width: 100%;
    height: 100%;
    display: block;
    color: #555
}

.locationDropdown li a:hover {
    text-decoration: none;
    background-color: #efefef;
}


.fieldsWrapper {
    align-items: center;
}



.fieldsWrapper .control-group {
    margin: 0
}

.speedTestButtons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}


.footer .footerLogo {
    max-width: 130px;
    margin: 0 auto;

}

.footer .footerBg {
    margin: 0 auto;
    max-width: 500px;
}

.floatingFooter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;

    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    align-items: end;
    justify-content: space-between;
}

.remoteIpWrapper,
.orderButtonWrapper {
    -webkit-box-shadow: 3px 3px 10px 3px #dddddd;
    -moz-box-shadow: 3px 3px 10px 3px #dddddd;
    box-shadow: 3px 3px 10px 3px #dddddd;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px
}

.remoteIpWrapper p {
    margin: 0
}


.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
    display: none;
}

.addReadMore.showmorecontent .readMore {
    display: none;
}

.addReadMore .readMore,
.addReadMore .readLess {
    /* font-weight: 100; */
    margin-left: 2px;
    color: var(--primary);
    cursor: pointer;
}

.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
    display: block;
}


@media only screen and (max-width: 912px) {
    body {
        padding: 120px 20px 70px;
    }

    .header .nav {
        display: none;
    }

    .header .navMobile {
        display: flex;
    }


    .sectionCard .cardHeader,
    .cardBody {
        gap: 20px
    }

}

@media only screen and (max-width: 500px) {
    body {
        padding: 80px 20px 100px;
    }

    .heroTextWrapper h1 {
        font-size: 24px;
    }

    .sectionCard .cardHeader {
        grid-template-columns: auto
    }

    .orderButtonWrapper .primaryButton,
    .remoteIpWrapper {
        font-size: 12px;
    }


    .fieldsWrapper .input-large,
    .fieldsWrapper select {
        width: 100%;
    }




}