/*==========================================================================
    Reset
  ========================================================================== */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
}

article, aside, details, figcaption, figure, footer, 
header, hgroup, main, menu, nav, section,
summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

menu,
ol,
ul {
    padding-left: 0;
}

html {
    -webkit-text-size-adjust: none; /* for iOS Safari */
    text-size-adjust: none; /* for other mobile browsers */
}

* {
    box-sizing: border-box;
}

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


  /*==========================================================================
    Columns
  ========================================================================== */

[class*="col-"] {
  float: left;
  padding: 15px;
}

.col-4 {width: 25%;}
.col-3 {width: 33.33%;}
.col-2 {width: 50%;}
.col-1 {width: 100%;}

section {
    width: 100%;
    display: block;
    float: left;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    overflow: auto;
}


/*==========================================================================
    Global
  ========================================================================== */


:root {
    --black: #000000;
    --white: #ffffff;
    --grey: #f7f7f7;
    --primary: #351730;
    --secondary: #8e2f7c;
}

* {
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    background: var(--grey);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.btn {
    background-color: var(--secondary);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--white);
    font-size: 24px;
}

.center {
    text-align: center;
}

.btn:hover {
    -webkit-box-shadow: 2px 3px 0px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 2px 3px 0px 0px rgba(0,0,0,0.16);
    box-shadow: 2px 3px 0px 0px rgba(0,0,0,0.16);
    color: var(--primary);
    cursor: pointer;
}

p a {
    color: var(--secondary);
}

p a:hover {
    color: var(--primary);
}

svg {
    fiil:#8e2f7c;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.4s ease-out;
    transition-delay: 0.2s;
}

.animate {
    opacity: 1;
    transform: translateY(0px);
  }

/*==========================================================================
    Typography
  ========================================================================== */

h1, h2, h3, h4, .btn, em {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 700;
    font-style: normal;
}

h1 {
    font-size: 100px;
    margin-bottom: 70px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 33px;
}

h4 {
    font-size: 24px;
}


/*==========================================================================
    Header
  ========================================================================== */

header {
    width: 100%;
    position: fixed;
    padding: 20px;
    z-index: 9999;
}

.logo {
    width: 245px;
    height: 50px;
    float: left;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 10px;
    display: block;
    text-indent: -9999999px;
}

nav {
    float: right;
}

nav ul {
    padding-top: 20px;
}

nav ul li {
    float: left;
}

nav ul li a {
    color: var(--white);
    padding: 20px;
    font-size: 20px;
}

.header-active {
    background-color: var(--primary);
}




/*==========================================================================
    Banner
  ========================================================================== */

.banner {
    width: 100%;
    background-image: url(../img/banner.png);
    background-size: cover;
    padding: 10% 0;
    color: var(--white);
}

.banner-small {
    background-color: var(--primary);
    color: var(--white);
    padding: 5% 0;
}

.start:before {
    content: "";
    display: block;
    width: 90px;
    height: 50px;
    background-image: url(../img/quotes.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: -40px;
    margin-left: -60px;
    position: absolute;
}

.end:after {
    content: "";
    display: inline-block;
    width: 90px;
    height: 50px;
    background-image: url(../img/quotes.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: 105px;
    position: absolute;
    rotate: 180deg;
}


.banner p {
    max-width: 70%;
    margin-bottom: 60px;
}


/*==========================================================================
    Why
  ========================================================================== */

.reason {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 25px;
    border-radius: 10px;
    min-height: 315px;
    text-align: center;
}

.reason h3 {
    font-size: clamp(25px, 2vw, 33px);
}

.reason img {
    width: 120px;
}



.reasons:nth-child(2) {
    transition-delay: 0.2s;
}

.reasons:nth-child(3) {
    transition-delay: 0.4s;
}

.reasons:nth-child(4) {
    transition-delay: 0.6s;
}

.reasons:nth-child(5) {
    transition-delay: 0.8s;
}


/*==========================================================================
    Testimonials
  ========================================================================== */

.testimonials {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0px;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: block;
    width: 5000px;
    transition: transform 0.3s ease-in-out;
}

.testimonial-container {
    width: 560px;
    background-color: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    float: left;
    margin-left: 10px;
}

.testimonial-img {
    width: 50%;
    overflow: hidden;
    display: flex;
}

.testimonial-img img {
    width: 100%;
}

.testimonial-copy {
    width: 50%;
    padding-left: 20px;
}

.testimonial-copy h3 {
    line-height: 33px;
    margin: 30px 0px 60px 0px;
    position: relative;
    font-size: 30px;
}

.testimonial-copy h3::before,
.testimonial-copy h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 25px;
  background-image: url(../img/quotes.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.testimonial-copy h3::before {
  top: -30px; 
  left: 0px;
}

.testimonial-copy h3::after {
  bottom: -30px; /* Adjust for desired placement */
  right: 0px;
  rotate: 180deg;
}



.testimonial-copy p {
    margin-bottom: 20px;
}

.testimonial-copy span {
    font-weight: 800;
}

.carousel-button {
    background-color: var(--secondary);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--white);
    font-size: 14px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.carousel-button.prev {
    left: 0px;
}

.carousel-button.next {
    right: 0px;
}

/*==========================================================================
    Services
  ========================================================================== */

#services .container {
    background-color: var(--primary);
    border-radius: 10px;
    color: var(--white);
}

.service {
    background-color: var(--white);
    color: var(--primary);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.service h3 {
    font-size: clamp(25px, 2vw, 33px);
}

.service img {
    width: 120px;
}

.service p {
    display: block;
    height: 55px;
}


/*==========================================================================
    About
  ========================================================================== */

.about-copy h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-copy p {
    margin-bottom: 40px;
}

.about-img img {
    width: 100%;
}

#staff .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.staff-box {
    text-align: center;
    padding: 20px 20px 40px 20px;
    border-radius: 10px;
    border: 1px solid lightgrey;
    margin-bottom: 30px;
}

.staff-box a {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.profile-pic {
    display: block;
    width: 170px;
    height: 170px;
    overflow: hidden;
    border-radius: 120px;
    margin: 0 auto 20px;
}

.profile-pic img {
    width: 100%;
}

.staff-box span {
    display: block;
    color: var(--secondary);
    margin-bottom: 20px;
}

.staff-box p {
    margin-bottom: 40px;
}


/*==========================================================================
    Privacy 
  ========================================================================== */

.privacy {
    width: 75%;
    margin: 0 auto;
    padding: 15px;
}

.privacy h2 {
    font-size: 30px;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy p {
    margin-bottom: 10px;
}

.privacy ul {
    padding: 20px;

}

.privacy ul li {
    list-style-position: outside;
    list-style-type: circle;
    margin-bottom: 10px;
}

/*==========================================================================
    Footer
  ========================================================================== */

footer {
    background-color: var(--primary);
    width: 100%;
    display: table;
    float: left;
    padding: 5% 0 40px 0;
    height: 100vh;
}

.footer-logo {
    width: 100%;
    margin-bottom: 40px;
}

.cert {
    width: 150px;
    margin-right: 40px;
    margin-bottom: 40px;
}


em {
    font-size: clamp(25px, 4vw, 48px);
    color: var(--secondary);
    display: block;
    margin-bottom: 40px;
}

em a {
    color: var(--white);
}

.linkedin {
    padding: 70px 0 0 0;
}

.close {
    color: var(--white);
    padding: 40px 0 0 0;
}


/*==========================================================================
    Media Queries
  ========================================================================== */

@media (max-width: 1200px) {
    .col-3 {
        width: 50%;
    }
    .col-4 {
        width: 50%;
    }
}

@media (max-width: 1024px) {

    .col-1 {width: 100%;}
    .col-2 {width: 100%;}
    .col-3 {width: 100%;}
    .col-4 {width: 100%;}

    nav {display: none;}
    .banner {text-align: center;}

    .banner .container {
        margin-top: 60px;
    }

    h1 {
        font-size: 45px;
    }

    .start:before {
        width: 40px;
        margin-top: -20px;
        margin-left: 0px;
    }

    .end:after {
        width: 40px;
        margin-top: 30px;
    }

    .banner p {
        max-width: 100%;
    }

    .testimonial-container {
        width: 300px;
    }

    .testimonial-img {
        display: none;
    }

    .testimonial-copy {
        width: 100%;
    }

    .testimonial-copy h3 {
        margin-bottom: 60px;
    } 

    #contact .btn {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    #staff .container {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
    }
}















