:root {
    --color1: #DF8A14;
    --colorWhite: #ffffff;
    --color2: #F3E9DC;
    --color3: #1E1E1E;
    --color4: #E5EBFF;
}

.inputCustom::placeholder {
    color: rgb(180, 180, 180) !important;
    font-size: 0.9rem;
}

.inputCustom:focus::placeholder {
    color: rgb(82, 79, 79) !important;
    /* Change to your desired color */
}

* {
    scrollbar-width: thin;
    /* Makes the scrollbar thinner */
    scrollbar-color: rgba(223, 138, 20, 1) rgba(223, 138, 20, 0.5);
    /* Red for thumb, grey for track */
}


body {
    overflow-x: hidden;
}

.bgstyle1 {
    background: #FCDED9;
    background: linear-gradient(15deg, rgba(252, 222, 217, 1) 0%, rgba(252, 244, 242, 1) 43%, rgba(252, 222, 217, 1) 100%);
}

/* Text Colors */
.textcolor1 {
    color: var(--color1);
}

.textcolor2 {
    color: var(--colorWhite);
}

/* Background Colors */
.bgcolor1 {
    background-color: var(--color1);
}

.bgcolor2 {
    background-color: var(--color2);
}

.bgcolor3 {
    background-color: var(--color3);
}

/* Paddings & Margins */
.main_paddingblock {
    padding-inline: 5%;
}

.headerblock {
    background-image: url("../images/Headerbg.png");
    background-size: cover;
}

.borderbottom {
    border-bottom: 1px solid #ABA398;
    padding-bottom: 15px;
}

.webButton {
    display: inline-block;
    background-color: var(--color1);
    padding: 10px 20px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.5s;
}

@media (max-width:768px) {
    .webButton {
        font-size: 0.8rem;
        padding: 10px;
    }
}

.webButton svg {
    transition: all 0.5s;
}

.webButton:hover {
    background-color: #252424;
}

.webButton:hover svg {
    transform: rotate(180deg);
}

.headingsText {
    font-weight: 800;
    font-size: 4rem;
    position: relative;
    z-index: 1;
    font-size: 4rem;
}


.headingsText::before {
    content: '';
    height: 75px;
    width: 75px;
    background-color: var(--color1);
    position: absolute;
    border-radius: 50%;
    top: -3%;
    left: -2%;
    z-index: -1;
}

@media (max-width:768px) {
    .headingsText {
        font-size: 2.5rem;
    }

    .headingsText::before {
        content: '';
        height: 55px;
        width: 55px;
        background-color: var(--color1);
        position: absolute;
        border-radius: 50%;
        top: -3%;
        left: -2%;
        z-index: -1;
    }
}

.headingsText2 {
    font-weight: 800;
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.headingsText2::before {
    content: '';
    height: 75px;
    width: 75px;
    background-color: var(--color1);
    position: absolute;
    border-radius: 50%;
    top: -3%;
    left: -1%;
    z-index: -1;
}

.certificateBlock {
    background-color: #EBEBEB;
    border-radius: 10px;
    padding: 20px 15px;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.5s;
}

.certificateBlock_SubPage {
    min-height: 120px;
}

.certificateBlock h3 {
    font-size: 1rem;
    font-weight: bold;
    padding-left: 25px;
    position: relative;
    transition: all 0.5s;
}

.certificateBlock h3::before {
    content: '';
    background-image: url('../images/hat1.png');
    position: absolute;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    left: 0px;
    top: -2px;
    transition: all 0.5s;
}

.certificateBlock h2 {
    font-size: 1.3rem;
    color: var(--color1);
    transition: all 0.5s;
}

.certificateBlock:hover {
    background-color: #DF8A14;
}

.certificateBlock:hover h2,
.certificateBlock:hover h3 {
    color: #fff
}

.certificateBlock:hover h3 {
    padding-left: 0px;
}

.certificateBlock:hover h3::before {
    transform: translate(0px, -30px);
}

.events div {
    width: 90%;
    border-radius: 10px;
    background-color: #DF8A14;
    transition: all 0.5s;
    color: #fff;
}

.margin-mobile {
    margin-bottom: 0px;
}

@media (max-width:768px) {
    .margin-mobile {
        margin-bottom: 5rem;
    }
}

.events:hover div {
    background-color: #feb857;
}

.events div p {
    padding-bottom: 0;
    margin-bottom: 0;
}

.events div h6 {
    font-weight: bold;
}

.footerlinks {
    border-block: 1px solid #414141;
    display: flex;
    justify-content: space-evenly;
}

.footerlinks a {
    display: flex;
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    border-right: 1px solid #414141;
    transition: all .5s;
    align-items: center;
    /* vertical center */
    justify-content: center;
    width: 100%;
}

.footerlinks a:last-child {
    border-right: none;
    /* remove extra border */
}

@media (max-width:768px) {
    .footerlinks {
        align-items: center;
        flex-wrap: wrap;
    }
}

.footerlinks a {
    border-right: none;
    border-bottom: 1px solid #414141;
    width: 100%;
    text-align: center;
}

.footerlinks a:last-child {
    border-bottom: none;
}
}

.footerlinks a:hover {
    color: var(--color1);
}

.contactFooterblock {
    border: 2px dashed var(--color1);
    border-radius: 15px;
    padding: 15px;
    color: #fff;
}

.contactFooterblock h3 {
    font-weight: bold;
    color: var(--color1);
}

.sub-pageHero {
    height: 60vh;
    background-color: #DF8A14;
    background-image: url('../images/pexels-elevate-1267320.jpg');
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: center;
}

.sub-pageHero span {
    background-color: var(--color3);
    color: var(--colorWhite);
    padding: 10px;
    border-radius: 5px;
}

.sub-pageHero span span {
    font-weight: bold;
    font-size: 1.5rem;
}

.aboutusFeatures img {
    width: 50px;
}

.aboutusFeatures h3 {
    font-size: 1.5rem;
    margin-block: 10px
}

.aboutusFeatures>div>div {
    border: 1px solid var(--color1);
    border-radius: 5px
}

.inputCustom {
    border: none;
    border-bottom: 1px solid #aeaeae;
    background-color: transparent;
    margin-bottom: 20px;
}

.inputCustom:focus {
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

@media (max-width:768px) {
    .main_paddingblock {
        padding-inline: 2%;
    }
}

/* SiteCSS */

@media (max-width:992px) {}

/* Social Icons */

.iconBlock ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.iconBlock ul li a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color1);
    margin: 10px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
}

.iconBlock ul li a .fa {
    color: #000;
    transition: all 0.5s ease;
}

.iconBlock ul li a:hover .fa {
    color: rgb(255, 255, 255);
    transform: rotateY(360deg);
}

.iconBlock ul li a::before {
    content: '';
    position: absolute;
    top: 105%;
    left: 0;
    background-color: rgb(226, 11, 11);
    width: 100%;
    height: 100%;
    transition: 0.5s all ease;
}

.iconBlock ul li:nth-child(1) a::before {
    background-color: rgb(34, 34, 151);
}

.iconBlock ul li:nth-child(2) a::before {
    background-color: rgb(194, 54, 15);
}

.iconBlock ul li a:hover::before {
    top: 0%;
}

/* Certificates College */

.column {
    -ms-flex: 33.33%;
    /* IE10 */
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 2px;
}

.image-container {
    position: relative;
    width: 100%;
}

.column img {
    margin-top: 5px;
    vertical-align: middle;
    width: 100%;
    border: 2px dashed #252424;
}

/* Overlay text */
.overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(156, 102, 9, 0.8);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 1s;
}

.image-container:hover .overlay-text {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}
