/************* Basic Styling ******************/

* {
    box-sizing: border-box!important;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(253, 253, 253, 0.897);
}

.newstyle {
    border-radius: 3px!important;
}

.section {
    margin-top: 0.1rem!important;
    margin-left: 0.11rem!important;
    margin-right: 0.11rem!important;
}

a:hover {
    color: yellow!important;
}

a {
    text-decoration: none!important;
}


/*##########################################################################################
############################################################################################
############################################################################################
############################################################################################*/


/************* Nav Head Styling Start ******************/

.fa:hover {
    font-size: small;
    color: green!important;
}

.navfont i {
    font-size: 10px;
}


/* 
ul li a:hover {
    background-color: #AD310B;
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
} */


/************* Nav Head Styling End ******************/


/************* Nav Bar Styling Start ******************/

.dropdown:hover .dropdown-menu {
    display: block;
    cursor: pointer;
}

.dropdown-menu {
    background-color: rgba(52, 58, 64, 0.5);
    margin-top: 0.5rem;
    padding: 5px 25px;
    border-radius: 5px;
}

.dropdown-menu .dropdown-item {
    border-radius: 50px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #343A40;
    color: #fff!important;
}

.nav-link {
    color: white!important;
}

.nav-link:hover {
    color: green!important;
}


/************* Nav Bar Styling Start ******************/


/************* Carsouel Styling Start ******************/

.carousel-inner {
    height: 450px;
}

.carousel-caption h5,
.carousel-caption p {
    color: black;
    background-color: blanchedalmond;
    display: inline-block;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 13px;
    border-radius: 1px;
    line-height: 13px;
    margin: 0;
    margin-bottom: 1px;
}


/************* Carsouel Styling End ******************/


/************* Content Styling Start ******************/

.newcontent {
    color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
}

.newcontent h3 {
    font-family: montserratlight, Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 2px;
}

.newcontent h1 {
    line-height: 35px;
    font-weight: bolder;
    letter-spacing: 3px;
}

.newcontent .head-p {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
}

.school-video {
    padding-top: 75px;
}

#schoolcarosuel {
    height: 230px!important;
}

.newcarouselinner {
    height: 230px!important;
}

.newcarouselindicators {
    text-align: center;
    background-color: hotpink;
    padding: 30px;
}


/************* Content Styling End ******************/


/************* Card Styling Strat ******************/

.mycardheading {
    line-height: 70px;
    padding-top: 40px;
}

.mycardheading h1 {
    font-size: 40px;
    letter-spacing: 3px;
}

.mycardheading p {
    font-size: 75px;
    font-weight: 900;
    letter-spacing: 5px;
}


/************* Card Styling End ******************/


/************* Portfolio Styling Start ******************/

.myportfolioiheading {
    line-height: 70px;
    padding-top: 40px;
}

.myportfolioiheading h1 {
    font-size: 40px;
    letter-spacing: 3px;
}

.myportfolioiheading p {
    font-size: 75px;
    font-weight: 900;
    letter-spacing: 5px;
}

h1 {
    text-align: center;
    line-height: 45px
}

* {
    box-sizing: border-box;
}

.box {
    background: #fff;
    box-shadow: 0 0 5px #bababa;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
}

.box img {
    width: 100%;
    height: auto;
    display: block;
}

.box .box-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.box .box-content:before,
.box .box-content:after {
    content: "";
    width: 95%;
    height: 47%;
    background: #E01E48;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.5s;
    opacity: 0;
}

.box .box-content:before {
    top: -20%;
}

.box .box-content:after {
    bottom: -20%;
}

.box:hover .box-content:before {
    top: 3%;
    opacity: 0.8;
}

.box:hover .box-content:after {
    bottom: 3%;
    opacity: 0.8;
}

.box .content {
    width: 100%;
    height: 45px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    transform: rotate(90deg);
    opacity: 0;
    transition: all 0.5s;
}

.box:hover .content {
    opacity: 1;
    transform: rotate(0deg);
}

.box .social {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

.box .social li {
    display: inline-block;
    margin-right: 10px;
}

.box .social li a {
    color: #000;
    background: #fff;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.box .social li a:hover {
    color: #E01E48;
}

.box .social li a .fa {
    line-height: 35px;
}

.box .title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.box .post {
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
}


/************* Portfolio Styling End ******************/


/************* Counter Styling Start ******************/

.mycounter {
    padding: 80px 0;
    height: 100vh;
}

#counterimg {
    background-image: url('../../images/bg-counter.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    background-color: rgba(52, 58, 64, 0.90);
    background-blend-mode: overlay;
}


/************* Counter Styling Start ******************/


/************* Footer Styling Start ******************/

::placeholder {
    font-size: 0.9rem;
    padding-left: 5px;
}

.newsletter {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 25px;
}

.form-input {
    border-radius: 100px 0 0 100px;
    min-height: 40px;
}

.newsletter h1 {
    margin-bottom: 30px;
}

.input-group-text {
    color: #fff;
    background-color: #0839da;
    border-radius: 0 100px 100px 0px;
}

i .fa {
    font-size: 223px!important;
    background-color: red;
}

.headings h5 {
    letter-spacing: 3px;
}

.myfooter h5 {
    letter-spacing: 2px;
}

.myfooter {
    line-height: 35px;
}

.myfooter h5:after {
    content: "";
    width: 80px;
    height: 3px;
    background-color: yellow;
    position: absolute;
    top: 29px;
    left: 16px;
}

.mycopywrite strong {
    text-decoration: none;
    color: white
}

.myfootericoncolor {
    height: 25px;
    width: 25px;
}


/************* Footer Styling End ******************/