@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('roboto-v49-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('roboto-v49-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
    --primary: #4464AD;
    --primarylight: #92C0DD;
    --secondary: #E7D09F;
    --third: #B49A67;
    --font: #000000;
    --h1Font: calc(2rem + 2vw);
    --h2Font: calc(1rem + 1vw);
    --h3Font: calc(0.9rem + 0.8vw);
    --pFont: calc(1rem + 0.5vw);
    --pFont2: calc(0.8rem + 0.5vw);
    --border: 9.5px;
    --heroHeight: 110vh;
    --heroMainHeight: 100vh;
}
* {
    box-sizing: border-box;
}
* /*{
    border: solid red 1px !important;
}*/
h1 {
    font-size: var(--h1Font);
}
h2 {
    font-size: var(--h2Font);
}
h3 {
    font-size: var(--h3Font);
}
p {
    font-size: var(--pFont);
}
body {
    font-family: roboto;
    font-size: 16px;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    position: relative;
}
.button {
    border-radius: 50px;
    box-shadow: 5px 5px 7px var(--primarylight);
    background-color: var(--secondary);
    font-weight: 600;
    padding: 5px 20px;
    width: auto;
    color: var(--font);
    font-size: 1.5rem;
    border: none;
    text-decoration: none;
    text-align: center;
}
.button:hover {
    background-color: var(--primary);
    transition: background-color .4s;
    cursor: pointer;
}
.header-block {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0 auto;
    width: 100vw;
    max-width: 1500px;
}
.header-block h1 {
    text-align: center;
    margin: 0;
}
.header-block strong {
    color: var(--primary);
    font-size: var(--h3Font);
    text-transform: uppercase;
}

 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        -----Interior Pages iPhone/ONLY--------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 0rem) {
#navigation {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}
#navigation .container {
    width: 97vw;
    max-width: 1455px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    box-shadow: 0 0 10px var(--primarylight);
    border-radius: 13px;
    background-color: white;
    padding: 10px 0;
}
.menu {
    display: none;
}
.mobile-menu .menu {
    display: grid;
    grid-column-start: span 2;
    background-color: var(--primarylight);
    width: 95vw;
    border-radius: 13px;
    text-align: center;
    position: absolute;
    top: clamp(102px, 13.9vw, 120px);
    margin: 0 2.5vw;
}
.nav-menu {
    padding: 20px 0 0 0;
}
.nav-menu li {
    padding: 10px 0; 
}
#navigation .logo img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 5px 5px 7px var(--primarylight);
}
.container .logo {
    width: clamp(80px, 11.3vw, 100px);
    margin-left: -5vw;
}
.menu .dropdown-group {
    list-style: none;
    height: 53px;
    padding: 0;
}
.open .menu .dropdown-group {
    height: auto;
}
.menu .dropdown-group button {
    background-color: inherit;
    border: none;
    width: 95vw;
    font-family: inherit;
    font-size: 1.7rem;
    line-height: inherit;
    padding: 10px 0;
}
.dropdown {
    display: none;
}
.open .dropdown {
    display: inherit;
    border-radius: 13px;
    list-style: none;
    padding: 0;
  }
.open .dropdown a {
    color: var(--primary);
}
#navigation .drop-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
}
#navigation .caret {
    width: 1rem;
    transition: 0.4s;
}
#navigation .open .caret {
    transform: rotate(180deg);
    transition: 0.4s;
}
.menu .drop-text:hover {
     cursor: pointer;
}
.menu .text {
    list-style: none;
    font-size: 1.7rem;
    font-weight: 600;
}
.menu a {
    text-decoration: none;
    color: var(--font);
}
.text-cta, .contact {
    list-style: none;
    margin-top: 9px;
}
.menu .contact {
    font-size: 1.7rem;
    font-weight: 600;
}
.box {
    display: inline-block;
    width: clamp(50px, 5vw, 60px);
    height: clamp(50px, 5vw, 60px);
    background-color: var(--primary);
    position: relative;
    border-radius: 10px;
    margin-right: -5vw;
    cursor: pointer;
}
.box .line {
    background-color: #fff;
    width: 75%;
    height: 11%;
    border-radius: 5px;
    left: 12.5%;
    position: absolute;
}
.box .line1 {
    position: absolute;
    top: 23%;
}
.box .line2 {
    position: absolute;
    top: 44.5%;
}
.box .line3 {
    position: absolute;
    top: 65%;
}
.mobile-menu .line1 {
    /*border: solid 1px green;*/
    top: 45.5%;
    transform: rotate(50deg);
    transition: transform .6s;
}
.mobile-menu .line2 {
    display: none;
}
.mobile-menu .line3 {
    /*border: solid 1px red;*/
    top: 45.5%;
    transform: rotate(-50deg);
    transition: transform .6s;
}

.interior {
    margin-top: 50px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
}
.interior picture {
    margin-right: 7px;
    width: 75vw;
}
.interior img {
    width: 75vw;
    height: auto;
    border-radius: 20px;
    box-shadow: 3vw 3vw 0 var(--primarylight);
}
.interior .interior-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
}
.interior .interior-content h2 {
    text-align: center;
}
.interior .interior-content h3 {
    text-align: center;
}
.interior .interior-content strong {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.interior .interior-content .interior-links {
    color: var(--primary);
    text-decoration: none;
}
.interior .interior-content .dev-list1 li:hover {
    transform: scale(1.03);
}
.interior .interior-content .interior-links:hover {
    transform: scale(1.03);
}
.interior .interior-content .dev-list1 .dev-h3:hover {
    transform: scale(1);
}
.interior .interior-content .des-dev-sm {
    font-size: var(--pFont);
    margin: 50px auto;
}
.interior .interior-content ul {
    font-size: var(--pFont);
    width: 100%;
}
.interior .interior-content .dev-list1 li {
    color: #001060;
    margin-bottom: 10px;
}
.interior .interior-content .dev-h3 {
    list-style: none;
}
.interior .interior-content .dev-list1 a {
    color: #001060;
}
.interior .interior-content ol {
    font-size: var(--pFont);
    width: 100%;
}
.interior .interior-content .monthly-list span {
    margin-left: -40px;
}
.interior .interior-content .button {
    margin: 20px 0 50px 0;
}
#about-page {
    margin-top: 50px;
    display: flex;
    flex-flow: row wrap;
}
.about-page-pic {
    background-color: rgba(180, 154, 103, 0.35);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 30px;
    align-items: flex-start;
}
.about-page-pic .about-page-pic1 {
    width: 100vw;
    margin-top: 30px;
}
.about-page-pic .about-page-img1 {
    width: 100%;
    height: auto;
    position: relative;
}
.about-page-pic .about-page-pic2 {
    width: 50vw;
    margin: -90px 0 30px 20px;
    z-index: 1;
}
.about-page-pic .about-page-img2 {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
#about-page .about-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
    margin: 40px auto;
}
#about-page .about-page-content .button {
    margin-top: 30px;
}
.contact-page {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.contact-page .about-page-pic {
    background-color: rgba(146, 192, 221, 0.35);
}
.contact-page .about-page-pic .about-page-pic1 {
    z-index: -1;
}
.contact-page .about-page-pic .about-page-pic2 {
    margin: -60px 0 30px 20px;
}
.contact-page p {
    width: 80vw;
    max-width: 1200px;
}
.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    margin: 50px auto;
    width: 75vw;
}
.contact-page .contact-form label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}
.contact-page .contact-form input, textarea {
    border-radius: 10px;
    border: none;
    background-color: #dcf0ff;
    width: 100%;
    height: 43px;
    font-size: var(--h3Font);
    padding: 7px 10px 3px 10px;
    color: #000;
    font-family: sans-serif;
}
.contact-page .contact-form textarea {
    height: 170px;
    margin-bottom: 20px;
}
.contact-page .contact-form label input:focus {
    outline: 2px solid var(--primary);
}
.contact-page .contact-form label textarea:focus {
    outline: 2px solid var(--primary);
}
.contact-page .contact-form .g-recaptcha {
    padding: 15px 0 20px 0;
}
#submitBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


}
 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        --------MOBILE iPAD/only (772px)-------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 48.3rem) {
#navigation {
    margin-top: 20px;
}
#about-page {
    margin: 50px auto 0 auto;
    max-width: 1500px;
    padding: 0 20px;
    column-gap: 30px;
    align-items: flex-start;
}
#about-page .header-block {
    width: 80vw;
}
.about-page-pic {
    width: 45vw;
    max-width: 675px;
    margin-top: 50px;
    border-radius: 30px;
    justify-content: flex-start;
}
.about-page-pic .about-page-pic1 {
    width: 45vw;
    max-width: 675px;
}
.about-page-pic .about-page-img1 {
    width: 100%;
    max-width: 675px;
}
.about-page-pic .about-page-pic2 {
    margin: -70px 0 30px 20px;
    width: 50%;
    max-width: 337px;
}
#about-page .about-page-content {
    width: 45vw;
    max-width: 675px;
}
.interior {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    column-gap: 5vw;
    max-width: 1500px;
    margin: 50px auto 0 auto;
}
.interior .header-block {
    width: 80vw;
}
.interior picture {
    margin: 0;
    width: 35vw;
    max-width: 525px;
}
.interior img {
    width: 35vw;
    max-width: 525px;
    margin: 225px 0 30px 0;
    box-shadow: 1.5vw 1.5vw 0 var(--primarylight);
}
.interior .interior-content {
    width: 55vw;
    max-width: 825px;
}
.contact-page {
    column-gap: 3vw;
    margin: 50px auto 0 auto;
    max-width: 1500px;
    padding: 0 20px;
}
.contact-page .about-page-pic {
    margin-top: 0;
}
.contact-page .contact-form {
    width: 45vw;
    max-width: 675px;
}

}
 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        --------LAPTOP-DESKTOP (1024px)--------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 64rem) {
#navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#navigation .menu {
    display: inline;
}
#navigation .logo {
    width: 100px;
    margin: 0 0 0 7vw;
}
#navigation .nav-menu {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    column-gap: 30px;
    padding-top: 0;
}
#navigation .nav-menu li {
    padding: 0;
    margin-right: 0;
}
#navigation .mobile-nav {
    display: none;
}
#navigation .dropdown {
    display: none;
}
.menu .dropdown-group {
    height: auto;
}
#navigation .open .dropdown-group {
    display: flex;
    flex-direction: column;
}
.menu .dropdown-group button {
    width: auto;
}
#navigation .open .dropdown {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    top: 83px;
    margin-left: -60px;
    background-color: var(--primarylight);
    padding: 0 20px 20px 20px;
    border-radius: 0 0 20px 20px;
}
#navigation .open .dropdown a {
    color: inherit;
}
#navigation .open .dropdown span {
    width: calc(100% + 40px);
    height: 5px;
    background-color: var(--primary);
    border-radius: 5px;
    margin: 0 0 10px -20px;
}
#navigation ul .text-cta {
    margin: 0 10vw 0 0;
}
 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        ------Interior Pages LAPTOP-DESKTOP----
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
.interior .about-page-pic img {
    margin: 50px 0 30px;
}
.interior .about-page-pic .about-page-pic2 {
    margin: -120px 0 30px 30px;
}
.interior picture {
    margin: 0;
}
.interior img {
    margin: 225px 0 0 0;
}
.contact-page .contact-form {
    width: 38vw;
    max-width: 535px;
}
.contact-page .contact-form input {
    height: 50px;
}
.contact-page .contact-form textarea {
    height: 250px;
}


}
/*     ---------------------------------------
       ---------------------------------------
       ---------------------------------------
       ---------BIG DESKTOP (1300px)----------
       ---------------------------------------
       ---------------------------------------
       ---------------------------------------  */
@media only screen and (min-width: 81.25rem) {
#navigation .logo {
    margin: 0 0 0 15vw;
}
#navigation ul .text-cta {
    margin: 0 15vw 0 0;
}
}



