/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--red)), 0.4);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background: rgb(var(--clr--red));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--red), 0.4);
}

:root {
    --clr--blue: 37, 55, 117; /* #253775 */
    --clr--red: 203, 36, 42; /* #CB242A */
    --clr--gray: 243, 243, 243; /* #F3F3F3 */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--roboto: "Roboto", serif;
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, 1vw, 21px);
    font-weight: 500;
    font-family: var(--fnt--roboto);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 5px 0;
    line-height: 1.1;
    font-weight: 600;
}

h1 {
    font-size: clamp(30px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(22px, 1.8vw, 48px);
}

h3 {
    font-size: clamp(19px, 1.2vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.1vw, 27px);
}

h5 {
    font-size: clamp(16px, 0.9vw, 23px);
}

h6 {
    line-height: 1.3;
}

p,
ul, ol {
    font-size: clamp(15px, 1.1vw, 20px);
    font-weight: 400;
    line-height: 1.3;
}

p:nth-last-of-type(1) {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 20px;
}

ul.copy-lists li {
    margin-bottom: 20px;
}

.small,
small {
    display: inline-block;
    font-weight: 400;
    line-height: 1.2;
    font-size: 13px !important;
}

a {
    color: currentColor;
    text-decoration: none;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
}

.section-row {
    padding: 3% 12px;
    position: relative;
}

.section-row-large {
    padding: 6% 0;
    position: relative;
}

section {
    position: relative;
}

.titles {
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.titles .title-pill {
    color: rgb(var(--clr--white));
    font-size: clamp(18px, 1.4vw, 41px);
    background-color: rgb(var(--clr--blue));
    display: inline-block;
    padding: 10px 50px;
    margin: 0 auto;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.titles p.title-pill {
    font-size: clamp(16px, .9vw, 20px);
    font-weight: 600;
}

.seperator {
    padding: 15px;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700,
strong {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

.fnt--satoshi {
    font-family: var(--fnt--roboto);
}

/* ====== COLORS ====== */
.clr--blue {
    color: rgb(var(--clr--blue));
}

.clr--red {
    color: rgb(var(--clr--red));
}

.clr--gray {
    color: rgb(var(--clr--gray));
}

.clr--black {
    color: rgb(var(--clr--black));
}

.clr--white {
    color: rgb(var(--clr--white));
}

.bgclr--blue {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
}

.bgclr--red {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--red));
}

.bgclr--gray {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--gray));
}

.bgclr--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
}

.bgclr--white {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, .9vw, 19px);
    font-weight: 500;
    line-height: 1.3;
    min-height: 30px;
    padding: 10px;
    background-color: rgb(var(--clr--white));
    border: 1px solid rgb(var(--clr--white));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.form-control:focus {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    outline: 0;
    border: thin solid rgb(var(--clr--blue));
    box-shadow: none;
    transition: ease-in .3s;
    -webkit-transition: ease-in .3s;
    -moz-transition: ease-in .3s;
    -ms-transition: ease-in .3s;
    -o-transition: ease-in .3s;
}

input#search-all-media {
    padding: 15px 45px 15px 15px;
}

.form-control::-webkit-input-placeholder {
    color: rgba(var(--clr--black), .4);
}

.form-control:-ms-input-placeholder {
    color: rgba(var(--clr--black), .4);
}

select.form-control:has(option[value=""]:checked),
select.form-control option:first-child,
.form-control::placeholder {
    color: rgba(var(--clr--black), .4);
}
select.form-control option{
    color: rgb(var(--clr--black));
}

textarea.form-control {
    min-height: 120px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0 solid rgb(var(--clr--white));
    border-bottom: 1px solid rgb(var(--clr--white));
    -webkit-text-fill-color: var(--clr--primary--black);
    box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    width: 100%;
    margin-top: 2px;
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--red));
    padding: 5px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: clamp(17px, 1vw, 22px);
    font-weight: 500 !important;
    color: rgb(var(--clr--white));
    line-height: 1.1;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    width: fit-content;
    padding: 5px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: none;
    position: relative;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}

.btn i {
    margin-left: 10px;
}

.btn-large {
    font-size: clamp(18px, 1.4vw, 41px);
    font-weight: 700 !important;
    padding: 10px 60px;
    position: relative;
    z-index: 9;
}

.primary--btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--red));
    border: 2px solid rgb(var(--clr--red));
}

.primary--btn:hover {
    color: rgb(var(--clr--red));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--red));
}

.secondary--btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
    border: 2px solid rgb(var(--clr--blue));
}

.secondary--btn:hover {
    color: rgb(var(--clr--blue));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--blue));
}

/* OWL CAROUSEL */
.owl-loaded {
    width: 100%;
}

.owl-stage-outer {
    overflow: visible;
}

.owl-stage {
    display: flex;
}

.owl-item {
    padding: 20px 5px;
    vertical-align: top;
    display: flex;
    opacity: .1;
}

.owl-item.active {
    opacity: 1;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    color: rgb(var(--clr--blue));
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 50%;
}

.owl-nav button.owl-prev {
    left: -50px;
}

.owl-nav button.owl-next{
    right: -50px;
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    background: rgba(var(--clr--blue), .3);
    border: 0;
    border-radius: 50%;
}

.owl-dots button.owl-dot.active {
    background: rgb(var(--clr--blue));
}

/* ====== HEADER ====== */
header {
    width: 100%;
    min-height: 95px;
    padding: 5px 0;
    margin-bottom: 50px;
    background-color: rgb(var(--clr--blue));
    position: relative;
    z-index: 99;
    border-radius: 0 0 30px 30px;
    -webkit-border-radius: 0 0 30px 30px;
    -moz-border-radius: 0 0 30px 30px;
    -ms-border-radius: 0 0 30px 30px;
    -o-border-radius: 0 0 30px 30px;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(25,40,87,0.3);
    -moz-box-shadow: 0px 25px 25px 0px rgba(25,40,87,0.3);
    box-shadow: 0px 25px 25px 0px rgba(25,40,87,0.3);
}

header.header-home {
    background-color: rgb(var(--clr--white));
    display: flex;
    align-items: center;
}

.logo {
    max-width: 270px;
    padding: 10px 0;
    line-height: 1;
    display: block;
    position: relative;
}

.logo img {
    position: relative;
}

/* ====== NAVIGATION ====== */
header.header-home .menu-menu-container {
    width: 100%;
}

ul#menu-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

div#robkat-header-menu {
    justify-content: flex-end;
}

header.header-home div#robkat-header-menu {
    justify-content: center;
}

.navbar-light .navbar-nav .nav-link,
.menu-item a {
    color: rgb(var(--clr--white));
    font-size: clamp(15px, 1vw, 21px);
    font-weight: 300;
    text-decoration: none;
    padding: 10px 25px;
    display: block;
}

header.header-home .navbar-light .navbar-nav .nav-link,
header.header-home .menu-item a {
    padding: 10px 35px;
    color: rgb(var(--clr--blue));
    display: block;
}

.navbar-light .navbar-nav .active-nav .nav-link,
.navbar-light .navbar-nav .nav-link:hover,
.menu-item.current-menu-item a,
.menu-item:hover a {
    -webkit-text-stroke: 1.1px rgb(var(--clr--white));
}
header.header-home .menu-item:hover a {
    -webkit-text-stroke: 1.1px rgb(var(--clr--blue));
}
header.header-home .menu-item.current-menu-item a{
    color: rgb(var(--clr--blue));
    -webkit-text-stroke: 1.1px rgb(var(--clr--blue));
}
.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-icon {
    background-color: rgb(var(--clr--white));
    width: 32px;
    height: 3px;
    margin: 6px 0;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

header.header-home .navbar-icon {
    background-color: rgb(var(--clr--blue));
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(1),
button.navbar-toggler.button-toggled .navbar-icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(2),
button.navbar-toggler.button-toggled .navbar-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(3),
button.navbar-toggler.button-toggled .navbar-icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.navbar-light .navbar-toggler.collapsed .navbar-icon {
    opacity: 1 !important;
    transform: rotate(0deg) translate(0px, 0px) !important;
    -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
    -moz-transform: rotate(0deg) translate(0px, 0px) !important;
    -ms-transform: rotate(0deg) translate(0px, 0px) !important;
    -o-transform: rotate(0deg) translate(0px, 0px) !important;
}
/* ====== HERO SECTION ====== */
section.hero-banner {
    margin-top: -80px;
}

.hero-container {
    width: 100%;
    height: 85vh;
    position: relative;
}

.hero-container img,
.hero-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-area {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero-wrapper {
    margin-top: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.hero-content {
    text-align: center;
    background-color: rgba(var(--clr--white), .8);
    width: 700px;
    max-width: 100%;
    padding: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.hero-content .hero-robbie-name,
.hero-content .hero-robbie-ward {
    text-transform: uppercase;
    margin: 0;
}

.hero-content .hero-robbie-name {
    color: rgb(var(--clr--red));
    font-size: clamp(30px, 3.7vw, 76px);
    white-space: nowrap;
}

.hero-content .hero-robbie-ward {
    font-size: clamp(22px, 2.5vw, 50px);
    white-space: nowrap;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(16px, 1.1vw, 24px);
}

.hero-wrapper .hero-robbie {
    width: auto;
    height: 75vh;
}

/* ====== STANDING STRONG ====== */
.image-content-wrapper {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 9;
    align-items: stretch;
    justify-content: space-between;
}

.image-content-wrapper > * {
    width: 50%
}

.image-content-wrapper .text-content-title {
    font-size: clamp(21px, 1.4vw, 40px);
    margin-bottom: 30px;
}

.image-content-wrapper .image-content img {
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.about-robbie .image-content{
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
    min-height: 100%;
    max-height: 850px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
/* ====== LATEST UPDATES ====== */
.latest-updates {
    background-color: rgb(var(--clr--gray));
    padding-top: 5%;
    z-index: 9;
}

.latest-updates.media-page {
    padding-block: 2%;
    margin-top: 5%;
}

.titles-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.titles-wrapper p {
    font-weight: 300;
}

.search-media {
    width: 100%;
    max-width: 350px;
    position: relative;
}

.search-media .btn {
    color: rgb(var(--clr--black));
    padding: 15px 15px;
    margin: 2px 0;
    position: absolute;
    top: 0;
    right: 0;
}

.latest-update-carousel {
    margin-block: 40px;
    position: relative;
}

.latest-update-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(25,40,87,0.1);
    -moz-box-shadow: 0px 10px 30px 0px rgba(25,40,87,0.1);
    box-shadow: 0px 10px 30px 0px rgba(25,40,87,0.1);
}

.latest-update-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.fb-updates .latest-update-item img {
    height: 250px;
}

.latest-update-item .latest-update-copy {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    height: calc(100% - 300px);
}

.latest-update-item .latest-update-copy .latest-update-title {
    color: rgb(var(--clr--blue));
    margin-bottom: 1rem;
}

.latest-update-item .latest-update-copy p {
    font-size: clamp(16px, .75vw, 20px);
    flex-grow: 1;
}

.latest-update-item .latest-update-copy .btn {
    margin-inline: auto;
}

.fb-updates .latest-update-item .latest-update-copy .btn {
    margin-right: inherit;
}

.latest-update-btnwrapper {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    position: absolute;
    bottom: -15px;
    right: 0;
}

.article-feature-image{
    max-height: 600px;
    width: auto !important;
    display: block !important;
    margin: auto !important;
}

.cff-posts-wrap {
    margin-top: 35px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 20px;
}

/* ====== ABOUT TRAEGER ====== */
.about-traeger-image {
    margin-top: 60px;
    position: relative;
    z-index: 9;
}

.about-traeger-image img,
.single-article-image img {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* ====== SINGLE MEDIA ====== */
.single-article-image {
    margin-bottom: 60px;
}

.single-article-wrapper .text-content-title {
    margin-bottom: 25px;
}

span.cff-text {
    font-size: clamp(15px, 1vw, 20px);
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7; 
    -webkit-box-orient: vertical;
}

#cff .cff-photo,
#cff .cff-html5-video,
#cff video {
    width: 100%;
    height: 300px;
    margin-top: 15px;
    overflow: hidden;
}

#cff .cff-photo img,
#cff .cff-html5-video img,
#cff video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== CONTACT ====== */
.contact-robbie {
    background: url("https://d4upmo8a0wbci.cloudfront.net/wp-content/uploads-robkatter_com_au/contact-robbie-bg.jpg") no-repeat 50% 50%;
    background-size: cover;
    padding-top: 5%;
    margin-top: -80px;
}
.contact-robbie-img{
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    display: block;
}
.contact-form {
    background-color: rgb(var(--clr--white));
    padding: 30px;
    margin-block: 60px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    position: relative;
    z-index: 9;
}

.contact-form .contact-form-title {
    text-align: center;
    margin-bottom: 35px;
}

.contact-form .form-control {
    background-color: rgb(var(--clr--gray));
    padding: 15px 20px!important;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

a#rk-message_submit_button {
    width: 90%;
    margin: 15px auto 0;
    display: block;
}

.map-wrapper {
    position: relative;
    z-index: 9;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.map-wrapper .map-info {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
    padding: 20px;
    width: 350px;
    position: absolute;
    top: 40px;
    right: 40px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* ====== 404 ====== */
.error-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.error-title {
    color: rgb(var(--clr--blue));
    font-size: clamp(48px, 5vw, 92px);
    font-weight: 700;
}

/* ====== ROUND PATTERN ====== */
.donut-wrapper {
    position: absolute;
    overflow: hidden;
}

.donut-wrapper svg.round-pattern {
    aspect-ratio: 1 / 1;
    position: absolute;
}

svg.blue-donut {
    color: rgb(var(--clr--blue));
}

svg.red-donut {
    color: rgb(var(--clr--red));
}

.donut-home-hero-topright {
    width: 21vw;
    height: 17vw;
    top: 0;
    right: 0;
}

svg.home-hero-topright {
    width: 45vw;
    bottom: 0;
}

.donut-home-hero-bottomleft {
    width: 12vw;
    height: 47vw;
    top: 100%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

svg.home-hero-bottomleft {
    width: 50vw;
    bottom: 0;
    right: 0;
}

.donut-home-voice-bottomright {
    width: 27vw;
    height: 82vw;
    top: 100%;
    right: 0;
    transform: translateY(-27%);
    -webkit-transform: translateY(-27%);
    -moz-transform: translateY(-27%);
    -ms-transform: translateY(-27%);
    -o-transform: translateY(-27%);
}

svg.home-voice-bottomright {
    width: 85vw;
}

.donut-home-footer-bottomleft {
    width: 25vw;
    height: 27vw;
    bottom: 0;
    left: 0;
}

svg.home-footer-bottomleft {
    width: 45vw;
    right: 0;
}

.donut-about-robbie-topright {
    width: 22vw;
    height: 32vw;
    top: -80px;
    right: 0;
}

svg.about-robbie-topright {
    width: 45vw;
    bottom: 0;
}

.donut-about-footer-bottomleft {
    width: 29vw;
    height: 34vw;
    bottom: 0;
    left: 0;
}

svg.about-footer-bottomleft {
    width: 85vw;
    top: 0;
    right: 0;
}

.donut-about-traege-bottomright {
    width: 28vw;
    height: 100vw;
    bottom: 0;
    right: 0;
}

svg.about-traege-bottomright {
    width: 110vw;
    top: 0;
    left: 0;
}

.donut-media-topright {
    width: 17vw;
    height: 23vw;
    top: 0;
    right: 0;
}

svg.media-topright {
    width: 35vw;
    bottom: 0;
    left: 0;
}

.donut-media-bottomleft {
    width: 25vw;
    height: 31vw;
    bottom: 0;
    left: 0;
}

svg.media-bottomleft {
    width: 45vw;
    top: 0;
    right: 0;
}

.donut-contact-hero-topright {
    width: 15vw;
    height: 44vw;
    top: 65%;
    right: 0;
}

svg.contact-hero-topright {
    width: 45vw;
    top: 0;
}

.donut-contact-map-bottomleft {
    width: 24vw;
    height: 62vw;
    top: 25%;
    left: 0px;
}

svg.contact-map-bottomleft { 
    width: 60vw;
    top: 0;
    right: 0;
}

.donut-contact-footer-bottomright {
    width: 23vw;
    height: 12vw;
    bottom: 0;
    right: 0;
}

svg.contact-footer-bottomright {
    width: 32vw;
    top: 0;
    left: 0;
}

/* ====== FOOTER ====== */
footer.footer {
    padding-top: 10%;
}

.footer-wrapper {
    background-color: rgb(var(--clr--gray));
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: relative;
    z-index: 9;
}

.footer-wrapper .footer-logo {
    max-width: 500px;
}

.footer-wrapper .footer-titles {
    color: rgb(var(--clr--blue));
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-wrapper .footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-wrapper .footer-contacts li {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-wrapper span.footer-icons {
    font-size: 18px;
    color: rgb(var(--clr--white));
    text-align: center;
    background-color: rgb(var(--clr--blue));
    padding: 10px;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-wrapper .footer-contacts li p {
    font-size: clamp(15px, 1.3vw, 24px);
    font-weight: 300;
    color: rgb(var(--clr--blue));
}

.footer-wrapper .footer-contacts li p a {
    text-decoration: none;
    word-break: break-word;
}

.footer-wrapper .footer-contacts li p small {
    font-style: italic;
    font-weight: 600;
    display: block;
}

.footer-copyright {
    position: relative;
    z-index: 9;
}

.footer-copyright p {
    color: rgb(var(--clr--blue));
    font-weight: 300;
    padding: 10px 0;
    margin: 25px 0 0 0;
}

.footer-copyright p a {
    display: inline-block;
    text-decoration: underline;
}