* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: DS Sans;
}

body {
    background-color: #eee;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

input,
textarea,
button {
    outline: none;
    border: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* Start Header  */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: rgb(34, 34, 34) 0px 0px 10px -5px;
    background-color: #fff;

}

.open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    right: 0;
    background: #a5d3ff;
    width: 300px;
    top: 90px;
    align-items: start;
    padding: 15px;
}

.header-menu .navbar-link {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-menu .Res-menu {
    display: none;
    align-items: center;
    justify-content: end;
}

.header-menu .navbar-link .logo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.header-menu .navbar-link .logo .logo-1 {
    width: 45px;
}

.header-menu .navbar-link .logo .logo-2 {
    width: 150px;
}

.header-menu .navbar-link ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

header ul li:nth-child(2) {
    position: relative;
}

header .header-menu .navbar-link ul li a.Link {
    color: #777;
    transition: .4s;
    position: relative;
    font-size: 22px;
}

header ul li a.active::before,
header ul li a.Link::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    background-color: #3e75ff;
    border-radius: 50%;
    opacity: 0;
    transition: .4s;
}

header ul li a:hover::before,
header ul li a.active::before {
    opacity: 1;
}

header .header-menu .navbar-link ul li a:hover,
header .header-menu .navbar-link ul li a.active {
    color: rgb(0, 0, 0);
}

header ul li a.under-line::after,
header ul li a.under-lineS::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .5px;
    background-color: #000;
    opacity: 0;
    left: 0;
    bottom: -5px;
    transition: .4s;
}

header ul li a.under-lineS::after {
    bottom: -0px;
}

header ul li a.under-line:hover::after,
header ul li a.under-lineS:hover::after {
    opacity: 1;
}

header .header-menu .navbar-link .searchIcon {
    padding: 3px 8px;
    border: 2px solid #777;
    border-radius: 6px;
    transition: .4s;
    cursor: pointer;
}

header .header-menu .navbar-link .searchIcon:hover {
    border-color: #ff9100;
    box-shadow: 0px 0px 5px #ff9100;
}

header .header-menu .navbar-link .searchIcon:hover i {
    color: #3e75ff;
}

.icon_close {
    position: absolute;
    left: 21px;
    top: 0px;
    cursor: pointer;
    font-size: 25px;
    display: none;
}

header .header-menu .navbar-link ul .dropdown {
    position: absolute;
    width: 200px;
    height: 200px;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 10px 20px;
    z-index: 4;
    transition: all .5s;
    box-shadow: 1px 3px 4px #777, -1px -2px 4px #777;
    border-radius: 8px;
    overflow-y: scroll;
    display: none;
}

ul.dropdown li {
    width: 100%;
}

header .header-menu .navbar-link ul .dropdown .dropdownl {
    color: rgb(36, 34, 34);
    font-size: 18px;
    font-weight: 500;
    transition: .4s;
}

header .header-menu .navbar-link ul .dropdown .dropdownl:hover {
    color: #356dff;
}

header ul li:nth-child(2):hover .dropdown {
    display: flex;
}

/* btn */
.link_btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 18px;
    background-color: #ff9100;
    color: #fff;
    border-radius: 10rem;
    transition: all .4s;
    position: relative;
    z-index: 1;
}

.link_btn_responve {
    display: none;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #ff9100;
    color: #fff;
    border-radius: 10px;
    transition: all .4s;
    position: relative;
    z-index: 1;

}

.link_btn_responve::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #356dff;
    transition: all .3s;
    border-radius: 10px;
    z-index: -1;
    color: #eee;

}

.link_btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #356dff;
    transition: all .3s;
    border-radius: 10rem;
    z-index: -1;
    color: #eee;
}

.link_btn:hover:before,
.link_btn_responve:hover:before {
    width: 100%;

}

.input_search {
    position: absolute;
    left: 160px;
    bottom: -25px;
    border-radius: 8px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #ff9100;
    display: none;
    z-index: 555;
}

.input_search_block {
    display: block;
}

.input_search i {
    color: #356dff;
    font-size: 18px;
}

.input_search input {
    padding: 6px;

}

/* Start  Header Responsive */
@media (max-width:1140px) {
    .header-menu .Res-menu {
        display: flex;
        font-size: 25px;
        color: #3e75ff;

    }

    .icon_close {
        display: flex;
        color: #3e75ff;

    }

}

@media (max-width: 1140px) {
    header .header-menu .navbar-link .searchIcon {
        display: none;
    }

    header .navbar-menu {
        display: none;
    }

    .header-menu .navbar-link ul {
        display: inline;

    }

    .header-menu .navbar-link ul li {
        margin: 40px 0;

    }

    .header-menu .navbar-link .dropdown li {
        margin: 10px 0px 0px 0px;
    }
}

@media (max-width: 600px) {
    .link_btn {
        display: none;
    }

    .link_btn_responve {
        display: block;
    }
}

@media (max-width: 400px) {
    .header-menu .navbar-link .logo .logo-1 {
        width: 35px;
    }

    .header-menu .navbar-link .logo .logo-2 {
        width: 100px;
    }

    .header-menu .Res-menu {
        font-size: 23px;

    }
}

/* End header Responsive */
/* End Header */
/* start Info-parent */
.info {
    width: 100%;
    height: calc(100vh - 100px);
    margin: 100px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    /* flex-wrap: wrap; */
}

/* start Info-parent left  */

.Info-parent .info .left {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.Info-parent .info .left h1 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    width: 80%;

}

.ainmat {
    width: 80%;
}

.Info-parent .info .left h1 span {
    color: #3e75ff;
}

.Info-parent .info .left p {
    color: #777;
    font-size: 19px;
    font-weight: 700;
    width: 80%
}

/* End Info-parent left  */
/* start Info-parent right  */
.Info-parent .info .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;

}

.Info-parent .right .right_color {
    width: 400px;
    height: 400px;
    background-color: #a5d3ff;
    position: absolute;
    z-index: 0;
    top: 45%;
    left: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
}

.Info-parent .right .right_color::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #3e75ff;
    transition: 1.2s;
    border-radius: 50%;
}

.Info-parent .info .right:hover .right_color::before {
    height: 100%;
    width: 100%;
}

.Info-parent .info .right .right_color_img {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;

}

.right .right_color_img .right_color_one {
    background-color: #f3582b;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.2s;

}

.right .right_color_img .right_color_two {
    background-color: #ffb300;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    transition: 1.2s;

}

.right .right_color_img .right_color_three {
    background-color: #7b53ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 1.2s;

}

.right .right_color_img .right_color_one,
.right .right_color_img .right_color_two,
.right .right_color_img .right_color_three {
    transition: 1.2s;
    z-index: -4;
}

.Info-parent .right:hover .right_color_one {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 1.2s;
}

.Info-parent .right:hover .right_color_two {
    top: 50%;
    right: 50%;
    transition: 1.2s;

}

.Info-parent .right:hover .right_color_three {
    left: 50%;
    bottom: 50%;
    transition: 1.2s;

}

.Info-parent .right img {
    filter: brightness(80%);
    width: 100%;
    transition: .4s;
}

.Info-parent .right img:hover {
    filter: brightness(100%);

}

/* End Info-parent right  */

/* start Info-parent Responsive  */
@media (max-width:1200px) {
    .Info-parent .right .right_color {
        width: 350px;
        height: 350px;
    }


    .Info-parent .left h1 {
        font-size: 30px;
    }

    .right_color_img {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:1000px) {
    .Info-parent .right .right_color {
        width: 350px;
        height: 350px;
    }

    .Info-parent .info .left,
    .Info-parent .info .right,
    .Info-parent .info .left p,
    .Info-parent .info .left h1 {
        width: 100%;
    }

    .Info-parent .info .right {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .Info-parent .right .right_color {
        left: 50%;
    }

    .Info-parent .info .left {
        margin-bottom: 100px;
    }



    .info {
        flex-direction: column-reverse;
        margin-top: 280px;
    }


}

@media (max-width:500px) {

    .Info-parent .info .left {
        margin: 50px 0;
    }

    .Info-parent .right .right_color {
        width: 300px;
        height: 300px;
    }

    .info {
        margin-top: 300px;
    }



}

@media (max-width:400px) {

    .Info-parent .right .right_color {
        width: 280px;
        height: 280px;
    }

    .Info-parent .info .left h1 {
        font-size: 34px;
    }

    .right .right_color_img .right_color_one {
        left: -18px;
    }

    .right .right_color_img .right_color_two {
        right: -20px;
    }

    .right .right_color_img .right_color_three {
        left: -18px;
    }
}

@media (max-width:350px) {

    .Info-parent .right .right_color {
        width: 250px;
        height: 250px;
    }

    .info {
        margin-top: 320px;
    }

    .Info-parent .info .left h1 {
        font-size: 34px;
    }

    .right .right_color_img .right_color_one {
        left: -22px;
    }

    .right .right_color_img .right_color_two {
        right: -28px;
    }

    .right .right_color_img .right_color_three {
        left: -22px;
    }
}

@media (max-width:320px) {
    .info {
        margin-top: 350px;
    }
}

/* End Info-parent Responsive  */
/* Start DepartMent  */
.Depart {
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 20px;
    padding-top: 100px;
    background-color: #F2FBFC;
    border-radius: 10px;
}

.Depart .t-center {
    width: fit-content;
    padding: 0px 20px;
    font-size: 50px;
    margin: 0 auto;
    position: relative;
    color: #0b0d39;
}

.Depart .t-center::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background-color: #f5e6ca;
    border-radius: 30px;
}

.Depart .Row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;


}

.Depart .Row .Card {
    margin-bottom: 30px;
}

.Depart .Row .Card .bg-Img img {
    width: 120px;

}

.Depart .Row .Card .bg-Img {
    width: 180px;
    height: 180px;
    background-color: #0b0d39;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.Depart .Row .Card:hover .bg-Img {
    background-color: #356dff;
}

.Depart .Row .Card h3 {
    font-size: 23px;
    color: #0b0d39;
    font-weight: 700;
}

.Depart .Row .Card p {
    width: 80%;
    text-align: center;
    margin-top: 0;
    color: #777;
}

.Depart .Row .Card:hover h3,
.Depart .Row .Card:hover p {
    color: #356dff;
}

.Depart .Row .Card {
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* End DepartMent  */

/* End Home page */
/* Start  Booking  page */
.Booking {
    min-height: 100vh;
    margin-top: 150px;
}

.Booking .bookContcat {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;

}

/* Start  Booking  left */
.Booking .bookContcat .bookContcat-left {
    width: 50%;
}

.backIcon i {
    margin: 50px 0 20px 0;
    font-size: 90px;
    color: #777;
    opacity: .5;
    transition: .3s;
}

/* Start  Booking animation left */
@keyframes back {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(30px);
    }
}

.backIcon i:hover {
    animation: back .7s ease-in-out infinite;
    color: #3e75ff;
    opacity: 5;


}

/* Start  Booking  Rifht */
.Booking .bookContcat .bookContcat-Rifht {
    width: 30%;

}

.Booking .bookContcat .bookContcat-left .selectBooking h2 {
    font-size: 60px;
    opacity: .7;
    margin-bottom: 30px;
}

.Booking .bookContcat .bookContcat-left .selectBooking h2 span {
    color: #3e75ff;
    font-size: 80px;
    opacity: 1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
    gap: 0 20px;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild select {
    font-size: 24px;
    color: #777;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    outline: none;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild select:nth-child(1) {
    height: 50px;
    display: flex;
    flex-basis: 300px;
    flex-grow: 1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild select:nth-child(2) {
    height: 50px;
    display: flex;
    flex-basis: 200px;
    flex-grow: 1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild select:nth-child(3) {
    height: 50px;
    display: flex;
    flex-basis: 100%;
    flex-grow: 1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild .Booking-btns {
    display: inline-block;
    padding: 15px 100px;
    font-size: 18px;
    background-color: #ff9100;
    color: #fff;
    border-radius: 10px;
    transition: all .4s;
    position: relative;
    z-index: 1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild .Booking-btns::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #356dff;
    transition: all .3s;
    border-radius: 10px;
    z-index: -1;
}

.Booking .bookContcat .bookContcat-left .selectBooking .parentchild .Booking-btns:hover::before {
    width: 100%;
}

/* start Responsive Booking*/
@media (max-width:1000px) {
    .Booking .bookContcat .bookContcat-Rifht {
        width: 50%;

    }

    .Booking .bookContcat .bookContcat-left .selectBooking h2 {
        font-size: 40px;
    }

    .Booking .bookContcat .bookContcat-left .selectBooking h2 span {
        font-size: 60px;
    }

    .backIcon i {
        font-size: 70px;

    }

}

@media (max-width:700px) {
    .Booking .bookContcat .bookContcat-Rifht {
        width: 70%;

    }

    .Booking .bookContcat .bookContcat-left {
        width: 80%;
        margin-bottom: 30px;
    }

    .Booking .bookContcat {
        align-items: center;
        flex-direction: column-reverse;

    }

    .backIcon i {
        position: absolute;
        top: 80px;

    }



}

@media (max-width:450px) {
    .Booking .bookContcat .bookContcat-left .selectBooking h2 {
        font-size: 30px;
    }

    .Booking .bookContcat .bookContcat-left .selectBooking h2 span {
        font-size: 50px;
    }
}

@media (max-width:380px) {
    .Booking .bookContcat .bookContcat-left .selectBooking h2 {
        font-size: 28px;
    }

    .Booking .bookContcat .bookContcat-left .selectBooking h2 span {
        font-size: 42px;
    }

    .Booking .bookContcat .bookContcat-left .selectBooking .parentchild .Booking-btns {
        padding: 15px 70px;
    }

    .backIcon i {
        font-size: 60px;
        top: 70px;

    }
}

/* End Booking page */

/* Start contact page  */
.contactForm {
    height: calc(100vh + 100px);
    margin-top: 150px;

}

.contactForm .ParentForm {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

}

.contactForm .ParentForm .callForm {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.contactForm .ParentForm h2 {
    font-size: 35px;
}

.contactForm .ParentForm form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    max-width: 700px;
    padding: 0 5px;

}

.contactForm .ParentForm form .w2 {
    margin-bottom: 30px;

}

.contactForm .ParentForm form input,
.contactForm .ParentForm form select {
    height: 50px;
    font-size: 24px;
    border: 1px solid #777;
    border-radius: 8px;
    padding: 10px 3px;
    outline: none;
    display: flex;
    flex-basis: 320px;
    flex-grow: 1;
}

.contactForm .ParentForm form textarea {
    font-size: 24px;
    height: 100px;
    border: 1px solid #777;
    border-radius: 8px;
    padding: 10px;
    justify-content: space-between;
    outline: none;
    display: flex;
    flex-basis: 100%;
}

.contactForm .ParentForm .backIcon i {
    position: static;


}

.contactForm .ParentForm form .Cotact-btns {
    display: inline-block;
    padding: 15px 100px;
    font-size: 18px;
    background-color: #ff9100;
    color: #fff;
    border-radius: 10px;
    transition: all .4s;
    position: relative;
    z-index: 1;
    margin: 20px 0;
}

.contactForm .ParentForm form .Cotact-btns::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #356dff;
    transition: all .3s;
    border-radius: 10px;
    z-index: -1;
}

.contactForm .ParentForm form .Cotact-btns:hover::before {
    width: 100%;
}

@media (max-width:380px) {
    .contactForm .ParentForm form .Cotact-btns {
        padding: 15px 70px;

    }
}

/* End Contact  */
/* start About Hospital */
.aboutHospital {
    min-height: 100vh;
    margin-top: 150px;
}

.aboutHospital .aboutInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutHospital .aboutInfo .aboutLeft {
    width: 50%;
}

.aboutHospital .aboutInfo .aboutRight {
    width: 50%;
}

.aboutHospital .aboutInfo .aboutLeft .infoLeft h2 {

    font-size: 45px;
    margin: 0px 0 20px 0;

}

.aboutHospital .aboutInfo .aboutLeft .infoLeft p {

    font-size: 20px;
    opacity: .6;
    width: 85%;
}

.aboutHospital .aboutInfo .aboutRight img {
    filter: grayscale(100%);
    transition: .4s;
    width: 100%;
}

.aboutHospital .aboutInfo .aboutRight img:hover {
    filter: grayscale(0%);

}

@media (max-width:900px) {
    .aboutHospital {
        margin-top: 220px;
    }

    .aboutHospital .aboutInfo {

        flex-direction: column-reverse;
    }

    .aboutHospital .aboutInfo .aboutLeft {
        width: 100%;

        margin-bottom: 30px;
    }
    .aboutHospital .aboutInfo .aboutLeft .infoLeft p {

      
        width: 95%;
    }

    .aboutHospital .aboutInfo .aboutRight {
        width: 100%;
    }

}
























/* style all Pages DepartMent */

.section_one_text_img {
    /* height: calc(100vh - 300px); */
    /* margin-top: 300px; */
    display: flex;
    align-items: center;
    margin-top: 220px;
    margin-bottom: 100px;
}

.section_one_text_img_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    gap: 50px;
    /* margin-top: 300px; */
}

@media (max-width:992px) {
    .section_one_text_img_container {
        flex-direction: column-reverse;
    }
}

@media (max-width:450px) {
    .section_one_text_img_container {
        padding: 0;
    }

}

.section_one_text_img .section_one_text {
    /* width: 40%; */
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
    flex-grow: 1;
}

/* .section_one_text_icons {
    position: relative;
    display: inline-block;
} */

.section_one_text_icons {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
}

.contact_us_icon {
    right: 17%;
}

.section_one_text_icons i {
    color: #d4d4d4;
    font-size: 90px;
    transition: .4s;
    position: absolute;
}

.section_one_text_icons .icon_one {
    transition: left .4s ease-in-out, opacity .4s ease-in-out;
    top: 0;
    opacity: 1;
    left: 0;
}

.section_one_text_icons .icon_two {
    top: 0;
    left: -100%;
    opacity: 0;
    transition: left .4s ease-in-out, opacity .4s ease-in-out;
}

.section_one_text_icons:hover .icon_one {
    left: 100%;
    opacity: 0;
}

.section_one_text_icons:hover .icon_two {
    left: 0;
    opacity: 1;
}


.section_one_text_img .section_one_text h2 {
    color: #0b0d39;
    font-size: 35px;
}

.section_one_text_img .section_one_text p {
    color: #777;
    font-size: 20px;
}

.section_one_text_img .section_one_img {
    width: 30%;
}

@media (max-width:992px) {
    .section_one_text_img .section_one_img {
        width: 100%;
    }
}

.pediatrics_img {
    width: 35% !important;
}

.yyy {
    width: 40% !important;
}

@media (max-width:992px) {
    .pediatrics_img {
        width: 80% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.section_one_text_img .section_one_img img {
    filter: grayscale(100%);
    transition: .4s;
    width: 100%;
}

@media (max-width:992px) {
    .pediatrics_img img {
        width: 80% !important;
    }
}

@media (max-width:992px) {
    .pediatrics_img img {
        width: 100% !important;
    }
}

.section_one_text_img .section_one_img img:hover {
    filter: grayscale(0%);
}

















/* Strat Footer  */
footer .footerbody {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;

}

footer .footerbody .left h2,
footer .footerbody .right h2 {
    width: fit-content;
    color: #ffa733;
    background-color: #ffe9cc;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

footer .footerbody .left h2 i,
footer .footerbody .right h2 i {
    font-size: 20px;
    margin-right: 10px;
}

footer .footerbody .left ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footerbody .left ul li,
footer .footerbody .right h5 {
    color: #777;
    font-size: 17px;
    font-weight: 400;

}

footer .footerbody .left .socialFooter {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
}

footer .footerbody .left .socialFooter h4 {
    color: #ff9100;
    font-size: 20px;
    font-weight: 900;
}

footer .footerbody .left .socialFooter i {
    background-color: #ffe9cc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: #ffb300;
    border-radius: 50px;
}

footer .footerbody .left .socialFooter i:hover {
    background-color: #ffb300;
    color: #eee;

}

@media (max-width:600px) {
    footer .footerbody {
        justify-content: start;
    }
}

@media (max-width:350px) {
    footer .footerbody .left .socialFooter h4 {
        font-size: 18px;
    }

    footer .footerbody .left .socialFooter {
        gap: 10px;
    }
}

/* End Footer  */