* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    background: #F1F1F1;
}

.img{
    width: 100%;
    height: 100%;
    border-radius:8px;
}

.mb{
    margin-bottom: 100px;
}

a {
    text-decoration: none;
}

p {
    margin: 0px 0px 10px 0px;
}

li {
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1366px;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.menu{
    display: none;
}

.header {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}

.header_menu a{
    color: #151515;
    font-size: 16px;
    font-weight: 500;
}

.banner img{
        width: 100%;
    }
    
.banner_banner img{
        width: 100%;
    }

.header_menu li{
    margin-right: 60px;
}

.header_menu ul{
    display: flex;
    align-items: center;
}

.header_body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 10px;
    background-color: #F1F1F1;
}

.header_tel a {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    background: #0092E5;
    padding: 15px;
    border-radius: 8px;
}

.pd {
    padding-top: 120px;
}

.main_banner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main_wrapper{
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
}

.banner{
    position: relative;
    overflow: hidden;
}

.main_banner_title {
    color: #fff;
    font-weight: 700;
    font-size: 56px;
    width: 75%;
}

.main_banner_text{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    width: 66%;
}

.main_wrapper_img{
    width: 78%;
}

.main_about_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
    width: 79%;
}

.main_about_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.main_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_about_item{
    width: 48%;
}

.main_about_img{
    width: 45%;
}

.service_item {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}
.service_name{
    color: #141414;
    font-weight: 500;
    font-size: 24px;
}

.service_text {
    color: #6F6F6F;
    font-weight: 400;
    font-size: 16px;
}

.slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.main_service_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.info_block{
    background: #141414;
    padding: 70px 0px;
}

.main_oborud_title{
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.main_oborud_text{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 30px;
}

.main_gallery_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.main_gallery_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.main_gallery_grid img {
    object-fit: cover;
    filter: brightness(40%);
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 10px; 
}

.main_gallery_grid img:hover {
    filter: brightness(100%);
    transform: scale(1.05);   
    z-index: 2;               
}

.gallery {
    display: flex;
    width: 100%;
    height: 445px;
    overflow: hidden;
    gap: 20px;
}

.gallery .item {
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease;
    position: relative;
}

.gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    transition: filter 0.5s ease;
    border-radius: 12px;
}

.gallery .item:hover {
  flex: 3;
}

.gallery .item:hover img {
  filter: brightness(100%);
}

.modal_block {
    border: 15px solid #0A7DD0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.modal_title{
    color: #141414;
    font-weight: 600;
    font-size: 32px;
}

.modal_text{
    color: #868686;
    font-weight: 400;
    font-size: 16px;
    width: 37%;
    text-align: center;
}

.form_item p{
    color: #141414;
    font-weight: 400;
    font-size: 16px;
}

.form_item{
    display: flex;
    align-items: center;
    flex-direction: column;
}

form {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-direction: column;
}

.modal_block button{
    color: #fff;
    background: #0092E5;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 45px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

input{
    padding: 12px 24px;
    border-radius: 28px;
    border: 2px solid #ECECEC;
    background: #F1F1F1;
    color: #868686;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.forma{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.proekt_item{
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.proekt_title{
    color: #141414;
    font-weight: 500;
    font-size: 24px;
}

.proekt_text{
    color: #6F6F6F;
    font-weight: 400;
    font-size: 16px;
}

.proekt_item img{
    width: 274px;
    height: 183px;
}

.main_otzyv_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.main_proekt_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.main_partner_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.footer {
    background: #141414;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}

.footer_img{
    border-radius: 8px;
}

.footer_menu span{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer_menu a{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer_menu li{
    margin-bottom: 10px;
}

.footer_menu ul{
    margin-top: 10px;
}

.footer_add div{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer_add a{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer_add{
    display: flex;
    flex-direction: column;
}

.footer_btn{
    background: #0092E5;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 35px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    text-transform: none;
    font-family: "Inter", sans-serif;
    margin-bottom: 10px;
}

.footer_item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_icons{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer_btn:hover {
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 2rem #0092E5;
}

.modal_block button:hover {
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 2rem #0092E5;
}

.header_tel a:hover {
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 2rem #0092E5;
}

.header_menu a:hover {
    text-decoration: underline;
}

.about_mission_img{
    width: 45%;
}

.about_mission{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_mission_item{
    width: 48%;
}

.about_mission_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.about_mission_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.about_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_about_item{
    width: 48%;
}

.about_about_img{
    width: 45%;
}

.about_about_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.about_about_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.about_partner_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.uslugi_remont{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uslugi_remont_img{
    width: 45%;
}

.uslugi_remont_item{
    width: 48%;
}

.uslugi_remont_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
}

.uslugi_remont_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.uslugi_garant{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uslugi_garant_item{
    width: 48%;
}

.uslugi_garant_img{
    width: 45%;
}

.uslugi_garant_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.uslugi_garant_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.uslugi_gallery_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.about_wrapper{
    display: flex;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 20px;
}

.about_wrapper_title{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 40px;
}

.about_wrapper_text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    width: 54%;
    text-align: center;
}

.border{
    border-radius: 16px;
    object-fit: cover;
}

.banner_banner{
    position: relative;
    overflow: hidden;
}

.usligi_wrapper {
    display: flex;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 20px;
}

.uslugi_wrapper_title{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 40px;
}

.uslugi_wrapper_text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    width: 54%;
    text-align: center;
}

.proekt_wrapper {
    display: flex;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 20px;
}

.proekt_wrapper_title{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 40px;
}

.proekt_wrapper_text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    text-align: center;
    line-height: 32px;
}

.proekt_about_img{
    width: 45%;
}

.proekt_about_item{
    width: 48%;
}

.proekt_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proekt_about_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.proekt_about_content{
    display: flex;
    gap: 25px;
    align-items: baseline;
    margin-bottom: 20px;
}

.proekt_about_name{
    color: #141414;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

.proekt_about_subtitle{
    color: #141414;
    font-size: 18px;
    font-weight: 400;
}

.proekt_about_number {
    background: #0092E5;
    border-radius: 50%;
    padding: 5px 11px;
    color: #fff;
    position: relative;
    width: 28px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proekt_about_number::before {
    width: 2px;
    height: 79px;
    background: #0092E5;
    right: 14px;
    position: absolute;
    content: '';
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
}

.proekt_service_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.proekt_info_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.proekt_info_content{
    display: flex;
    gap: 25px;
    align-items: baseline;
    margin-bottom: 20px;
}

.proekt_info_name {
    color: #141414;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

.proekt_info_subtitle {
    color: #141414;
    font-size: 18px;
    font-weight: 400;
}

.proekt_info_number {
    background: #0092E5;
    border-radius: 50%;
    padding: 5px 11px;
    color: #fff;
    position: relative;
    width: 28px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proekt_info_number::before {
    width: 2px;
    height: 79px;
    background: #0092E5;
    right: 14px;
    position: absolute;
    content: '';
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
}

.proekt_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proekt_info_img{
    width: 45%;
}

.proekt_info_item{
    width: 48%;
}

.proekt_usluga_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.proekt_usluga{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proekt_usluga_item{
    width: 48%;
}

.proekt_usluga_img{
    width: 45%;
}

.proekt_usluga_text span{
    color: #141414;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.proekt_usluga_text p{
    margin-top: 10px;
}

.gallery_wrapper{
    display: flex;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 20px;
}

.gallery_wrapper_title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 40px;
}

.gallery_wrapper_text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    width: 54%;
    text-align: center;
}

.gallery_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery_grid-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery_grid-grid img{
    width: 100%;
    height: 192px;
    }

.gallery_grid img {
  width: 100%;
  display: block;
}

.gallery_grid a:nth-child(1),
.gallery_grid a:nth-child(2),
.gallery_grid a:nth-child(3) {
  grid-column: span 1; 
}

.gallery_grid a:nth-child(4),
.gallery_grid a:nth-child(5),
.gallery_grid a:nth-child(6),
.gallery_grid a:nth-child(7) {
  grid-column: span 1;
}

.gallery_grid img:nth-child(8),
.gallery_grid img:nth-child(9),
.gallery_grid img:nth-child(10) {
  grid-column: span 1;
  grid-column: 1 / span 1;
}

.gallery_grid img:nth-child(11),
.gallery_grid img:nth-child(12),
.gallery_grid img:nth-child(13),
.gallery_grid img:nth-child(14) {
  grid-column: span 1;
}

.gallery_grid img{
    border-radius: 8px;
}

.contact_block{
    display: flex;
    justify-content: space-between;
}

.contact_item {
    background: #ECECEC;
    padding: 40px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 48%;
}

.contact_map{
    width: 48%;
}

.contact_title{
    color: #141414;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact_form-form p{
    margin-bottom: 5px;
}

.contact_form_one input{
    width: 100%;
}

.contact_form_two input{
    width: 100%;
    margin-bottom: 15px;
    height: 74px;
}

.contact_form-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact_form_one{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.contact_form_two{
    width: 100%;
}

.contact_form button{
    background: #0092E5;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    padding: 15px 25px;
    cursor: pointer;
}

.contact_form button:hover{
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 2rem #0092E5;
}

.contact_add{
    margin-bottom: 15px;
    color: #141414;
    font-size: 16px;
    font-weight: 400;
}

.contact_content div{
    background: #ECECEC;
    padding: 40px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.contact_content {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contact_content-content{
    color: #141414;
    font-size: 16px;
    font-weight: 400;
}

.contact_content-content:hover{
    text-decoration: underline;
}

.info_block img{
    width: 100%;
    }
    
.partner_img {
    border: 1px solid #D7D7D7;
    border-radius: 12px;
    padding: 20px;
    width: 288px;
    height: 144px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner_img img{
    width: 100%;
    }

.modal_block {
    background: #EDEEF3;
    padding: 20px;
    display: flex
;
    gap: 40px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.modal_block-block {
    background: #EDEEF3;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    border-radius: 16px;
    padding: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.modal-btn{
    display: flex;
    align-items: baseline;
    height: 100%;
    margin-right: 10px;
    }
    
.modal_block-block button {
    color: #fff;
    background: #0092E5;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 45px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.modal-dialog {
    display: flex;
    background: #EDEEF3;
}
    
.modal-btn button {
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 30px;
    font-weight: 600;
}

.footer_icons img{
    width: 64px;
    height: 64px;
    }
    
.gallery_grid img{
    border-radius:8px;
    }
    
.gallery_grid-grid img{
    border-radius:8px;
    }
    
.inside_news_back {
    margin: 30px 0px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 10px;
}

.back_btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.back_btn span {
    font-size: 15px;
    font-weight: 500;
    color: #2F3540;
}

.ceh_img{
    margin: 50px 0px;
    display: flex;
    justify-content: center;
    }
    
.ceh_img img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.ceh_title{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20%;
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    text-decoration: underline;
    }
    
.contact_item button{
    color: #fff;
    background: #0092E5;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 45px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    }
    
.contact_item button:hover {
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 2rem #0092E5;
}

.service_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    justify-content: space-between;
    }
    
.proekt_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    justify-content: space-between;
    }
    
.uslugi_remont_text span{
    color: #1A5DAF;
    font-size: 20px;
    font-weight: 500;
    }
    
.uslugi_garant_text span{
    color: #1A5DAF;
    font-size: 20px;
    font-weight: 500;
    }
    
.gallery_grid img{
    height: 287px;
    }
    
.banner_ceh{
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    }   
    
    .banner_ceh img {
    width: 100%;
}
    
.usligi_ceh{
    display: flex;
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    align-items: center;
    padding: 60px;
    flex-direction: column;
    gap: 20px;
}

.ceh_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    
.ceh_img-img{
    width:45%;
    }
    
.ceh_item{
    width:48%;
    }
    
.ceh_title-title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
    }
    
.ceh_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 130%;
    }
    
.ceh_block_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    }
    
.ceh_block_item{
    background: #FFFFFF;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 8px 7px 47.8px rgba(0, 0, 0, 0.1);
    }
    
.ceh_block_content{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    }
    
.ceh_block_title{
    color: #141414;
    font-weight: 500;
    font-size: 20px;
    }
    
.ceh_block_text{
    color: #6F6F6F;
    font-weight: 400;
    font-size: 16px;
    padding-left: 40px;
    }
    
.ceh_principle_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    
.ceh_principle_item{
     width:48%;
    }
    
.ceh_principle_img{
    width:45%;
    }
    
.ceh_principle_title {
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}
    
.ceh_principle_text{
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 130%;
    }
    
.ceh_block_content p{
    margin:0px;
    }
    
.ceh_model_title{
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    }
    
.ceh_model_slider img{
    width: 112px;
    height: auto;
    object-fit: cover;
    }
    
.ceh_gallery_title {
    color: #141414;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 50px;
}

.model{
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 10px;
    height: 95px;
    }
    
.ceh_gallery_slider img{
    height: 303px;
    width: 100%;
    border-radius: 30px;
    }