
:root {
    --color-blue: #0426a0;
    --dark-blue: #0d163c;
    --color-black: #000;
    --bg-light-blue: #e5efff;
    --color-gold: #E5B03A;
    --color-green: rgb(11, 234, 153);
}

@font-face {
    font-family: 'Serrif Compressed';
    src: url('/fonts/SerrifCompressed-Light.woff2') format('woff2'),
        url('/fonts/SerrifCompressed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Serrif Compressed';
    src: url('/fonts/SerrifCompressed-LightItalic.woff2') format('woff2'),
        url('/fonts/SerrifCompressed-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow: scroll;
    overflow-x: hidden;
}


html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Jost", sans-serif;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    text-rendering: optimizeLegibility;
    -webkit-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: #e2e5e6;
    color: #02228b;
    letter-spacing: normal;
    font-optical-sizing: auto;
    font-feature-settings: "tnum";
}

body {
    min-height: 100vh;
    width: 100%;
}

::-moz-selection {
    background-color: var(--color-blue);
    color: #f4f2f2;
    text-shadow: none;
}

::selection {
    background-color: var(--color-blue);
    color: #f4f2f2;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 6px;
    cursor: -webkit-grab;
    cursor: grab;
}

::-webkit-scrollbar-track {
    cursor: -webkit-grab;
    cursor: grab;
}


html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }


h1,
h2,
h3 {
    font-style: normal;
    color: #002bba;
    font-weight: 400;
}



h1 {
    font-family: 'Serrif Compressed';
    font-size: calc((3.75 - 1) * 1.2vw + 1rem);
    line-height: 1;
    letter-spacing: -0.10vw;
    padding: 10px 0;
    margin-bottom: 10px;
}

h2 {
    font-family: 'Serrif Compressed';
    font-size: calc((3.05 - 1) * 1.2vw + 1rem);
    line-height: 1.1;
    letter-spacing: -0.09vw;
    padding: 10px 0;
    margin-bottom: 10px;
}


h3 {
    font-family: 'Serrif Compressed';
    font-size: calc(18.28571px + 1.45613vw);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 3vh;
}


h4 {
    font-size: calc((1.255 - 1) * 1.2vw + 1rem);
    line-height: 1.2;
    font-weight: bold;
    color: #002bba'
}

h5 {
    font-size: calc(14px + .23613vw);
    margin-bottom: calc(30px + 3.5vh);
    letter-spacing: -0.042vw;
}

.h2_span {
    font-family: "Inter Tight", serif;
    font-size: calc(14px + .23613vw);
    font-weight: 400;
    letter-spacing: normal;
    color: #00f;
    margin-right: 15%;
}

.pre-title {
    display: inline-block;
    position: relative;
    font-size: 85%;
    line-height: 1;
    margin-bottom: 35px;
    padding-left: 35px;
    text-transform: uppercase;
    font-weight: 600;
}

.pre-title::before {
    position: absolute;
    content: "";
    top: 40%;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: blue;
}

p,
blockquote {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-weight: 400;
    font-stretch: normal;
    line-height: 1.4;
}

p+p {
    margin-top: 20px;
}

p:not(:last-child) {
    margin-bottom: 28px;
}


ul {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}


.in-view {
    text-indent: 17%;
}


/* Links */


a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: 500;
    color: inherit;
    outline: none;
    text-decoration: none;
    background: transparent;
    vertical-align: baseline;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover {
    color: #0A0442;
    text-decoration: none;
    outline: none !important;
}

a,
a>* {
    text-decoration: none;
    outline: none !important;
}


a,
button {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

button {
    white-space: normal !important;
    word-wrap: break-word !important;
}

strong, b {
    color: rgb(32 97 141);
}


/*================================
BACKGROUND AND TEXT
================================== */

.bg-black {
    background: var(--color-black);
}

.text-blue {
    color: var(--color-blue);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-gold {
    background-color: var(--color-gold);
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.p-light {
    color:  #ffffffb3;
}

.text-green {
    color: var(--color-green);
}

.text-gold {
    color: var(--color-gold);
}


/*================================
BUTTONS
================================== */

.whatsapp__btn {
    display: inline-flex;
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    background-color: var(--color-orange);
    border: .25rem solid var(--color-orange);
    border-radius: .5rem;
}

.whatsapp__btn__text {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: .5rem;
    padding: .25rem 1rem;
}

.whatsapp__btn__icon {
    display: flex;
    align-items: center;
    background-color: #009900;
    border-radius: .5rem;
    padding: .45rem;
}

.mainButton {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2px;
    align-items: center;
    font-size: 110%;
    box-shadow: none;
    background-size: 200% auto;
    transition: all 400ms linear;
    color: #ffffffcb;
}

.mainButton_text {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00f;
    height: 4rem;
    padding: 0 2rem;
    z-index: 2;
}

.mainButton_icon {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    background-color: #00f;
    height: 4rem;
    width: 4rem;
    margin-left: 1px;
    z-index: 2;
}

.mainButton_icon i {
    font-size: 200%;
}

.mainButton::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #00f;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.mainButton:hover::before {
    width: 100%;

}

.mainButton:hover {
    color: var(--color-gold);
}







/*================================
MARGINS & SPACES
================================== */

.m-10 {
    padding-top: calc(35.14286px + 4.05042vw);
    padding-bottom: calc(35.14286px + 4.05042vw);
}

.mt-10 {
    padding-top: calc(35.14286px + 4.05042vw);
}

.mb-10 {
    padding-bottom: calc(35.14286px + 4.05042vw);
}

.space {
    padding-top: 15.5vw;
    padding-bottom: 15.5vw;
}


.space__top {
    padding-top: 12.5vw;
}

.space__bottom {
    padding-bottom: 12.5vw;
}


.container-90 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(15px + 1vw);
    padding-right: calc(15px + 1vw);
}

.max-300 {
    max-width: 300px;
}

.max-450 {
    max-width: 450px;
}

.max-550 {
    max-width: 550px;
}

.max-650 {
    max-width: 650px;
}

.roundedSection_top {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.roundedSection {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.negativeSection {
    margin-top: -25px;
}


/*================================
IMAGES
================================== */
.rounded-2 {
    border-radius: 16px;
}


/*================================
Owl
================================== */

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}



/*================================
NAV BAR
================================== */
@keyframes fadeInNav {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
      top: -25px;
    }
    100% {
      opacity: 1;
      top: 0;
    } 
  }
  
nav {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    animation: 2s fadeInNav ease;
}

.nav__bar {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    margin-left: calc(15px);
    margin-right: calc(15px);
}

.nav__left {
    width: 50%;
}

.nav__right {
    display: flex;
    justify-content: space-between;
    width: 50%;
}


.nav_bar_brand a {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.nav_bar_brand img {
    width: 160px;
}
.nav_bar_brand .company_name {
    position: relative;
    font-size: 110%;
color: #0F126B;
font-weight: bold;
margin-top: 5px;
    display: inline-block;
}


.nav__bar_tel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: navy;
    border-radius: 12px;
    padding: .75rem 1rem;
    color: #fff;
}
.nav__bar_tel:hover {
    color: #879eb4;
}


.nav__icon__wrapper {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    z-index: 2;
}

.nav__icon__text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--color-blue);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav__icon__lines {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}


.nav__icon__lines span {
    display: block;
    background-color: var(--color-blue);
    height: 2px;
    width: 45px;
    margin-bottom: 5px;
    z-index: 4;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


  
.nav__icon__lines span:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
.nav__icon__lines span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
.nav__icon__lines span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    margin-bottom: 0;
  }
  
.nav__icon__lines.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(20deg);
    top: -3px;
    left: 8px;
  }
  
.nav__icon__lines.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
.nav__icon__lines.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-20deg);
    top: 39px;
  }
  
  .overlay {
    width: 100%;
    height: 100vh;
    background-color: #083cf760;
    backdrop-filter: blur(15px);  
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    display: flex;
    align-items: center;
  
  }
  
  .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  
  .overlayContent {
    margin-top: 35px;
  }

  .nav_links_wrapper {
    background: #e2e3e6;
    border-radius: 10px;
    padding: calc(15.71429px + .42857vw) calc(21.42857px + 0.79832vw);
  }

  .nav_links_title {
    padding-bottom: calc(20.14286px + 4.05042vw);
    border-bottom: 1px dashed #0426a0;
  }

  .nav_link_item {
    position: relative;
    font-size: clamp(16px, 24 / 1440* 100vw, 24 / 1440* 100vw);
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 15px; 
    transition: transform 0.2s ease;
    overflow: hidden;
    border-bottom: 1px dashed #0426a0;
  }

  .nav_links_copyright {
    margin-top: calc(20.14286px + 4.05042vw);
    margin-bottom: 0 !important;
  }

/*================================
INDEX PAGE
================================== */

.homeHeader {
    background: linear-gradient(rgba(0, 6, 17, 0.8), rgba(0, 2, 10, 0.8)), url(/images/header_gradient.jpg) center center / cover no-repeat; 
    z-index: 4;
    min-height: 100vh;
    padding-top: 15px;
    display: flex;
    align-items: center;
}
.homeHeader::beforee {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60%;
    width: 25%;
    background: url(/images/kenworld_founder.webp) center center / cover no-repeat;
    z-index: 2;
}
.homeHeader img {
    text-align: center;
}

.homeHeader_text {
    width: 40%;
    color: var(--color-gold);
}


.homeHeader_text p {
    text-transform: uppercase;
    font-weight: 700;
}

.homeHeader h1 {

    color: #fff;
    letter-spacing: 3rem;
    text-transform: uppercase;
}

.introBox {
    position: relative;
    background-color: #00f;
    margin-bottom: -150px;
    z-index: 2;
}


.header_wrapper-content {
    height: 100%;
    margin: 15px;
    padding: 15px;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.headerLogo {
    width: calc(100px + 3.5vw);
    margin-bottom: 20px;
}


.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    background-color: #000;
    border-radius: 20px;
    position: relative;

  }

  .scroll-icon::before {
    content: '';
    width: 6px;
    height: 6px;
    background: blue;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.8s infinite;
  }

  @keyframes scroll {
    0% {
      opacity: 0;
      transform: translate(-50%, 0);
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
    100% {
      opacity: 0;
    }
  }

.statsWrapper {
    display: flex;
    gap: 1px;
}

.statsBox {
    background-color: #ece8e3;
    width: 50%;
    padding: 1rem;
}

.statsBox_icon {
    background-color: #fff;
    height: 4rem;
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    margin-bottom: 25px;
}

.statsBox_icon img{
    height: 2rem;
    width: 2rem;
}

.centerBanner {
    background: linear-gradient(rgba(0, 1, 14, 0.5), rgba(1, 1, 121, 0.5)), url(/images/center_banner.avif) center center / cover no-repeat;
    z-index: 4;
    min-height: 100vh;
}

.centerBanner_text {
    min-height: 40vh;
    padding-top: 2rem;
    padding-left: 15px;
    padding-right: 15px;
}

.homeServices_item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    padding: calc(1rem + .5vw);
    border: 1px solid rgba(10, 6, 243, 0.137);
    min-height: 26rem;
    overflow: hidden;
    background: #cdcecf;

}

.homeServices_item h3 {
    color: #fff;

}

.homeServices_itemIcon {
    position: absolute;
    content: "";
    bottom: 15px;
    right: 15px;
    height: 2rem;
    width: 2rem;
    background-color: transparent;
}
.homeServices_itemIcon::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 7px;
    width: 100%;
    background-color: #fff;
}
.homeServices_itemIcon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 7px;
    background-color: #fff;
    transition: all 400ms;

}

.homeServices_item:hover {
    border-color: #021350;
    box-shadow: 0 6px 14px rgba(0, 32, 54, 0.08);
}

.hiddenText {
    position: absolute;
    content: "";
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0426a0;
    color: #fff;
    padding: calc(1rem + .5vw);
    transition: all 400ms
  }


.hiddenText span {
    display: block;
    height: 2px;
    width: 40px;
    background-color: #fff;
    margin-top: 35px;
}
  
.homeServices_item:hover .hiddenText {
    bottom: 0;
    transition: all 400ms
  }

/* 
.hiddenText {
    display: none;
    opacity: 0;
    transition: all 400ms;
  }
  
.homeServices_item:hover .hiddenText {
    display: block;
    opacity: 1;
    transition: display 0.10s allow-discrete, opacity 0.10s;
    @starting-style {
        opacity: 0;
      }
  }


*/

.homeServices_item:hover .homeServices_itemIcon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    height: 100%;
    width: 7px;
    background-color: #fff;
}













.homeApproach {
    list-style: none;
}
.homeApproach li {
    color: #bbbaba;
    border-bottom: 1px solid #3d3d3d;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.homeApproach li span {
    background-color: #00f;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 15px;
}


.homeServices_banner {
    background: linear-gradient(rgba(0, 1, 14, 0.5), rgba(1, 1, 121, 0.5)), url(/images/519.jpg) center center / cover no-repeat;
    z-index: 4;
    height: 100%;
    border-radius: 12px;
}

.homeService_wrapper {
    background: #3d3d3d;
    padding: 1rem;
    border-radius: 12px;
}

.homeService_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #1d1d1d;
    padding-bottom: calc(15px + .5vw);
    margin-bottom: calc(15px + 1vw);
}
.homeService_item h4 {
    color: #fff;
    margin-bottom: 0;
}

.homeService_itemNumber {
    display: inline;
    font-family: 'Serrif Compressed';
    font-size: calc((4.55 - 1) * 4.5px + 13.0688px);
    color: #4999ff;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    width: calc(45px + .95vw);
}







/* SERVICES PAGE */

  .title-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    padding: 1rem;
    border: 1px solid #585858;
    height: 100%;
  }
  .title-group h4 {
    color: rgba(255, 255, 255, .8);
  }
  .title-group p {
    color: rgba(255, 255, 255, .6);
  }

  .title-group:hover {
    border-color: #999999;
    box-shadow: 0 6px 14px rgba(0, 32, 54, 0.08);
  }

  .servicesNumber {
    font-size: 20px;
    color: rgba(0, 0, 255, 0.61);
    margin-bottom: calc(35px + 3.5vw);
  }

  .service-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
  }
  .serviceIcon {
    max-width: 3.125rem;
    margin-bottom: 35px;
}

.linkIcon_text {
    color: var(--color-gold);
}

.linkIcon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #3d3d3d;
    padding-top: 15px;
    margin-top: 25px;
}

.linkIcon_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffffa1;
    width: 30px;
    height: 30px;
}





  .service-sub-line {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c7da0;
    background: #eef2fa;
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-top: 0.2rem;
  }




































































































.home_services_item h4 {
    font-size: calc(16.28571px + .45613vw);
    margin-top: calc(15px + 0.95vw);
}

.home_services_item_footer a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dotted #777;
    padding-top: 15px;
    margin-top: calc(15px + 1.95vw);
    padding-bottom: 20px;
    font-weight: bold;
    transition: all 400ms;
}

.home_services_item_footer span {
    height: 35px;
    width: 35px;
    background-color: blue;
    border-radius: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
    margin-top: 10px;
    transition: all 400ms ease-in-out;
}
.home_services_item_footer img {
    height: 15px;
    width: 15px;
    filter: invert(1);
}

.home_services_item_footer a:hover {
    background-color: #000014;
    border-top: 2px dotted #000;
    color: #fff;
    padding-left: 8px;
    padding-right: 8px;
}


/*================================
About Us Page
================================== */

.about__header {
    position: relative;
    padding-top: 60px;
}
.about_header_content {
    background: linear-gradient(rgba(0, 1, 14, 0.5), rgba(0, 1, 7, 0.5)), url(/images/alumium_doors.webp) center center / cover no-repeat;
    display: flex;
    align-items: end;
    justify-content: space-around;
    min-height: 80vh;
    border-radius: 16px;
    padding: 1rem;

}

.about_header_bg {
    height: 100%;
    background: url(/images/aluminium-windows-banner.webp) center center / cover no-repeat;
}




/*================================
Contact Us Page
================================== */

.contact_header_content {
    background: linear-gradient(rgba(0, 1, 14, 0.5), rgba(0, 1, 7, 0.5)), url(/images/contact-us.webp) center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 16px;
    padding: 1rem;
}



.contact__details-container {
    padding: calc(21.42857px + 0.79832vw) calc(15px + .52857vw);
    backdrop-filter: blur(15px);
}

.contact__details-item {
    display: flex;
    border-top: 1px solid #777;
    gap: calc(3rem + 2.5vw);
    padding-top: 35px;
    padding-bottom: 15px;
    margin-bottom: calc(15px + .79832vw);
}
.contact__details-item:first-child {
    border-top: none;
    margin-top: 35px;
}

.google_map {
    border: none;
    border-radius: 16px;
}

.contact__details-container h3 {
    font-size: 140%;
    color: #00f;
    margin-bottom: 10px;
}
.contact__details-container span {
    display: inline-block;
    margin-top: 5px;
}
.contact__details-container p {
    margin-top: 0;
    line-height: 1.5;
}

.form__wrapper {
    background-color: #fff;
    padding: calc(21.42857px + 0.79832vw) calc(15px + .52857vw);
}

.form__wrapper .form-control {
    padding: 20px 0;
    margin-bottom: 20px;
    border-style: none none solid;
    border-bottom: 1px solid #b2bedb;
    border-radius: 0;
    color: #030683;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.4s ease-in-out;
}

/* ==========================
FOOTER
=============================*/

footer {
    background-color: var(--color-black);
}

.footerCTA {
    background-color: #00f;
    padding: 1rem;
}
.footerCTA h2 {
    font-size: calc((3.05 - 1) * 1.2vw + 1rem);
}


.footerButton {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2px;
    align-items: center;
    font-size: 110%;
    box-shadow: none;
    background-size: 200% auto;
    transition: all 400ms linear;
}

.footerButton_text {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 2rem;
    z-index: 2;
}

.footerButton_icon {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    height: 4rem;
    width: 4rem;
    margin-left: 1px;
    z-index: 2;
}

.footerButton_icon i {
    font-size: 200%;
}

.footerButton::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.footerButton:hover::before {
    width: 100%;
}

.footerLine {
    height: 1px;
    background-color: #fafafa;
    margin-bottom: 32px;
}


.footerContent {
    padding: 1rem;
    list-style: none;
    color: rgba(255, 255, 255, 0.3);
}

.footerCTA {
    padding-top: calc(20px + 2.5vw);
    padding-bottom: calc(20px + 2.5vw);
}

.footerContent h4 {
    color: #f1f2ff;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.footerContent_links {
    list-style: none;
    color: rgba(255, 255, 255, 0.3);
}

.footerCopyright {
    margin-top: calc(35px + 2.5vw);
}

.footerBrand {
    font-family: 'Serrif Compressed';
    font-size: calc((8.55 - 1) * 1.2vw + 1rem);
    display: flex;
    justify-content: space-between;
    color: #808080;
    padding: 1rem;
}









/*================================
Media Queries
================================== */

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {


    .w-75 {
        width: 100% !important;
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    body {
        font-size: calc(15px + 2*(100vw - 320px)/1600);
    }

    h1 {
        font-size: calc((5.25 - 1) * 1.2vw + 1rem);
        line-height: 1;
    }
    h2 {
        font-size: calc((3.55 - 1)* 1.2vw + 1rem);
    }

    .h2 {
        font-weight: 400;
        line-height: 1.1;
    }

    .nav_bar_brand .company_name {
        font-size: 90%;
        color: #0F126B;
        font-weight: bold;
        margin-top: 2px;
        display: inline-block;
    }
    .nav__left {
        width: 70%;
    }

    .nav__right {
        width: 30%;
        justify-content: flex-end;
    }

    .nav__icon__wrapper {
        gap: .35rem;
    }

    .nav__icon__text {
        font-size: 90%;
        font-weight: bold;
        margin-top: 3px;
    }

    .nav__icon__lines span {
        height: 2px;
        width: 30px;
        margin-bottom: 3px;
    }

    .nav__tel {
        display: none;
    }

    .home_services_item h4 {
        font-size: calc(20.28571px + .45613vw);
    }

    footer {
        padding-top: 15px;
    }

    .footerCTA {
        text-align: center;
        padding-top: calc(35px + 2.5vw);
        padding-bottom: calc(35px + 2.5vw);
    }

    .footerContent h4 {
        text-align: center;
    }
    .footerContent p {
        text-align: center;
    }
   
    .footerContent_links {
        text-align: center;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    .container-90 {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-left: auto;
        margin-right: auto;
        }

    .content-reverse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .content-reverse-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }  

    .menu{
        right: -100vw;
        width: 93vw
    }

    .menu_btn{
        padding-top: 2.5px;
    }

    .header__slider-container-small-img-1 {
        position: absolute;
        left: 80px;
        top: calc(-35px - 4.5vw);
    }
    .header__slider-container-small-img-2 {
        position: absolute;
        left: 20%;
        bottom: -30px;
    }


    .global__header-content {
        padding-top: calc(57px + 5vh);
    }
    
    .negative__header-image {
        margin-bottom: 50px;
    }

   

    
}