* { /*Removes default padding and margins from all elements*/
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body.stop-transition * {
  transition: none !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #013b61;
    transition: all 300ms ease-in-out;
}

h1 {
    font-size: 36px;
}

a {
    color:rgb(8, 134, 218);
    transition: all 300ms ease-in-out;
    text-decoration: none;
}

a:hover {
    color: #dd8705;
}

p, ul {
    color: #49608b;
}

.scroll-stop {
  overflow: hidden;
}

body{ /*Default styles throught website*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
    background-image: url(media/laptop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

div.display {
  display: block;
}

.popup {
  display: none;
  background: rgba(0, 0, 0, 0.39);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 90%;
  max-width: 400px;
  background-color: white;
  padding: 12px;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.514);
  border-radius: 10px;


  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.popup-content p {
  padding: 5px;
}

.popup-content a {
  margin: 7px 0;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  border: none;

  background-color: #013b61;
  color: white;
}

.popup-content a:hover {
  color: #dd8705;
  background-color: #0e5280;
}

.popup-content button {
  align-self: flex-end;
  margin-bottom: 10px;
  cursor: pointer;

  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  border: none;

  font-weight: 600;

  /* This allows for the background color to change from the left of the button*/
  background: linear-gradient(to left, rgb(240, 186, 9) 50%, #11a8e4 50%) right;
  background-size: 200%;

  color: #042942;
  transition: all 300ms ease-in-out;
}

.popup-content button:hover {
  background-position: left;
  color: white;
}

main .title-section {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px 10px;
  background: white;
  text-align: center;
}

header {
    background-color: rgb(240, 186, 9);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 990;
    font-size: 14px;
}

header p, header a {
  color: #000000;
  font-weight: 600;
  padding: 6px;
  text-align: center;
}

header a:hover{
  color: #FFFFFF;
  background-color: rgb(197, 152, 3);
}

nav{ 
    background-color: #163a5c;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0px;
    z-index: 999;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul.visible, nav ul#nav-dropdown.visible {
  visibility: visible;
  opacity: 1;
}


nav li{
    height: 50px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}
/*Start of styles for the MAIN semantic element*/
main#remote-support {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

main#remote-support iframe {
  /* box-sizing: initial; */
  background-color: #ffffffab;
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: min(0.75rem, 2%);
  border-radius: 10px;
}

main .row { /*This is first the container class for columns*/
    display: flex;
    justify-content: center;
    background-color: white;
    gap: 0 1rem;
    flex-wrap: wrap;
    min-height: 200px;
    padding: 1rem 0;
}

main .row2 { /*This is the second container class for columns*/
    display: flex;
    justify-content: center;
    background-image: linear-gradient(rgb(223, 223, 223), white, white);
    gap: 0 1rem;
    /* flex-wrap: wrap; */
    padding: 1rem 0;
}

main .left { /*This is the left column class*/ 
    padding: 0.75rem;
    /* width: 200px; */
    max-width: 600px;
    flex-grow: 1;
    text-align: right;
    
}

main .center {
    padding: 1rem 0;
    text-align: center;
    flex-basis: 200px;
    flex-grow: 1;
    max-width: 550px;
   
    
}

main .center img {
    width: 75%;
    height: auto;
    max-width: 400px;
}
    
main .right { /*This is the right column class*/
    padding: 2rem;
    /* width: 200px; */
    max-width: 600px;
    flex-grow: 1;
    text-align: left;
}

main .right h2 {
  padding: 1rem 0;
}

main .right h5, main .left h5 {
    margin: 2rem 0;
    font-size: 20px;
}

main .right h4 {
    margin-top: 3rem;
    padding: 1rem 0;
}

main .left img {
    width: 70%;
    height: auto;
    
}

/*Start of Footer styles*/
footer {
    margin-top: auto;
    background-color: #163a5c;
    display: flex;
    justify-content: center;

    padding: 2rem 0;
    gap: 1rem 0;
}

footer h2 {
  color: rgb(221, 220, 220);
  padding: 0 0 1.5rem;
  text-align: center;
  
}

footer a, 
footer p{
  color: #abbbda;
  text-decoration: none;
  font-size: 11pt;
  transition: all 300ms ease-in-out;
}

footer li {
  list-style: none;
  padding: 0.5rem 0;
  display: flex;
  gap: 0 0.5rem;
}

footer div {
  width: 270px;
  height: min-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem 0 0;
  
}

footer a:hover {
  color: #dd8705;
}

footer img {
    min-height: 50px;
    width: auto;
    min-width: 200px;
    height: 6.5vw;
    padding: 0 1rem;
}

footer ul li p {
    display: inline-block;
    text-align: left;
}

footer ul li svg {
    fill: #11a8e4;
    flex-shrink: none;
    min-width: 24px;
    min-height: 24px;
}
    

/*Start of Classes*/


.headingaccent {
  color: rgb(255, 187, 0);
}

.headingaccent2 {
  color: #11a8e4;
  font-size: 3rem;
}

/* Styles for anchor tags to look like buttons */
.buttonSmall {/*Small button made by anchor tag */
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    border: none;

    font-size: 12pt;
    font-weight: 600;
    text-decoration: none;
    text-align: center;

    

    /* This allows for the background color to change from the left of the button*/
    background: linear-gradient(to left, rgb(240, 186, 9) 50%, #11a8e4 50%) right;
    background-size: 200%;

    color: #042942;

    transition: all 300ms ease-in-out;
}

a.button1 { /* original Yellow background */
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border-radius: 3rem;
    border: none;
    width: 200px;
    
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;

    /* This allows for the background color to change from the left of the button*/
    background: linear-gradient(to left, rgb(240, 186, 9) 50%, #11a8e4 50%) right;
    background-size: 200%;

    color: #042942;
    transition: all 300ms ease-in-out;
    
}

a.button2 {/* original Blue background */
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border-radius: 3rem;
    border: none;
    width: 200px;
    
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: white;

    /* This allows for the background color to change from the left of the button*/
    background: linear-gradient(to left, #11a8e4 50%, rgb(240, 186, 9)50%) right;
    background-size: 200%;
    transition: all 300ms ease-in-out;
    
}

a.button2:hover { /* This changes the background gradient from right to left changing the color to blue */
  background-position: left;
  color: #042942;
}


a.button1:hover, .buttonSmall:hover { /* This changes the background gradient from right to left changing the color to blue */
    background-position: left;
    color: white;
}


.noBackground  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noBackground  div { /*This div allows for the white text to be readable withou
                        having to cover the body background image*/
    padding: 1rem 0;
    height: auto;
    width: 100%;
    background-image: linear-gradient(to right, rgba(31, 45, 80, 0.685), rgba(31, 45, 80, 0.493), rgba(245, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.noBackground div h2, 
.noBackground div p {
  color: white;
  padding: 1rem;
}

/*classes and ID's for the navigation menu*/

.nav-branding {
    height: 50px;
    min-width: 125px;
    margin-right: auto;
}

.nav-link {
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
}

.nav-link:hover{
    color: #dd8705;
}

nav a:hover{
    background-color: #0e5280;
}

/* Id's for the About link dropdown*/

#nav-dropdown {
    position: absolute;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    
    display: flex;
    flex-direction: column;

    width: 150px;
    height: auto;
    background-color: #013b61;
    box-shadow: 0 3px 4px black;
    transition: all 750ms ease-in-out;
    
    z-index: 900;
}

#nav-dropdown .nav-item {
  width: 100%;
}

#nav-dropLink:hover ~ #nav-dropdown, 
#nav-dropdown:hover {
  
  visibility: visible;
  opacity: 1;

}

/*Menu icon container*/
.hamburger{ 
    display: none;
    margin: 0 20px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.75s ease-in-out;
    top: 0;
    background: none;
    border: none;
}

.bar{ /*Menu icon bars*/
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all .75s ease-in-out;
    background-color: white
}


/*Classes for the hoverable icons that rotate*/

.icon_hovers {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
    width: 300px;
    max-width: 300px;
}

.icon_hovers a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon_hovers  p, 
.icon_hovers img {
  font-size: 26px;
  transition: all 250ms ease-in-out;
  transform-origin: 40%;
  text-wrap: nowrap;
  flex-shrink: 1;
}

.icon_hovers:hover img, 
.icon_hovers:hover p { /*This makes the icon and text rotate 90 degrees*/
  transform: rotate3d(-0.045, -1, 0, -90deg);
}

/*Classes and ID's for anything that has to do with services*/

.servicePlan {
    background-color: white;
    margin: 3rem 1rem;
    box-shadow: 0 2px 10px 3px rgba(196, 190, 190, 0.719);
    text-align: center;
    width: 350px;
    height: min-content;

}

a.serviceButton { /* original grey background */
    margin: 2rem 0;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3rem;
    border: none;
    width: 50%;
    
    font-size: 18px;
    font-weight: 550;
    text-decoration: none;
    text-align: center;
    

    background: rgb(231, 231, 231);
    background-size: 200%;

    color: #013b61;

    transition: all 350ms ease-in-out;
    
}

.servicePlan a.serviceButton:hover {
    background-color: #11a8e4;
}

.servicePlan span {

    transition: all 350ms ease-in-out;
}

.servicePlan div p {
    font-style: italic;
    background: white;
    margin: 1rem 0 -1rem;
    padding: 0.75rem 0;
}



.servicePlan p {
    padding: .75rem 0;
    font-size: 14px;

}

.servicePlan div h2 {
    padding: 2rem 0 0 0; 
    color: white;
    font-size: 34px;
    font-weight: 575;
}

.servicePlan:hover .serviceButton { /*This changes the button text color and background when hovering 
                                      over one of the service plans*/
  background-color: rgb(240, 186, 9);
  color: black;
}
.servicePlan:hover span { /*This changes the small text at the top of the service when hovering 
                            over one of the service plans*/
  color: white;
}
.servicePlan:hover #service3 span { /*This changes the small text at the top of the service when hovering 
                                      over one of the service plans*/
  color: rgb(240, 186, 9);
}

#service1 {
    background: rgb(240, 186, 9);
    width: 100%;
    padding: 2rem 0 1rem 0;
    
}

#service2 {
    background: rgb(13, 146, 235);
    width: 100%;
    padding: 2rem 0 1rem 0;
    
}

#service3 {
    background: #013b61;
    width: 100%;
    padding: 2rem 0 1rem 0;
}
#service3 span {
  color: white;
}

#serviceHead {
    width: 100vw;
    text-align: center;
    background-color: white;
    font-size: 38px;
    padding: 4rem 0 0 0;
    margin: 0 0 -1rem 0;
}

#servicePara {
    padding: 0.75rem;
    width: 420px;
    max-width: 700px;
}

#servicePara h2 {
  font-size: 36px;
}

#servicePara p {
  padding: 0.75rem 0;
}



/*ID Styles*/
#aboutMe .right ul {
  margin-top: 3rem;
  font-size: 13pt;
  list-style: url('media/Plus.svg') inside; 
}

#aboutMe .right ul li {
  box-sizing: border-box;
  margin-bottom: 10px;
}


#aboutMe .right button {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-radius: 3rem;
  border: none;
  width: 40%;
  font-size: 18px;

  /* This allows for the background color to change from the left of the button*/
  background: linear-gradient(to left, rgb(240, 186, 9) 50%, #11a8e4 50%) right;
  background-size: 200%;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

#aboutMe .right button:hover { /* This changes the background gradient from right to left changing the color to blue */
  background-position: left;
  color: white;
}


#chooseUsHead {
    background-color: rgb(238, 236, 236);
    text-align: center;
    padding-top: 1rem;
    font-size: 2.5rem;
}

#chooseUs {
    background-color: rgb(238, 236, 236);
    padding: 1rem 0;
    font-size: 20pt;

    div {
        margin: 1rem;
        padding: .5em 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        
    }

    h4 {
        background-color: white;
        border-radius: 1000px;
        height: 55px;
        width: 55px;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        color:rgb(80, 144, 204)
        
    }

    h5 {
        font-weight: 500;

    }
    

}

#form-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: rgb(245, 245, 245);

    label {
        padding: 1rem 0;
        color: #49608b;

       
    }

    input, textarea {
        background: rgb(255, 255, 255);
        color: #49608b;
        border: 2px solid rgb(223, 223, 223);
        border-radius: 10px;
        padding: 0.5rem;

    }

    input::placeholder {
        color: #49608b;
        
    }

   button {
    font-weight: 550;
   }
   
   input:focus, textarea:focus {
    outline: none;
    border-color: rgb(240, 186, 9);
   }
}

#locationRow { /*This is the container class for columns*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    /* flex-wrap: wrap; */
    min-height: 200px;
    padding: 1rem 0;
}

#map {
    margin-right: auto;
    padding: 1rem;
    display: flex;
    width: 500px;
    max-width: 750px;
    flex-grow: 1;
}

#location {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    

    width: 300px;
    max-width: 400px;
    min-width: 280px;

    height: min-content;
    padding: 3rem 1rem;
    margin-right: auto;
    background-color: rgb(240, 186, 9);

    a, p {
        display: flex;
        align-items: center;
        width: fit-content;

        padding-right: 0.75em;
        text-decoration: none;
        margin: 1em;
        color: black;
        transition: all 300ms cubic-bezier(.42,0,.86,2.05);
    }

    svg {
        display: inline-block;
        align-self: flex-start;
        min-width: 24px;
        min-height: 24px;
        box-sizing: content-box;
        background: black;
        border-radius: 50%;
        padding: 5px;
        margin-right: 1rem;
        transition: all 300ms cubic-bezier(.42,0,.86,2.05);
    }

}

#location a:hover {
    color: white;
    svg {
        fill: #013b61;
        background: rgb(247, 214, 107);
        scale: 1.25;

    }

}

#privacy {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 2rem;

    h1 {
        margin-bottom: 2rem;
        font-size: 2.5rem;
    }

    div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: min(100%, 1200px);
        

    }

    h5 {
        margin: 1rem 0;
        font-size: 12pt;
    }

    p {
        margin: 1rem 0;
    }

    li {
        margin: 1rem 0;
        list-style-position: inside;
    }
    a {
        transition: all 300ms ease-in-out;
    }

}

@media screen and (max-width:780px) {
  header p, header a {
    display: none;
  }

  /*This all allows for the menu icon to show and transition into an X icon*/
  .hamburger {
    display: block;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    /* This makes the navigation menu into a hidden menu*/
    .nav-menu{
        position: fixed;
        top: 0;
        right: -100%;
        gap: 0;
    
        width: 100%;
        height: 100vh;
    
        flex-direction: column;
        background-color: #163a5c71;
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    
        justify-content: flex-start;
        align-content: center;
        transition: 0.75s ease-in;
        z-index: 999;
        visibility: hidden;
    }
    
    /*This makes the navigation links start just below the X Icon */
    .nav-item:first-child{
        margin: 50px 0 0 0;
    }
    
    .nav-item{
        width: 100%;
        
    }
    
    .nav-link{/*This centers the navigatino links*/
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #nav-dropdown {
        position: static;
        visibility: hidden;
        opacity: 1;
        background-color: #163a5c71;
        backdrop-filter: blur(10px);
        box-shadow: none;
        width: inherit;
        overflow: hidden;
        height: 0;
    }
    
    #drop-item {
        display: flex;
        flex-direction: column;
        height: auto; 
    
        .nav-item {
            margin: 0;
        }
    }
    
}

@media screen and (max-width:718px) {
    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        ul li{
            display: flex;
            align-items: center;
            justify-content: center;
        }

     
        

        img {
            height: 100px; 
        }
    }

    div:last-child {

        ul li {
            justify-content: flex-start;
        }
    }

    /*This is the start of MAIN content queries*/
    main .row2 {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    main #pcheadings h5 {
      margin: 2rem 0;
      font-size: 2rem;
      text-align: center;

    }

    .tablet {
        display: none;
    }

    .noBackground div {
        background-color:#013b618c;
        backdrop-filter: blur(5px);
        background-image: none;
        width: 70%
    }

    #hovers{
        flex-direction: column;
    }

    .icon_hovers {
        width: auto;
        max-width: none;
    }

    #locationRow {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 0;
    }

    #location {
        max-width: 100%;
        width: 100%;
        
        
    }

    #map {
        width: 100%;
        padding: 0;
    }
    
}