/*Start: Navigation*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'poppins', sans-serif;
    font-size: 10px;
}

body{
    overflow-x: hidden;
    background-color: linear-gradient(270deg, #ffdad5, #fff7f9);
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

img {
    transition: transform 0.5s;
}

not(.arrow_icon) img:hover {
    transform: scale(1.025) translateY(-5px);
}

header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.container{
    width: 100%;
    max-width: 117rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.menu-icons{
    color: #eee;
    font-size: 4rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1500;
    display: none;
}

.centered {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  

nav{
    display: flex;
    align-items: center;
    width: 100%;
    height: 8rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.walk-icon{
    width: 5rem;
    height: 5rem;
    display: flex;
    margin-right: 5rem;
}

.walk-icon i{
    margin: auto;
    font-size: 3rem;
    color: #eee;
}

.logo{
    width: 10%;
}

.nav-list{
    display: flex;
    width: 100%;
    align-items: center;
}


.nav-list li{
    line-height: 8rem;
    position: relative;
}

.sub-menu li{
    line-height: 4rem;
}

.nav-list a{
    display: block;
    color: #eee;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    transition: color 650ms;
}
    
.nav-list a:hover{
    color: #2bab0d;
}

.btn{
    padding: 1.3rem !important;
    display: inline-block !important;
    background-color: #2bab0d;
    border: 2px solid #2bab0d;
    border-radius: 5rem;
    transition: background-color 0.3s !important;
    font-family: 'poppins', 'sans-serif';
    font-size: 1.4rem;
    color: white !important;
    text-transform: uppercase;
}

.btn:hover{
    background-color: rgba(0, 0, 0, 0);
}

.btn_2 {
    padding: 1.3rem;
    display: inline-block;
    background-color: #2bab0d;
    border: 2px solid #2bab0d;
    border-radius: 5rem;
    transition: background-color 0.3s;
    font-family: 'poppins', 'sans-serif';
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
}

.btn_2:hover {
    background-color: rgba(0, 0, 0, 0);
    color: black;
}

.sub-menu {
    width: 20rem;
    display: block;
    position: absolute;
    border-top: 3px solid #2bab0d;
    background-color: #191919;
    z-index: 100;
    top: 16rem;
    opacity: 0;
    visibility: hidden;
    transition: all 650ms ease;
}

.sub-menu::before{
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 3rem;
    border: 1.2rem solid transparent;
    border-bottom-color: #2bab0d;
}

.sub-menu .sub-menu::before{
    top: .9rem;
    left: -2.5rem;
    border: 1.2rem solid transparent;
    border-right-color: #2bab0d;
}

.sub-menu .sub-menu{
    border-top: none;
    border-left: 3px solid #2bab0d;
    top: 0;
    left: 160%;
}

.nav-list li:hover > .sub-menu{
    top: 8rem;
    opacity: 1;
    visibility: visible;    
}

.sub-menu li:hover > .sub-menu{
    top: 0;
    left: 100%;
}

li.move-right{
    margin: auto 0 auto auto;
    line-height: initial;
}

@media screen and (max-width: 850px){
    .nav-list{
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        display: none;
        flex-direction: column;
        align-items: initial;
        background-color: #191919;
        z-index: 1000;
        overflow-y: scroll;
    }
    
    .nav-list > li{
        line-height: 6rem;
    }
    
    .sub-menu{
        position: initial;
        border: 3px solid transparent;
        border-left-color: #2bab0d;
        margin-left: 1rem;
        max-height: 0;
    }
    
    .sub-menu::before{
        display: none;
        
    }
    
    .nav-list li:hover > .sub-menu{
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }
    
    li.move-right{
        margin: 0 auto 0 0;
        line-height: initial;
    }
    
    .menu-icons{
        display: block;
    }
    
    .ion-md-close{
        display: none;
    }

    nav.active .ion-md-close{
        display: block;
    }
    
    nav.active .ion-md-menu{
        display: none;
    }
    
    nav.active .nav-list{
        display: flex;
    }
}

/*End: Navigation*/

/* Start: Wildlife Page */

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/volunteers.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header h1{
    margin-top: 10px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    border-radius: 50px;
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
}

figure {
    display: inline-block;
    border: none;
    margin: 20px; /* adjust as needed */
}
figure img {
    vertical-align: top;
    padding: 20px 0;
}
figure figcaption {
    border: none;
    font-weight: 900;
    text-align: center;
}
    
    
.red-btn {
    border: 1px solid #2bab0d;
    background: transparent;
    color: #2bab0d;
}

.red-btn:hover {
    color: #fff;
}

/* End: Wildlife Page */

/*-- Start: Footer --*/

.footer {
    width: 100%;
    text-align: center;
    padding: 0;
}

.footer p {
    padding-top: 10px;
    padding: 0 150px;
    padding-bottom: 0px;
}

.footer h1{
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer h4{
    margin-bottom: 0px;
    margin-top: 20px;
    font-weight: 900;
}

.icons .fa{
    color: #3b5998;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-copyright{
    color: #2bab0d;
    margin-right: 8px;
}
/*-- End: Footer --*/



/* -- Start: Call To Action -- */
.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}


.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*-- End: Call To Action --*/
/*--------- Start: Row of images ------------*/

.image-row {
    width: 80%;
    margin: auto;
    display: block;
    text-align: center;
    padding-top: 100px;
}

.image-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.image-col img {
    width: 100%;
    border-radius: 10px;
}

.image-col p {
    padding: 0;
}

.image-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*--------- End: Row of images ------------*/

/*------ Start Of Contact Page --------*/

.contact-container {
    background-color: linear-gradient(#ffdad5, #fff7f9);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title {
    font-weight: 600;
    color: #2bab0d;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #2bab0d;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400;
    height: 50px;
    border: 2px solid #2bab0d;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
    
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid #000;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}

.contact-left button {
    padding: 1.3rem;
    display: inline-block;
    background-color: #2bab0d;
    border: 2px solid #2bab0d;
    border-radius: 5rem;
    transition: background-color 0.3s;
    font-family: 'poppins', 'sans-serif';
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
}



.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

iframe{
    width: 80vw;
    height: 60vh;
}

@media (max-width:800px) {
    .contact-inputs{
        width: 80vw;
    }
    
    .contact-right{
        display: none;
    }
}

@media (max-width: 500px) {
    .contact-container{
        padding-top: 90px;
    }
    
    iframe{
        padding-top: 115px;
    }
    
}


@media (max-width: 425px) {
    .contact-container{
        padding-top: 100px;
    }
    
    iframe{
        padding-top: 125px;
    }
    
}

@media (max-width: 350px) {
    .contact-container{
        padding-top: 125px;
    }
    
    iframe{
        padding-top: 150px;
    }
    
}

/*------ End Of Contact Page --------*/

/* Start: Small info boxes with hover effect on home page*/
.smallbox {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}

h1 {
    padding-bottom: 10px;
    font-size: 36px;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.smallbox-col {
    flex-basis: 31%;
    background: #ece7e7;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.smallbox-col img {
    float: inherit;
    width: 50%;
    padding: 3px;
}

.card_img_1 {
    height: 175px;
}


h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.smallbox-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/* End: Small info boxes with hover effect on home page*/

/* Start: Hero on Home Page*/
.hero{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
    url("images/castleloch.jpg") center no-repeat;
    background-size: cover;
}

.hero2{
    width: 100%;
    height: 40vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url("images/loch4.jpg") center no-repeat;
    background-size: cover;
}

.hero3{
    color: #000;
}

.text{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #eee;
    text-align: center;
}

.text2{
    width: 100%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #eee;
    text-align: center;
}

.text h1{
    font-size: 8rem;
    margin: 2rem 0;
    font-family: 'Blastimo', sans-serif;
}

.text h2{
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 300;
}

.text p{
    font-size: 1.6rem;
    margin-bottom: 5rem;
}

.text .btn{
    font-size: 1.6rem;
    padding-left: 3rem;
    padding-right: 3rem;
    color: #eee;
    text-transform: uppercase;
}

@media screen and (max-width: 830px){
    .text h1{
        font-size: 4rem;
    }

    .text .btn{
        font-size: 1.2rem;
    }
}
/* End: Hero on Home Page*/


/* Start: Standard centred paragraph on Home Page */
.standard-para {
    background-color: linear-gradient(270deg, #ffdad5, #fff7f9);
    width: 100%;
    text-align: center;
    padding: 30px;
}

.standard-para h1{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 36px;
}

.standard-para p{
    padding: 0 150px;
    font-family: poppins;
    font-size: 15px;
}

@media screen and (max-width: 830px){
    .standard-para h1{
        padding: 10px;
        font-size: 4rem;
    }
    
    .standard-para p{
        font-size: 1.2rem;
        padding: 0 20px;
    }
}
/* End: Standard centred paragraph on Home Page */

/*-- Badges --*/


/* -- Badges Responsivity Start -- */

@media screen and (max-width: 1400px){
    .row_badges {
        flex-direction: wrap;
        padding: 20px;

    }
}

@media screen and (max-width: 540px){
    .Badge_One, .Badge_Two, .Badge_Three {
        transform: scale(0.8);
    }

    


    .Badge_One:hover,
    .Badge_One:focus-within {
    transform: scale(1);
    }

    
    

}



/* -- Badges Responsivity End -- */


/* General Badge Attributes */

.row_badges {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#Badges_Title {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Badges_Declaration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Badges_Container {
    padding: 15px;  /* Adjust padding for smaller screens */
    width: 100%;
    max-width: 100%; /* Allow the container to shrink fully down to the screen size */
    margin: 0 auto;  /* Center the container */
}




/* ******** ONE ******* */

.Badge_One {
    color: var(--clr-neutral-100);
    background-image: url(images/castle.jpg); 
    background-size: cover;
    padding: 10rem 0 0;
    width: auto;
    height: auto;
    margin: 20px auto;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 500ms ease;
    float: inherit;

}

.Badge_One:hover,
.Badge_One:focus-within {
    transform: scale(1.15);
}

.Badge_Content_One {
    width: 420px;
    height: 150px;
    position: absolute;
    transform: translateY(-50px);
    z-index: 2;
    border-radius: 1.5rem;
    transition: transform 500ms ease;
}

.Badge_Background_One {
    width: 420px;
    height: 100px;
    position: absolute;
    transform: translateY(-100px);
    background: linear-gradient(
        hsl(0 0% 0% / 0),
        hsl(20 0% 0% / 0.3) 20%,
        hsl(0 0% 0% / 1)
    );
    border-radius: 1.5rem;
    z-index: 2;
    transition: 500ms ease;
}

.Badge_Title_One {
    display: flex;
    margin-top: -25px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: -50px;
    font-family: Mont;
    text-decoration: bold;
    color: #fff;
    opacity: 1;
    font-family: 'Blastimo', sans-serif;
    font-size: 50px;
    text-align: center;
    z-index: 2;
    user-select: none;
}

.Badge_One:hover .Badge_Content_One {
    transform: translateY(-100%);   
}

.Badge_Blur_One {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    position: absolute;
    background-image: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    transition: 500ms ease;
    z-index: 1;
    opacity: 0;
}

.Badge_Gradient_One {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    background: radial-gradient(#3d813d, #000000);
    opacity: 0;
    transition: 500ms ease;
}

.Badge_One:hover .Badge_Blur_One {
    opacity: 1;
}

.Badge_One:hover .Badge_Gradient_One {
    opacity: 0.5;
}

.Badge_One:hover .Badge_Background_One {
    opacity: 0;
}

.Badge_Content_One > *:not(.Badge_Title_One) {
    opacity: 1;
    transition: opacity 500ms linear;
}

.Badge_One:hover .Badge_Content_One > *:not(.Badge_Title_One) {
    opacity: 1;
}

.Badge_Title_One::before {
    opacity: 1;
}

.Badge_Title_One::after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: #2bab0d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 500ms ease;
}

.Badge_One:hover .Badge_Title_One::after {
    transform: scaleX(1);
}





/* ******** TWO ******* */

.Badge_Two {
    color: var(--clr-neutral-100);
    background-image: url(images/loch.jpg); 
    background-size: cover;
    padding: 10rem 0 0;
    width: 420px; 
    height: 300px;
    margin: 20px auto;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 500ms ease;

}

.Badge_Two:hover,
.Badge_Two:focus-within {
    transform: scale(1.15);
}

.Badge_Content_Two {
    width: 420px;
    height: 150px;
    position: absolute;
    transform: translateY(-50px);
    z-index: 2;
    border-radius: 1.5rem;
    transition: transform 500ms ease;
}

.Badge_Background_Two {
    width: 420px;
    height: 100px;
    position: absolute;
    transform: translateY(-100px);
    background: linear-gradient(
        hsl(0 0% 0% / 0),
        hsl(20 0% 0% / 0.3) 20%,
        hsl(0 0% 0% / 1)
    );
    border-radius: 1.5rem;
    z-index: 2;
    transition: 500ms ease;
}

.Badge_Title_Two {
    display: flex;
    margin-top: -25px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: -50px;
    font-family: Mont;
    text-decoration: bold;
    color: #fff;
    opacity: 1;
    font-family: 'Blastimo', sans-serif;
    font-size: 50px;
    text-align: center;
    z-index: 2;
    user-select: none;
}

.Badge_Two:hover .Badge_Content_Two {
    transform: translateY(-100%);   
}

.Badge_Blur_Two {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    position: absolute;
    background-image: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    transition: 500ms ease;
    z-index: 1;
    opacity: 0;
}

.Badge_Gradient_Two {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    background: radial-gradient(#25769b, #000000);
    opacity: 0;
    transition: 500ms ease;
}

.Badge_Two:hover .Badge_Blur_Two {
    opacity: 1;
}

.Badge_Two:hover .Badge_Gradient_Two {
    opacity: 0.5;
}

.Badge_Two:hover .Badge_Background_Two {
    opacity: 0;
}

.Badge_Content_Two > *:not(.Badge_Title_Two) {
    opacity: 1;
    transition: opacity 500ms linear;
}

.Badge_Two:hover .Badge_Content_Two > *:not(.Badge_Title_Two) {
    opacity: 1;
}

.Badge_Title_Two::before {
    opacity: 1;
}

.Badge_Title_Two::after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: #2bab0d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 500ms ease;
}

.Badge_Two:hover .Badge_Title_Two::after {
    transform: scaleX(1);
}

/* ******** THREE ******* */

.Badge_Three {
    color: var(--clr-neutral-100);
    background-image: url(images/vol3.jpg); 
    background-size: cover;
    padding: 10rem 0 0;
    width: 420px; 
    height: 300px;
    margin: 20px auto;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 500ms ease;

}

.Badge_Three:hover,
.Badge_Three:focus-within {
    transform: scale(1.15);
}

.Badge_Content_Three {
    width: 420px;
    height: 150px;
    position: absolute;
    transform: translateY(-50px);
    z-index: 2;
    border-radius: 1.5rem;
    transition: transform 500ms ease;
}

.Badge_Background_Three {
    width: 420px;
    height: 100px;
    position: absolute;
    transform: translateY(-100px);
    background: linear-gradient(
        hsl(0 0% 0% / 0),
        hsl(20 0% 0% / 0.3) 20%,
        hsl(0 0% 0% / 1)
    );
    border-radius: 1.5rem;
    z-index: 2;
    transition: 500ms ease;
}

.Badge_Title_Three {
    display: flex;
    margin-top: -25px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: -50px;
    font-family: Mont;
    text-decoration: bold;
    color: #fff;
    opacity: 1;
    font-family: 'Blastimo', sans-serif;
    font-size: 50px;
    text-align: center;
    z-index: 2;
    user-select: none;
}

.Badge_Three:hover .Badge_Content_Three {
    transform: translateY(-100%);   
}

.Badge_Blur_Three {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    position: absolute;
    background-image: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    transition: 500ms ease;
    z-index: 1;
    opacity: 0;
}

.Badge_Gradient_Three {
    width: 420px;
    height: 300px;
    margin-top: -100px;
    background: radial-gradient(#249624, #000000);
    opacity: 0;
    transition: 500ms ease;
}

.Badge_Three:hover .Badge_Blur_Three {
    opacity: 1;
}

.Badge_Three:hover .Badge_Gradient_Three {
    opacity: 0.5;
}

.Badge_Three:hover .Badge_Background_Three {
    opacity: 0;
}

.Badge_Content_Three > *:not(.Badge_Title_Three) {
    opacity: 1;
    transition: opacity 500ms linear;
}

.Badge_Three:hover .Badge_Content_Three > *:not(.Badge_Title_Three) {
    opacity: 1;
}

.Badge_Title_Three::before {
    opacity: 1;
}

.Badge_Title_Three::after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: #2bab0d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 500ms ease;
}

.Badge_Three:hover .Badge_Title_Three::after {
    transform: scaleX(1);
}

/* End Of Badges */

/*---- blog content -----*/

.blog-content {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blog-left {
    flex-basis: 65%;
}

.blog-left img{
    border-radius: 20px;
    width: 100%;
}

.blog h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p{
    color: #999;
    padding: 0;
}

.blog-right {
    flex-basis: 32%;
}

.blog-right h3{
    background: #2bab0d;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3{
    text-align: left;
}

.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button{
    margin: 10px 0;
}

@media(max-width:700px){
    .sub-header h1{
        font-size: 24;
    }
}

/* End Of Blog Content */

/* Start: Image Slider on Home Page */

* {
    box-sizing: border-box
}
body {
    font-family: poppins, sans-serif; margin:0
}
.mySlides {
    display: none
}
img {
    vertical-align: middle;
}


.gallery{
    display: inline-block;
}


.container2{
    transform: translate(10%, 0);
    width: 80vw;
    height: 80vh;
    background: #fff;
    border-radius: 80px;
    margin-top: 30px;
}

.container2 .slide .item{
    width: 8vw;
    height: 25vh;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    align-content: center;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 20px;
    width: 100%;
    height: 100%;  
}

.slide .item:nth-child(3){
    left: 70%;
}

.slide .item:nth-child(4){
    left: calc(70% + 200px);
}

.slide .item:nth-child(5){
    left: calc(70% + 400px);
    opacity: 0;
}

.slide .item:nth-child(6){
    left: calc(70% + 600px);
    opacity: 0;
}

.slide .item:nth-child(7){
    left: calc(70% + 800px);
    opacity: 0;
}

.slide .item:nth-child(8){
    left: calc(70% + 1000px);
    opacity: 0;
}

.slide .item:nth-child(9){
    left: calc(70% + 1200px);
    opacity: 0;
}

.item .content{
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
}

.button{
    width: 100%;
    text-align: center;
    bottom: 20px;
    padding: 30px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #2bab0d;
    color: #fff;
    background-color: #2bab0d;
    transition: background-color 650ms;
}

.button button:hover{
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
}

button:hover .arrow_icon {
    filter: invert(1);
}
/* End: Image Slider on Home Page */

@media (min-width: 2000px){

.slide .item:nth-child(3){
    left: 90%;
}

.slide .item:nth-child(4){
    left: calc(90% + 250px);
}

.slide .item:nth-child(5){
    left: calc(90% + 500px);
    opacity: 0;
}

.slide .item:nth-child(6){
    left: calc(90% + 750px);
    opacity: 0;
}

.slide .item:nth-child(7){
    left: calc(90% + 1000px);
    opacity: 0;
}    

.slide .item:nth-child(8){
    left: calc(90% + 1250px);
    opacity: 0;
}   
    
.slide .item:nth-child(9){
    left: calc(90% + 1500px);
    opacity: 0;
} 
    
}

@media screen and (max-width: 1000px){
    
.slide .item:nth-child(3), .slide .item:nth-child(4), .slide .item:nth-child(5){
        width: 9vw;
        height: 20vh;
    }
    
.slide .item:nth-child(3){
    left: 70%;
}

.slide .item:nth-child(4){
    left: calc(70% + 80px);
}

.slide .item:nth-child(5){
    left: calc(70% + 160px);
    opacity: 0;
}
    
.slide .item:nth-child(6){
    left: calc(70% + 320px);
    opacity: 0;
}

.slide .item:nth-child(7){
    left: calc(70% + 480px);
    opacity: 0;
}

.slide .item:nth-child(8){
    left: calc(70% + 550px);
    opacity: 0;
}

.slide .item:nth-child(9){
    left: calc(70% + 660px);
    opacity: 0;
}

}

@media screen and (max-width: 800px){
    
.container2{
    width: 70vw;
    height: 30vh;
    transform: translate(20%, 0);
}
    
    
.slide .item:nth-child(3), .slide .item:nth-child(4), .slide .item:nth-child(5){
        width: 10vw;
        height: 10vh;
    }
    
.slide .item:nth-child(3){
    left: 70%;
}

.slide .item:nth-child(4){
    left: calc(70% + 80px);
}

.slide .item:nth-child(5){
    left: calc(70% + 160px);
    opacity: 0;
}

.slide .item:nth-child(6){
    left: calc(70% + 320px);
    opacity: 0;
}

.slide .item:nth-child(7){
    left: calc(70% + 480px);
    opacity: 0;
}

.slide .item:nth-child(8){
    left: calc(70% + 550px);
    opacity: 0;
}

.slide .item:nth-child(9){
    left: calc(70% + 660px);
    opacity: 0;
}
    
    
}

/* End: Image Slider on Home Page */