/**
 * Theme Name: child-theme
 * Template:   hello-elementor
 * ...other header fields
 */

html,
body{
        overflow-x: hidden;
        width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e6e6e6;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--e-global-color-secondary)
}
/*global*/

.text-center{
    text-align: center;
}

.text-animation{
        position: relative;
}
.text-animation span{
        transform: scale(5);
    transition: all .7s;
    opacity: 0;
    visibility: hidden;
    display: inline-flex;
    filter: blur(15px);
}
.text-animation span.show{
        transform: scale(1);
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
}

/*global*/

/*btn*/

.btn-custom-1{
        font-weight: 600;
    font-family: var(--e-global-typography-primary-font-family);
    color: var(--e-global-color-text);
    font-size: 20px;
    background: linear-gradient(193deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
        position: relative!important;
}
.btn-custom-1 .shep{
        width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    border-radius: 10px;
    border: 1px solid var(--e-global-color-primary);
    opacity: .6;
        box-shadow: 0 0 3px var(--e-global-color-primary);
}
.btn-custom-1 .shep-1{
        animation: 2s ease-out infinite movement;
}
.btn-custom-1 .shep-2{
        animation: 3s ease-out infinite movement;
}
.btn-custom-1 .shep-3{
        animation: 4s ease-out infinite movement;
}

/*btn*/

/*shape*/

.shape-circle{
        width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(25 0 84 / 50%);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 30%, rgb(27 97 219), #1a126296 60%);
        opacity: 1;
        animation: topIn 12s infinite linear alternate;
}

/*shape*/

/*anim*/

@keyframes topIn {
    0%{
            transform: translateY(0px) rotate(0deg) scale(1);
    }
    50%{
            transform: translateY(-20px) rotate(180deg) scale(1.05);
    }
    100%{
            transform: translateY(20px) rotate(360deg) scale(1);
    }
}

@keyframes movement {
    0%{
            width: calc(100%);
    height: calc(100%);
    }
    50%{
            width: calc(100% + 40px);
    height: calc(100% + 40px);
    }
    100%{
            width: calc(100% + 80px);
    height: calc(100% + 80px);
    opacity: 0;
    }
}

/*anim*/
/*animation-image-1*/

@keyframes anim1 {
    0%{
            transform: translateY(0px);
    }
    50%{
            transform: translateY(15px);
    }
    100%{
            transform: translateY(-15px);
    }
}

.animation-image-1 .anim-con{
        animation-name: anim1;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    position: absolute;
}
.animation-image-1 .anim-con .anim-con-image{
        transform: scale(3);
    filter: blur(20px);
    opacity: 0;
    visibility: hidden;
        transition: all .7s ease-in-out;
        
}
.animation-image-1 .anim-con .anim-con-image.show{
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
}

.animation-image-1{
        width: 100%;
    height: 400px;
    position: relative;
}
.animation-image-1 .anim-con{
        position: absolute;
}
.animation-image-1 .anim-con .anim-con-image{
    
}
.animation-image-1 .anim-con:nth-of-type(1){
    bottom: 50%;
        left: calc(40% - 95px);
    z-index: 1;
}
.animation-image-1 .anim-con:nth-of-type(1) .anim-con-image{
        width: 230px;
    height: 150px;
    background-size: 420px;
    background-position: 21% 61%;
}
.animation-image-1 .anim-con:nth-of-type(2){
        top: 10%;
    left: 12%;
    z-index: 2;
}
.animation-image-1 .anim-con:nth-of-type(2) .anim-con-image{
        width: 140px;
    height: 100px;
    background-size: 350px;
    background-position: 41% 27%;
}
.animation-image-1 .anim-con:nth-of-type(3){
        bottom: 61%;
    right: 35%;
    z-index: 3;
}
.animation-image-1 .anim-con:nth-of-type(3) .anim-con-image{
    width: 70px;
    height: 120px;
    background-size: 400px;
    background-position: 98% 39%;
}
.animation-image-1 .anim-con:nth-of-type(4){
    top: 15%;
    right: 10%;
    z-index: 4;
}
.animation-image-1 .anim-con:nth-of-type(4) .anim-con-image{
    width: 180px;
    height: 160px;
    background-size: 480px;
    background-position: 101% 102%;
    border-radius: 15px;
}
.animation-image-1 .anim-con:nth-of-type(5){
    top: -10%;
    left: 5%;
    z-index: 5;
}
.animation-image-1 .anim-con:nth-of-type(5) .anim-con-image{
width: 100px;
    height: 100px;
    background-size: 550px;
    background-position: 10% 0%;
    border-radius: 25px;
}



/*animation-image-1*/
/*blog page*/

.blog-page{
    position: relative;
}
.blog-page *,
.blog-page .elementor-widget{
    position: static;
}
.taps-terms{
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 25%;
    background-color: #fff;
    box-shadow: 0 0 5px #00000017;
    height: 100%;
}
.taps-terms ul{
    padding: 0;
    list-style: none;
}
.taps-terms ul li {
        text-align: center;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #b5b5b547;
    padding: 15px 10px;
    transition: all .7s;
    position: relative;
    inset-inline-start: 0px;
    z-index: 1;
}
.taps-terms ul li:hover,
.taps-terms ul li.active{
    background-color: var(--e-global-color-primary);
    color: #fff;
    text-shadow: 0 0 1px #fff;
        border-radius: 3px;
    inset-inline-start: 5px;
    transform: scale(1.05);
    z-index: 5;
        box-shadow: 0px 2px 4px #208baa;
}
.taps-terms-contents{
        width: 70%;
    margin-inline-start: auto;
}
.taps-terms-contents .taps-terms-content{
    display: none;
        transform: skewX(-40deg) translateX(-400px);
    opacity: 0;
    visibility: hidden;
    transition: all .7s;
    filter: blur(10px);
}
.taps-terms-contents .taps-terms-content.active{
    display: block;
    transform: skewX(0deg) translateX(0px);
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
}
.taps-terms-contents .taps-terms-content .head-term-sec{
        color: var(--e-global-color-secondary);
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 28px;
    font-family: var(--e-global-typography-primary-font-family);
}
.taps-terms-content_row{
        display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
        margin-bottom: 40px;
}
.taps-terms-content_row .custom-col{
    width: calc(33.33333% - 20px);
}
.item-posttype-in{
        background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 5px #00000036;
    transition: all .7s;
    position: relative ;
    top: 0;
    overflow: hidden;
}
.item-posttype-in .link{
        position: absolute ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.item-posttype-in .img{
        height: 130px;
        width: 100%;
        overflow: hidden;
}
.item-posttype-in .img img{
        width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}
.item-posttype-in .text-all{
        padding: 15px;
}
.item-posttype-in .text-all h2{
        margin: 0;
    font-family: var(--e-global-typography-primary-font-family);
    color: var(--e-global-color-primary);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    line-height: 1.8;
    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}
.item-posttype-in:hover{
    transform: scale(1.05);
    top: -5px;
}
.item-posttype-in:hover .img img{
        transform: scale(1.1);
}

/*blog page*/
/*archives*/

.archives-content_row{
        display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.archives-content_row .custom-col{
    width: calc(25% - 22.5px);
}

.pagination{
    width: 100%;
    margin: 0!important;
    display: flex!important;
    justify-content: center!important;
    gap: 5px;
}
.pagination .page-numbers{
        color: var(--e-global-color-accent);
    font-weight: bold;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 16px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border: 1px solid #3920826e;
    border-radius: 3px;
    box-shadow: 0 0 1px #3920826e;
    transition: all .7s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current{
    background-color: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
    box-shadow: 0 0 1px var(--e-global-color-accent);
    color: #fff;
}

/*archives*/
/*menu*/

.navbar-section *{
    position: static!important;
}
.navbar-section .navbar-links .line{
    opacity: 1;
    height: 3px;
    position: absolute!important;
    bottom: -2px;
    background-color: var(--e-global-color-primary);
    border-radius: 10px;
    box-shadow: 0 0 3px var(--e-global-color-primary);
    transition: all .7s
}
.navbar-section .navbar-links .line.line-hidden{
    opacity: 0;
}
.navbar-section .navbar-links{
        padding: 0;
    /*position: relative;*/
    list-style: none;
    display: flex;
    gap: 10px 25px;
    flex-wrap: wrap;
}
.navbar-section .navbar-links ul{
    padding: 0;
    position: relative;
    list-style: none;
}
.navbar-section .navbar-links > li.menu-item-has-children{
            perspective: 1000px;
    transform-style: preserve-3d;
}
.navbar-section .navbar-links > li.menu-item-has-children > a{
    padding-inline-end: 15px;
}
.navbar-section .navbar-links > li.menu-item-has-children > a::before{
    content: '';
        position: absolute;
        display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--e-global-color-secondary);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><path d="M12.3,15.4c0.2-0.2,0.2-0.4,0.1-0.7L7.9,8l4.5-6.7c0.1-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.2-0.7,0l-8,7C3.6,7.7,3.5,7.9,3.5,8c0,0.1,0.1,0.3,0.2,0.4l8,7C11.9,15.5,12.1,15.5,12.3,15.4z"></path></svg>') no-repeat;
    mask-size: contain;
    transition: all .7s;
    transform: rotate(270deg);
    inset-inline-end: 0;
    top: 6px;
}
.navbar-section .navbar-links > li.menu-item-has-children:hover > a::before{
        transform: rotate(90deg);
}
.navbar-section .navbar-links > li > a{
        color: #454444;
    text-shadow: 0 0 0px #454444;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 17px;
    transition: all .7s;
    display: flex;
    position: relative!important;
        
}
.navbar-section .navbar-links > li:hover > a,
.navbar-section .navbar-links > li.current-menu-item > a{
    color: var(--e-global-color-primary);
}
.navbar-section .navbar-links > li > .sub-menu{
        position: absolute !important;
    width: 600px;
    background-color: #fff;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    inset-inline-start: -150px;
    top: calc(100% + 100px);
        opacity: 0;
    visibility: hidden;
        transition: all .7s;
        transform: rotateY(90deg);
            display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
        max-height: 200px;
            overflow-y: auto;
}
.navbar-section .navbar-links > li > .sub-menu > li{
        width: calc(50% - 5px);
        border-bottom: 1px solid #00000029;
}
.navbar-section .navbar-links > li > .sub-menu > li > a{
        display: flex;
            padding: 5px 0px;
    color: #454444;
    text-shadow: 0 0 0px #454444;
    font-weight: normal;
    font-family: var(--e-global-typography-primary-font-family);
    transition: all .7s;
    width: 100%;
        font-size: 13px;
    position: relative !important;
            padding-inline-start: 15px;
}
.navbar-section .navbar-links > li > .sub-menu > li > a::before{
    content: '';
        position: absolute;
        display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--e-global-color-secondary);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><path d="M12.3,15.4c0.2-0.2,0.2-0.4,0.1-0.7L7.9,8l4.5-6.7c0.1-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.2-0.7,0l-8,7C3.6,7.7,3.5,7.9,3.5,8c0,0.1,0.1,0.3,0.2,0.4l8,7C11.9,15.5,12.1,15.5,12.3,15.4z"></path></svg>') no-repeat;
    mask-size: contain;
    transition: all .7s;
        transform: rotate(360deg);
    inset-inline-start: 0;
    top: 10px;
}
.navbar-section .navbar-links > li.menu-item-has-children:hover > .sub-menu{
    top: calc(100%);
        opacity: 1;
    visibility: visible;
    transform: rotateY(0deg);
}
.navbar-section .navbar-links > li > .sub-menu > li > a:hover{
    padding-inline-start: 20px;
    color: var(--e-global-color-primary);
}
.navbar-section .navbar-links > li > .sub-menu > li > a:hover::before{
    background-color: var(--e-global-color-primary);
}

/*menu*/
/*mobail-menu*/

.mobail-menu{
    position: fixed!important;
    top: 0!important;
    left: 0!important;
    width: 100%!important;
    height: 100%!important;
    z-index: 5000!important;
    background-color: #0000006e!important;
        opacity: 0;
    visibility: hidden;
        transition: all .7s!important;
}
.mobail-menu.show{
        opacity: 1;
    visibility: visible;
}
.mobail-menu .navbar-links,
.mobail-menu .navbar-links ul{
    padding: 0;
    list-style: none;
}
.mobail-menu .navbar-links,
.mobail-menu .navbar-links .sub-menu{
        position: fixed;
    background-color: #1d1f22;
    top: 0;
    inset-inline-end: -400px;
    width: 400px;
    box-shadow: 0 0 5px #1d1f22;
    height: 100%;
    z-index: 0;
    transition: all .7s;
    overflow: auto;
}
.mobail-menu .navbar-links.open,
.mobail-menu .navbar-links .sub-menu.open{
    inset-inline-end: 0;
    z-index: 100;
}
.mobail-menu .navbar-links li{
    position: relative;
    width: 100%;
}
.mobail-menu .navbar-links li a{
        display: flex;
        gap: 10px;
    width: 100%;
        padding: 15px 25px;
    font-family: var(--e-global-typography-primary-font-family);
    line-height: 1.8;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    transition: all .7s;
        border-bottom: 1px solid #454545;
            position: relative;
}
.mobail-menu .navbar-links li a::before{
    content: '';
        position: absolute;
        display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--e-global-color-secondary);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><path d="M12.3,15.4c0.2-0.2,0.2-0.4,0.1-0.7L7.9,8l4.5-6.7c0.1-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.2-0.7,0l-8,7C3.6,7.7,3.5,7.9,3.5,8c0,0.1,0.1,0.3,0.2,0.4l8,7C11.9,15.5,12.1,15.5,12.3,15.4z"></path></svg>') no-repeat;
    mask-size: contain;
    transition: all .7s;
        transform: rotate(360deg);
            inset-inline-start: 7px;
    top: 21px;
}
.mobail-menu .navbar-links li:last-of-type > a{
    border-bottom: 0
}
.mobail-menu .navbar-links li a .count-nav{
    order: -1;
        color: #525252;
    font-size: 12px;
    transition: all .7s;
}
.mobail-menu .navbar-links li a img{
        order: -1;
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: invert(89%) sepia(45%) saturate(857%) hue-rotate(27deg) brightness(91%) contrast(89%);
    transition: all .7s;
}
.mobail-menu .navbar-links li a:hover{
    background-color: #111314;
}
.mobail-menu .navbar-links li a:hover .count-nav{
    color: var(--e-global-color-secondary);
}
.mobail-menu .navbar-links li.menu-item-has-children .next-in-container {
        position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111314;
    box-shadow: 0 0 1px #4a4e50;
}
.mobail-menu .navbar-links li.menu-item-has-children .next-in-container .next-in{
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: var(--e-global-color-secondary);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><path d="M3.7,0.6C3.5,0.8,3.4,1.1,3.6,1.3L8.1,8l-4.5,6.7c-0.1,0.2-0.1,0.5,0.1,0.7c0.2,0.2,0.5,0.2,0.7,0l8-7c0.1-0.1,0.2-0.2,0.2-0.4c0-0.1-0.1-0.3-0.2-0.4l-8-7C4.1,0.5,3.9,0.5,3.7,0.6z"></path></svg>') no-repeat;
    mask-size: contain;
    transform: rotate(180deg);
    transition: all .7s;
}
html[dir="ltr"] .mobail-menu .navbar-links li.menu-item-has-children .next-in-container .next-in{
    transform: rotate(0deg);
}

.top-section-mobail{
    background-color: #111314;
    height: 100px;
}
.top-section-mobail .top-section-mobail_container{
        display: flex;
    align-items: center;
    height: 100%;
}
.top-section-mobail .top-section-mobail_container .col-custom:first-of-type{
    height: 100%;
    width: calc(100% - 40px);
}
.top-section-mobail .top-section-mobail_container .col-custom:last-of-type{
    height: 100%;
    width: 40px
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_close{
        width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
        cursor: pointer;
            box-shadow: 0 0 1px #4a4e50;
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_close .top-section-mobail_container_close_in{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #fff;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 80" xmlns="http://www.w3.org/2000/svg"><rect y="5" width="100" height="8.5" rx="8" style="transform-origin: 0px 0px 0px;" transform="matrix(0.7071,0.7071,-0.7071,0.7071,21.185398666648187,-2.646076785302938)"></rect><rect y="35" width="100" height="8.5" rx="8" style="transform-origin: 0px 0px 0px;" transform="matrix(0.09999,0,0,0.09999,45,35.325)"></rect><rect y="65" width="100" height="8.5" rx="8" style="transform-origin: 0px 0px 0px;" transform="matrix(0.7071,-0.7071,0.7071,0.7071,-34.32248365649579,25.63819446215895)"></rect></svg>') no-repeat;
    mask-size: contain;
    transition: all .7s;
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_contents{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_contents .top-section-mobail_container_arrow{
        display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_contents .top-section-mobail_container_arrow .top-section-mobail_container_arrow_in{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--e-global-color-secondary);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><path d="M12.3,15.4c0.2-0.2,0.2-0.4,0.1-0.7L7.9,8l4.5-6.7c0.1-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.2-0.7,0l-8,7C3.6,7.7,3.5,7.9,3.5,8c0,0.1,0.1,0.3,0.2,0.4l8,7C11.9,15.5,12.1,15.5,12.3,15.4z"></path></svg>') no-repeat;
    mask-size: contain;
    transition: all .7s;
        transform: rotate(180deg);
}
html[dir="ltr"] .top-section-mobail .top-section-mobail_container .top-section-mobail_container_contents .top-section-mobail_container_arrow .top-section-mobail_container_arrow_in{
    transform: rotate(0deg);
}
.top-section-mobail .top-section-mobail_container .top-section-mobail_container_contents .top-section-mobail_container_text{
    font-family: var(--e-global-typography-primary-font-family);
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
    padding-inline-start: 10px;
}
.menu-mobail-open{
    cursor: pointer;
}

/*mobail-menu*/

@media (max-width: 1024px){
    .archives-content_row .custom-col{
        width: calc(33.33333% - 20px);
    }
}
@media (max-width: 991px){
    .taps-terms{
        width: 30%;
    }
    .taps-terms-contents{
            width: 65%;
    }
    .taps-terms-content_row .custom-col{
            width: calc(50% - 15px);
    }
    .archives-content_row .custom-col{
        width: calc(50% - 15px);
    }
}
@media (max-width: 767px){
    .taps-terms{
            width: 45%;
    }
    .taps-terms ul li{
            font-size: 13px;
    }
    .taps-terms-contents{
        width: 50%;
    }
    .taps-terms-content_row .custom-col{
        width: 100%;
    }
    .taps-terms-contents .taps-terms-content .head-term-sec{
        font-size: 18px;
    }
}
@media (max-width: 567px){
    .taps-terms{
        position: static;
        margin-bottom: 30px;
        width: 100%;
    }
    .taps-terms-contents{
        width: 100%;
    }
    .mobail-menu .navbar-links,
    .mobail-menu .navbar-links .sub-menu{
        inset-inline-end: -300px;
        width: 300px;
    }
}
@media (max-width: 500px){
    .animation-image-1 .anim-con:nth-of-type(3){
            right: 10%;
    }
    .animation-image-1 .anim-con:nth-of-type(2){
            left: 2%;
    }
    .animation-image-1 .anim-con:nth-of-type(4){
            right: 0%;
    }
    .animation-image-1{
        height: 280px;
    }
}
@media (max-width: 450px){
    .archives-content_row .custom-col{
        width: 100%
    }
}
