@font-face {
    font-family: SintonyRegular;
    src: url(./fonts/Sintony-Regular.ttf);
}
@font-face {
    font-family: SintonyBold;
    src: url(./fonts/Sintony-Bold.ttf);
}
@font-face {
    font-family: Impact;
    src: url(./fonts/impact.ttf);
}
@font-face {
    font-family: ImpactUnicode;
    src: url(./fonts/unicode.impact.ttf);
}
@font-face {
    font-family: Impacted;
    src: url(./fonts/impacted.ttf);
}
html,
body,
body > div {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: SintonyRegular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
nav {
    display: flex;
    height: 40px;
    background-color: green;
    padding-right: 20px;
    background-image: linear-gradient(to bottom, #3498db, #003d91);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
nav > a {
    display: flex;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 16px;
    align-content: center;
    align-items: center;
    padding-right: 20px;
    height: 100%;
    font-weight: 500;
    font-family: SintonyBold, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.75px;
}
.scrollable-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    background-attachment: fixed;
    background-image: url(./images/bg2.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    transition: background-image 2s ease-in-out;
}
.layout-container {
    display: flex;
    flex-direction: row;
    height: 100%;
}
#mainLogoSmall {
    min-height: 120px;
    background-image: url(./images/Surfside-Dog-Logo-small.png);
    background-repeat: no-repeat;
    display: none;
}
.page {
    display: flex;
}
.page > .flex-cell {
    padding: 15px;
}
.flex-cell {
    flex: 1 1 0;
}
.flex-cell-fixed {
    flex: 0 0 0;
}
.flex-cell-grow {
    flex: 1 1 auto;
}

/* content styles */
a.blue-btn:hover{
    background-color : #3498db;
    text-decoration: none;
}
a.blue-btn {
    background-color :#003d91;
    border-radius : 10px;
    color:#ffffff;
    padding: 15px 105px;
    cursor:pointer;
}
a.butn {
    display : inline-block;
    background-color: #3498db;
    background-image: linear-gradient(to bottom, #3498db, #003d91);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 3px 3px 5px #666666;
    -moz-box-shadow: 3px 3px 5px #666666;
    box-shadow: 3px 3px 5px #666666;
    color: #ffffff;
    font-size: 14px;
    font-weight : bold;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    text-transform : uppercase;
    margin-right : 1px;
}
a.butn[data-state='selected'],
a.butn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #003d91);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
    color: #ffffff;
}
a.butn:first-child{
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
}
a.butn:last-child{
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
    margin-right : 20px;
}
ul{
    margin-left : -35px;
    list-style-type: none;
}
ul > li > ul {
    margin : 5px;
    margin-left : 0px;
}
ul > li > ul > li{
    margin : 10px;
    margin-left : 0px;
    font-weight : bold;
    font-size : 15px;
    background: url("./images/pawprint-sm-blue.png") left 2px no-repeat;
    padding-left : 25px;
    min-height : 25px;
}

div.content {
    display: block;
    height: 100%;
    background-color : rgba(255, 255, 255, 0.9);
    border-radius : 5px;
    border : solid 1px transparent;
    -webkit-box-shadow: 10px 10px 21px 0 rgba(0,0,0,0.4);
    -moz-box-shadow: 10px 10px 21px 0 rgba(0,0,0,0.4);
    box-shadow: 10px 10px 21px 0 rgba(0,0,0,0.4);
}
div.content > .content-flex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.content-hdr-container {
    display: flex;
    min-height : 40px;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    border-radius : 5px 5px 0 0;
    border : solid 1px transparent;
    background: #3498db;
    width :100%;
    background-image: -webkit-linear-gradient(top,  #57616e, #74777a);
    background-image: -moz-linear-gradient(top,   #57616e, #74777a);
    background-image: -ms-linear-gradient(top,  #57616e, #74777a);
    background-image: -o-linear-gradient(top,  #57616e, #74777a);
    background-image: linear-gradient(top,  #57616e, #74777a);
    position:relative;
    top: -3px;
    left: -1px;
}
.content-hdr-container .content-hdr {
    color: #ffffff !important;
}
span.content-hdr {
    font-family : SintonyBold, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #003d91;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    font-size : 24px;
    font-weight : normal;
}
.title-logo {
    font-family : Impact,ImpactUnicode, Impacted, SintonyBold, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    color: #00769e !important;
    font-size: 46px !important;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.7) !important;
}
.title-logo-tag {
    color: black !important;
    font-family : Impact,ImpactUnicode, Impacted, SintonyBold, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    letter-spacing: 1px;
    font-weight: 500;
}
div.foot {
    display : flex;
}
a.phone {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    background-position: 0 -6px;
    background-image: url(./images/contact-phone-icon.png);
    background-repeat: no-repeat;
    padding-left: 25px;
    color: white;
    white-space: nowrap;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.85);
    letter-spacing: 0.75px;
}
a.email {
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    background-position: 0 -6px;
    background-image: url(./images/contact-email-icon.png);
    background-repeat: no-repeat;
    padding-left: 27px;
    color: white;
    white-space: nowrap;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.85);
    letter-spacing: 0.75px
}
div.tag-content {
    padding-top : 2px;
    padding-bottom : 2px;
}
div.foot-content {
    font-style: oblique;
    min-height : 20px;
    padding-top : 5px;
    padding-bottom : 1px;
    font-weight : bold;
    font-size : 12px;
    text-align : center;
    border-radius : 0 0 5px 5px;
    border : solid 1px transparent;
    /* white-space : nowrap; */
    background: #3498db;
    width :100%;
    color : #ffffff;
    background-image: -webkit-linear-gradient(top,  #74777a, #57616e);
    background-image: -moz-linear-gradient(top,   #74777a, #57616e);
    background-image: -ms-linear-gradient(top,  #74777a, #57616e);
    background-image: -o-linear-gradient(top,   #74777a, #57616e);
    background-image: linear-gradient(to bottom,  #74777a, #57616e);
    position:relative;
    top : 2px;
    left : -1px;
}
.book-quote {
    font-style: oblique;
    min-height : 30px;
    padding: 5px 10px;
    font-weight : bold;
    font-size : 12px;
    text-align : center;
}


/* Hamburger Menu */
#menuToggle
{
    display: none;
    position: relative;
    top: 10px;
    left: 10px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}
#menuToggle a
{
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}
#menuToggle a:hover
{
    color: #003d91;
}
#menuToggle input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}
#menuToggle span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: white;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0 100%;
}
#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}
#menu
{
    position: fixed;
    width: auto;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 145px;
    top: 0;
    bottom: 0;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu li
{
    padding: 10px 0;
    font-size: 22px;
}
#menuToggle input:checked ~ ul
{
    transform: none;
}

.beach-bg {
    background-image: url(./images/beach-flagv4.png);
    background-repeat: no-repeat;
    background-position-y: -30px;
}
.home-overlay {
    padding: 0 10px;
    background-image:
            linear-gradient( 0deg,
            rgba(255,255,255,1),
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85),
            transparent);
}
.contact-us {
  position: absolute;
    right: 10px;
    top: 35px;
}
#column2 {
    display: flex;
    justify-items: end;
    justify-content: end;
}
#topContact {
    display: block;
    position: fixed;
    text-align: right;
    margin-right: 5px;
}

/* Mobile transforms */
@media screen and (max-width:1200px) {
    #topContact > a {
        margin: 0;
        padding: 0;
        display: block;
        text-align: right;
    }
    #topContact > a:last-child {
        margin-top: -30px;
    }
}
/* Mobile transforms */
@media screen and (max-width:1030px) {
    #topContact {
        display: none;
    }
}
@media screen and (max-width:800px) {
    .desktop-nav {
        display: none;
    }
    #topContact {
        display: none;
    }
    #mainLogo {
        display: none;
    }
    #mainLogoSmall {
        display: block;
    }
    .contact-us {
        display: none;
        left: calc(50% - 200px);
        top: 2px;
    }
    /* Shrink font sizes in mobile mode */
    nav > a {
        font-size: 13px;
    }
    #column2 {
        display: none;
    }
    span.content-hdr {
        font-size: 18px;
    }
    ul > li > ul > li,
    a.butn,
    div.foot-content {
        font-size: 11px;
    }

    #mainLogo {
        display: none;
    }

    #menuToggle {
        display: block;
    }
}