/* 
    The root pseudo class element matches the html element.
    We define here our global variables.
    e.g.: Color Palette
*/
:root {
    --color-primary: #db9a39;
    /* --color-primary: rgb(227, 101, 27); */
    --color-secondary: #00d9ff;
    --color-accent: #d28036;
    /* --color-accent: rgb(10,70,71); */
    --color-headings: #291c09;
    --color-body: #000;
    --color-body-darker: #000;
    --color-border: #ccc;
}

/* Universal Selectors */
*, *::after, *::before {
    box-sizing: border-box;
}

/* Mobile first - Then Desktop */

/* Typography */

    /* ::selection pseudo-element to define colors when text is selected */
::selection {
    background: var(--color-primary);
    color: white;
}
html {
    /*  The browser sets the size to 16px by default
        If we set the size of html element to 62.5% of 16px = 10px */
    font-size: 62.5%;
}

.inter-body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
    /* margin: 10px; */
    font-family: Inter, Arial, Arial, Helvetica, sans-serif;
    color: var(--color-body);
    font-size: 2.4rem;
    line-height: 1.5; /* Separate line a little more */
    background: #d28036;
}

h1, h2, h3 {
    font-family:"Fraunces, sans-serif";
    color: var(--color-headings);
    margin-bottom: 1rem; /* This line will control the distance to <p> */
    line-height: 1.1;
}

h1 {    /* 1rem = 10px because html element is 62.5% */
    font-size: 5rem;
}
h2 {
    font-size: 4rem;
}
h3 {
    font-size: 3rem;
    font-weight: 500;
}

/* The bottom margin of the headers will control the distance to <p> */
p {
    margin-top: 0;
}

@media screen and (min-width: 1024px){
    body {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 8rem;
    }
    h2 {
        font-size: 4rem;
    }
    h3 {
        font-size: 2.4rem;
    }
}

/* Links */
a {
    text-decoration: none; /* Remove the underline */
}
.link-arrow {
    color: var(--color-body);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
}

.link-arrow::after { /* Arrow to the right*/
    content: '-->';
    margin-left: 5px;
    transition: margin-left .15s;
}

.link-arrow:hover::after { /* when hover target the after pseudo-element */
    margin-left: 10px;     /* moving arrow to the right */
}

@media screen and (min-width: 1024px){
    .link-arrow {
        font-size: 1.5rem;
    }
}

/* Badges */
/* Using 2nd Object Oriented CSS statement: Separate Structure from Skin */
.badge { /* Structure*/
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 600;
    padding: 0.5rem 2rem;
    white-space: nowrap; /* content of badge should appear in a single line, this prevent of wrapping into a second line */
}

/* Using BEM: BlockElement--Modifier, 2 hyphens -- to separate
              the BlockElement(badge) from the Modifier(primary).
*/
.badge--primary {
    background: var(--color-primary);
    color: #fff;
}
.badge--secondary {
    background: var(--color-secondary);
    color: #fff;
}

.badge--small {
    font-size: 1.6rem;
    padding: 0.5rem 1.5rem;
}

/* Lists*/
.list {
    list-style: none;
    padding-left: 0;
}

.list--inline .list__item {
    display: inline-block;  /* inline-block to be able to apply margins */
    margin-right: 2rem;
    margin-left: 5rem;
}

.list--tick {        /* New Skin */
    list-style-image: url(../images/tick.svg); /* ticks are off screen will need padding */
    padding-left: 3rem;
    color: var(--color-body);
}

.list--tick .list__item {
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}
.list span {
    font-style: italic;
    color: black;
}

@media screen and (min-width: 1024px) {
    .list--tick .list__item {
        padding-left: 0;
    }
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
}
.icon--small {
    width: 30px;
    height: 30px;
}
.icon--primary {                /* Define a Skin for the icon class 
                                   the "icon--" means modifier of 
                                   the icon class
                                */
    fill: var(--color-primary); /* fill property only applies 
                                   to svg images 
                                */
}
.icon--white{
    fill: #fff;
}
.icon-container {
    background: #f3f9fa; /* Color used in our design */
    display: inline-flex; /* <span> is an inline element and
                              width and height don't work on inline elements
                              and we can't use block 'cause it will break up
                              into a new line. We could use inline-block but
                              we won't be able to center horizontally and
                              vertically with justify-content and align-items
                            */
    width: 64px;
    height: 64px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}
.icon-container--accent {
    background: var(--color-accent);
}

/* Buttons */
.btn {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;         /* Make sure text is centered */
    padding: 2rem 4vw;
    border: 0;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    margin: 1rem 0;             /* Separate buttons from other elements */
    outline: 0;                 /* Remove line that shows up when hovering */
}

.btn .icon {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    vertical-align: middle;
}
.btn--primary {
    background: var(--color-primary);
    color: #fff;
}
.btn--primary:hover {
    background: #3a9ffd;
}
.btn--secondary {
    background: var(--color-secondary);
    color: #fff;
}
.btn--secondary:hover {
    background: #00c8eb;
}
.btn--accent {
    background: var(--color-accent);
    color: #fff;
}
.btn--accent:hover {
    background: var(--color-primary);
}

.btn--stretched {
    padding-left: 6rem;
    padding-right: 6rem;
}

.btn--block {
    width: 100%;
    display: inline-block;
}

.btn--outline {
    background-color: #fff;
    color: var(--color-headings);
    border: 2px solid var(--color-headings);
}

.btn--outline:hover {
    background: var(--color-headings);
    color: #fff;
}

/* Buttons for Deskrops */
@media screen and (min-width: 1024px) {
    .btn {
        font-size: 1.5rem;
    }
}

/* Inputs */
.input {
    padding: 1.5rem 3.5rem;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    outline: 0; /* Remove default outline */
    color:var(--color-headings);
    font-size: 2rem;
}

::placeholder {
    color: #cdcbd7;
}
.input-group {
    border: 1px solid var(--color-border);
    border-radius: 30px;
    display: flex;
}
.input-group .input {
    border: 0;
    flex-grow: 1;
    padding: 1.5rem 2rem;
    width: 0; /* Avoids browser setting up wrong width */
}
.input-group .btn {
    margin: 4px;
}
@media screen and (min-width: 1024px){
    .input {
        font-size: 1.5rem;
    }
}

/* Cards */
.card {
    border-radius: 7px;
    box-shadow: 0 0 5px 5px rgba(167, 101, 15, 0.3);
    overflow: hidden;
}

.card__header, 
.card__body {
    padding: 2rem 3rem;
}

.card--primary .card__header {
    background: var(--color-primary);
    color: #fff;
}
.card--primary .badge--primary {
    background: #296abe;
}
.card--secondary .card__header {
    background: var(--color-secondary);
    color: #fff;
}
.card--secondary .badge--secondary {
    background: #02cdf1;
}


/* Plans */
.plan {
    transition: transform .2s ease-out;
}
.plan__name {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-size: 2.4rem;
}
.plan__price {
    font-size: 6rem;;
}
.plan__billing-cycle {
    font-size: 2.4rem;
    font-weight: 300;
    opacity: 0.8;
    margin-right: 1rem;
}
.plan__description {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
}
.plan .list__item {
    margin-bottom: 1.5rem;
}
.plan--popular {
    transform: scale(1.1);
}
.plan--popular .card__header {
    position: relative;
}
.plan--popular .card__header::before {
    content: url(../images/popular.svg);
    width: 40px;
    display: inline-block;
    position: absolute;
    top: -6px;
    right: 5%;
}
.plan:hover{
    transform: scale(1.05);
}
.plan--popular:hover{
    transform: scale(1.15);
}
@media screen and (min-width: 1024px){
    .plan__name {
        font-size: 1.4rem;
    }
    .plan__price {
        font-size: 5rem;
    }
    .plan__billing--cycle {
        font-size: 1.6rem;
    }
    .plan__description {
        font-size: 1.7rem;
    }
}

/* Media */
.media {
    display: flex;
    margin-bottom: 4rem;
}
.media__title {
    margin-top: 0;
}
.media__body {
    margin: 0 2rem;
}
.media__body a {
    color:black
}

.media__image {
    margin-top: 1rem;
}

/* Quotes */
.quote {
    font-size: 3rem;
    font-style: italic;
    color: var(--color-body-darker);
    line-height: 1.3;
}
.quote__text::before {
    content: open-quote;
}
.quote__text::after {
    content: close-quote;
}
.quote__author {
    font-size: 3rem;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 0;
}
.quote__organization {
    color: var(--color-headings);
    opacity: 0.4;
    font-size: 2rem;
    font-style: normal;
}
.quote__line {
    position: relative;
    bottom: 10px;
}

@media screen and (min-width: 1024px){
    .quote {
        font-size: 2rem;
    }
    .quote__author {
        font-size: 2.4rem;
    }
    .quote__organization {
        font-size: 1.6rem;
    }
}

/* Grids */
.grid {
    display: grid;
}

@media screen and (min-width: 960px) {
    .grid--1x2 {
        grid-template-columns: 1fr 2fr;
        column-gap: 30px;
    }
    .grid--1x2s {
        grid-template-columns: 2fr 1fr;
        column-gap: 30px;
    }
    .grid--1x2ss {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .grid--1x3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Testimonials */
.testimonial {
    padding: 3rem;
}
.testimonial__image {
    position: relative;
}
.testimonial__image > img {
    width: 100%;
}
.testimonial__image .icon-container {
    position: absolute;
    top: 3rem;
    right: -32px;
}

@media screen and (min-width: 768px){
    .testimonial .quote,
    .testimonial .quote__author {
        font-size: 2.4rem;
    }
    .testimonial .quote {
        margin-left: 6rem;
    }
}

/* Callouts */
.callout {
    padding: 4rem;
    border-radius: 5px;
}
.callout--primary {
    background: var(--color-primary);
    color: #fff;
}
.callout__heading {
    color: #fff;
    margin-top: 0;
    font-size: 3rem;
}
/* .grid {
    display: grid;
    /*
        The default is: stretch
        that's why we see an extra
        big button.
    */
    /* Horizontal Alignment 
    justify-items: center;
    /* Vertical Alignement 
    align-items: center;
} */

.callout .btn {
    justify-self: center;
    align-self: center;
}

.callout__content {
    text-align: center;
}

@media screen and (min-width: 768px){
    .callout .grid--1x2{
        grid-template-columns: 1fr auto; /* auto: makes the 2nd column wide enough to fit the button 
                                            allownd the first column to take all the extra space */
    }
    .callout__content {
        text-align: left;
    }
    .callout .btn {
        justify-self: start;
        margin: 0 2rem;
    }
}

/* Collapsibles */
.collapsible__header {
    display: flex;
    justify-content: space-between;
}
.collapsible__heading {
    margin-top: 0;
    font-size: 3rem;
}
.collapsible__chevron {
    transform: rotate(-90deg);
    transition: transform .3s;
}
.collapsible__content {
    /* display: none; */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* transition: max-height .3s; */
    transition: all .3s;
}
.collapsible--expanded .collapsible__chevron {
    transform: rotate(0);
}
.collapsible--expanded .collapsible__content {
    /* display: block; */
    max-height: 100vh; /* allows to stretch vertically up
    to 100vh but it will not stretch more than its content */
    opacity: 1;
}

/*  Note:
    Beside the global variables in root 
    we can define a variable in a particular
    element. The variable will be available
    for the element and his children elements.
*/ 
.container {
    max-width: 1140px; /* Restrict width */
    margin: 0 auto;    /* Center container horizontally */
}

/* Blocks */

.block {
    --padding-vertical: 6rem;
    padding: var(--padding-vertical) 2rem;
}
.block__header {
    text-align: center;
    margin-bottom: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #e0ccaf;;
}
.videos {
    display: flex;
    justify-content: center;
}
.videos iframe {
    border-radius: 15px; 
    border: 3px solid #171d22; 
    box-shadow: 15px 15px 15px rgb(29, 28, 28); 
    margin-top: 40px; 
}
.block__heading {
    margin-top: 0;
}
.block--dark {
    background: black;
    color: #7b858b;
}
/* .block--dark .block__heading {
    color: #fff;
} */
.block--dark h1,
.block--dark h2,
.block--dark h3 {
    color: #fff;
} 
.block--skewed-right {
    /* using calc() to add 4rem to --padding-vertical */
    padding-bottom: calc(var(--padding-vertical) + 4rem);

    /* Use bennettfeely.com/clippy to create a clip-path*/
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
}
.block--skewed-left {
    padding-bottom: calc(var(--padding-vertical) + 4rem);
    /*              top-left, top-right, bottom-right, bottom-left */
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

/* Navigation Bar */
.nav {
    background: black;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
    align-items: center; /* Align vertically*/
}
.nav__list {
    width: 100%;
    margin: 0;
}

.nav__item {
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #222;
}
.nav__item > a {
    color: #d2d0db;
    transition: color 0.3s;
}
.nav__item > a:hover {
    color: #fff;
}
.nav__toggler {
    opacity: 0.5;
    transition: box-shadow .15s;
    cursor: pointer; /* toggler looks clickable */
}

/*
    No space between .nav and .collapsible--expanded
    means that the element must have both classes.
*/
.nav.collapsible--expanded .nav__toggler {
    opacity: 1;
    box-shadow: 0 0 0 3px #686767;
    border-radius: 5px;
}
.nav__brand {
    /* This will move the logo down 5px to center it because
    we can't edit the svg file */
    transform: translateY(5px);
}

@media screen and (min-width: 768px){
    .nav__toggler {
        display: none;
    }
    .nav__list {
        width: auto;
        display: flex;
        font-size: 1.6rem;
        /* We force the two properties of the transitions */
        max-height: 100%;
        opacity: 1;
    }
    .nav__item {
        border: 0;
    }
}

/* Hero */
    /* Override the skewed to make it look similar to Desktop*/
/* .hero { 
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
} */

.hero__tagline {
    font-size: 2rem;
    color: #d28036;
    letter-spacing: 1px;
    margin: 2rem 0 5rem;
}
.hero__image {
    width: 100%;
}
.pereyras-hero {
    height: 120vh;
}

@media screen and (min-width: 768px){
    .hero {
        padding-top: 0;
    }
    .hero__content {
        text-align: left;
        align-self: baseline;
        margin-top: 8rem;
    }
    .pereyras-hero {
        height: 80vh;
    }
}

/* Domain Block */
.block-domain .input-group {
    box-shadow: 0 0 30px 20px #e6ebee;
    border: 0;
    margin: 4rem auto;
    max-width: 670px;
}

.block-domain__prices {
    color: var(--color-headings);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 6rem);
    font-size: 2rem;
    font-weight: 600;
    justify-items: center;
    max-width: 700px;
    margin: 0 auto;
}

@media screen and (min-width: 768px){
    .block-domain__prices {
        /* Put prices in one row 
           grid-template-columns: repeat(6, 1fr) works but
           if we want to add more elements the number 6 is hardcoded
           so we can use auto-fit to automatically calculate the
           number of columns.

           grid-template-columns: repeat(auto-fit, 1fr)
           auto-fit will create as many columns as needed
           1fr for each will still give 3 columns.
           
           grid-template-columns: repeat(auto-fit, 100px)
           a fixed value would force the size, instead
           we use minmax() function to equaly distribute
           the horizontal space.
        */
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        
        /*
            
        */
    }
}

/* Plans Block */
.block-plans .grid {
    /* gap: 4rem; */
    gap: 8rem 4rem;
}
.block-plans .card {
    /* Instead of using a media query for tablets */
    max-width: 500px;
    /* center card */
    margin: 0 auto;
}

/* Features */
.feature {
    gap: 4rem 2rem;
    margin: 12rem 0;
    padding-top: 3rem;
    border-top: 1px solid #e2b887;
}
.feature:first-of-type {
    margin-top: 6rem;
}
.feature__heading {
    margin: 1rem 0;
}
.feature__image {
    width: 100%;
    border-radius: 10px;
}

/* Services */
.services {
    margin-top: 100px;
    padding-top: 60px;
    text-align: center;
    border-top: 1px solid #e0ccaf;
}
.services-items {
    border: 0;
    margin-top: 40px;
}
.service-item {
    display: inline-flex;
}
.item-itself {
    padding-left: 15px;
}
.item-header {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 1rem 3rem;
}
.item-header h3 {
    margin: 0;
    align-self: center;
}
.feature-h3 {
     text-align: left; 
     padding-left: 2rem;
}
.item-itself p {
    text-align: left;
    padding-left: 2rem;
}
.vertical-line {
    width: 1px;
    height: 100%;
    background-color: #e0ccaf;
    transform: scaleY(100%);
    animation: sliding 4s both;
    animation-iteration-count: 3;
    /* animation-timeline: scroll(root); */
}
@keyframes sliding {
    0% {
        transform: scaleY(100%);

    }
    50% {
        transform: scaleY(10%);

    }
    100% {
        transform: scaleY(100%);

    }
}

picture {
    border-left: 1px solid #e2b887;
    border-right: 1px solid #e2b887;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media screen and (min-width: 720px){ /* Switch columns */
    .feature:nth-of-type(even) .feature__content{
        order: 2;
        margin-left: 20px;
    }
}

/* Showcase */

.block-showcase__image > img { /* apply only to image */
    width: 100%;
    border-radius: 25px;
}
                /* Originally 768px*/
@media screen and (min-width: 960px){
    /* grid with 50% each column instead
       of 1fr 1fr so that the width is not determined
       by its content.
    */
    .block-showcase .grid {
        grid-template-columns: 50% 50%;
    }

    /* We don't want to show the whole image
       in tablets so, Not a responsive image.
    */
    .block-showcase__image {
        justify-self: center; /* avoid overflow */
    }
    .block-showcase__image > img { /* direct child selector > */
        width: auto;
        max-width: 700px; /* avoid growing over 700px */
    }
}

/* footer */
.footer {
    background: #0f1316;
}
.footer a {
    color: #777;
    transition: color .3s;
}
.footer a:hover {
    color: #fff;
}
.footer__section {
    padding: 2rem;
    border-bottom: 1px solid #393939;
}
/* Browsers by default give a margin to the block
   and we need to remove it */
.footer__section .list {
    margin: 0;
}
.footer__heading {
    text-transform: uppercase;
    font-weight: 600;
}
.footer__brand {
    margin-top: 5rem;
    text-align: center;
}
.footer__brand img {
    /* TODO: Consider refactoring this and applying it to all images */
    width: 100%;
    max-width: 230px; /* it's the width of the image */
}
.footer__copyright {
    font-size: 2.1rem;
    color:#fff;
    opacity: .3;
}
.subfooter {
    font-size: 12px;
    height: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgb(88, 84, 84);
}
.subfooter .photos {
    text-decoration: underline;
}
.subfooter .videos {
    display: flex;
}
.subfooter .videos p {
    margin-left: 10px;
}
.webadmin {
    margin-top: 50px;
    font-size: 12px;
    justify-content: center;
    text-align: center;
}
@media screen and (min-width: 768px){
.webadmin {
    margin-top: 0px;
}

/* Redefine template of footer grid */
.footer__sections {
    /*
        We could use
        grid-template-columns: repeat(5, 1fr) but
        if we want to add a section to the footer
        in the future we rather use auto-fit and
        auto-fit needs minmax() function.
    */
    grid-template-columns: repeat(auto-fit, minmax(10rem,1fr));
}

/* Hide Chevrons */
.footer .collapsible__chevron {
    display: none;
}

/* Show content of collapsibles */
.footer .collapsible__content {
    /* We can't use display: block; because
       we used another technic and 
       animations and we need to keep them
    */
    opacity: 1;
    max-height: 100%;
}
.footer__brand {
    order: -1;
    margin-top: 1rem;
}
.footer__copyright {
    font-size: 1.5rem;
}
/* Remove bottom borders */
.footer__section {
    border: 0;
}
/* Smaller Headings */
.footer__heading {
    font-size: 1.6rem;
}

}

/* Video Sizes */

        /* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (min-width: 360px) {
    .VideoSize {
        width: 340px;
        height: 192px;
    }
}
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (min-width: 600px) {
    .VideoSize {
        width: 560px;
        height: 316px;
    }
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (min-width: 960px) {
    .VideoSize {
        width: 840px;
        height: 474px;
    }
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (min-width: 1024px) {
    .VideoSize {
        width: 980px;
        height: 552px;
    }
}


/* Contact Details */
.contact-block {
    margin-top: 6rem;
    background-image: linear-gradient(rgba(210, 128, 54, 0.95), rgba(210, 128, 54, 0.8)), url('../images/32.jpg');
}
.contact-col {
    /* padding: 15px 15px; */
    font-size: 2rem;
    background: rgba(1,1,1, 0.15);
    border-radius: 5%;
    color: black;
    font-weight: 300;
}
.contact-col a {
    color: black;
}
.contact-col h2 {
    text-align: center;
}
.contact-details {
    margin-top: 3rem;
    border-radius: 5%;
    padding-bottom: 3rem;
}
.contact-details li {
    list-style: none;
    padding-left: 15px;
    height: 50px;
}
.contact-details li svg {
    width: 30px;
    height: 30px;
}
.contact-details li p {
    display: inline-block;
    height: 30px;
    vertical-align: middle;
}
.contact-list {
    list-style: none;
    padding-left: 0;
}
.contact-list-social {
    margin-top: 20px;
    text-align: center;

}
.contact-list__item {
    display: inline-block;  /* inline-block to be able to apply margins */
    margin-right: 2rem;
}
.contact-list svg {
    width: 30px;
    height: 30px;
    margin: 15px 15px 0 0;
}
.contact-description {
    font-weight: 200;
    margin: 7rem 2rem 3rem 2rem;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
    background-color: rgba(210, 128, 54, 0.95);
    border-radius: 15px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}


/* Contact form */
#spinner,
#sendmessage,
#errormessage {
    visibility: hidden;
    padding-left: 20px;

}
.form-group {
    padding: 10px 15px;
}
.form-group input {
    line-height: 5rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    background-color: rgba(210, 128, 54, 0.95);
    border: 1px dotted var(--color-primary);
    outline: none;
    border-radius: 15px;
    padding: 0 15px 0 15px;
    width: 100%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: black;
    font-weight: 300;
}
.form-group textarea {
    padding-top: 15px;
}
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px #442002; /* Add a custom box-shadow as a focus indicator */
}
.form-button {
    text-align: center;
}
.form-button input {
    background-color: rgba(210, 128, 54, 0.95);
    box-shadow: 10px 10px 10px #7c5c1f;
}

#testimonials {
    box-shadow: 0 0 5px 5px rgba(167, 101, 15, 0.3);
    border-radius: 10px;
}
.testimonial {
    background: rgba(1,1,1, 0.15);
}