/* https://www.icontower.com/wp-content/themes/icontower/style.css?ver=css-1.05 */
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/css-reset.css */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/base.css */
/*Base styles*/
@font-face{font-display:swap;
    font-family: 'px_groteskitalic';src:url(/wp-content/themes/icontower/css/font/px-grotesk-italic-webfont.woff) format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face{font-display:swap;
    font-family: 'px_groteskregular';src:url(/wp-content/themes/icontower/css/font/px-grotesk-regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --main-color: #1D386B;
    --secondary-color: #80A1CA;
    --site-black: #3B3A3A;
    --white: #ffffff;
    --main-font: 'px_groteskregular',sans-serif;
  }

* {
    margin: 0;
    padding: 0;
}
html,body {
    font-size: 16px;
    font-family: 'px_groteskregular',sans-serif;
    line-height:1.51;
}
body {
    min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
    line-height: 0;
}

/** Font Styles **/
h1, h2, h3, h4, h5, h6 {
 font-weight: bold;
}

h2 {
    font-size:3.4374rem; /* 55px */
    color: var(--main-color);
    text-transform: uppercase;
	padding-right:10px;
	padding-left:10px;
}

h3 { 
    font-size: 1.5rem; /* 24px */ 
    color: var(--site-black);
} 

p, li {
    font-size: 1.125rem; /* 18px */;
    color: var(--site-black);
}

a {
    font-size: 1.125rem; /* 18px */;
    color: var(--main-color);
    font-weight:bold;
    text-decoration: none;
    transition:.3s;
}

a:hover {
    color:var(--secondary-color);
    transition:.3s;
}

/** Universal Styles **/

.underlined-title:after {
    content:" ";
    position:relative;
    width:120px;
    height:10px;
    background: var(--secondary-color);
    display: block;
    margin:10px auto 60px auto;
}

.left-underline:after {
    margin:10px 0 30px 0;
}

.text-center {
    text-align: center;
}

.content-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.cta {
    background: var(--main-color);
    color: var(--white);
    padding:10px 20px;
    text-decoration: none;
    transition:.3s;
}

.cta:hover {
    background:var(--secondary-color);
    transition:.3s;
}

.content-container {
    width: min(100% - 50px, 840px);
    margin-inline: auto;
    padding: 50px 25px;
    line-height: 1.51;
}

.content-container h1 {
    font-size:3.275rem; /* 55px */
    color: var(--main-color);
}

.content-container ul {
    margin: 40px 50px; 
}

.page-content {
    padding-top:70px;
}

.footer {
 background:var(--main-color);
 margin-top: auto;
}

@media screen and (max-width: 959px) {
    html,body {
        font-size: 15px;
    }
    .page-content {
        padding-top: 65px;
    }
}

@media screen and (max-width: 620px) {
    html,body {
        font-size: 14px;

    }

    .content-container h1 {
        font-size:3rem; /* 55px */
        color: var(--main-color);
    }
}

@media screen and (max-width: 420px) {
    html,body {
        font-size: 13px;

    }
    .content-container h1 {
        font-size:2.5rem; /* 55px */
        color: var(--main-color);
    }
}
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/hamburger.css */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
 .hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; }
    .hamburger:hover {
      opacity: 0.7; }
    .hamburger.is-active:hover {
      opacity: 0.7; }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
      background-color: #000; }
  
  .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative; }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; }
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
      width: 40px;
      height: 4px;
      background-color: #000;
      border-radius: 4px;
      position: absolute;
      transition-property: transform;
      transition-duration: 0.15s;
      transition-timing-function: ease; }
    .hamburger-inner::before, .hamburger-inner::after {
      content: "";
      display: block; }
    .hamburger-inner::before {
      top: -10px; }
    .hamburger-inner::after {
      bottom: -10px; }
  
  
  
  /*
     * Slider
     */
  .hamburger--slider .hamburger-inner {
    top: 2px; }
    .hamburger--slider .hamburger-inner::before {
      top: 10px;
      transition-property: transform, opacity;
      transition-timing-function: ease;
      transition-duration: 0.15s; }
    .hamburger--slider .hamburger-inner::after {
      top: 20px; }
  
  .hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--slider.is-active .hamburger-inner::before {
      transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
      opacity: 0; }
    .hamburger--slider.is-active .hamburger-inner::after {
      transform: translate3d(0, -20px, 0) rotate(-90deg); }
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/header.css */
.site-header {
    background:var(--main-color);
    height:80px;
    padding:5px;
    width:100%;
    display:flex;
    flex-direction: row;
    position: fixed;
    z-index:9999;
}

.header-content {
    width: min(100% - 25px, 62.5rem); /* width: 100%, , padding 25px, max-width:1240px */
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width:320px;
    height:auto;
    display: block;
}

.logo img {
    width:320px;
    height:auto;
    display: block;
}

.logo-dev {
    width:260px;
    height:auto;
    display: block;
}

.logo-dev img {
    width:260px;
    height:auto;
    display: block;
}
.main-nav {
    display: flex;
    flex-direction: row;
    margin:0;
    padding:0;
    list-style-type: none;
    align-items: flex-end;
    padding-bottom:10px;
    height:80px;
}
.main-nav .menu-item {
    padding:0 10px;
}
.main-nav .menu-item a {
    font-family: var(--main-font);
    font-weight:normal;
    color: var(--white);
    text-transform: uppercase;
    font-size: 1rem;
}

.main-nav .menu-item a:hover {
    color: var(--secondary-color);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color:var(--white);
    width:30px;
    height:3px;
}
.hamburger {
    display: none;
    z-index:9999;
    background-color: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger-box {
    width:30px;
    height:22px;
}

.hamburger.is-active .hamburger-inner, 
.hamburger.is-active .hamburger-inner::before, 
.hamburger.is-active .hamburger-inner::after {
    background-color:#ffffff;
}

.mobile-menu {
    position:fixed;
    width:100%;
    height:100%;
    background-color: var(--main-color);
    opacity:0;
    visibility: hidden;
    transition:.2s;
    display: flex;
    align-items: center;
    justify-content: center;z-index:9999;
}

.mobile-menu .mobile-nav {
    list-style-type: none;
    margin:0;
    padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.mobile-nav .menu-item {
    padding:10px;
    
}
.mobile-nav .menu-item a {
    color:var(--white);
    font-weight:normal;
    font-size:1.2rem;

}
.mobile-active {
    opacity:1;
    visibility: visible;
    transition:.2s;
}

.banner {
    width:100%;
    height:100%;
    position: relative;
    margin-bottom:0px;
    display: flex;
    align-items: center;
}

.banner-title-container {
    position: absolute;
    width: min(100%, 520px);
    margin-top:80px;
    z-index:99;
}
.banner-title-container h1 {
    padding: 10px 30px;
    background:linear-gradient(90deg, rgba(29,57,107,1), rgba(29,57,107,.8));
    border-radius: 0 0 30px 0;
    border-top:10px solid var(--secondary-color);
    font-size: 1.75rem;
    color:var(--white);
    font-weight:normal;
    line-height: 1.41;
}

.banner-title-container button {
    width:100%;
    max-width:90%;
    background: rgba(255,255,255,.9);
    border-radius: 0 0 30px 0;
    border:0;
    color: #2a2a2a;
    padding:12px 20px;
    text-align: center;
    font-weight:bold;
    transition: .3s;
    display: block;
    font-family: var(--main-font);
}

.banner-title-container button:hover {
    background: rgba(159,178,216,.9);
    transition: .3s;
    cursor:pointer;
}
.banner-title-container h1 strong {
    font-weight:bold;
}

  .header-video {
    overflow: hidden;
    max-width:100%;
    width:100%;
    height:725px;
    top:0;
    object-fit:cover;
    object-position: 50% 0;

  }

  .banner-title, .banner-button {
    visibility: none;
  }

@media screen and (max-width: 959px)  {
    .header-video {
        max-width:100%;
        width:100%;
        height:450px;
        object-fit:cover;
        object-position: 50% 0;
    
    }
    .banner-title-container {

        width: min(100%, 490px);
    }
    .banner-title-container h1 {
        padding: 10px 40px;
        font-size: 1.65rem;
    }
    .hamburger {
        display: block;
    }
    .desktop-menu { display: none;}

    .logo {
        width:220px;
        height:auto;
        display: block;
    }
    
    .logo img {
        width:220px;
        height:auto;
        display: block;
    }
    .map {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 80%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
      }

      .site-header {
        background:var(--main-color);
        height:55px;
        padding:5px;
        width:100%;
        display:flex;
        flex-direction: row;
        position: fixed;
    }
    .mobile-nav .menu-item a {
        font-size:1.5rem;
    }
}

@media screen and (max-width: 620px) {
    html,body {
        font-size: 14px;

    }
    .mobile-nav .menu-item a {
        font-size:1.5rem;
    }
    .banner-title-container {
        
        width: min(100%, 390px);
    }
    .banner-title-container h1 {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    .banner-title-container button {
        padding:8px 20px;
    }
}

@media screen and (max-width: 420px) {
    html,body {
        font-size: 13px;
    }

    .banner-title-container {
        
        width: min(100%, 340px);
    }
    .banner-title-container h1 {
        padding: 10px 15px;
        font-size: 1.40rem;
    }
    .mobile-nav .menu-item a {
        font-size:1.5rem;
    }
}



.map {
    position: relative;
    overflow: hidden;
    width: min(100%);
    padding-top: 360px; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    margin-bottom:40px;
  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/contact.css */
.gform_confirmation_message {
    color: green;
    font-weight:bold;
    margin-top:50px;
}

.contactSection {
 width: min(100% - 30px, 960px);
 padding: 75px 15px;
 margin-inline: auto;
}

.h2Line {
    width: 116px;
    height:10px;
    background-color:var(--secondary-color);
    margin:auto;
}
.contact-row {
    display: flex;
    justify-content: space-between;
    width:100%;
}


.contact-column-left {
    width: 50%;
    padding: 0 25px;
}
.contact-column-right {
    width:40%;
    padding: 0 25px;
}
.columnFooterLeft {
    width:40%;
    padding-left:10px;  
}

.columnFooterRight {
    float:left;
    width:55%;
}

.footerSection {
    max-width: 950px;
    margin:auto;
    padding: 20px 0px 30px 0px;
}

.footerList a {
    color: #ffffff;
    font-size:12px;
    text-decoration:underline;
    font-weight:100;
}

.footerList {
    color: #ffffff;
    font-size:12px;
}

.contact-links {
    font-weight:normal;
}

.contact-form {
    max-width:440px;
    width:100%;
}
.gform_footer {
    display: flex;
    justify-content: flex-end;
}
.contact-form label {
    font-size:.9375rem;
    font-weight:normal;
    color:var(--main-color);
    margin-bottom:.5rem;
    margin-top:.5rem;
    display: block;
}

.hidden_label {
	display:none;
}
.contact-form input,
.contact-form textarea {
    background:#f7f7f7;
    border: 1px solid #555555;
    padding:3px 3px 3px 4px;
    font-size:.825rem;
    width:100%;
    box-sizing: border-box;
}
.contact-form input {
    height:30px;
    font-family: 'Montserrat', sans-serif;
}
.contact-form textarea {
    height:125px;
}
.contact-form input:hover,
.contact-form input:focus,
.contact-form textarea:hover,
.contact-form textarea:focus  {
    background:#c6c6c6;
    border:2px solid #555555;
    box-sizing: border-box;
    outline: None;
}

 {

}

.contact-form  .gform_button {
    background: var(--main-color);
    color: var(--white);
    height:40px;
    width:150px;
    text-decoration: none;
    transition:.2s;
    border-radius:7px;
    border:0;
    font-size: 1rem;
}

.contact-form  .gform_button:hover {
    background:var(--secondary-color);
    transition:.2s;
}

.gform_heading {
    display:none !important;
}

.head2 {
 color:var(--main-color);
 font-weight:bold;
 margin-bottom:15px;
}
.head3 {
    font-weight:normal;
    margin-bottom:25px;
}

.thanks-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
}
.thanks-content {
    width: min(100% - 40px, 720px);
    padding:30px 20px;
    background: #efefef;
    border-radius:15px;
    text-align:center;
    margin-top:200px;
}

.thanks-content .button {
    margin-top:30px;
    background: var(--main-color);

    padding:10px 20px 5px;
    color:#ffffff;
    display: inline-block;
    border-radius:15px;
}

.thanks-content .button:hover {
    margin-top:30px;
    background: var(--secondary-color);
}



@media screen and (max-width: 619px) {
    .contact-row {
        flex-direction: column;
        justify-content: center;
    }
    .contact-column-left,
    .contact-column-right {
        width: min(100% - 50px)
    }
    .contact-column-left {
        margin-bottom:40px;
    }
}
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/services.css */
#services {padding-top:50px;}

.servicesSection {
 width: min(100% - 20px, 960px);
 margin-inline: auto;
}
.serviceRow {
  display: flex;
  flex-direction: row;
  margin-bottom:25px;
}
.serviceColumn {
  width: 50%;
}

.column4 {
 width: min(25% - .9375rem);
 padding:0px .46875rem;
 display: flex;
 flex-direction: column;
 margin-bottom:30px;

}

.textColumn4 {
  background-color:var(--main-color);
  border-bottom-right-radius: 25px;
  padding:20px;
  display: flex;
  flex-direction: column;
  flex:1;
}
.service-img {
    padding:0;
    margin-bottom:0px;
}
.row4 {
    flex-wrap: wrap;
    padding-top:100px;
}
.row4, .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.row4 p, .row4 h3 {
 color: #ffffff;
}

.row4 img {
width:100%;
height:auto;
}

.h2Line {
 width: 116px;
 height:10px;
 background-color:var(--secondary-color);
 margin:auto;
}

.servicesIcon {
 width: 100%;
 max-width:425px;
 height: auto;
 display: block;
 margin: 25px auto;
 padding-left:15px;
}


@media screen and (max-width: 992px) {
  .column4 {
    width: min(45% - 30px);
    padding-right:15px;
    padding-left:15px
  }
}

@media screen and (max-width: 820px) {
  .servicesIcon {
    width: 100%;
    max-width:300px;
    height: auto;
    padding-top:25px;
    padding-left:0;
   }
   .serviceRow {
    display: flex;
    flex-direction: column;
    margin-bottom:25px;
    justify-content: center;
  }
  .img-container {
    text-align: center;
  }
  .serviceColumn {
    width: min(100% - 40px);
    padding:0 20px;
  }
  .service-p {
    padding: 0 20px;
  }
  .flex-center {
    width: min(100%, 460px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }

  .containAboutText {
  padding: 50px 10px 0px 10px;
  }

  .column4 {
    width:100%;
    max-width:400px;
    margin-inline: auto;
    margin-bottom:50px;
  }

  .servicesIcon {
    max-width:200px;
    width:100%;
    height:auto;
    padding-left:0;
  }
}
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/vendors.css */
#vendors {
    background-color: #f5f5f5;
}

.vendorSection {
    width: min(100% - 40px, 960px);
    padding: 75px 20px;
    margin-inline: auto;
   }
   
   .h2Line {
       width: 116px;
       height:10px;
       background-color:var(--secondary-color);
       margin:auto;
   }
   .vendor-row {
       display: flex;
       justify-content: center;
       width:100%;
       display: flex;
    flex-direction: row;
   }

   .vendor-row p {
    padding-bottom:25px;
   }
   
   .vendor-row .contact-form {
    margin-inline: auto;
   }
   
   .vendor-column-left {
       width: 55%;
       padding: 25px 20px 35px 0px;
       display:flex;
       flex-direction: column;
   }
   .vendor-column-right {
    width: 45%;
    display:flex;
    flex-direction: column;
}
   
   .vendor-links {
       font-weight:normal;
   }
   
   .vendor-form {
       max-width:440px;
       width:100%;
   }
   .gform_footer {
       display: flex;
       justify-content: flex-end;
   }
   .vendor-form label {
       font-size:.9375rem;
       font-weight:normal;
       color:var(--main-color);
       margin-bottom:.5rem;
       margin-top:.5rem;
       display: block;
   }
   .vendor-form input,
   .vendor-form textarea {
       background:#f7f7f7;
       border: 1px solid #555555;
       padding:3px 3px 3px 4px;
       font-size:.825rem;
       width:100%;
       box-sizing: border-box;
   }
   .vendor-form input {
       height:30px;
       font-family: 'Montserrat', sans-serif;
   }
   .vendor-form textarea {
       height:125px;
   }
   .vendor-form input:hover,
   .vendor-form input:focus,
   .vendor-form textarea:hover,
   .vendor-form textarea:focus  {
       background:#c6c6c6;
       border:2px solid #555555;
       box-sizing: border-box;
       outline: None;
   }
   
 #vendors .underlined-title:after {
    margin-bottom:40px;
 }
   
   .vendor-form  .gform_button {
       background: var(--main-color);
       color: var(--white);
       height:40px;
       width:150px;
       text-decoration: none;
       transition:.2s;
       border-radius:7px;
       border:0;
       font-size: 1rem;
   }
   
   .vendor-form  .gform_button:hover {
       background:var(--secondary-color);
       transition:.2s;
   }
   
   .gform_heading {
       display:none !important;
   }
   
   .head2 {
    color:var(--main-color);
    font-weight:bold;
    margin-bottom:15px;
   }
   .head3 {
       font-weight:normal;
       margin-bottom:25px;
   }
   
   .gform_validation_error_link {
        font-size:12px;
        color: red;
   }

   .gform_submission_error {
    font-size:14px;
    text-transform:none !important;
    color:red;
   }
   .gform_validation_errors ol {
    display:none;
   }
   .validation_message {
    font-size:11px;
    font-weight:bold;
    color:red;
   }

   @media screen and (max-width: 619px) {
       .vendor-row {
           flex-direction: column;
           justify-content: center;
       }
       .vendor-column-left,
       .vendor-column-right {
           width: 100%;
           justify-content: center;
           align-items: center;
       }
       .vendor-column-left {
        padding-bottom:0;
        padding-top:0;
        text-align: center;
       }

   }
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/developers.css */
.h2LineLeft {
    width: 116px;
    height:10px;
    background-color:var(--secondary-color);
   }
   
   
   .developersTextContainer {
       display: flex;
       flex-direction: row;
       width:100%;
   }
   
   .developers-parallax {
     background-image: url("/wp-content/uploads/2024/02/cell-tower-developers_1_1_1.jpg");
     background-position: top center;
     background-repeat: no-repeat;
     background-size: cover;
     
   }
   .mobiledevelopersBG {
       background-image: url("/wp-content/uploads/2024/02/cell-tower-developers_1_1_1.jpg");
     background-position: bottom center;
     background-repeat: no-repeat;
     background-size: cover;
       display:none;
        width:50%;
        flex:1;
   }
   .developersNumberColumns {
       width: min(33% - 80px);
       padding:0px 40px;
       margin-bottom:40px;
   }
   .developersNumbersBg {
       background:var(--main-color);
       padding: 70px 10px;
   }
   .developersNumbers {
       display: flex;
       flex-wrap: wrap;
       flex-direction: row;
       width: min(100% - 20px, 960px);
       margin-inline:auto;
       justify-content: center;
   }
   
   .bigWhiteNumber {
    font-weight:bold;
    color:#ffffff;
    font-size:3.75rem;
    text-align:center;
    line-height:normal;
    padding-bottom:30px;
   }
   
   .developersNumbersText {
    color:#80A1CA;
    font-size:1.375rem;
    text-align:center;
    line-height:1.41;
   padding:0;
   }
   
   .borderBoxDouble, .borderBoxRight {
    position:relative;
    border-color: #ffffff;
   }
   
   .borderBoxDouble:after, .borderBoxDouble:before {
       position: absolute;
       content:" ";
       display: block;
       height:125px;
       width:2px !important;
       background-color: white;
       top:50%;
       transform: translateY(-50%);
   }
   
   .borderBoxDouble:after {
       right:0;
   }
   .borderBoxDouble:before {
       left:0;
   }
   
   .borderBoxRight:before {
       position: absolute;
       content:" ";
       display: block;
       height:125px;
       width:2px !important;
       background-color: white;
       top:50%;
       transform: translateY(-50%);
       right:0;
   }
   
   #developersColumnLeft, #developersColumnRight { 
    display: flex;
    justify-content: flex-start;
    width:50%;
    flex:1;
   }
   
   .containdevelopersText {
   padding:60px 30px 70px 40px;
    width: min(100% - 40px, 435px);
   }
   
   .developersNumbers {
    max-width:960px;
    margin:auto;
   }
   
   #numbersRow2 {
    padding-top:50px;
   }


.developers-btn {
	background: var(--main-color);
    color: var(--white);
    width: 150px;
    text-decoration: none;
    transition: .2s;
    border-radius: 7px;
	padding:10px 15px 8px;
	text-align: center;
    border: 0;
    font-size: 1rem;
	font-weight:normal;
	margin-top:30px;
	display:block;
}
.developers-btn:hover {
	color: var(--main-color);
	background:#ffffff;
	transition:.2s;
}

.dev-link:hover {
	color: var(--main-color);
}

   @media screen and (max-width: 1024px) {
   
       .alter {
           display: none;
       }
       .developers-parallax {
           background-image: url("/wp-content/uploads/2024/02/cell-tower-developers_1_1_1.jpg");
           background-attachment: unset !important;
           background-position: top center;
           background-repeat: no-repeat;
           background-size: cover;
           display:none;
       }
   }
   @media screen and (max-width: 900px) {
       .developersNumberColumns {
           width: min(50% - 80px);
           padding:0px 40px;
           margin-bottom:40px;
       }
   
       .borderBoxDouble:after, .borderBoxDouble:before, .borderBoxRight:before { display: none; }
   
       .developersNumbers {
       display: flex;
       flex-wrap: wrap;
       flex-direction: row;
       justify-content: center;
       }
   }
   
   
   
   @media screen and (max-width: 800px) {
   
   .containdevelopersText {
    padding: 50px 10px 0px 10px;
   }
   
   }
   
   @media screen and (max-width: 620px) {
       .developersTextContainer {
           display: block;
           flex-direction: column;
       }
       #developersColumnLeft, #developersColumnRight {
           width:100%;
       }
       #developersColumnLeft {
           min-height: 300px;
           height:300px;
           width:100%;
           display:none;
       }
	   #developersColumnLeft {
    display:none;
   }
   .mobiledevelopersBG {
       display:flex;
       width:100%;
   }
       .mobiledevelopersBG {
           position:relative;
           background: url("/wp-content/uploads/2024/02/cell-tower-developers_1_1_1.jpg");
           height:300px !important;
           width:100%;
           background-size: cover;
           display:block;
           text-align:center;
       }
       .containdevelopersText {
           display:flex;
           padding:50px 20px 50px 20px;
           width: min(100% - 40px);
           flex-direction: column;
           align-items: center;
		   text-align:center;
       }
       .containdevelopersText .left-underline:after {
           margin-left:auto;
           margin-right:auto;
       }
       .containdevelopersText p {
           text-align:center;
       }
       .developersNumberColumns {
           width: min(50% - 40px);
           padding:0px 20px;
       }
   
       #borderBox {
       border-style: none;
       }
   
       .developersNumbersText {
       padding: 0px 10px 30px 10px;
       }
   
       #numbersRow2 {
       padding-top: 0px;
       }
   
       
   
   }
   
   @media screen and (max-width: 520px) {

       .developersNumbers {
           flex-direction: column;
           align-items: center;
       }
       .developersNumberColumns {
           width: min(75% - 40px);
           padding:0px 20px;
       }
   }
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/why.css */
.whySection {
    width: min(100%, 960px);
    margin-inline: auto;
 padding: 75px 0px 70px 0px;
}
.whySection h2 {
    text-transform:unset;
}
.rowWhy {
    display: flex;
    flex-direction: row;
}
.imgBlock {
 width:20%;
 text-align:right;
 padding: 5px 30px 0px 0px;
}

.imgBlock2 {
 width:20%;
 text-align:right;
 padding: 30px 30px 0px 0px;
}

.columnWhySmall {
  padding: 10px 0px 50px 0px;
  width: 635px;
}

.whyList {
 padding-left:35px;
 list-style-type:disc;
}

.whyIcon1 {margin-top:0px;}
.whyIcon2 {margin-top:30px;}
.whyIcon3 {margin-top:20px;}
.whyIcon4 {margin-top:25px;}
.whyIcon5 {margin-top:0px;}
.whyIcon6 {margin-top:6px;}

@media screen and (max-width: 870px) {
    .rowWhy {
        width: min(100% - 30px, 520px);
        padding-left: 15px;
        padding-right:15px;
        flex-direction: column;
        justify-content: center;
        margin-inline:auto;
    }

    .imgBlock, .imgBlock2 {
        width:100%;
        text-align: center;
        padding-right:0;
    }

    .imgBlock img {
        width:125px;
        height:auto;
        margin-top:0;
    }

    .whyList, .columnWhySmall {
        margin-inline: auto;
        display: flex;
        justify-content: center;
        flex-direction: column;     
        
    }
    .whyList {
        padding-left:0px;
        list-style-type: none;
    }
    .whyList li {
        padding-top:15px;
        display:block;
    }


    .columnWhySmall {
        padding: 10px 0px 50px 0px;
        width: 100%;
        text-align:center;
      }
}
/* Import rule from: https://www.icontower.com/wp-content/themes/icontower/css/about.css */
.h2LineLeft {
 width: 116px;
 height:10px;
 background-color:var(--secondary-color);
}


.aboutTextContainer {
    display: flex;
    flex-direction: row;
    width:100%;
}

.parallax {
  background-image: url("/wp-content/uploads/2022/12/AdobeStock_76501576_PPT-1.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  
}
.mobileAboutBG {
	background-image: url("/wp-content/uploads/2022/12/AdobeStock_76501576_PPT-1.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
	display:none;
	 width:50%;
	 flex:1;
}
.aboutNumberColumns {
    width: min(33% - 80px);
    padding:0px 40px;
    margin-bottom:40px;
}
.aboutNumbersBg {
    background:var(--main-color);
    padding: 70px 10px;
}
.aboutNumbers {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: min(100% - 20px, 960px);
    margin-inline:auto;
    justify-content: center;
}

.bigWhiteNumber {
 font-weight:bold;
 color:#ffffff;
 font-size:3.75rem;
 text-align:center;
 line-height:normal;
 padding-bottom:30px;
}

.aboutNumbersText {
 color:#80A1CA;
 font-size:1.375rem;
 text-align:center;
 line-height:1.41;
padding:0;
}

.borderBoxDouble, .borderBoxRight {
 position:relative;
 border-color: #ffffff;
}

.borderBoxDouble:after, .borderBoxDouble:before {
    position: absolute;
    content:" ";
    display: block;
    height:125px;
    width:2px !important;
    background-color: white;
    top:50%;
    transform: translateY(-50%);
}

.borderBoxDouble:after {
    right:0;
}
.borderBoxDouble:before {
    left:0;
}

.borderBoxRight:before {
    position: absolute;
    content:" ";
    display: block;
    height:125px;
    width:2px !important;
    background-color: white;
    top:50%;
    transform: translateY(-50%);
    right:0;
}

#aboutColumnLeft, #aboutColumnRight { 
 display: flex;
 justify-content: flex-end;
 width:50%;
 flex:1;
}

.containAboutText {
padding:60px 40px 50px 30px;
 width: min(100% - 40px, 420px);
}

.AboutNumbers {
 max-width:960px;
 margin:auto;
}

#numbersRow2 {
 padding-top:50px;
}
@media screen and (max-width: 1024px) {

    .alter {
        display: none;
    }
    .parallax {
        background-image: url("https://devicon.apwip.com/wp-content/uploads/2022/12/AdobeStock_76501576_PPT-1.jpg");
        background-attachment: unset !important;
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;
		display:none;
    }
	.mobileAboutBG {
		display:flex;
		width:50%;
	}
	#aboutColumnRight, parallax {
		display:none;	
	}
}
@media screen and (max-width: 900px) {
    .aboutNumberColumns {
        width: min(50% - 80px);
        padding:0px 40px;
        margin-bottom:40px;
    }

    .borderBoxDouble:after, .borderBoxDouble:before, .borderBoxRight:before { display: none; }

    .aboutNumbers {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    }
}



@media screen and (max-width: 800px) {

.containAboutText {
 padding: 50px 10px 0px 10px;
}

#aboutColumnLeft {
 width:100%;
}
#aboutColumnRight {
 display:none;
}
.mobileAboutBG {
	display:flex;
	width:100%;
}
}

@media screen and (max-width: 620px) {
    .aboutTextContainer {
        display: block;
        flex-direction: column;
    }
    #aboutColumnLeft, #aboutColumnRight {
        width:100%;
    }
    #aboutColumnRight {
        min-height: 300px;
        height:300px;
        width:100%;
        display:none;
    }
	.mobileAboutBG {
		position:relative;
		background: url("/wp-content/uploads/2022/12/AdobeStock_76501576_PPT-1.jpg");
        height:300px !important;
        width:100%;
		background-size: cover;
        display:block;
		text-align:center;
	}
    .containAboutText {
		display:flex;
        padding:50px 20px 50px 20px;
        width: min(100% - 40px);
		flex-direction: column;
        align-items: center;
    }
	.containAboutText .left-underline:after {
		margin-left:auto;
		margin-right:auto;
	}
	.containAboutText p {
		text-align:center;
	}
    .aboutNumberColumns {
        width: min(50% - 40px);
        padding:0px 20px;
    }

    #borderBox {
    border-style: none;
    }

    .aboutNumbersText {
    padding: 0px 10px 30px 10px;
    }

    #numbersRow2 {
    padding-top: 0px;
    }

    

}

@media screen and (max-width: 520px) {
    .aboutNumbers {
        flex-direction: column;
        align-items: center;
    }
    .aboutNumberColumns {
        width: min(75% - 40px);
        padding:0px 20px;
    }
}@import "css/sites-page.css";@import "css/application-form.css";@import "css/mobile-responsive.css";.badge-section{width:100%;display:flex;flex-direction:row;justify-content:center;align-items:center}.badge-section img{width:100%;max-width:180px;height:auto;padding:15px}.hero-area{background-size:cover;background-repeat:no-repeat;background-position:center center;position:relative;z-index:1;padding-top:80px;padding-bottom:40px;background:url(https://www.apwspain.es/wp-content/uploads/2024/05/condo-bg-final-1.jpg?id=12424);background-position:center;background-repeat:no-repeat;background-size:cover}.connect-video-container{border-radius:10px;position:relative;overflow:hidden;width:100%;padding-top:56.25%}.connect-video-container iframe{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%}.h_counter_section{background:#ffffffb5;border-radius:15px;box-shadow:inset 0 0 1px 1px hsla(0,0%,100%,.9),0 20px 27px 0 rgba(0,0,0,.05)!important;box-sizing:border-box;padding:10px}.hero-content{display:flex;flex-direction:row;width:min(100% - 20px, 1200px);margin-inline:auto}.connect-container{width:50%;padding:25px}.connected-title{font-size:42px;line-height:1.31;color:#fff;text-align:center;margin-bottom:25px}.section-padding-2{width:min(100% - 20px, 960px)}.page-template-connected-britain .site-header{border-bottom:1px solid #fff}.connect-container .contact-form label{font-size:.9375rem;font-weight:700;color:#fff;margin-bottom:.5rem;margin-top:.5rem;display:block}.connect-container .contact-form{max-width:100%;width:100%}.connect-container .contact-form .gform_button{background:#C0D2E5!important;color:#333;font-weight:700;height:40px;width:220px;margin-top:15px;text-decoration:none;transition:.2s;border-radius:7px;border:0;font-size:1rem;cursor:pointer!important}.connect-container .gfield_select{width:100%!important;font-size:.925rem!important;padding:10px!important;font-weight:bold!important}.connect-container .contact-form input,.connect-container .gfield_select{height:auto!important}.connect-container .contact-form input,.connect-container .contact-form textarea{background:#f7f7f7!important;border:1px solid #555555!important;padding:10px 10px 10px 10px!important;font-size:.925rem!important;width:100%!important;box-sizing:border-box!important}@media screen and (max-width:959px){.hero-content{display:flex;flex-direction:column;width:min(100% - 20px, 640px);margin-inline:auto}.connect-container{width:auto!important;padding:15px}}@media screen and (max-width:959px){.connected-title{font-size:32px;line-height:1.31;color:#fff;text-align:center;margin-bottom:25px}}