.Modern-Slider{
    position: relative;
    width:100%;
    overflow: hidden;
}

.Modern-Slider .item{
    position: absolute;
    width:100%;
    height:100%;
    animation-fill-mode: forwards;
    transition: transform .7s ease-out;
}

.Modern-Slider .item-1{
    z-index:3;
    /* transition: transform .5s ease-in-out; */
}

.Modern-Slider .item-2{
    z-index:2;
    /* transition: transform .5s ease-in-out; */
}

.Modern-Slider .item-3{
    z-index:1;
    /* transition: transform .5s ease-in-out; */
}

.button_group{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: white;
    height: 70px;
    display: flex;
    z-index: 4;
    justify-content: space-evenly;
    border-radius: 10px;
    /* border: 2px solid white; */
}
.button_group .slider_button{
    width:33%;
    height:100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.button_group .slider_button.border-right {
    border-right:2px solid #165b37 !important;
    width:34% !important;
}

.button_group .slider_button:last-child {
    border-left:2px solid #165b37;
}

#slide_button_1{
    background-image: url(../img/buttons/button_1.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#slide_button_2{
    background-image: url(../img/buttons/button_2.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
}
#slide_button_3{
    background-image: url(../img/buttons/button_3.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.overlay_1{
    position: absolute;
    width:100%;
    height:100%;
    background-color:#165b37;
    opacity:0;
    transition: opacity 0.5s ease-in-out;
}
.overlay_1:hover{
    opacity:0.4 !important;
}
.overlay_2{
    opacity:0.4 !important;
}

/* Arrows */

div.arrow {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    position: absolute;
    left:50%;
    top:50%;
    transform: rotate(45deg) translateX(-50%);
  }
  div.arrow::before {
    content: '';
    width: 100%;
    height: 100%;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #347553;
    transition: .2s ease;
    display: block;
    transform-origin: 100% 0;
  }
  div.arrow:after {
    content: '';
    float: left;
    position: relative;
    top: -100%;
    width: 100%;
    height: 100%;
    border-width: 0 4px 0 0;
    border-style: solid;
    border-color: #347553;
    transform-origin: 100% 0;
    transition: .2s ease;
  }
  div.arrow:hover::after {
    transform: rotate(45deg) translate(2px,2px);
    /* border-color: #347553; */
    height: 120%;

  }
  div.arrow:hover::before {
    /* border-color: #347553; */
    transform: scale(0.8);
  }

  .arrow_wrap{
    position: absolute;
    bottom:5px;
    left: 50%;
    transform: translateX(-50%);

  }

  .other_services{
    top: 50%;
    left: 55px;
    cursor: pointer;
    bottom: unset;
  }
  .other_services_text{
    position: absolute;
    left: -40px;
    bottom:-140px;
    font-weight: bold;
  }
  @media screen and (max-width: 991px){
        .other_services{
            top:70px;
            width:100%;
            transform:unset;
            left:unset;
        }
        .mob_adj_3{
            transform:unset !important;
            transform: rotate(45deg) translateX(-100%) !important;
        }
        .mob_adj_4{
            width: 100%;
            left: -15px;
            text-align:center;
            bottom:-100px;
        }

    }

/*cookies*/

:root {
    --blue: #05376D;
    --blue-100: #f1f6ff;
    --gray-900: #B2B2B2;
    --gray-600: #B2B2B2;
    --radius: 8px;
    --shadow: 0 4px 30px rgba(0, 0, 0, .12);
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: .15s;
}

button:focus-visible {
    outline: 2px solid #155C37
}

.hidden {
    display: none !important
}

.btn-primary {
    background: #155C37;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #155C37;
    color: #fff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--gray-900);
    border: 1px solid var(--gray-900);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 400;
}

.btn-outline {
    background: transparent;
    color: #155C37;
    border: 1px solid #155C37;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 400;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

#cookieBanner {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    padding: 24px;
    display: flex;
    gap: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 9999;
    border-radius: var(--radius);
}

.cookie-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    padding-left: 40px;
    /*color:var(--gray-900);*/
}

.cookie-text {
    margin-top: 20px;
    font-size: 20px;
    /*color:var(--gray-600);*/
    line-height: 1.5;
    font-weight: 400;
}

.cookie-sub-text {
    margin-top: 20px;
    font-size: 14px;
    color: #707070;
    line-height: 1.5;
    font-weight: 500;
}

.cookie-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#cookieModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 12px 40px;
    z-index: 10000;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 1200px;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--blue-100);
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    /*color:var(--gray-900);*/
}

.modal-close {
    font-size: 24px;
    line-height: 1;
    background: none;
    border: none;
    color: var(--gray-600);
}

.modal-body {
    padding: 24px;
    overflow: auto;
    font-size: 14px;
    line-height: 1.5;
    /*color:var(--gray-600);*/
}

.modal-body p {
    font-size: 18px;
    padding-bottom: 15px;
}

.modal-body h2 {
    font-size: 18px;
    padding-top: 10px;
    font-weight: 600;
}

.modal-actions {
    padding: 20px 24px;
    background: var(--blue-100);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 13px;
}

.policy-table th,
.policy-table td {
    border: 1px solid #d9dfe5;
    padding: 8px 10px;
    vertical-align: top;
}

.policy-table th {
    background: #f6f8fa;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 1250px) {
    #cookieBanner {
        width: 700px;
        min-width: 120px;
        bottom: 24px;
        right: 24px;
        flex-direction: column;
        padding: 20px;
    }

    .cookie-title {
        font-size: 20px
    }

    .cookie-text {
        font-size: 12px
    }
}

@media (max-width: 768px) {
    #cookieBanner {
        width: 360px;
        min-width: 120px;
        bottom: 24px;
        right: 24px;
        flex-direction: column;
        padding: 20px;
    }

    .cookie-title {
        font-size: 20px
    }

    .cookie-text {
        font-size: 12px
    }
}

@media (max-width: 540px) {
    #cookieBanner {
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        transform: none;
        border-radius: 0;
    }

    .cookie-text {
        font-size: 12px
    }

    .cookie-sub-text {
        font-size: 10px
    }

    #cookieModal {
        padding: 60px 12px 40px;
    }

    .modal-body p {
        font-size: 10px;
        padding-bottom: 10px;
    }

    .btn-primary {
        background: #155C37;
        color: #fff;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .btn-primary:hover {
        background: #155C37;
        color: #fff;
    }

    .btn-secondary {
        background: #ffffff;
        color: var(--gray-900);
        border: 1px solid var(--gray-900);
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 400;
    }

    .btn-outline {
        background: transparent;
        color: #155C37;
        border: 1px solid #155C37;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 400;
    }
}

/*//////*/
