/*------------------------------------*\
    DEFAULT STYLES
\*------------------------------------*/

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 1em;
    line-height: 1.4;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    font-size: 62.5%;
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

/*------------------------------------*\
    HERO SLIDER
\*------------------------------------*/

/* Hero Section */
.hero {
    max-width: 100%;
    margin: 85px 0 -100px 0;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: visible;
    position: relative;
}

.hero img {
    width: 100%;
    height: calc(100vh - 85px);
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px); /* Adjust height to match hero images */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* White text */
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2; /* Ensure overlay is above images */
    margin-top: 85px;
}

.hero-overlay h1 {
    font-size: 6em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #78866b;
    color: #fff;
    text-decoration: none;
    font-size: 2.5em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #56604D;
}

/* Responsive Adjustments */
@media only screen and (max-width: 1080px) {
    .hero-overlay h1 {
        font-size: 2.5em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/*------------------------------------*\
    HEADER STYLES
\*------------------------------------*/

header {
    flex-grow: 1;
    width: 100%;
    min-height: auto;
    background-color: #F7F7F7;
}

/*------------------------------------*\
    NAVIGATION STYLES
\*------------------------------------*/

nav {
    width: 100%;
    position: fixed;
    height: 85px;
    font-size: 2em;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1000;
    top: 0;
    padding: 22px 50px;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    align-items: center;         /* Center items vertically */
    justify-content: space-between; /* Space between items */
}

.logo {
    margin: 0;                  /* Remove margins */
}

.logo img {
    height: 1.8em;
    width: auto;
}

.headernavigation {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;        /* Center vertically */
}

.headernavigation li {
    margin-left: 30px;
}

.headernavigation li a {
    color: #000000;
    text-align: center;
    text-decoration: none;
}

.headernavigation li a:hover,
.headernavigation li a:focus,
.headernavigation li a:active {
    color: #78866b;
    text-decoration: none;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;              /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 32px 20px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive Styles */
@media only screen and (max-width: 1080px) {
    nav {
        font-size: 2em;
        padding: 0 20px;
    }
    
    .logo img {
        margin: 0 0 0 10px;
    }

    /* Show hamburger icon */
    .hamburger {
        display: flex;
    }

    /* Hide navigation links */
    .headernavigation {
        display: none;
    }

    /* Navigation menu when active */
    .headernavigation.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        align-items: center;    /* Center items vertically */
        
    }

    .headernavigation li {
        margin: 15px 0;
    }
}

/*------------------------------------*\
    ABOUT SECTION
\*------------------------------------*/

#about {
    background-color: #F4F4F4;
    line-height: 1.6;
    text-align: center;
    padding: 100px 200px;
    font-size: 4em;
}

.text {
    margin: 0 100px;
    max-width: 900px;
    min-width: 300px;
    color: #000000;
    text-align: center;
    font-size: 2em;
    padding-bottom: 50px;
}

.handHello-Wrapper {
    margin-bottom: 100px;
}

/* Responsive Adjustments for About Section */
@media only screen and (max-width: 1080px) {
    #about {
        font-size: 2em;
        padding: 50px 50px;
    }

    .text {
        font-size: 1.5em;
        margin: 0 50px;
    }

    .handHello-Wrapper {
        margin: 50px 0;
    }
}
/*------------------------------------*\
    PORTRAIT SECTIONS
\*------------------------------------*/

.portrait {
    margin: 150px 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.portrait img {
    max-width: 450px;
    height: auto;
    margin-right: 50px;
}

/* Responsive Adjustments for Portrait Sections */
@media only screen and (max-width: 1080px) {
    .portrait {
        width: 100vw;
        height: auto;
        margin: 150px 0;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .portrait img {
        margin: 0 0 50px 0;
        max-width: 80vw;
    }
}

/* About Hero */
.aboutHero {
    /* Existing styles if any */
}

/* Responsive Adjustments for About Hero */
@media only screen and (max-width: 1080px) {
    .aboutHero {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/*------------------------------------*\
    PORTFOLIO SAMPLES
\*------------------------------------*/

#portfolio-samples {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#portfolio-samples img {
    max-width: 100%;
    min-height: 50vh;
    height: auto;
    object-fit: cover;
    display: block;
}

.portfolio-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50vh;
    background-color: #78866b;
    border: 1px solid #fff;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.portfolio-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
    -webkit-transition: filter 0.3s ease;
}

.portfolio-thumbnail:hover img {
    filter: brightness(40%);
    -webkit-filter: brightness(40%);
}

.portfolio-thumbnail .portfolio-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 5em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-thumbnail:hover .portfolio-title {
    opacity: 1;
}

/* Responsive Adjustments for Portfolio Samples */
@media only screen and (max-width: 1080px) {
    .portfolio-thumbnail {
        width: 100%;
    }

    .portfolio-thumbnail .portfolio-title {
        font-size: 2.5em;
    }
}

/*------------------------------------*\
    FOOTER STYLES
\*------------------------------------*/

footer {
    font-size: 1.5em;
    display: flex;
    flex-direction: row; /* Lay out items horizontally */
    justify-content: space-between; /* Space items evenly */
    align-items: center; /* Vertically center items */
    width: 100%;
    padding: 25px 50px;
    color: black;
    background-color: #F4F4F4;
    position: relative;
    bottom: 0;
    height: auto; /* Allow height to adjust based on content */
    flex-shrink: 0;
    box-sizing: border-box; /* Include padding in width calculations */
}

/* Left, Center, and Right Sections */
#footer-left,
.wrapper,
#footer-right {
    flex: 1; /* Let Flexbox distribute space */
    max-width: 100%; /* Prevent overflow */
}

#footer-left {
    text-align: left;
}

#footer-right {
    text-align: right;
}

.wrapper {
    display: flex;
    justify-content: center; /* Center the social icons */
    align-items: center;
}

.contact-links {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
    display: flex;
    gap: 20px;
}

.contact-links li img {
    vertical-align: middle;
    max-width: 30px;
    max-height: 30px;
}

/* Responsive Adjustments for Footer */
@media only screen and (max-width: 1080px) {
    footer {
        /* Keep flex-direction as row */
        padding: 20px 10px; /* Reduce horizontal padding */
        font-size: 0.8em; /* Adjust font size for smaller screens */
    }

    /* Adjust gap and icon sizes */
    .contact-links {
        gap: 15px;
    }

    .contact-links li img {
        max-width: 20px;
        max-height: 20px;
    }

    /* Allow flex items to shrink */
    #footer-left,
    .wrapper,
    #footer-right {
        flex: 1 1 auto;
    }

    /* Adjust text alignment */
    #footer-left {
        text-align: left; /* Keep text aligned to left */
    }

    #footer-right {
        text-align: right; /* Keep text aligned to right */
    }
}
/*-----------------------------------------*\
    CONTACT FORM STYLES + CONTACT PORTRAIT
\*-----------------------------------------*/

.contactPortrait {
    margin: 175px 175px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactPortrait img {
    max-width: 30vw;
    height: auto;
    margin-right: 125px;
}

.contactPortrait p {
    margin: 50px 100px 0 0;
    text-align: center;
    font-size: 3em;
}

.contact {
    margin: 0 100px;
    max-width: 600px;
    min-width: 300px;
    color: #000000;
    text-align: left;
    font-size: 2.3em;
    flex-grow: 1;
    padding-bottom: 50px;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
}

form {
    font-size: 0.7em;
    text-align: left;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
}

label {
    font-size: 1.2em;
    margin: 10px 0 5px;
}

input,
textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    height: 150px;
}

.g-recaptcha {
    margin-top: 15px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background-color: #78866b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #56604D;
}

/* Responsive Adjustments for Contact Section */
@media only screen and (max-width: 1080px) {
    .contactPortrait {
        width: 100vw;
        height: auto;
        margin: 150px 0;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .contactPortrait img {
        margin: 0 0 50px 0;
        max-width: 75vw;
    }
    
    .contactPortrait p {
    margin: 0px 0px 0 0;
    text-align: center;
    font-size: 2em;
}

    .contact {
        padding-left: 0;
        font-size: 1.3em;
    }
}

/*------------------------------------*\
    TYPE STYLES
\*------------------------------------*/

p {
    /* General paragraph styles if any */
}

h1 {
    text-align: center;
}

h2 {
    /* Styles for h2 */
}

h3 {
    /* Styles for h3 */
}

h4 {
    /* Styles for h4 */
}

h5 {
    /* Styles for h5 */
}

h6 {
    /* Styles for h6 */
}

/*------------------------------------*\
    MEDIA QUERIES FOR LARGE SCREENS
\*------------------------------------*/

/*------ MEDIA QUERY 2560px and Up ------*/
@media only screen and (min-width: 2560px) {
    .contactPortrait {
        margin: 250px 0 0 150px;
        justify-content: space-between;
    }

    .contactPortrait img {
        max-width: 1000px;
        margin-right: 50px;
    }

    .portrait {
        margin: 150px 0 0 250px;
        justify-content: flex-start;
    }

    .portrait img {
        max-width: 650px;
        margin-right: 50px;
    }
}

/*-----------------------------------------*\
    PORTFOLIO PAGES TEMPLATE LEFT
\*-----------------------------------------*/

/* Portfolio Boilerplate */
.portfolio-left {
    background-color: #f2f2f2;
    padding-top: 0px;
    max-width: 100%;
    max-height: calc(100vh - 85px);
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: visible;
}

.portfolio-left p {
    padding-top: 25px;
    text-align: left;
    font-size: .75em;
    max-width: 500px;
}


/* Portfolio Hero Section */
.portfolio-img-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 85px 100px;
    flex-wrap: wrap;
}

.portfolio-img-left img {
    max-width: 50%;
    height: auto;
    margin-top: 50px;
    margin-right: 50px;
}

.portfolio-img-left .text {
    text-align: left;
    max-width: 50%;
    color: #000000;
    font-size: 3em;
}

.portfolio-img-left .text .handHello-Wrapper {
    margin-bottom: 20px;
}

.portfolio-img-left .text {
    padding-top: 85px;
    line-height: 1.6;
}

/* Photography Section */
.photography-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Removed justify-content to allow natural content flow */
    /* Removed height to let the content dictate the height */
    margin: 100px;
    padding: 0;
}

.image-compare-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.image-compare-section {
    width: 100%;
    margin: 0 auto;
}

.description-section {
    max-width: 800px;
    width: 100%;
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 0 20px;
}

.description-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.description-section p {
    font-size: 1em;
    line-height: 1.6;
}

.photography-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 300px;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
    .photography-section {
        /* Adjust margins for smaller screens */
        margin: 105px 20px 0;
        /* Remove align-items to allow full-width content */
        align-items: flex-start;
    }

    .image-compare-wrapper {
        max-width: 100%;
    }

    .description-section {
        max-width: 100%;
        padding: 0 10px 50px 10px; /* Adjust padding for mobile */
    }

    .description-section h3 {
        font-size: 1.5em;
    }

    .description-section p {
        font-size: 1em;
    }

    .photography-divider {
        margin: 0 20px;
    }
}
/* Responsive Adjustments for Portfolio Left */
@media only screen and (max-width: 1080px) {
    .portfolio-hero {
        padding-top: 85px;
    }
    /* Override fixed height and margins for .portfolio-left */
    .portfolio-left {
        height: auto;
        max-height: none;
        margin: 0;
        padding-top: 85px; /* Add some top padding if needed */
    }

    .portfolio-img-left {
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
    }

    .portfolio-img-left img {
        padding: 0; /* Remove padding */
        max-width: 100%;
        margin: 0 0 20px 0;
    }
    
    .portfolio-left p {
        padding-top: 25px;
        padding-bottom: 25px;
        text-align: left; /* Center text for better mobile view */
        font-size: 0.5em; /* Adjust font size for readability */
        max-width: 600px;
    }
}

/*-----------------------------------------*\
    PORTFOLIO PAGES TEMPLATE RIGHT
\*-----------------------------------------*/

/* Portfolio Boilerplate */
.portfolio-right {
    justify-content: center;
    margin: 0 0 0 100px;
    background-color: #F7F7F7;
    padding-top: 100px;
}

.portfolio-right p {
    padding-top: 25px;
    text-align: left;
    font-size: .75em;
    max-width: 500px;
}

/* Portfolio Hero Section */
.portfolio-img-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0 100px 0;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

#cover-sketch {
    max-width: 25vw;
    height: auto;
}

#bedroom, #tim-cup, #horse-phone {
    max-width: 39vw;
    height: auto;
}

.portfolio-img-right img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -100px 250px 0 0;
}

.portfolio-img-right .text {
    max-width: 50%;
    color: #000000;
    font-size: 3em;
}

.portfolio-img-right .text .handHello-Wrapper {
    margin-bottom: 20px;
}

.portfolio-img-right .text {
    text-align: left;
    line-height: 1.6;
}

/* Responsive Adjustments for Portfolio Right */
@media only screen and (max-width: 1080px) {
    /* Override left margin for .portfolio-right */
    .portfolio-right {
        margin: 0;
        padding-top: 85px; /* Add some top padding if needed */
    }
    
    #cover-sketch {
    max-width: 50vw;
    height: auto;
    }

    #tim-cup, #bedroom, #horse-phone {
    max-width: 90vw;
    height: auto;
    }

    .portfolio-img-right {
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
    }

    .portfolio-img-right img {
        max-width: 80vw;
        margin: 10px 0 20px;
    }
    
    .portfolio-right p {
        padding-top: 25px;
        padding-bottom: 25px;
        text-align: left; /* Center text for better mobile view */
        font-size: 0.5em; /* Adjust font size for readability */
        max-width: 600px;
    }
    .text h3 {
    font-size: 1em;
}
}

/*------------------------------------*\
    RESUME PAGE STYLES
\*------------------------------------*/

/* General Styles */
.resume-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    width: 100%;
}

/*.resume-container img {
    max-width: 400px;
    margin: 100px 0px;
}*/

/* Header Styles */
.resume-header {
    margin: 150px 0;
}

.resume-header h1 {
    font-size: 40px; /* Equivalent to 2.5rem if base font size is 16px */
    font-weight: 700;
    color: #000; /* Black color for headings */
    text-align: left;
}

/* Section Styles */
.resume-section {
    margin-bottom: 50px; /* Spacing between sections */
    width: 100%
}

.resume-section-header h3 {
    font-size: 2.5em; /* Equivalent to 2rem */
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #000; /* Black color for headings */
}

.resume-section-content {
    margin-top: 20px;
}

/* Content Rows */
.resume-content-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px; /* Spacing between content rows */
}

/* Columns */
.resume-left-column,
.resume-right-column {
    width: 50%;
    box-sizing: border-box;
}

.resume-left-column {
    padding-right: 20px;
}

.resume-right-column {
    padding-left: 20px;
}

/* Date Column */
.resume-date {
    font-size: 16px; /* Equivalent to 1rem */
    color: #555555; /* Subheading color */
    margin-bottom: 5px;
}

/* Right Column Headings */
.resume-right-column h4 {
    font-size: 24px; /* Equivalent to 1.5rem */
    font-weight: 600;
    margin-bottom: 5px;
    color: #000; /* Black color for headings */
}

.resume-company,
.resume-institution {
    font-size: 16px; /* Equivalent to 1rem */
    color: #2A2A2A; /* Text color */
    margin-bottom: 10px;
}

/* Paragraphs and Lists in Right Column */
.resume-right-column p,
.resume-right-column ul {
    font-size: 16px; /* Equivalent to 1rem */
    color: #2A2A2A; /* Text color */
}

/* Lists */
.resume-list {
    list-style-type: disc;
    margin-left: 20px;
}

.resume-list li {
    margin-bottom: 5px;
}

/* Divider */
.resume-divider {
    border: none;
    border-top: 1px solid #ccc; /* Light gray divider color */
    width: 95vw; /* Set width to 85% of the viewport width */
    position: relative;
    left: 50%; /* Position the left edge at the center of the viewport */
    transform: translateX(-50%); /* Shift the element left by 50% of its own width */
    margin: 40px 0; /* Vertical margin */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

/* Responsive Design */
@media only screen and (max-width: 1080px) {
    .resume-container {
        max-width: 400px;
    }
    .resume-content-row {
        flex-direction: column;
    }

    .resume-left-column,
    .resume-right-column {
        width: 100%;
        padding: 0;
    }

    .resume-section {
        margin-bottom: 40px;
    }

    .resume-section-header h3 {
        font-size: 24px; /* Reduced from 32px */
    }

    .resume-right-column h4 {
        font-size: 20px; /* Reduced from 24px */
    }

    .resume-header h1 {
        font-size: 32px; /* Reduced from 40px */
    }
}


/*------------------------------------*\
            IMAGE COMPARE
\*------------------------------------*/

.icv {
  position: relative;
  overflow: hidden;
  cursor: row-resize;
}

.icv__icv--vertical {
  cursor: row-resize;
}

.icv__icv--horizontal {
  cursor: col-resize;
}

.icv__img {
  pointer-events: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}

.icv__is--fluid .icv__img {
  display: none;
}

.icv__img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0px;
}

.icv__img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0px;
  width: auto;
}

.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}

.icv__imposter {
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.icv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}

.icv__is--fluid .icv__wrapper,
.icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}

.icv__is--fluid .icv__wrapper,
.icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}

.icv__fluidwrapper {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icv__control {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  top: 0px;
  z-index: 5;
}

.icv__icv--vertical .icv__control {
  flex-direction: row;
  left: 0;
  width: 100%;
}

.icv__control-line {
  height: 50%;
  width: 2px;
  z-index: 6;
  background: white;
}

.icv__icv--vertical .icv__control-line {
  width: 50%;
}

.icv__theme-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  transition: all 0.1s ease-out;
  z-index: 5;
}

.icv__icv--vertical .icv__theme-wrapper {
  flex-direction: column;
}

.icv__arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-out;
}

.icv__circle {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid white;
}

.icv__label {
  position: absolute;
  bottom: 1rem;
  z-index: 12;
  background: rgba(0, 0, 0, 0.33);
  color: white;
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  user-select: none;
}

.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}

.icv__label.on-hover {
  transform: scale(0);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}

.icv:hover .icv__label.on-hover {
  transform: scale(1);
}

.icv__label-before {
  left: 1rem;
}

.icv__label-after {
  right: 1rem;
}

.icv__label-before.vertical {
  top: 1rem;
}

.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}

.icv__body {
  user-select: none;
}
