/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');*/

/*===== CUSTOM FONTS =====*/

@font-face {
    font-family: "CustomFont";   
    src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff") format("woff");
    src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff2") format("woff2");
    /*font-family: "akzidenz";
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
    font-family: "knockout";
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");*/
    }

@font-face {
    font-family: 'akzidenz';
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
}

@font-face {
    font-family: 'knockout';
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");
}

/*===== VARIABLES =====*/

:root {    
    --green-primary: #6d8d36;
    --indigo-secondary: #1c283e;
    --white-light: #eaebed;
    --text-color: rgb(33, 37, 41);
    --black-main: #000;
    --white-main: #fff;
    --gray: #97968e;
    --design-fonts: 'CustomFont';
    --akzidenz-font-family: Helvetica, Arial, sans-serif;
    --knockout-font-family: 'knockout';
    --heading-font: 'CustomFont';
    --line-height: 1.5;
    --letter-spacing: 1;
    --font-size: 20px;
}

/*===== PRESETS =====*/

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;    
    overflow-x: hidden;
    font-family: var(--akzidenz-font-family);
    font-size: 18px;
}

.for-overflow{
    overflow-x: hidden;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

p{
    line-height: var(--line-height);
    font-size: var(--font-size);
    letter-spacing: var(--letter-spacing);
    font-family: Helvetica, Arial, sans-serif;
}



/*===== UTILITY CLASSES =====*/

.container {
    width: 85%;
    max-width: 1200px;
    margin-inline: auto;
}

.section-padding{
    padding-block: 3rem;
}


/*===== SPINNERS AND LOADERS =====*/

.loader {
    position: relative;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6d8d36;
    width: 70px;
    height: 70px;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  .spinner-overlay{
      position: absolute;
      top:0px;
      left:0px;
      width: 100%;
      height: 100%;
      background: black;
      opacity: .5;
  }
  .spinner-container{
      position:relative;
      height: 100vh;
      width: 100vw;
      border:1px solid
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
 

/*===== HEADER STYLES =====*/

.main-header{
    padding-block: 2rem;
    
    position: absolute;
    z-index: 2;
    width: 100%;
}

.main-header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .container .branding-wrapper{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-header .container .branding-logo{
    /*background-color: var(--white-main);
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 20px;*/
}

.main-header .container .links{
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-header .container .links .socials {
    display: flex;
    gap: 1rem;
}

.main-header .container .links .socials a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}

.main-header .container .links .socials a:hover [class^="icon-"],
.main-header .container .links .socials a:hover [class*=" icon-"]{
    color: var(--green-primary);
}

.main-header .container .links .navigation{
    display: flex;
    gap: 1.5rem;
}

.main-header .container .links ul.navigation li{
    background-color: var(--white-main);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li a{
    font-family: var(--design-fonts);
    color: var(--green-primary);
    font-size: 18px;
    
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li.current-menu-item{
    background-color: var(--green-primary);
}

.main-header .container .links ul.navigation li.current-menu-item a{
    color: white;
}

.main-header .container .links ul.navigation li:hover{
    background-color: var(--green-primary);
    
}

.main-header .container .links ul.navigation li:hover a {
    color: white;
}


/*===== BANNER STYLES =====*/

section#nameRhino.banner{
    width: 100vw;
    height: auto;
    aspect-ratio: 1400 / 600;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: black;
    isolation: isolate;
    min-height: unset;
}

section#nameRhino.banner img {
    object-fit: cover;
    width: 100%;
    object-position: center;
    height: 100%;
}

section#nameRhino.banner .intro-wrapper{
    width: 100vw;
    position: absolute;
    bottom: 10%;   
    z-index: 10;
}

section#nameRhino.banner .intro-wrapper .rhino-intro{
    width: 540px;
}

section#nameRhino.banner .intro-wrapper .rhino-intro h1{
    font-family: var(--design-fonts);
    font-size: 60px;
    color: white;
}

section#nameRhino.banner .intro-wrapper .rhino-intro h1 strong{
    color: var(--green-primary);
}

section#nameRhino.banner .intro-wrapper .rhino-intro p{
    color: white;
}

/*----- RHINO BANNER RESPONSIVENESS -----*/
@media screen and (max-width: 1023px){
    section#nameRhino.banner .intro-wrapper .container{
        width: 95%;
    }

    section#nameRhino.banner .intro-wrapper .rhino-intro h1{
        font-size: 32px;
    }

    section#nameRhino.banner .intro-wrapper .rhino-intro p{
        font-size: 16px;
    }

    section#nameRhino.banner .intro-wrapper{
        bottom: 5%;
        
    }

    section#nameRhino.banner .intro-wrapper .rhino-intro{
        width: 420px;
        
    }
}

@media screen and (max-width: 599px){
    section#nameRhino.banner .intro-wrapper .container{
        padding: 1.5rem 0;
    }
        
    section#nameRhino.banner .intro-wrapper .rhino-intro{
        width: 100%;
    }

    
}

/*===== RHINO NAMING EXPLANATION STYLES =====*/
section.rhino-explanation {
    padding-bottom: 6rem;    
    background-color: white;
    background-image: url("../images/name-a-rhino/ol-pejeta-conservancy-2.webp");
    background-position: bottom right;
    background-size: cover;
}

section.rhino-explanation .container > div {
    width: clamp(54.375rem, 40.7580rem + 21.2766vw, 59.375rem);
}

section.rhino-explanation .container h2{
    font-family: var(--design-fonts);
    font-size: 40px;
    margin-bottom: 2rem;
    font-weight: lighter;
}



section.rhino-explanation p{
    font-size: 18px;
    margin-bottom: 1.5rem;
}

section.rhino-explanation .explanation-list li{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-block: 9px;
    padding-left: 20px;
    border: thin solid var(--green-primary);
}

section.rhino-explanation .explanation-list li img{
    display: block;
}

section.rhino-explanation .explanation-list li p{
    margin: 0;
}

/*----- RHINO EXPLANATION RESPONSIVENESS -----*/
@media screen and (max-width: 1023px){
    section.rhino-explanation .container{
        width: 95%;
    }
    section.rhino-explanation .container > div{
        width: 100%;
    }

    section.rhino-explanation .container h2{
        font-size: clamp(1.75rem, 1.6145rem + 0.6024vw, 2rem);
    }

    section.rhino-explanation p{
        font-size: 16px;
    }
}

@media screen and (max-width: 599px){
    section.rhino-explanation .explanation-list li{
        padding-left: clamp(0.625rem, -0.3125rem + 4.1667vw, 1.25rem);
    }

    section.rhino-explanation{
        background-image: none!important;
    }
}

/*===== JOIN THE FAMILY STYLES =====*/
section.join-family{
    background-color: var(--indigo-secondary);
    
    background-size: 43% 100%;
    background-repeat: no-repeat;
    background-position: right;
   
}

section.join-family .container{
    display: flex;
    align-items: center;
    gap: clamp(4rem, -20.0000rem + 32.0000vw, 8rem);
}

section.join-family .container .join-family-content{
    flex-basis: 45%;
    color: white;
}

section.join-family .container .join-family-content h2{
    font-family: var(--design-fonts);
    font-size: 40px;
    margin-bottom: 1.5rem;
}

section.join-family .container .join-family-content p{
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
}

/*===== RHINO FORM STYLES =====*/
.rhino-future-video-container{
    margin: 0 auto;
    width: fit-content;
    padding-bottom: 3rem;
    aspect-ratio: 560 / 315;
}

.rhino-future-video-container iframe{
    aspect-ratio: 560 / 315;
    height: auto;
}

@media screen and (max-width: 840px){
    .rhino-future-video-container{
      width: 95%;
    }

    .rhino-future-video-container iframe{
        width: 100%;
    }
  }

section.rhino-form{
    
    background: var(--indigo-secondary);
    color: white;
    position: relative;
}

section.rhino-form .rhino-form-content p{
    width: 570px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 4rem;
}

section.rhino-form .rhino-form-content form{
    width: 620px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: thin solid var(--gray);
    padding-block: 36px;
    border-radius: 5px;
    color: black;
    background: white;
}

section.rhino-form .rhino-form-content form .form-control,
section.rhino-form .rhino-form-content form button{
    width: 560px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

section.rhino-form .rhino-form-content form .form-control input{
    height: 3rem;
    border-radius: 5px;
    font-size: 20px;
    text-indent: 2rem;
    border: thin solid var(--green-primary)
}

section.rhino-form .rhino-form-content form button{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    height: 3rem;
    border-radius: 5px;
    outline: none;
    border: none;
    background: var(--green-primary);
    cursor: pointer;
    font-size: 20px;
    color: white;
}

section.rhino-form .rhino-form-content form{
    position: relative;
}

section.rhino-form .rhino-form-content .rhino-register-overlay{
    position: absolute;
    inset: 0;
    background: white;
    display: none;
}

.reveal-rhino-subscribe-overlay{
    width: 100%;
    display: flex!important;
    align-items: center;
    justify-content: center;    
}

.reveal-rhino-subscribe-overlay .loader{
    left: unset;
    top: unset;
}

.reveal-rhino-subscribe-overlay .show-response-message{
    display: none;
}

.reveal-rhino-subscribe-overlay p{
    display: flex;
    flex-direction: column;
}

/*----- RHINO FORM RESPONSIVENESS -----*/
@media screen and (max-width: 650px){
    
    section.rhino-form .rhino-form-content p{
        width: 90%;
    }
    section.rhino-form .rhino-form-content form{
        width: 95%;
    }

    section.rhino-form .rhino-form-content form .form-control, section.rhino-form .rhino-form-content form button{
        width: 90%;
    }
}




/*===== FOOTER STYLES =====*/

