@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600&family=Nunito:wght@400;500;600;700;800;900&family=Poppins:wght@300;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
:root {
    --primary: #2E3D62;
    --primary-low-op: #2e3d621f;
    --secondary: #e8e8e8;
    --primary-sky: #5DD8D3;
    --secondary-sky: #F2FCFC;
    --primary-pink: #EE539B;
    --secondary-pink: #FFF3F9;
    --primary-violet: #9364D4;
    --secondary-violet: #F1E6FF;
    --poppins: 'Poppins', sans-serif;
    --hind: 'Hind Siliguri', sans-serif;
    --nunito: 'Nunito', sans-serif;
}
html {
    scroll-behavior: smooth;
}
object {
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--primary);
    font-family: var(--hind);
    -webkit-tap-highlight-color: transparent;
}

body {
    background: url(../assets/bg.png);
    background-size: cover;
    min-height: 100vh;
    background-position-x: center;
    padding-top: 300px;
}

.btn, .btn.btn_primary {
    display: inline-block;
    outline: none;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: white;
    padding: 10px 30px;
    font-size: 20px;
    font-family: var(--hind);
    border-radius: 12px;
    transition: 0.3s;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.btn:hover, .btn.btn_primary:hover {
    background: var(--secondary);
    color: var(--primary);
}

#browse_course {
    position: relative;
}
#browse_course .stroke_btn {
    display: flex;
    gap: 5px;
    border: 1.5px solid var(--primary);
    place-items: center;
    padding: 10px 15px;
    border-radius: 8px;

    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.017em;
    line-height: 26px;

    transition: 0.3s;
    cursor: pointer;
}
#browse_course .stroke_btn .icon {
    display: inline-block;
    position: relative;
    height: 10px;
    margin-left: 5px;
    width: 10px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    rotate: -135deg;
    border-radius: 1px;
    transition: 0.3s;
    translate: 0px -4px;
}

#browse_course .stroke_btn:hover, #browse_course.active .stroke_btn {
    background: var(--primary);
}
#browse_course .stroke_btn .bb_btn {
    transition: 0.5s;
}
#browse_course .stroke_btn:hover .bb_btn, #browse_course.active .stroke_btn .bb_btn {
    color: white;
}
#browse_course .stroke_btn:hover .icon, #browse_course.active .stroke_btn .icon {
    border-top: 2px solid white;
    border-left: 2px solid white;
}
#browse_course.active .stroke_btn .icon {
    rotate: 45deg;
    translate: 0px 0px;
}
#browse_course .course_btn {
    transition: 0.5s;
    width: 400px;
    height: 400px;
    background: white;
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    border: 1px solid rgba(46, 61, 98, 0.5);
    background: rgba(232,232,232, 0.6);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    translate: 0px 100px;
    backdrop-filter: blur(3px);
}

#browse_course.active .course_btn {
    visibility: visible;
    opacity: 1;
    translate: 0px 0px;
}
#browse_course .course_btn .course {
    border-radius: 8px;
    width: calc(100%/3 - 2%);
    height: calc(100%/3 - 2%);
    text-decoration: none;
    border: 1px solid rgba(46, 61, 98, 0.5);
    padding: 5px;
    text-align: center;
    transition: 0.3s;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}
.course_btn .course .course_name {
    font-size: 16px;
    white-space: wrap;
    height: 70%;
    display: grid;
    place-items: center;
    font-weight: bold;
}
.course_btn .students {
    font-size: 14px;
    height: 30%;
}
@media (max-width: 550px){
    #browse_course .course_btn{
        width: 300px;
        height: 300px;
    }
    .course_btn .course .course_name {
        font-size: 14px;
        height: 80%;
        line-height: 20px;
        font-weight: bold;
    }
    .course_btn .students {
        font-size: 12px;
        height: 20%;
    }
}




/* NAVIGATION BAR START */
.navigation_bar {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 200px;
    background: transparent;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.0);
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0px 100px;
    transition: 0.2s;
}
.toggle_button {
    height: 36px;
    width: 40px;
    background: var(--secondary);
    border-radius: 4px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.234);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: 0.5s;
    display: none;
    position: relative;
    margin-right: 5px;
}
.toggle_button::before {
    content: '';
    height: 2px;
    width: 12px;
    background: var(--primary);
    position: absolute;
    top: calc(50% - 1px);
    right: 3px;
    border-radius: 3px;
}

.toggle_button .tBtn {
    height: 2px;
    width: 32px;
    background: var(--primary);
    position: absolute;
    right: 3px;
    border-radius: 3px;
    transition: 0.5s;
}
.toggle_button .tBtn.up {
    top: calc(25% - 1px);
}
.toggle_button .tBtn.down {
    left: none;
    right: 3px;
    width: 22px;
    top: calc(75% - 1px);
}
.toggle_button.active {
    background: var(--primary);
}
.toggle_button.active .tBtn {
    width: 35px;
    background: white;
    top: calc(50% - 1px);
    right: 1px;
}
.toggle_button.active .tBtn.up {
    rotate: 45deg;
}
.toggle_button.active .tBtn.down {
    rotate: -45deg;
}



.navigation_bar .extras {
    display: flex;
    gap: 20px;
}
.navigation_bar .brand {
    font-size: 30px;
    display: grid;
    place-items: center;
}
.navigation_bar .brand img {
    width: 180px;
    transition: 0.1s;
}
.navigation_bar .links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.links a.link {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.017em;
    position: relative;
    transition: 0.3s;
}
.links a.link::before {
    content: '';
    height: 2px;
    width: 0px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    background: var(--primary);
    translate: -50% 0;
    transition: 0.3s;
}
.links a.link.active::before,  .links a.link:hover::before {
    width: calc(100% + 10px);
}


@media (max-width: 1138px){
    .toggle_button {
        display: block;
    }
    .navigation_bar {
        padding: 0px 20px;
    }
    .navigation_bar .links {
        flex-direction: column;
        position: absolute;
        justify-content: center;
        width: 60%;
        min-width: 300px;
        top: calc(100% + 10px);
        height: calc(100vh - 100px);
        background: rgba(238, 255, 255, 0.7);
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 5.5px );
        -webkit-backdrop-filter: blur( 5.5px );
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18 );
        right: calc(-100% - 10px);
        visibility: visible;
        opacity: 1;
        transition: 0.5s;
    }
    .navigation_bar .links.active {
        visibility: visible;
        opacity: 1;
        right: 10px;
    }
    .navigation_bar .extras {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .navigation_bar .brand {
        font-size: 20px;
    }
    .navigation_bar .brand img {
        width: 120px;
        transition: 0.1s;
    } 
    #browse_course .stroke_btn {
        border: 1.5px solid var(--primary);
        place-items: center;
        padding: 5px 10px;
        font-size: 14px;
        line-height: 26px;
        display: flex;
    }
}




/* NAVIGATION BAR END */



/* LANDING SECTION START */

.landing_container {
    max-width: 100vw;
    position: relative;
    min-height: 350px;
    margin-bottom: 50px;
    overflow:hidden;
}
.landing_container .img_laptop {
    position: absolute;
    top: 0px;
    left: 25%;
    transform: translateX(-50%);
}
.landing_container .landing_text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.landing_container .landing_text span {
    font-family: var(--poppins);
    color: var(--primary-violet);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 150px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.34);
}
@media (max-width: 550px) {
    .landing_container .img_laptop {
        left: 50%;
        width: 70%;
    }
    .landing_container .landing_text span {
        font-size: 50px;
        white-space: nowrap;
    }
}

/* LANDING SECTION START */



/* SLIDER Start */
.slider_container {
    max-width: 95%;
    margin: 0 auto;
    padding: 10px 30px;
    position: relative;
}

.slider_container .left_btn {
    left: 0px;
}
.slider_container .right_btn {
    right: 0px;
}
.slider_container .left_btn, .slider_container .right_btn {
    position: absolute;
    width: 25px;
    top: 50%;
    translate: 0px -50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.left_btn img, .right_btn img {
    width: 25px;
}
.slider_container .frame {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    width: max-content;
    transition: 0.5s;
}


/* SLIDER END */



/* Short Card ************ start */

.short_card {
    display: inline-block;
    width: 180px;
    height: 200px;
    padding-top: 40px;
    position: relative;
}
.short_card .head {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    display: grid;
    place-items: center;

    position: absolute;
    left: 50%;
    translate: -50% 0;
    top: 0;
}
.short_card .head img {
    height: 50px;
    width: 80px;
}
.short_card .body {
    height: 100%;
    border-radius: 5px;
    padding: 10px 0;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.short_card .body .course_name {
    font-weight: 600;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
}

.short_card .body .btn {
    text-decoration: none;
    font-family: var(--nunito);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}
/* Violets */
.short_card.violet .head {
    background: var(--primary-violet);
}
.short_card.violet .body {
    border: 2px solid var(--primary-violet);
    background: var(--secondary-violet);
}

.short_card.violet .body .btn {
    background: var(--primary-violet);
}

/* Pink */

.short_card.pink .head {
    background: var(--primary-pink);
}
.short_card.pink .body {
    border: 2px solid var(--primary-pink);
    background: var(--secondary-pink);
}

.short_card.pink .body .btn {
    background: var(--primary-pink);
}

/* sky */

.short_card.sky .head {
    background: var(--primary-sky);
}
.short_card.sky .body {
    border: 2px solid var(--primary-sky);
    background: var(--secondary-sky);
}

.short_card.sky .body .btn {
    background: var(--primary-sky);
}

/* Short Card ************ End */




/* COURSES CARD ********** BEGINNING */

.course_slider_container {
    background: var(--secondary);
    margin: 0px auto;
    padding: 30px 0;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2),
                0px -1px 4px rgba(0,0,0,0.2);
    border-radius: 20px;
    max-width: 1300px;
    width: calc(100% - 20px);
}
@media (max-width:1200px) and (min-width:855px) {
    .course_slider_container {
        width: 95%;
    }
}

.course-card {
    width: 350px;
    height: 400px;
    border-width: 2px;
    border-style: solid;
    padding: 10px;
    border-radius: 12px;
}


.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.course-card .card-body {
    height: calc(100% - 210px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card .card-body .course-name {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    padding: 5px;
    color: var(--primary-violet);
}
.card-body .min-card {
    height: 30px;
    background: white;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 30px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.159);
    display: flex;
    justify-content: space-between;
}
@media (max-width: 550px) {
    .course-card {
        width: 280px;
    }
    .card-body .min-card {
        font-size: 10px;
    }
}
.min-card .rating {
    width: 70px;
}
.min-card .rating img {
    height: 30px;
    object-fit: none;
}
.card-body .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-footer .price {
    font-weight: 500;
    font-size: 20px;
}
.course-card .card-body .card-footer .btn.cc {
    background: var(--primary-violet);
    color: white;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    border: none;
}
.btn.cc span.icon{
    position: relative;
    height: 15px;
    padding: 10px 0;
}
.btn.cc .icon img {
    width: 15px;
    height: 15px;
    translate: 0px 2px;
}

/* VIOLET */

.course-card.violet {
    background: var(--secondary-violet);
    border-color: var(--primary-violet);
}
.course-card.violet .card-body .course-name {
    color: var(--primary-violet);
}
.course-card.violet .card-body .card-footer .btn.cc {
    background: var(--primary-violet);
}

/* PINK */

.course-card.sky {
    background: var(--secondary-sky);
    border-color: var(--primary-sky);
}
.course-card.sky .card-body .course-name {
    color: var(--primary-sky);
}
.course-card.sky .card-body .card-footer .btn.cc {
    background: var(--primary-sky);
}

/* SKY */

.course-card.pink {
    background: var(--secondary-pink);
    border-color: var(--primary-pink);
}
.course-card.pink .card-body .course-name {
    color: var(--primary-pink);
}
.course-card.pink .card-body .card-footer .btn.cc {
    background: var(--primary-pink);
}


/* COURSES CARD ********** END */



.fade_in {
    animation: fade_in 1s cubic-bezier(.73,.03,.44,1.02) 0s 1;
}
@keyframes fade_in {
    from {
        translate: 0px 100px;
        opacity: 0;
        visibility: hidden;
    }
    to {
        translate: 0px 0px;
        opacity: 1;
        visibility: visible;
    }
}

.fade_in_right {
    animation: fade_in_right 1s cubic-bezier(.73,.03,.44,1.02) 0s 1;
}
@keyframes fade_in_right {
    from {
        translate: 100px 0px;
        opacity: 0;
        visibility: hidden;
    }
    to {
        translate: 0px 0px;
        opacity: 1;
        visibility: visible;
    }
}

.fade_in_left {
    animation: fade_in_left 1s cubic-bezier(.73,.03,.44,1.02) 0s 1;
}
@keyframes fade_in_left {
    from {
        translate: -100px 0px;
        opacity: 0;
        visibility: hidden;
    }
    to {
        translate: 0px 0px;
        opacity: 1;
        visibility: visible;
    }
}


/* Story Card Start */
.story_card {
    background: white;
    /* box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25); */
    border-radius: 20px;
    padding: 15px;
    width: 350px;

}
@media (max-width: 550px) {
    .story_card {
        width: 280px;
    }
}
.story_card .title {
    font-weight: 600;
    font-family: var(--hind);
    font-size: 20px;
    padding:  10px 0;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.125);
}
.story_card .body {
    text-align: justify;
    padding-bottom: 10px;
}
.story_card.violet {
    border: 1px solid var(--primary-violet);
}
.story_card.pink {
    border: 1px solid var(--primary-pink);
}
.story_card.sky {
    border: 1px solid var(--primary-sky);
}
.story_card.violet .title {
    color: var(--primary-violet);
}
.story_card.pink .title {
    color: var(--primary-pink);
}
.story_card.sky .title {
    color: var(--primary-sky);
}

/* Story Card End */


/* SUCCESS STORY CARD START */

.an_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}
.an_container .center_sub_header {
    max-width: 40%;
    margin: 0 auto;
    font-size: 16px;
}
.an_details {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px 0px 10px;
}
.an_details .success_card {
    width: 48%;
    height: 350px;
    background: white;
    border-radius: 20px;
}
.an_footer {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
}
@media (max-width: 450px) {
    .an_container .center_sub_header {
        max-width: 90%;
    }
    .an_details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .an_details .success_card {
        width: calc(100% - 10px);
        height: 250px;
    }
}


/* SUCCESS STORY CARD END */


.center_header {
    text-align: center;
    font-size: 32px;
    font-family: var(--hind);
    font-weight: 700;
}
.center_sub_header {
    text-align: center;
    font-size: 18px;
    font-family: var(--hind);
    font-weight: 700;
}



/* SINGLE CARD START */

.single_card {
    background: url(../assets/single_card_bg.png);
    background-repeat: no-repeat;
    min-height: 400px;
    width: 80%;
    min-width: 900px;
    background-size: cover;
    border-radius: 40px;
    margin: 50px auto;
    border: 2px solid var(--primary);
    padding: 50px;
    display: flex;
}
.single_card .side {
    width: 50%;
}
.single_card .side img {
    width: 100%;
}
.single_card .right_side {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.single_card .right_side .heading {
    font-family: var(--hind);
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 20px;
}
.single_card .right_side .details {
    font-family: var(--hind);
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}
@media (max-width: 900px) {
    .single_card {
        background: url(../assets/single_card_image_pot.png);
        width: calc(100% - 30px);
        min-width: auto;
        flex-direction: column;
        padding: 30px;
        border-radius: 30px;
    }
    .single_card .side {
        width: 100%;
    }
    .single_card .side img {
        width: 100%;
    }
    .single_card .right_side {
        padding-top: 50px;
        padding-left: 0px;
    }
}
/* SINGLE CRAD END */

/* FLAT CRAD START */

.flat_card {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
    display: flex;
}
.flat_card .side {
    width: 50%;
    padding: 10px;
}
.flat_card .left_side {
    padding-right: 50px;
}
.flat_card .side .heading {
    font-family: var(--hind);
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 10px;
}
.flat_card .side .details {
    font-family: var(--hind);
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}
.flat_card .right_side img {
    border-radius: 30px;
    width: 100%;
}
.flat_card .side.right_side {
    padding: 0;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.full_width {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.min_card {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 5px 10px;
    flex: 1;
    min-width: 150px;
    border-radius: 12px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.125);
}
.min_card .heading {
    font-family: var(--hind);
    font-size: 24px;
    font-weight: 600;
}
.min_card .details {
    font-family: var(--hind);
    font-size: 16px;
    font-weight: 700;
}
.min_card.violet {
    background: var(--secondary-violet);
}
.min_card.pink {
    background: var(--secondary-pink);
}
.min_card.sky {
    background: var(--secondary-sky);
}
.min_card.violet .heading {
    color: var(--primary-violet);
}
.min_card.pink .heading {
    color: var(--primary-pink);
}
.min_card.sky .heading {
    color: var(--primary-sky);
}
@media (max-width: 900px) {
    .flat_card {
        width: calc(100% - 30px);
        flex-direction: column-reverse;
    }
    .flat_card .side {
        width: 100%;
        padding: 0px;
    }
    .flat_card .left_side {
        padding: 20px 0px;
    }
    
    .full_width {
        width: calc(100% - 30px);
        margin: 20px auto;
    }
    .flat_card .side.right_side {
        padding: 0;
        height: 240px;
        border-radius: 30px;
        overflow: hidden;
    }
}

/* FLAT CRAD END */

.course_box.show_all_courses .course-card {
    min-width: 320px;
    flex: 1;
    max-width: 450px;
}

.lang_btn {
    position: relative;
    height: 35px;
    width: 80px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 1px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.lang_btn .lang {
    width: 34px;
/*     border: 1px solid red; */
    text-align: center;
    line-height: 30px;
    transition: 0.5s;
}
.lang_btn .english {
    font-weight: 700;
    color: white;
}
.lang_btn.active .english {
    color: var(--primary);
}
.lang_btn .bangla {
    font-family: var(--hind);
    font-weight: 900;
    color: var(--primary);
}
.lang_btn.active .bangla {
    color: white;
}
.lang_btn::before {
    content: '';
    height: 90%;
    width: 34px;
    position: absolute;
    border-radius: 5px;
    background: var(--primary);
    z-index: -1;
    top: 5%;
    left: 1px;
    transition: 0.5s;
}
.lang_btn.active::before {
    left: 40.5px;
}
span.span {
    display: inline-flex;
    flex: 1;
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s;
}

span.span.fa {
    opacity: 1;
    transform: translateY(0px);
}


.footer {
    margin: 0 auto;
    max-width: 1250px;
    border-top: 2px solid var(--primary);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .brnd {
    width: 200px;
}
.footer .brnd img {
    width: 100%;
}
.footer .txt {
    font-size: 20px;
    font-family: var(--poppins);
    text-align: center;
}
.footer .icons {
    display: flex;
    gap: 10px;
}

.icons .ic {
    display: inline-block;
    height: 30px;
    width: 30px;
    border: 1px solid var(--primary);
    display: grid;
    place-items: center;
    border-radius: 15px;
    object-fit: cover;
    transition: 0.4s;
}
.icons .ic:hover {
    background: white;
}
.icons .ic img {
    max-width: 80%;
}
@media (max-width: 900px) {
    .footer {
        width: calc(100% - 50px);
        flex-direction: column;
        gap: 10px;
    }
}


.card_min_shower {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}






.center-heading {
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}


.contact_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.part {
    display: flex;
    min-width: 40%;
    padding: 10px;
    border-radius: 12px;
    font-size: 20px;
    flex: 1;
    gap: 10px;
}
.part .one {
    min-width: 70px;
    display: grid;
    place-items: center;
}
.mat_icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.mat_icon .material-icons {
    color: white;
}
.part .two {
    display: flex;
    flex-direction: column;
    font-family: var(--poppins);
    text-transform: capitalize;
    line-height: 40px;
}
.part .two a {
    text-decoration: none;
    text-transform: none;
    font-family: var(--poppins);
    line-height: 40px;
}


.part.violet {
    border: 2px solid var(--primary-violet);
    background: var(--secondary-violet);
}
.part.sky {
    border: 2px solid var(--primary-sky);
    background: var(--secondary-sky);
}
.part.pink {
    border: 2px solid var(--primary-pink);
    background: var(--secondary-pink);
}
.part.violet .one .mat_icon {
    background: var(--primary-violet);
}
.part.sky .one .mat_icon {
    background: var(--primary-sky);
}
.part.pink .one .mat_icon {
    background: var(--primary-pink);
}
.part.violet .two a {
    color: var(--primary-violet);
}
.part.sky .two a {
    color: var(--primary-sky);
}
.part.pink .two {
    color: var(--primary-pink);
}


.contact_container.iframe {
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
}
.contact_container iframe {
    width: 100%;
    height: 400px;
}



form.form {
    margin: 0 auto;
    border: 1px solid black;
    width: 800px;
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--primary);
    border-radius: 20px;
    flex-wrap: wrap;
}
.input {
    flex: 1;
    background: white;
    padding: 10px;
    border-radius: 12px;
    min-width: 300px;
}
.input.full {
    min-width: 100%;
}
.input label {
    display: inline-block;
    width: 150px;
    font-family: var(--poppins);
    padding-bottom: 10px;
}
.input input, .input textarea {
    border: none;
    background: var(--secondary);
    color: var(--primary);
    padding: 10px;
    border-radius: 8px;
    font-family: var(--poppins);
    width: 100%;
}
.input textarea {
    max-width: 100%;
    min-width: 100%;
}
form.form button {
    width: 100%;
    font-size: 20px;
    font-family: var(--poppins);
    padding: 10px 0;
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid transparent;
    background: white;
    transition: 0.5s;
}
form.form button:hover {
    background: var(--primary);
    color: white;
    border: 2px solid white;
}


@media (max-width:1250px) and (min-width:855px) {
    .contact_container {
        width: calc(100% - 100px);
    }
}
@media (max-width:854px) and (min-width:550px) {
    .contact_container {
        width: calc(100% - 40px);
    }
    .part {
        min-width: 60%;
    }
}
@media (max-width:550px) {
    .contact_container {
        width: calc(100% - 40px);
    }
    .part {
        min-width: 60%;
    }
    .contact_container iframe {
        height: 300px;
    }
}







/* 
@media (max-width:1250px) and (min-width:855px) {

}
@media (max-width:854px) and (min-width:550px) {

}
@media (max-width:550px) {

} */