:root {
    --main-font-family: 'Ubuntu', sans-serif;

    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark-blue: #0E0E3A;
    --color-medium-2-blue: #1C49FA;
    --color-medium-blue: #2966FF;
    --color-light-blue: #DAF8FF;
    --color-light-blue-60: rgba(218, 248, 255, 0.6);
    --color-dark-green: #36EF74;
    --color-medium-green: #94FCB1;
    --color-light-green: #D8FFE3;
    --gradien-1: linear-gradient(41.61deg, #DAF8FF -2.15%, #FFFFFF 104.63%);
    --gradien-2: linear-gradient(153.2deg, rgba(255, 255, 255, 0) -43.9%, #2966FF 144.06%);
    --gradien-2-alt: linear-gradient(153.2deg, rgba(255, 255, 255, 0) -43.9%, #2966FF 144.06%);
    --base-transition: all .2s ease-in-out;

}
body{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    vertical-align: middle;
    color: var(--color-dark-blue);
}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    color: var(--color-medium-blue);
}
.h1, h1{
    font-weight: 400;
    font-size: 32px;
    line-height: 35px;
}
.h2, h2{
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
}
.h3, h3{
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
}
.h4, h4{
    font-weight: 500;
    font-size: 21px;
    line-height: 24px;
}
.text-b, .h5, h5, .h6, h6{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}
.text-s{
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
}
.text-right{text-align: right}
.text-left{text-align: left}
.text-center{text-align: center}
.btn-round{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    border: none;
    outline: none;
    transition: var(--base-transition);
}
.btn{
    padding: 12.5px 15px;
    display: inline-flex;
    text-decoration: none;
    border-radius: 45px;
    column-gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    border: none;
    outline: none;
    transition: var(--base-transition);
    align-items: center;
    overflow: hidden;
    position: relative;
    background-clip: padding-box;
    isolation: isolate;
}
.btn::before {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 0;
    content: "";
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.btn:hover::before {
    transform: translate3d(100%, 0, 0);
}
.btn img,
.btn svg,
.btn span{
    position: relative;
    z-index: 5;
}
.btn i{
    font-size: 20px;
    position: relative;
    z-index: 5;
}
.btn-round:hover,
.btn:hover{
    cursor: pointer;
}

.btn-medium-green{
    background: var(--color-medium-green);
    color: var(--color-medium-blue);
}
.btn-medium-green{
    background: var(--color-medium-green);
    color: var(--color-dark-blue);
}
.btn-medium-green:hover{
    color: var(--color-dark-blue);
    background: var(--color-light-green);
}
.btn-medium-green i:before{
    color: var(--color-medium-blue);
}
.btn-medium-green:before{
    background: var(--color-medium-green);
}

.btn-green{
    background: var(--color-dark-green);
    color: var(--color-dark-blue);
}
.btn-green:hover{
    color: var(--color-white);
    background: var(--color-medium-blue);
}
.btn-green:hover i:before{
    color: var(--color-dark-green);
}
.btn.btn-green:before{
    background: var(--color-dark-green);
}

.btn-medium-blue{
    background: var(--color-medium-blue);
    color: var(--color-light-blue);
}
.btn-medium-blue:hover{
    background: var(--color-medium-green);
    color: var(--color-medium-blue);
}
.btn.btn-medium-blue:before{
    background: var(--color-medium-blue);
}


.btn-white{
    background: var(--color-white);
    color: var(--color-dark-blue);
}
.btn-white i:before{
    color: var(--color-medium-blue);
}
.btn-white:hover{
    background: var(--color-medium-blue);
    color: var(--color-light-blue);
}
.btn-white:hover i:before{
    color: var(--color-light-blue);
}
.btn.btn-white:before{
    background: var(--color-white);
}

.dropdown-custom {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.dropdown-custom .custom-dropdown-toggle{
    display: flex;
    align-items: center;
    column-gap: 4px;
    cursor: pointer;
}
.dropdown-custom .custom-dropdown-toggle i{
    color: var(--color-medium-blue);
    transition: var(--base-transition);
    transform: rotate(90deg);
}
.dropdown-custom .custom-dropdown-toggle i:before{
    font-size: 12px;
    font-weight: 700;
}
.open-dropdown.dropdown-custom .custom-dropdown-toggle i{
    transform: rotate(-90deg);
}
.dropdown-custom  .dropdown-custom-content{
    position: absolute;
    top: 100%;
    min-width: 131px;
    right: 0;
    padding: 23px 36px;
    display: none;
    flex-direction: column;
    row-gap: 21px;
    background: #fff;
    z-index: 888;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid var(--color-light-blue);
}
.open-dropdown.dropdown-custom .dropdown-custom-content{
    display: flex;
}
.dropdown-custom  .dropdown-custom-content a{
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    text-decoration: none;
    color: var(--color-medium-2-blue);
    text-transform: uppercase;
}
.dropdown-custom  .dropdown-custom-content a:before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-medium-blue);
    display: block;
}
.dropdown-custom  .dropdown-custom-content a:nth-of-type(even){
    color: var(--color-dark-blue);
}
.dropdown-custom  .dropdown-custom-content a:nth-of-type(even):before{
    background: var(--color-medium-green);
}
.p-rel{position: relative}
.mb-25{
    margin-bottom: 25px;
}
.gap-c-12{column-gap: 12px;}
.gap-c-19{column-gap: 19px;}

.gap-r-15{row-gap: 15px;}
.gap-r-20{row-gap: 20px;}
.gap-r-30{row-gap: 30px;}
.gap-r-33{row-gap: 33px;}
.gap-r-36{row-gap: 36px;}
.gap-r-40{row-gap: 40px;}
.gap-r-50{row-gap: 50px;}

.gap-12{gap: 12px;}
.gap-15{gap: 15px;}
.gap-18{gap: 18px;}
.gap-25{gap: 25px;}

.section-mb{margin-bottom: 80px;}

.custom-text-content li,
.custom-text-content p{
    font-size: 16px;
    line-height: 134%;
}
.custom-text-content h3,
.custom-text-content .h3,
.custom-text-content h4,
.custom-text-content .h4,
.custom-text-content h2,
.custom-text-content .h2{
    margin-bottom: 30px;
}
.custom-text-content p,
.custom-text-content p{
    margin-bottom: 38px;
}
.custom-text-content h3,
.custom-text-content .h3,
.custom-text-content h4,
.custom-text-content .h4{
    color: var(--color-medium-blue);
}
.custom-text-content > *:last-child{
    margin-bottom: 0;
}
.container-full,
.container-full .row,
.container-full .col-12{
    padding: 0;
    margin: 0;
}
.sidebar-wrapper .widget > p {
    display: none;
}
.img-round{
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.img-round img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper .swiper-slide{
    height: unset;
}
body .article-content-blocks .article-content .content .table-responsive,
body .article-content-blocks .article-content .content .table-responsive:last-of-type,
body .article-content-blocks .article-content .content table:last-of-type,
body .article-content-blocks .article-content .content table{
    margin-bottom: 24px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 24px;
}

table th {
    background-color: #f8f9fa;
    color: #222;
    font-weight: bold;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

table tr:nth-child(even) {
    background-color: #fafafa;
}
table tr{
    transition: var(--base-transition);
}
table tr:hover {
    background-color: #f1f1f1;
}

.numeric {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.table-responsive{
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
}

blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f8fafc;
    border-left: 5px solid #22c55e;
    border-radius: 8px;
    position: relative;
}

blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 !important;
}

blockquote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 60px;
    color: #22c55e;
    opacity: 0.2;
    font-family: serif;
}

@media screen and (min-width: 992px) {
    body{
        font-size: 16px;
        line-height: 21.5px;
    }
    .container-full{
        --bs-gutter-x: 36px;
        max-width: 970px;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }
    .container-full .row{
        --bs-gutter-x: 36px;
        --bs-gutter-y: 0;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }
    .container-full .col-12{
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }
}
@media screen and (min-width: 1200px) {
    .btn-round {
        width: 44px;
        height: 44px;
    }
    .btn {
        padding: 12px 23px;
    }
    .h1, h1{
        font-size: 58px;
        line-height: 63px;
    }
    .h2, h2{
        font-size: 45px;
        line-height: 115%;
    }
    .h3, h3{
        font-size: 29px;
        line-height: 121%;
    }
    .text-b, .h5, h5, .h6, h6{
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
    }
    .section-mb{margin-bottom: 100px;}
    .container-full{
        max-width: 1188px;
    }
}
