/*=========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Roboto',sans-serif;
    color:#222;
    background:#fff;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:100%;
    max-width:1600px;
    margin:auto;
    padding:0 20px;

}


/*=========================
TOP BAR
==========================*/

.top-bar {
    background: #004AAD;
    height: 46px;
}

.top-bar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:46px;

}

.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:34px;

}

.top-bar a {
    color: #fff;
    font-size: 20px;
    font-family: "Bebas Neue", Sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-style: italic;
}

.top-bar i{

    font-size:20px;

}

.top-bar a svg {
    fill: #fff;
    width: 20px;
}
/*=========================
HEADER
==========================*/

.main-header {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255,255,255,.97);
    z-index: 999;
    border: none;
    backdrop-filter: blur(6px);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo img{

    width:330px;
}
header.main-header a.logo, header.main-header nav, header.main-header .header-btn {
    padding: 10px;
}


/*=========================
NAVIGATION
==========================*/

nav{

    margin-left:auto;
    margin-right:auto;

}

nav ul {
    display: flex;
    gap: 0px;
    justify-content: center;
}

nav a {
    position: relative;
    color: #0054b8;
    font-family: 'Anton',sans-serif;
    font-size: 20px;
    letter-spacing: .5px;
    transition: .3s;
    font-style: italic;
    padding: 13px 20px;
}

nav li.active a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0px;

    width:100%;
    height:3px;

    background:#0054b8;

}

nav a:hover{

    color:#003f91;

}


/*=========================
HEADER BUTTON
==========================*/

.header-btn {
    background: #0054b8;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Anton',sans-serif;
    font-size: 25px;
    line-height: 1.1;
    transition: .3s;
    font-style: italic;
    border-radius: 3px;
    padding: 12px 24px!important;
    margin-right: 10px;
}
.rightbttn {
    display: flex;
    justify-content: end;
}
.rightbttn {
    max-width: 25%;
    width: 100%;
}
nav {
    max-width: 50%;
    width: 100%;
}
a.logo {
    max-width: 25%;
    width: 100%;
}
.header-btn span{

    display:block;

}

.header-btn:hover{

    background:#003d90;

}
/*=====================================
HERO
======================================*/

.hero {
    position: relative;
    min-height: 660px;
    background: url("../../assets/images/hero-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.hero::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:170px;

    background:linear-gradient(to top,#ffffff 0%,rgba(255,255,255,.92) 35%,rgba(255,255,255,0) 100%);

    z-index:2;

}
.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.35) 100%
    );

}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 1521px;
    padding: 0;
}

.hero-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:0px;

}

.hero-content{
    width:56%;
    color:#fff;
}

.hero-top-text {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-style: italic;
}
.hero h1 {
    font-family: "Anton",sans-serif;
    font-size: 77px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 24px;
    color: #fff;
}

.faq-right-content {
    margin-top: 0;
}
.hero-line{

    width:108px;

    height:4px;

    background:#fff;

    margin-bottom:26px;

}

.hero p {
    max-width: 620px;
    font-size: 20px;
    line-height: 30px;
    color: #ececec;
    margin-bottom: 34px;
    font-style: italic;
}

.hero-services{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px 28px;

    max-width:760px;

}
.hero-services {
    display: grid;
    grid-template-columns: repeat(4,max-content);
    gap: 12px 22px;
}
.hero-services div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    letter-spacing: .5px;
    font-style: italic;
}
.hero-services div{

    font-size:24px;

}
.hero-services div svg {
    width: 24px;
    fill: #ffffff;
    transition: fill 0.3s;
}
.hero-content {
    padding-left: 10px;
}
.hero-services i{

    color:#ffffff;

    font-size:20px;

}

.hero-form-placeholder{

    width:470px;

}


/*==============================
QUOTE BOX
==============================*/

.quote-outer {
    width: 56%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.quote-box {
    width: 638px;
    background: #fff;
    padding: 50px 38px;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    position: relative;
    z-index: 10;
}

.quote-subtitle {
    display: block;
    font-family: 'Bebas Neue';
    color: #A7A7A7;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    margin-bottom: 18px;
}

.quote-box h2{

    font-family:'Anton',sans-serif;

    font-size:42px;

    color:#181818;

    margin-bottom:30px;

    letter-spacing:1px;

}

.form-row{

    display:flex;

    gap:18px;

    margin-bottom:18px;

}

.form-group{

    position:relative;

    flex:1;

}

.form-group i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#b9b9b9;

    font-size:16px;

}

.form-group input {
    width: 100%;
    font-size: 15px;
    outline: none;
    transition: .3s;
    height: 50px;
    padding: 10px 20px 10px 45px;
    border: 1px solid #e0e0e0;
    color: #a7a7a7;
    background-color: #f2f2f2;
    font-weight: 400;
    border-radius: 0;
}

.form-group select {
    width: 100%;
    font-size: 15px;
    outline: none;
    appearance: none;
    background: #fff;
    height: 50px;
    padding: 10px 20px 10px 45px;
    border: 1px solid #e0e0e0;
    color: #a7a7a7;
    background-color: #f2f2f2;
    font-weight: 400;
    border-radius: 0;
}

.form-group textarea {
    width: 100%;
    resize: none;
    font-size: 15px;
    outline: none;
    height: 120px;
    padding: 10px 20px 10px 45px;
    border: 1px solid #e0e0e0;
    color: #a7a7a7;
    background-color: #f2f2f2;
    font-weight: 400;
    border-radius: 0;
}

.textarea i{

    top:22px;

    transform:none;

}

.full{

    margin-bottom:18px;

}

.service-label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    color:#555;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#0054b8;

}

.quote-box button {
    width: 100%;
    height: 58px;
    background: #0054b8;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 22px;
    font-family: 'Bebas Neue';
    transition: .3s;
    letter-spacing: .5px;
    text-transform: capitalize;
}
.form-group.full.textarea svg {
    margin-top: 8px;
}
.form-group svg {
    width: 23px;
    position: absolute;
    top: auto;
    left: 15px;
    line-height: 1;
    height: 23px;
    margin-top: 13px;
}
.quote-box button:hover{
    background:#0045a0;
}


/*=========================
NAV TOGGLE (hamburger) — hidden on desktop
==========================*/
.nav-toggle {
    display: none;
    background: #0054b8;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: .3s;
}

.nav-toggle span::before {
    position: absolute;
    top: -7px;
}

.nav-toggle span::after {
    position: absolute;
    top: 7px;
}

.nav-toggle.active span {
    background: transparent;
}

.nav-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}
section.pressure-service-sec {
    background: #004AAD;
    padding: 60px 0;
}

.top-titlebar h5 {
    color: #fff;
    font-size: 25px;
    font-family: "Bebas Neue", sans-serif;
    font-style: italic;
    margin-bottom: 0;
}

.top-titlebar h2 {
    color: #fff;
    font-size: 70px;
    font-family: "Anton", sans-serif;
    font-style: italic;
}

.top-titlebar ul li {
    color: #fff;
    font-family: "Anton", sans-serif;
    font-style: italic;
    font-size: 20px;
    border-left: 2px solid #fff;
    padding-left: 20px;
    line-height: 1;
}

.top-titlebar ul {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.top-titlebar ul li:nth-child(1) {
    padding-left: 0;
    border-left: 0;
}

.pressure-items {
    display: flex;
    flex-wrap: wrap;
}

.col-xl-4.col-lg-4 {}

.pressure-items .col-xl-4.col-lg-4 {
    padding: 0 13px;
}

.card-service {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.content-service h3 {
    font-family: "Anton", Sans-serif;
    font-size: 45px;
    font-weight: normal;
    text-transform: uppercase;
    font-style: italic;
    color: #000000;
    text-align: center;
}

.content-service {
    padding: 20px 10px;
}

.content-service p {
    font-size: 18px;
    text-align: center;
}

.content-service {
}

.contactbttn svg {
    fill: #fff;
    width: 22px;
}

.contactbttn a {
    background-color: #004AAD;
    font-family: "Anton", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.img-service img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.top-titlebar ul li a {
    color: #fff;
}

.top-titlebar ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.tpw-remaining-content {
    padding: 70px 0 40px;
    background: #fff;
}

.tpw-content-card {
    height: 100%;
    margin-bottom: 20px;
}

.tpw-remaining-content .common-title h3 {
    margin-bottom: 16px;
}

.tpw-remaining-content .mission-right-content p {
    margin-bottom: 14px;
}

.tpw-map-section {
    width: 100%;
    line-height: 0;
}

.tpw-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.contactbttn {
    display: block;
    text-align: center;
    margin-top: 30px;
}
.button-bunches {
    margin-top: 20px;
    display: flex;
    gap: 22px;
}

/*=====================================================
RESPONSIVE CSS — HEADER + HERO BANNER SECTION ONLY
=====================================================*/

/*=========================
LARGE DESKTOPS / LAPTOPS (max-width: 1400px)
==========================*/
@media (max-width: 1400px) {

    .hero h1 {
        font-size: 62px;
    }

    .hero-content {
        width: 60%;
    }

    .quote-outer {
        width: 46%;
    }

    .quote-box {
        width: 100%;
        padding: 40px 30px;
    }

}


/*=========================
TABLETS / SMALL LAPTOPS (max-width: 1199px)
==========================*/
@media (max-width: 1199px) {

    .logo img {
        width: 240px;
    }

    nav a {
        font-size: 17px;
        padding: 13px 12px;
    }

    .header-btn {
        font-size: 18px;
        padding: 10px 16px !important;
    }

    .hero {
        min-height: auto;
        padding: 60px 10px 80px;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 52px;
    }

    .quote-outer {
        width: 100%;
        margin: 0;
        justify-content: flex-start;
    }

    .quote-box {
        width: 100%;
        max-width: 638px;
    }

}


/*=========================
TABLETS PORTRAIT (max-width: 991px)
==========================*/
@media (max-width: 991px) {

    /* Top bar */
    .top-bar .container {
        flex-wrap: wrap;
        height: auto;
        padding: 8px 20px;
        gap: 8px;
    }
.rightbttn {
    display: none;
}
    .top-bar {
        height: auto;
    }

    .top-left,
    .top-right {
        gap: 16px;
    }

    .top-bar a {
        font-size: 14px;
    }

    /* Header */
    .nav-toggle {
    display: flex;
    order: 2;
    margin-right: 15px;
}
    header.main-header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
    }
    nav ul {
    margin: 12px 0;
}
nav#mainNav {
    padding: 0;
}
    a.logo {
    max-width: 60%;
    justify-content: flex-start;
    display: flex;
}

    .logo img {
        width: 200px;
        margin: 0 auto;
    }

    nav {
        max-width: 100%;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    nav.nav-open {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    nav a {
        font-size: 17px;
        padding: 10px 10px;
    }

    .rightbttn {
        max-width: 100%;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }

    .header-btn {
        margin-right: 0;
    }

    /* Hero */
    .hero-top-text {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-services {
        grid-template-columns: repeat(2, max-content);
        gap: 10px 20px;
    }

    .hero-services div {
        font-size: 18px;
    }

    .quote-box h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .quote-subtitle {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 14px;
    }
    .top-titlebar h2 {
    font-size: 40px;
}
.card-service {
    padding: 15px;
}
.content-service h3 {
    font-size: 35px;
}
.top-titlebar ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
}
.pressure-items .col-xl-4.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
}
.tpw-map-section iframe {
    height: 380px;
}
}


/*=========================
MOBILE LANDSCAPE / LARGE PHONES (max-width: 767px)
==========================*/
@media (max-width: 767px) {

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .top-left,
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero {
        padding: 40px 10px 60px;
    }

    .hero::after {
        height: 100px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-line {
        width: 80px;
        height: 3px;
        margin-bottom: 18px;
    }

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
    }

    .quote-box {
        padding: 30px 22px;
    }

    .quote-box h2 {
        font-size: 26px;
    }

    .quote-box button {
        height: 52px;
        font-size: 18px;
    }

    .pressure-items .col-xl-4.col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 8px;
    }

    .top-titlebar h2 {
        font-size: 32px;
    }

    .content-service h3 {
        font-size: 30px;
    }

    .img-service img {
        height: 180px;
    }

    .tpw-remaining-content {
        padding: 40px 0 10px;
    }

    .tpw-map-section iframe {
        height: 280px;
    }

}


/*=========================
SMALL PHONES (max-width: 480px)
==========================*/
@media (max-width: 480px) {

    .container {
        padding: 0 15px;
    }

    .top-bar a {
        font-size: 12px;
        gap: 6px;
    }

    .top-bar a svg {
        width: 14px;
    }

    a.logo {
    margin: 0;
}

    nav a {
        font-size: 17px;
        padding: 8px 6px;
    }
    nav#mainNav ul li {
    margin: 6px 0;
}

    .header-btn {
        font-size: 15px;
        padding: 8px 14px !important;
    }

    .hero-top-text {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .hero-services div {
        font-size: 18px;
    }

    .hero-services div svg {
        width: 18px;
    }

    .quote-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .quote-box h2 {
        font-size: 21px;
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group select {
        height: 46px;
        font-size: 14px;
    }

    .form-group textarea {
        height: 100px;
        font-size: 14px;
    }

    .quote-box button {
        height: 48px;
        font-size: 16px;
    }

}