@font-face {
    font-family: 'CanelaBold';
    src: url('../../../fonts/Canela-Bold-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
    --font: 'Acumin', sans-serif;
    --white: #ffffff;
    --light: #f5f5ff;
    --purpal: #4B0082;
    --magenta: #9F009A;
    --red: #E12E5E;
    --yellow: #FFB849;
    --orange: #E99615;
    --black: #000000;
    scroll-behavior: smooth;
}
.heading{
    color: var(--purpal);
    text-align: center;
    font-family: var(--font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.heading span{
    color: var(--magenta);
    position: relative;
}
.custom-btn {
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border-radius: 500px;
    background: var(--purpal);
    color: var(--white);
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.custom-btn:hover {
    text-decoration: none;
    background: var(--magenta);
}

.premium-internship-banner{
    background: linear-gradient(90deg, #2B59C3 0%, #253C78 48.53%, #162859 99.85%);
    min-height: 553px;
    display: flex;
    align-items: center;
    padding: 50px 0;
}
.premium-internship-banner .heading{
    font-family: 'CanelaBold', serif;
    color: #FFEECF;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}
.premium-internship-banner .heading:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 6px;
    background: radial-gradient(50% 50% at 50% 50%, #FFF047 0%, rgba(197, 149, 64, 0.00) 100%);
}
.premium-internship-banner .tagline{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    width: 80%;
}
.premium-internship-banner .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.premium-internship-banner .custom-btn{
    background: #FFEECF;
    color: #000;
}
.premium-internship-banner .custom-btn:hover{
    background: var(--orange);
}

.benefits{
    padding: 80px 0;
}
.benefits .heading{
    margin-bottom: 60px;
    color: #0F0202;
}
.benefits .row{
    row-gap: 25px;
}
.benefits .part{
    border-radius: 10px;
    background: linear-gradient(180deg, #2B59C3 5.09%, #253C78 95.2%);
    padding: 20px;
    min-height: 244px;
    height: 100%;
}
.benefits .part .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 15px 4px rgba(75, 0, 130, 0.10);
    margin-bottom: 30px;
}
.benefits .part .head{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefits .part p{
    margin-bottom: 0;
    color: #FFF;
}

.prerequisite{
    padding: 60px 0;
    background: #C6D7FF;
}
.prerequisite .heading{
    margin-bottom: 60px;
    color: #0F0202;
}
.prerequisite .row{
    row-gap: 30px;
}
.prerequisite .part{
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(75, 0, 130, 0.10);
    min-height: 214px;
    height: 100%;
}
.prerequisite .part .head-part{
    border-radius: 10px;
    background: linear-gradient(180deg, #2B59C3 5.09%, #253C78 95.2%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 141px;
}
.prerequisite .part .head{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}
.prerequisite .part p{
    padding: 30px;
    text-align: center;
    margin-bottom: 0;
}

.domains{
    background: linear-gradient(0deg, #2B59C3 0%, #253C78 47.47%, #162859 97.67%);
    padding: 60px 0;
}
.domains .heading{
    color: #FFF;
    margin-bottom: 20px;
}
.domains .tagline{
    text-align: center;
    color: #FFF;
    margin-bottom: 10px;
}
.domains .btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.domains .btn-group .custom-btn{
    border-radius: 29px;
    background: #FFB849;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #1C3167;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    animation: blink 1s infinite;
    cursor: context-menu;
}
@keyframes blink {
  0%, 100% {
    background: #FFB849;
  }
  50% {
    background: #FFF;
  }
}
.domains .row{
    row-gap: 25px;
}
.domains .part{
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 10px;
    background: linear-gradient(#2B59C3, #2B59C3) padding-box, linear-gradient(0deg, #FFEECF, #253C78, #FFEECF) border-box;
    box-shadow: 0px 0px 15px 0px rgba(75, 0, 130, 0.10);
    border: 2px solid transparent;
    min-height: 293px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.domains .part .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 15px 4px rgba(75, 0, 130, 0.10);
    margin-bottom: 30px;
}
.domains .part .head{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.domains .part p{
    color: #FFF;
}
.domains .part a{
    display: inline-block;
    border-radius: 25px;
    border: 1px solid #fff;
    padding: 10px 40px 10px 20px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    position: relative;
}
.domains .part a:hover{
    background: #FFB849;
    color: #1C3167;
    border: 1px solid #FFB849;
}
.domains .part a:hover:after{
    filter: invert(1);
}
.domains .part a:after{
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    height: 100%;
    width: 14px;
    background: url(../img/summer-internship/right-arrow.svg) center center no-repeat;
}

.certificate{
    padding: 80px 0;
    overflow: hidden;
}
.certificate .heading{
    margin-bottom: 60px;
    color: #0F0202;
}
.certificate .row{
    row-gap: 20px;
}
.certificate .part{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(75, 0, 130, 0.15);
    padding: 30px;
    height: 100%;
}
.certificate .part .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    background: linear-gradient(0deg, #2B59C3 0%, #253C78 47.47%, #162859 97.67%);
}
.certificate .part .head{
    color: #0F0202;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.certificate .part p{
    color: #0F0202;
    margin-bottom: 0;
}
.certificate .row .col-lg-6:nth-last-child(1){
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.certificate .image{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 15px 4px rgba(75, 0, 130, 0.15);
    padding: 20px;
    padding-bottom: 60px;
    position: relative;
    width: 100%;
}
.certificate .image .trust{
    position: absolute;
    left: calc(50% - 50px);
    bottom: 30px;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(0deg, #2B59C3 0%, #253C78 47.47%, #162859 97.67%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-now{
    background: #C6D7FF;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.join-now .heading{
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #0F0202;
}
.join-now .part{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.join-now .part .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    background: linear-gradient(0deg, #2B59C3 0%, #253C78 47.47%, #162859 97.67%);
}
.join-now .part .head{
    color: #0F0202;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.join-now .part p{
    color: #0F0202;
    margin-bottom: 0;
}
.join-now .note{
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
}
.join-now .btn-group{
    margin-top: 30px;
}
.join-now .custom-btn{
    background: #182C5E;
}
.join-now .custom-btn:hover{
    background: var(--orange);
}

@media screen and (max-width: 992px) {
    .premium-internship-banner .heading{
        text-align: center;
    }
    .premium-internship-banner .tagline{
        text-align: center;
        width: 100%;
    }
    .premium-internship-banner .btn-group{
        justify-content: center;
    }
    .premium-internship-banner .row .col-lg-6:nth-last-child(1){
        justify-content: center !important;
        min-height: auto;
        margin-top: 40px;
    }
    .certificate .image img{
        width: 100%;
    }
    .certificate .note{
        display: inline-block;
        margin-bottom: 40px;
    }
    
    .join-now .row{
        row-gap: 40px;
    }
}
@media screen and (max-width: 768px) {
    .benefits .row .col-md-6{
        width: 50%;
    }
    .prerequisite .row {
        overflow: auto;
        flex-wrap: nowrap;
        justify-content: flex-start!important;
        padding-bottom: 15px;       
    }
    .prerequisite .row::-webkit-scrollbar {
        height: 0
    }
    .prerequisite .row .col-lg-4 {
        width: 90%;
    }
    .domains .row {
        overflow: auto;
        flex-wrap: nowrap;
        justify-content: flex-start!important;
        padding-bottom: 15px;       
    }
    .domains .row::-webkit-scrollbar {
        height: 0
    }
    .domains .row .col-lg-4 {
        width: 90%;
    }
}
@media screen and (max-width: 601px) {
    .premium-internship-banner .heading{
        font-size: 30px;
        line-height: 40px;
    }
    .benefits .row {
        overflow: auto;
        flex-wrap: nowrap;
        justify-content: flex-start!important;
        padding: 15px 0;       
    }
    .benefits .row::-webkit-scrollbar {
        height: 0
    }
    .benefits .row .col-lg-4 {
        width: 90%;
    }
}