@font-face {
    font-family: 'VisbyCF';
    src: url("/assets/fonts/VisbyCF-Light.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
        font-family: 'VisbyCF';
        src: url("/assets/fonts/VisbyCF-Regular.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
}

@font-face {
        font-family: 'VisbyCF';
        src: url("/assets/fonts/VisbyCF-Heavy.ttf") format("truetype");
        font-weight: 800;
        font-style: normal;
}

@font-face {
        font-family: 'VisbyCF';
        src: url("/assets/fonts/VisbyCF-BoldOblique.ttf") format("truetype");
        font-weight: 600;
        font-style: italic;
}

@font-face {
    font-family: 'VisbyCF';
    src: url("/assets/fonts/VisbyCF-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

*{
    font-family:'VisbyCF', sans-serif;
    box-sizing: border-box;
}

/* Text meant only for screen readers. */
.screen-reader-text{
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }

body,html{
    max-width: 100%;
    margin: 0;
    scroll-behavior: smooth;

}

img{
    max-width: 100%;
    height: auto;
}

p{
    font-family: "adelle", serif;
}


/*SECTION 1 First Page*/
.section1{
    position: relative;
    padding-top: 200px;
}


.s1-top{
    background-image: url("/assets/media/images/section1bkg-img.png");
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    clip-path: polygon(
          0 0, /* left top */
          100% 0, /* right top */
          100% 95%, /* right bottom */
          0 83.5% /* left bottom */
        );
}

/*Nav Bar*/
.nav-bar{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 15px 15px 20px;
    background: linear-gradient(180deg, #342F28, transparent 100%) top;
    z-index: 99;
}

.git-button{
    font-family: "VisbyCF", sans-serif;
    font-weight: bold;
    font-size: 17px;
    text-decoration: none;
    border-radius: 40px;
    border-color: transparent;
    position: relative;
    padding: 15px 48px;
    margin: 20px;
    margin-right: 50px;
    color: #5A5959;
    background-color: #FEE12F;
    display: inline-block;
}

.git-button:hover{
    color: white;
    background-color: #F3600B;
    transition: 0.3s ease;
}

.nav-bar img{
    width: 255px;
    height: 71px;
    margin-top: 18px;
    margin-left: 43px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.video{
    width: 80%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: block;
}

.videolink{
    display: block;
    position: relative;
    padding-top: 56.25%;
    background-image: url("/assets/media/images/Mission-InternPic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.videolink::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.25;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.videolink:hover::before{
    opacity: 0.1;
}

.videolink::after{
    content: "";
    display: block;
    position: absolute;
    top: 30px;
    right: -30px;
    bottom: -30px;
    left: 30px;
    border: 0.5px solid white;
    z-index: 2;
}

.video #vidplayer{
    width: 97.5%;
    padding-top: 140px;
    margin-top: 70px;
    position: relative;
    z-index: 0;
}
#vid-text p{
    font-size: 20px;
    font-family: "adelle", serif;
    font-style: italic;
    letter-spacing: 1.88px;
    color: #FFFFFF;
    margin-block-start: 0;
    margin-block-end: 0;
    z-index: 1;
}

.play-bt-wrap{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}

#play-btn::before{
    content: "";
    position: relative;
    display: inline-block;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    border: 11px solid #D1C31F;
    background-color: #F8E71B;
    z-index: 0;
    transition: all 0.4s ease;
}

a:hover #play-btn::before{
    border-color: #F8E71B;
}

#play-btn{
    position: relative;
    background-color: transparent;
    cursor: pointer;
 }

#play-btn::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-38%,-60%);
    border-left: 25px solid black;
    border-right: 0 solid green;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    z-index: 3;
 }

 #html5-close{
    width: 50px;
 }

/*Section1 left content*/
.titlepg-intro{
    background-color: white;
    margin: auto;
    max-width: 1200px;
    display: flex;
    margin-top: 10px;
    width: 80%;
    position: relative;
    gap: 35px;
    bottom: 10px;
    z-index: 2;
}

.intro-left{
    background-color: white;
    width: 100%;
    margin-top: -50px;
    padding-top: 20px;
    padding-right: 30px;
}

.intro-left h1{
    font-size: 35px;
    font-family: "adelle", serif;
    font-weight: 500;
    position: relative;
    padding-bottom: 30px;
    font-style: normal;
    margin-bottom: 30px;
}

.intro-left h1::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 77px;
    background-color: gray;
}

.intro-left p{
    font-size: 17.5px;
    line-height: 1.6;
    font-family: "adelle", serif;
    font-weight: 100;
    font-style: normal;
    margin-block-start: -0.5em;
}


/* Section1 right content*/
.intro-right{
    background-color: white;
    width: 100%;
    padding-top: 35px;
    padding-left: 82px;
    padding-right: 39px;
    z-index: 2;
}

.right-content{
    margin-top: 80px;
}

.right-content h4{
    color: orangered;
    font-weight: normal;
    font-size: 17px;
    margin-bottom: 20px;
    letter-spacing: 3px;

}

.right-content p{
    font-family: "adelle", serif;
    font-size: 36px;
    margin-top: 11px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1.5px;
}

.flex-bar{
    display: flex;
    align-items: flex-end;
}

.flex-bar p{
    margin-bottom: 0;
}

.bar.intro-rightbar{
    margin-bottom: 11px;
    margin-right: 8px;
}

.bar{
    align-items: left;
    height: 4px;
    width: 25px;
    background-color: #FE552F;
}

/*Section2 + SLIDERS*/
.section2{
    background: linear-gradient(0deg, white,#F9F9F9 100%);
}

.section2-hdr{
    margin: auto;
    padding-left: 83px;
    max-width: 1320px;

}

.section2 h2{
    padding-top: 105px;
    margin-block-end: 0.5em;
    font-size: 40px;
}

.section2 h3{
    font-size: 15px;
    letter-spacing: 2px;
}

.section2-hdr p{
    color: orangered;
    font-family: "adelle", serif;
    font-size: 28px;
    max-width: 550px
}

.slider-wrapper{
    max-width: 1320px;
    width: 90%;
    height: auto;
    margin: 0 auto 50px;
    padding-top: 10px;
    display: flex;
    align-items: center;
}
.slider-wrapper .git-button {
  margin-left:0px;
}
.intern-wrapper {
  margin-bottom:75px;
  margin-top:25px;

}
.first-intern {
  margin-top:75px;
  margin-bottom:0px;
}
.intern-portrait {
  min-width:250px;
  min-height:250px;
  background-size:cover;
  background-position: center;
  border-radius:50%;
}
.port_1 {
  background-image:url('/assets/media/images/_build-headshots-AlexB-02.png');
  margin-right:50px;
}
.port_2 {
  background-image:url('/assets/media/images/_build-headshots-LoRae-02.png');
  margin-right:50px;
}
.flex-reverse{
    flex-direction: row-reverse;
}

.flex-reverse .slider-header{
    margin-right: 0;
    margin-left: -50px;
}


.slider{
    box-shadow: rgba(50,50,93,0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 100px;
    z-index: 1;
}

.dots{
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slider h3{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    margin-block-end: 0.9em;
    color: white;
    display: inline-block;
    z-index: 1;
}

.slider p{
    font-family: "adelle", serif;
    color: white;
    font-size: 18px;
    background-color: #1E1E1E;
    line-height: 2;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    z-index: 1;

}

.slick-dots{
    size: 20px;
    text-decoration: none;
    display: flex !important;
    justify-content: space-between;
    width: 20px;
    bottom: 73px;
    left: 52px;
    z-index: 1;
}

.slick-dots li button{
    width: 15px;
    height: 15px;
    position: relative;
    margin-right: 10px;
    right: 10px;
    color: transparent;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #80781D;
    z-index: 1;
}

.slick-dots li button:hover{
    background-color: #80781D;
}

.slick-dots li.slick-active button{
    background-color: #F8E71B;
    border: 2px solid #F8E71B;
    z-index: 1;
}

.slick-dots li button:before,.slick-dots li.slick-active button:before,.slick-dots li.slick-active button:hover:before,.slick-dots li button:hover:before{
    opacity: 0;
    z-index: 1;
}

.slick-dots *::marker{
   display: none;
   z-index: 1;
}

.sliderpic{
    width: auto;
    min-width: 0;
    flex-grow: 1;
}

.sliderpic-img{
    width: auto;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 56.17%;
}

.slider-header{
    flex-shrink: 0;
    margin-right: -50px
}

.slider-bkg{
    background-color: #1E1E1E;
    position: relative;
    width: 336px;
    min-height: 436px;
    box-shadow: rgba(50,50,93,0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
    padding: 22px;
    z-index: 1;
}

/*Full Width Section*/
.full-width{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 60%;
    margin: auto;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.full-width h2{
    padding: 0;
    margin-top: 30px;
    margin-bottom: 26px;
}

.full-width h3{
    font-family: "adelle", serif;
    font-size: 28px;
    margin-top: 38px;
}

.full-width h4{
    font-size: 17px;
    margin-top: 48px;
    margin-bottom: 38px;
}

.full-width p{
    line-height: 2;
    font-size: 18px;
}

.full-width a{
    font-size: 17px;
}

.full-width a:hover{
    text-decoration: none;
}

/*Left Content*/
.full-width-top{
    max-width: 1000px;
    width: 100%;
}

.full-width-btn{
    text-align: center;
}

/*Center Content*/
.full-width-center{
    position: relative;
    max-width: 1000px;
    width: 100%;
}

/* Right Content*/
.full-width-bottom{
    max-width: 1000px;
    width: 100%;
}

.full-width-bottom p{
    padding-bottom: 30px;
}

.full-width-btn .git-button{
    margin: 50px 0 0 0;
}

.full-width-btn .git-button:hover{
    background-color: #F3600B;
}

.full-width-bottom a{
    color: orangered;
}

.full-width-bottom a:visited{
    color: orangered;
}

/*Testimonials Section*/
.test-form-bkg{
    background-color: #222222;
    padding-top: 75px;
    clip-path: polygon(
          0 8%, /* left top */
          100% 0, /* right top */
          100% 100%, /* right bottom */
          0% 100% /* left bottom */
        );
}

.testimonials{
    background: #222222;
    color: #fff;
    text-align: center;
    padding: 115px 0 0;

}

.testimonials-hdr h2{
    color: orangered;
    font-size: 33px;
    padding-top: 20px;
    margin: 0;
    letter-spacing: 1.5px;
}

.testimonials-hdr p{
    position: relative;
    font-size: 40px;
    margin-bottom: 145px;
    letter-spacing: 1px;
    margin-block-start: 0.4em;
}

.testimonials-hdr p::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 82px;
    background-color: orangered;
}

.testimonials-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 75px;
    max-width: 1320px;
    margin: auto;
    width: 90%;
}

.testimonials-grid-items{
    position: relative;
    margin-bottom: 200px;
    border: 1px #fff solid;
}

.testimonials-content{
    padding: 50px 0 100px;
}

.testimonials-content p{
    font-family: "adelle", serif;
}

.testimonial-images{
    width: 120px;
    height: 120px;
    margin: 20px auto;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-title{
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    margin: -78px 0 0;
}

.testimonials-title h3{
    font-size: 24px;
    font-family: "adelle", serif;
    margin-block-end: 0;
}

.testimonials-title p{
    color: orangered;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-block-start: 0.5em;
}



/*Section3*/
.section3{
    text-align: center;
    background: #222222 url("/assets/media/images/fire-img.png") no-repeat right 45px bottom 0;
    background-size: 550px;
    padding-top: 60px;
    padding-bottom: 90px;
    position: relative;
}


.section3 h2{
    position: absolute;
    max-width: 100%;
    top: -1.56em;
    left: 25px;
    color: white;
    font-size: 50px;
    letter-spacing: 0.83px;
}

.form-title p{
    font-family: 'VisbyCF', sans-serif;
    font-weight: 600;
    color: #F8E71C;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 1.69px;
}

.bar.title-bar{

    background-color: white;
    width: 20%;
    height: 3px;
    margin-left: 40%;
    opacity: 0.1;
}

#ty-msg{
    color: #F8E71C;
    margin-top: 75px;
    margin-bottom: 100px;
}

.contact-msg1 p, .contact-msg1 a{
    color: white;
    font-size: 25px;
    font-family: "adelle", serif;
}

.orange-link {
  color: #FE552F;
}

.contact-msg2{
    font-size: 20px;
}

.contact-msg2 p{
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 23px;
    letter-spacing: 1.7px;
    }

.form-box{
    margin-left: 120px;
    margin-right: 120px;
    padding-top: 100px;
    align-items: center;
}

fieldset{
    position: relative;
    padding-top: 70px;
    padding-bottom: 64px;
    margin-left: 150px;
    margin-right: 150px;
    position: relative;
    border-color: #FFFFFF45;
}

legend{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 57%);
    padding: 0 5px;
    background: #222222;
}

.form-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 9.16px;
    gap: 25.44px;
    color: white;
    caret-color: white;
}

.form-row .form-size{
    width: 37.5%;
}

.form-size label{
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: left;
    float: left;
}

.focus label{
    opacity: 1 !important;
    text-align: left !important;
    float: left;
}

.form-size:focus-within label{
    opacity: 1;
}

.form-text{
    display: flex;
    justify-content: center;
}

.form-area{
    width: 77%;
}

.form-area label{
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: white;
    margin-top: 10px;
    text-align: left;
}

.form-area:focus-within label{
    opacity: 1;
}

input[type=text]{
    width: 100%;
    padding:12px 20px;
    margin: 8px 0;
    background-color: transparent;
    border: 2px solid white;
    color: white;

}

input::placeholder{
    color: white;
}

.form-area textarea{
    resize: none;
    width: 100%;
    height: 86px;
    background-color: transparent;
    border: 2px solid white;
    caret-color: white;
    padding-left: 10px;
    padding-top: 10px;
    margin-top: 15px;
    margin-bottom: 31px;
    color: white;
}

textarea::placeholder{
    color: white;
}

input[type=submit]{
    width: 160px;
    height: 53px;
    font-weight: bold;
    border-radius: 40px;
    border-color: transparent;
    margin-top: 20px;
    background-color: #FEE12F;
    color: #5A5959;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
}

input[type=submit]:hover{
    background-color: #F3600B;
    color: white;
    transition: 0.3s ease;
}

.aria{
    display: none;
}

.hint{
    color: red;
}

.social-links{
    display: flex;
    background-color: #222222;
    position: absolute;
    transform: translate(-50%,50%);
    bottom: 87px;
    left: 50%;
    padding: 5px;
}

.social-links img{
    width: 37px;
    height: 37px;
    background-color: #222222;
    padding: 6px;
}

#submit-msg{
    overflow: hidden;
    transition: all 500ms ease;
}



footer{
    display: flex;
    justify-content: center;
    background-color: #d8d8d8;
    height: 35px;
    font-size: 12px;
}

@media screen and (max-width: 1550px){
    .nav-bar img{
        width: 225px;
        height: 60px;
    }

    .nav-bar .git-button{
        font-size: 16px;
        height: 50px;

    }

    #play-btn::before{
        width: 70px;
        height: 70px;
        border: 10px solid #D1C31F;
    }

    #play-btn::after{
        transform: translate(-40%,-62%);
        border-left: 23px solid black;
        border-right: 0 solid green;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
    }

    #vid-text p{
        font-size: 18px;
    }

    .intro-left h1{
        font-size: 34px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 17.5px;
        line-height: 1.8;
    }

    .intro-right{
        padding-right: 0;
    }

    .intro-right h4{
        font-size: 16px;
    }

    .intro-right p{
        font-size: 34px;
    }

    fieldset{
        margin: 0;
    }
}

@media screen and (max-width: 1350px){
    .full-width-top h2{
        font-size: 35px;
        margin-top: 32px;
        margin-bottom: 29px;
    }

    .full-width p{
        font-size: 17px;
    }
}

@media screen and (max-width: 1240px){
    #play-btn::before{
        width: 65px;
        height: 65px;
        border: 9.5px solid #D1C31F;
    }

    #vid-text p{
        font-size: 17px;
    }

    .videolink::after{
        inset: 25px -25px -25px 25px;
    }

    .intro-left h1{
        font-size: 33px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 17px;
        line-height: 2;
    }

    .intro-right{
        padding-right: 0;
    }

    .intro-right h4{
        font-size: 15px;
    }

    .intro-right p{
        font-size: 32px;
    }

    .contact-msg p{
        font-size: 19px;
    }

    .full-width-center{
        width: 85%;
    }

    .full-width-center p{
        font-size: 17px;
    }
}

@media screen and (max-width: 1160px){
    #play-btn::before{
        width: 65px;
        height: 65px;
        border: 9.5px solid #D1C31F;
    }

    #play-btn::after{
        transform: translate(-37%,-62%);
        border-left: 23px solid black;
        border-right: 0 solid green;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
    }

    .intro-left h1{
        font-size: 32px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 16px;
    }

    .intro-right h4{
        font-size: 15px;
    }

    .intro-right p{
        font-size: 30px;
    }

    .form-header h2{
        font-size: 45px;
    }

    .form-title p{
        font-size: 17px;
    }

    .contact-msg1 p, a{
        font-size: 22px;
    }

    .contact-msg2 p{
        font-size: 17px;
    }

    .full-width-center{
        width: 80%;
    }
}

@media screen and (max-width: 1075px){
    .intro-left h1{
        font-size: 28px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 16px;
    }

    .intro-left h1::after{
        width: 150px;
        opacity: 0.5;
    }

    .intro-right h4{
        font-size: 15px;
    }

    .intro-right p{
        font-size: 28px;
    }

    .full-width h2{
        padding-top: 50px;
    }

    .slider-wrapper{
        flex-direction: column-reverse;
        justify-content: center;
        width: 96%;
    }
    .slider-wrapper.intern-wrapper {
      flex-direction: column;
      text-align: center;
    }
    .sliderpic{
        width: 100%;
    }

    .slider-bkg{
        min-height: 0;
        width: auto;
        margin: -30px 20px 0;
        padding: 0;
        box-shadow: rgba(50,50,93,0.25) 0 50px 50px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -45px;
    }

    .slider{
        padding-bottom: 85px;
    }

    .slick-dotted.slick-slider{
        margin: 0;
    }

    .slick-dots{
        left: 30px;
        bottom: 40px;
    }

    .slider-header,
    .flex-reverse .slider-header{
        margin: 0;
    }

    .form-header h2{
        font-size: 40px;
    }

    .full-width{
        display: block;
    }

    .full-width-top{
        width: 100%;
    }

    .full-width-center{
        width: 100%;
    }

    .full-width-bottom{
        width: 100%;
    }

    .full-width{
        padding-bottom: 80px;
    }

    .test-form-bkg{
        clip-path: polygon(
          0 8%, /* left top */
          100% 4%, /* right top */
          100% 100%, /* right bottom */
          0% 100% /* left bottom */
        );
    }

    .testimonials-hdr h2{
        font-size: 28px;
        padding-top: 65px
    }

    .testimonials-hdr p{
        margin-bottom: 100px;
        font-size: 35px;
    }

    .testimonials-grid{
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 300px;
    }

    .section3{
        background: #222222;
    }


}

@media screen and (max-width: 965px){
    .nav-bar img{
        width: 215px;
        height: 60px;
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 5px;
    }

    .nav-bar .git-button{
        font-size: 14px;
        height: 45px;
        margin: 1px;
        margin-right: 20px;

    }

    #play-btn::before{
        width: 60px;
        height: 60px;
        border: 8.5px solid #D1C31F;
    }

    #play-btn::after{
        transform: translate(-50%,-62%);
        border-left: 21px solid black;
        border-right: 0 solid green;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
    }

    #vid-text p{
        font-size: 16px;
    }

    .videolink::after{
        inset: 20px -20px -20px 20px;
    }

    .intro-left h1{
        font-size: 25px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 16px;
    }

    .intro-right h4{
        font-size: 15px;
    }

    .intro-right p{
        font-size: 26px;
    }

    .form-header h2{
        font-size: 37px;
    }

    .contact-msg2 p{
        font-size: 15px
    }

    .test-form-bkg{
        clip-path: polygon(
          0 8%, /* left top */
          100% 4%, /* right top */
          100% 100%, /* right bottom */
          0% 100% /* left bottom */
        );
    }
}

@media screen and (max-width: 880px){
    .section1{
        padding-top: 150px;
    }

    .intro-left h1{
        font-size: 21.5px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 15.5px;
    }

    .intro-right{
        padding-left: 0;
    }

    .intro-right h4{
        font-size: 15px;
    }

    .form-header h2{
        font-size: 29px;
    }
}

@media screen and (max-width: 750px){
    .nav-bar{
        background-color: #1E1E1E;
        padding: 10px 0px 5px 0px;
    }

    .nav-bar img{
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 5px;
    }

    .nav-bar .git-button{
        margin: 1px;
        margin-right: 20px;
    }

    #play-btn::before{
        width: 60px;
        height: 60px;
        border: 8px solid #D1C31F;
    }

    #play-btn::after{
        transform: translate(-39%,-63%);
        border-left: 21px solid black;
        border-right: 0 solid green;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
    }

    #vid-text p{
        font-size: 15px;
    }

    .titlepg-intro{
        display: block;
        margin-top: 0;
    }

    .intro-left{
        margin-top: 0;
        padding-top: 0;
    }

    .intro-left h1{
        font-size: 30px;
        font-weight: 500;
        padding-top: 20px;
    }

    .intro-left h1::after{
        width: 200px;
        opacity: 0.5
    }

    .intro-left p{
        font-size: 16px;
    }

    .intro-right h4{
        font-size: 14px;
    }

    .intro-right p{
        font-size: 30px;
    }

    .right-content{
        margin-top: 50px;
    }

    .section2-hdr{
        padding-left: 65px;
    }

    .section2 h2{
        font-size: 35px;
    }

    .section2-hdr p{

        font-size: 25px;
    }

    .full-width{
        width: 80%;
    }

    .full-width a{
        font-size: 15px;
    }

    .test-form-bkg{
        clip-path: polygon(
          0 7%, /* left top */
          100% 4%, /* right top */
          100% 100%, /* right bottom */
          0% 100% /* left bottom */
        );
    }

    .form-box{
        margin: 0;
    }

    fieldset{
        margin: 0;
    }

    .form-row{
        display: block;
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-row .form-size{
        width: 100%;
    }

    .form-text{
        display: block;
    }

    .form-area{
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }

    .form-area textarea{
        width: 100%;
    }

     .form-header h2{
        font-size: 35px;
    }

    .git-button{
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-focus-ring-color: rgba(255, 255, 255, 0);
    }

    .slick-dots li{
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-focus-ring-color: rgba(255, 255, 255, 0);
    }

    input[type=submit]{
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-focus-ring-color: rgba(255, 255, 255, 0);
    }
}

@media screen and (max-width: 650px){
    .nav-bar{
        background-color: #1E1E1E;
        padding: 10px 20px 5px 20px;
    }

    .nav-bar .git-button{
        font-size: 14px;
        height: 41px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 13px;
        padding-bottom: 13px;
        display: inline;
        margin: 0;
    }

    .nav-bar img {
        width: 155px;
        height: 45px;
        margin: 0;

    }

    .video{
        max-width: 92%;
    }

    .video #vidplayer{
        margin-top: 0;
    }

    .videolink::after{
        inset: 15px -15px -15px 15px;
    }

    #play-btn::before{
        width: 55px;
        height: 55px;
        border-radius: 100px;
        border: 7px solid #D1C31F;
    }
    #play-btn::after{
    border-left: 18px solid black;
    border-right: 0 solid green;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    }

    #vid-text p{
        font-size: 13px;
    }

    .titlepg-intro{
        display: block;
    }

    .intro-left h1{
        font-size: 30px;
        font-weight: 500;
    }

    .intro-left p{
        font-size: 18px;
        line-height: 2;
    }

    .section2 h2{
        font-size: 35px;
        padding-top: 80px;
    }

    .section2-hdr{
        padding-left: 50px;
    }

    .section2-hdr p{
        font-size: 21px;
        line-height: 1.8;
        max-width: 100%;
    }

    .slider p{
        font-size: 16px;
    }

    .full-width{
        width: 90%;
        padding-top: 10px;
    }

    .full-width p{
        font-size: 16px;
    }

    .full-width h2{
        padding-top: 50px;
    }

    .form-header h2{
        font-size: 28.5px;
    }

    .testimonials-hdr h2{
        font-size: 26px;
    }

    .testimonials-hdr p{
        font-size: 32px;
    }
}
