/* common styles satrt */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root{
    --green: #ff0303;
    --gray: #efefef;
}

html{
    scroll-behavior: smooth;
}
button, 
body{
    font-family: 'Playfair Display', serif;
    font-family: 'Poppins', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
p{
    font-size: 14px;
    line-height: 26px;
}

.fullcontainer{
    width: 100%;
    /* background-color: aqua; */
}
.container{
    width: 1140px;
    margin: auto;
    text-transform: capitalize;
    /* background-color: green; */
}
.connectContainer a{
    color: #7f7f7f;
}

.sectionTitle{
    width: 400px;
    border-bottom: 4px solid#ff0303;
    text-align: center;
    font-size: 2rem;
    font-weight: 200;
    margin: 0 auto 50px;
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    /* color: red; */
}


.sectionTitle::after{
    display: inline-block;
    content: "";
    height: 15px;
    width: 15px;
    background-color: #ff0303;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(75% - 7px);
    transform: rotate(45deg) translate(50%, 50%);
    border: 3px solid #fff;

}

section{
    padding: 100px 0;
    position: relative;
}
section #aboutsetionc{
    padding: 10000px;
    background-color: #000;
}
.countries-contact{
    border-bottom: 1px solid#ff0303;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.country img{
    height: 80px;
    width: 120px;
    align-items: center;
    border-radius: 50%;
}
.detail-img img{
    display: flex;
    flex-direction: row;
    height: 80px;
    width: 120px;
    align-items: center;
    border-radius: 50%;
}
.detail-img{
    display: flex;
    flex-direction: row;
}
.detail-img span{
    width: 300px;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 100px;
}
.detail-img a{
    color: #ff0303;
}
.countries-mainfull{
    /* display: flex;
    flex-direction: row; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1px;
    /* background-color: red; */
}
.countries-mainfull button{
    position: absolute;
    left: 50%;
    background-color: var(--green);
    color: #fff;
    transform: translate(-50%);
    border-radius: 60px;
    padding: 7px 15px;
    outline: none;
    border: 0;
    cursor: pointer;
    margin: 50px 0 0 100px;
    width: 200px;
    height: 50px;


}

.countries-side input{
    background-color: transparent;
    border: 1px solid #7f7f7f;
    outline: none;
    padding: 10px 15px;
    width: 100%;
    margin-top: 10px;
    color: #000;
    border-radius: 30px;
    margin-top: 80px;
    height: 50px;
    width: 45%;
    margin-right: 20px;

}

.countries-side .mail{
    width: 60%;
}
.countries-side .comment{
    width: 100%;
    height: 300px;
    display: flex;
    align-content: flex-start;

}
/* .countries-side{
    background-color: red;

} */
.contries-full{
    /* background-color: black; */
    width: 80%;
    border-right: 1px solid#ff0303;
    padding-right: 50px;
}

/* common styles end */

/* header styles  */
header{
    width: 100%;
    background-color: rgba(1, 1, 1, 0.3) ;
    /* background-color: red; */
    position: fixed;
    z-index: 2;
}
header .container{
    display: flex;
    justify-content: space-between;
}

header .container .logo{
    padding: 1px 0;
    height: 75px;
    /* background-color: red; */
}

header .container .logo img{
    height: 100%;
}
header nav ul{
    list-style-type: none;
}
header nav ul li{
    display: inline-block;
}

header nav ul li a{
    display: inline-block;
    height: 75px;
    line-height: 75px;
    padding: 0 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: #fff;
    transition: 0.8s;
}

header nav ul li a::after{
    content: '';
    background-color: var(--green);
    height: 2px;
    display: block;
    margin: auto;
    transition: 0.5s;
    width: 0;
    margin-top: -30px;

}
header nav ul li a:hover::after{
width: 100%;

}

.banner{
    height: 100vh;
    width: 100%;
    background-image: url(img/man.jpg);
    background-size: cover;
    /* background-size: contain; */

}
.banner-contact{
    height: 200px;
    width: 100%;
    background-image: url(img/community.jpg);
    background-size: cover;
    /* background-size: contain; */
}
.banner h1{
    margin-top: 300px;
    display: inline-block;
    font-size:3.5rem;
    color: #fff;
    /* color: red; */
    text-shadow: 0 0 2px #ff0303;
    width: 60%;
    line-height: 5rem;
    font-weight: 100;
}
.banner h1 span{
    background-color: #ff0303;
    border-radius: 5px;
    display: inline-block;
    line-height: 3.5rem;
    padding: 0 15px;
    font-weight: 600;
    margin-top: 10px
}

.banner p{
    color: #fff;
    width: 50%;
    text-shadow:0 0 2cx #ff0303;
    margin-top: 30px;
    /* margin: 10px; */
}
.banner button{
    background-color: #ff0303;
    border: 0;
    outline: none;
    color: #fff;
    margin-top: 40px;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 10px;
    font-weight: 600;
}
.banner button a{
    text-decoration: none;
    color: #fff;
}
/*End header styles  */

/* About us starts Here */
#aboutsetion .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    height: 100%;
    /* background-color: red; */
}

#aboutsetion .cards > div{
    width: 350px;
    background-color: #efefef;
    padding: 35px;
    margin-top: 10px;
    color: #444;
    /* color: red; */
    text-align: center;
    border-radius: 5px;
    height: 100%;
    border: 1px solid #ccc;
    transition: 0.5s;
}

#aboutsetion .cards > div:hover{
    width: 400px;
    margin-top: 20px;
    border-color: #ff0303;
    padding: 55px;
    height: auto;
}

#aboutsetion .cards > div .title{
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}
#aboutsetion .cards > div p{
    font-size: 14px;
    margin-top: 15px;
}
    
#aboutsetion .cards > div button{
    border: 1px solid #ff0303;
    outline: none;
    padding: 7px 15px;
    margin-top: 15px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}
#aboutsetion .cards > div button a{
    text-decoration: none;
    color: #000;
}
#aboutsetion .cards > div button:hover{
    background-color: #ff0303;
    color: #fff;
}
#aboutsetion .cards > div button a:hover{
    text-decoration: none;
    color: #fff;
}
/* About us ends Here */

/* Objective starts here */
.objectives{
    /* background-color: red; */
    background-color: #fff;
}
.objectives .boxContainer{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}
.objectives .boxContainer .boxObjectives{
    /* background-color: #fff; */
    /* text-align: center; */
    /* padding-bottom: 25px; */
    padding: 20px 10px 10px 20px;
    /* border-radius: 5px; */
    /* box-shadow: 0 0 3px 0 #c5c5c5; */
    /* position: relative; */
    margin-bottom: 15px;
    /* height: 400px; */
}
.objectives .boxContainer .boxObjectives img{
    height: 400px;
    width: 100%;
}
.objectives .boxContainer .boxObjectives p{
    justify-content: start;
    text-align: start;
    font-size: 16px;
    /* font-weight:bold; */
    line-height: 35px;
    font-family: sans-serif;
}
.work1{
    /* color: #fff; */
    position: relative;
    right: -20%;
    top: 5%;
}
.work2{
    position: relative;
    top: 5%;
}
.work3{
    position: relative;
    top: 5%;
    right: -20%;
}
.work4{
    position: relative;
    top: 5%;
}
.boxObjectives b{
    color: #ff0303;
    text-transform: uppercase;
    font-size: 18px;
}
/* Objective ends here */

/* services starts Here */
.services{
    /* background-color: #e2e2e2; */
    background-color: #e2e2e2;
}

.services .boxContainer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

.services .boxContainer .box{
    background-color: #fff;
    text-align: center;
    padding-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 #c5c5c5;
    position: relative;
    margin-bottom: 15px;
    /* height: 400px; */
}

.services .boxContainer .box .cardImage{
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0 ;
 }

.services .boxContainer .box .cardImage::after {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    filter: grayscale(100%);
    transition: 0.4s;
    /* background-color: red; */
}

.services .boxContainer .box:nth-child(1) .cardImage, 
.services .boxContainer .box:nth-child(1) .cardImage::after{
    background-image: url(img/debt1.jpg);
    
}

.services .boxContainer .box:nth-child(2) .cardImage, 
.services .boxContainer .box:nth-child(2) .cardImage::after{
    background-image: url(img/auction1.jpg);
    
}
.services .boxContainer .box:nth-child(3) .cardImage, 
.services .boxContainer .box:nth-child(3) .cardImage::after{
    background-image: url(img/trace1.jpg);
    
}
.services .boxContainer .box:nth-child(4) .cardImage, 
.services .boxContainer .box:nth-child(4) .cardImage::after{
    background-image: url(img/risk1.jpg);
    
}

.services .boxContainer .box:hover .cardImage::after{  
    top: 100%;
} 
.services .boxContainer .box .serviceTitle{
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
}
.services .boxContainer .box .donationCount{
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-top: 10px;
}
.services .boxContainer .box .donationCount span{
    color: var(--green);
}
.services .boxContainer .box button{
    position: absolute;
    left: 50%;
    background-color: var(--green);
    color: #fff;
    transform: translate(-50%);
    bottom: -15px;
    border-radius: 60px;
    padding: 7px 15px;
    outline: none;
    border: 0;
    cursor: pointer;
}
/* services ends Here */

/* Education starts Here */
.education{
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.education .VideoPlayer{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.education .VideoPlayer .hand{
    width: 100%;

}
.education .sectionTitle{
    color: #fff;
    text-shadow: 0 0 4px #000;
    width: 400px;
}
.education .educationContainer{
    position: absolute;
    background-color: #00000096;
    width: 600px;
    top: 35vh;
    color: #fff;
    text-shadow: 0 0 4px #000;
    padding: 30px;
    top: 30%;
}
.education .educationContainer h3{
    font-size:35px;
    font-weight: 300;
}
.education .educationContainer p{
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0 30px;
}
.education .educationContainer button{
    background-color: var(--green);
    border: 0;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* Education ends Here */

/* Gallaery starts Here */
.gallery .galleryContainer{
    column-count: 4;
    column-gap: 20px;
}
.gallery .galleryContainer .item{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.gallery .galleryContainer img{
    width: 100%;
    display: block;
    transition: 0.4s;
}
.gallery .galleryContainer .title{
    position: absolute;
    background-color: var(--gray);
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    opacity: 0;
    z-index: 1;
    transition: 0.4s;
}
.gallery .galleryContainer .item:hover .title{
    opacity: 1;
}
.gallery .galleryContainer .item:hover img{
    transform: scale(1.2);
}
/* Gallaery ends Here */


/* Join starts Here */

.join{
    background-color: #ff0303;
    /* background-color: green; */
    color: #fff;
}.join .joinTitle{
    font-size: 28px;
    font-weight: 80;
    text-transform: uppercase;
}
.join .joinTitle span{
    font-weight: 800;
}
.join .joinTitle p{
    font-weight: 800;

}
.join button{
    padding: 7px 15px;
    margin-top: 20px;
    border: 0;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
.join button.joinNow{
    margin-right: 10px;
    background-color: #424242;
    color: #fff;
    cursor: pointer;
}
.join button .adoptbtn{
    background-color: var(--gray);
}

/* join us ends here */

.main-branches{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    /* background-color: red; */
}
.main-branchess{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    /* background-color: red; */
    top: -200px;
}
.right-branch img{
    height: 490px;
    width: 700px;
    padding: 0 10px 10px 1px; 
}
.left-branch h1{
    background-color: #ff0303;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

}
.country-stars div{
    margin: 20px 10px 10px 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.country-stars div span{
    margin-left: 0px;
    padding-bottom: 10px;
}
/* .country-stars .fa{
    border: 1px solid#000;
} */

/* footer starts here */

footer{
    background-color: #000;
    color: #7f7f7f;
    padding: 50px 0;
    font-size: 14px;
}
footer .container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
}
footer .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid;
    margin-bottom: 30px;
    padding: 0 0 5px 0;
}
footer p{
    margin-bottom: 10px;  
}
footer .linksContainer ul{
    list-style-type: none;

}
footer .linksContainer ul li a{
    text-decoration: none;
    color: #7f7f7f;
    margin-bottom: 10px;
    display: inline-block;
}
footer .linksContainer ul li a i{
    vertical-align: middle;
    font-size: 20px;
    color: #fff;
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;
    background-color: rgb(50, 50, 247);
    border-radius: 50%;
}
footer .linksContainer ul li a:hover{
    color: var(--main-color);
    transform: translateY(-3px);
}
footer .newsLetterContainer img{
    height: 60px;
    margin-bottom: 11px;
}
footer .newsLetterContainer input{
    background-color: transparent;
    border: 1px solid #7f7f7f;
    outline: none;
    padding: 10px 15px;
    width: 100%;
    margin-top: 10px;
    color: #ccc;
    border-radius: 30px;
}
.boxObjectives div{
    display: block;
}
.copyrights{
    padding: 0;
    margin: 0;
    background-color: #000;
    color: #7f7f7f;
    width: 100%;
}
.copyrights p{
    margin: 0 auto;
}


/* footer ends here */


/* Responsive Code Satrt Here */
 @media screen and (max-width:1140px) {
    .right-branch img{
        height: 450px;
        width: 600px;
        padding: 0 10px 10px 1px; 
    }

    .container{
        width: 100%;
        padding:0 80px;
    }
    .education .VideoPlayer{
        width: 1280px;
    } 
    .boxObjectives .work1{
        display: block;
    }
    header nav{
        position: relative;
        border: 2px solid #fff;
        height: 30px;
        width: 30px;
        margin-top: 20px;
        border-radius: 5px;
    }  
    header nav::after{
        top: 17px;

    }
    header nav:before{
        top: 7px;

    }
    header nav::after, header nav::before{
        content: "";
        height: 2px;    
        width: 17px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: 5px;

    }
    header nav ul{
        position: absolute;
        right: -400px;
        top: 53px;
        transition: 0.5s;
    }
    header nav:hover ul{
        right: 0;
    }
    header nav ul li{
        display: block;
    }
    header nav ul li a{
        width: 300px;
        background-color: rgba(0, 0, 0, 0.6);
    }
    #aboutsetion .cards{
        display: flex;
        justify-content: space-around;
    }
    .objectives .boxContainer .boxObjectives img{
        height: 70%;
        width: 100%;
        margin-top: 100px;

    }
    .education .educationContainer >div iframe  {
        height: 250px;
        width: 500px;
    }
}

@media screen and (max-width:1024px) {
    .contries-full{
        /* background-color: black; */
        width: 80%;
        border-right: 1px;
        padding-right: 50px;
    }
    .right-branch img{
        height: 450px;
        width: 600px;
        padding: 0 10px 10px 1px; 
    }
    .banner h1{
        margin-top: 200px;
    }  
    #aboutsetion .cards{
        justify-content: space-around;
        height: auto;
    }
    #aboutsetion .cards >div{
        margin: 25px 0;
    }
}

@media screen and (max-width:1024px) {
    .banner{
        background-position-x: 45%;
    } 
    .banner h1{
        font-size: 2.5rem;
    }
    .services .boxContainer{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:900px) {
    .countries-side button{
        margin: 0 auto;
        font-weight: 600;
    }
    .countries-side .comment{
        margin-bottom: 10px;
    }
    .countries-contact{
        border-bottom: 1px solid#ff0303;
        width: 80%;
    }
    .countries-mainfull{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .main-branches{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 5px;
        /* background-color: red; */
    }
    .right-branch img{
        height: 350px;
        width: 500px;
    }
    .right-branch{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .left-branch{
        margin-bottom: 20px;
        padding: 10px 50px;
    }
    .main-branchess{
        padding: 0 50px;
        width: 1000px
    }
    .objectives .boxContainer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .objectives .boxContainer .boxObjectives img{
        height: 70%;
        width: 80%;
        margin: 100px;
    }
    .container{
        width: 100%;
        padding:0 120px;
    }
    header nav ul{
        position: absolute;
        right: -425px;
        top: 53px;
        transition: 0.5s;
    }
}

@media screen and (max-width:768px) {
    .countries-contact{
        border-bottom: 1px solid#ff0303;
        width: 90%;
    }
    .main-branchess{
        padding: 0 50px;
    }
    
    .boxObjectives .work1{
        left: -5px;
    }
    .boxObjectives .work3{
        left: -5px;
    }

    header nav{
        position: relative;
        border: 2px solid #fff;
        height: 30px;
        width: 30px;
        margin-top: 20px;
        border-radius: 5px;
    }  
    header nav::after{
        top: 17px;

    }
    header nav:before{
        top: 7px;

    }
    header nav::after, header nav::before{
        content: "";
        height: 2px;    
        width: 17px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: 5px;

    }
    header nav ul{
        position: absolute;
        right: -425px;
        top: 53px;
        transition: 0.5s;
    }
    header nav:hover ul{
        right: 0;
    }
    header nav ul li{
        display: block;
    }
    header nav ul li a{
        width: 300px;
        background-color: rgba(0, 0, 0, 0.6);
    }
    .banner{
        background-position-x: 65%;
    }
    .banner p{
        font-size: 16px;
    }
    .banner p, 
    .banner h1{
        width: 60%;
    }
    .objectives .boxContainer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .education .educationContainer >div iframe  {
        height: 250px;
        width: 400px;
    }

    #aboutsetion .cards >div:hover{
        width: 350px;
    }
    .education .educationContainer{
        width: 50%;
    }
    .education .educationContainer h3{
        font-size: 30px;
        line-height: 35px;
    }
    .education .educationContainer p{
        margin: 10px 0 20px;
    }
    .gallery .galleryContainer{
        column-count: 2;
    }
}

@media screen and (max-width: 715px){
    .countries-contact{
        border-bottom: 1px solid#ff0303;
        width: 100%;
    }
    .banner h1{
        margin-top: 150px;
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 10px;
    }
    .banner button{
        margin-bottom: 10px;

    }
    .banner h1{
        width: 100%;
    }
    #aboutsetion p{
        text-align: justify;
    }
    #aboutsetion .cards >div:hover{
        width: 400px;
        margin-top: 10px;
        padding: 35px;
    }
    .objectives .boxContainer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .objectives .boxContainer .boxObjectives img{
        height: 70%;
        width: 80%;
        margin: 50px;
    }
    .services .boxContainer{
        grid-template-columns: 1fr;
    }
    .education .VideoPlayer{
        width: 1400px;
    }
    .education .educationContainer{
        width: 93%;
    }
    .education .educationContainer h3{
        font-size: 25px;
        font-weight: 200;
    }
    .gallery .galleryContainer{
        column-count: 1;
    }
    footer .container{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:600px){
    header .container .logo{
        width: 150px;
        height: auto;
    }
    header .container .logo img{
        width: 100%;
    }
    .right-branch img{
        height: 200px;
        width: 300px;
        margin-left: -6%;
    }
    .left-branch{
        width: 450px;
        margin-left: -6%;
    }

    .objectives .boxContainer .boxObjectives img{
        height: 100%;
        width: 500px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 425px){
    .copyrights{
        background-color:#000;
        color: #7f7f7f;
        width: 100%;
        padding: 0 10%;
    }
    .detail-img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 0 40px;
    }
    .container span{
        width: 100%;
    }
    .container{
        width: 100%;
        padding:0 10px;
    }
    header .container .logo{
        padding: 1px 0;
        height: 30px;
        /* background-color: red; */
        width: 100px;
    }
    header .container .logo img{
        width: 100%;
    }
    .objectives .boxContainer .boxObjectives img{
        height: 80%;
        width: 100%;
    }
    .objectives .boxContainer .boxObjectives{
        height: 70%;
        width: 80%;
        margin: 50px;
    }
    .banner h1{
        margin-top: 150px;
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 10px;
    }
    .banner button{
        margin-bottom: 10px;

    }
    .banner h1{
        width: 70%;
    }
    #aboutsetion p{
        text-align: justify;
    }
    #aboutsetion .cards >div:hover{
        width: 400px;
        margin-top: 10px;
        padding: 35px;
    }
    .objectives .boxContainer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .services .boxContainer{
        grid-template-columns: 1fr;
    }
    .education .VideoPlayer{
        width: 1400px;
    }
    .education .educationContainer{
        width: 93%;
    }
    .education .educationContainer h3{
        font-size: 25px;
        font-weight: 200;
    }
    .gallery .galleryContainer{
        column-count: 1;
    }
    footer .container{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:320px){
    .detail-img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 0 10px;
    }
    #aboutsetionn{
        padding-top: 0;
    }
    .right-branch img{
        height: 150px;
        width: 280px;
        margin-left: -6%;
    }
    .left-branch{
        width: 100%;
        margin-left: -6%;
    }
    .left-branch .country-stars{
        font-size: 11px;
        font-weight: bold;

    }
    .container .sectionTitle{
        width:280px;
        font-size: 1.5rem;
        font-weight: 200;

    }
    .banner{
        height: 100vh;
        width: 100%;
        background-size: cover;
        /* background-size: contain; */
    
    }
    .objectives .boxContainer .boxObjectives img{
        height: 80%;
        width: 100%;
    }
    .objectives .boxContainer .boxObjectives{
        height: 70%;
        width: 70%;
    }
    .education .educationContainer h3{
        font-size: 18px;
        line-height: 24px;
    }
    .education .educationContainer >div iframe  {
        height: 250px;
        width: 200px;
    }
    .gallery .galleryContainer{
        column-count: 1;
    }
    footer .container{
        grid-template-columns: 1fr;
    }
    .objectives .boxContainer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .objectives .boxContainer .boxObjectives{
        padding: 5px 5px 5px 5px;
        /* margin-bottom: 15px; */
    }
    .sectionTitle .boxContainer{
        padding: 0px 0px;
    }
    /* .copyrights{
        background-color:#000;
        color: #7f7f7f;
        width: 100%;
        padding: 0 10%;
    } */

} 


/* Responsive Code Ends Here */