@font-face {
    font-family: 'RTT-Font';
    src: url('../fonts/BerlingskeSerif-Md.woff2') format('woff2'),
        url('../fonts/BerlingskeSerif-Md.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RTT-Font';
    src: url('../fonts/BerlingskeSerif-LtItalic.woff2') format('woff2'),
        url('../fonts/BerlingskeSerif-LtItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'RTT-Font';
    src: url('../fonts/BerlingskeSerif-MdItalic.woff2') format('woff2'),
        url('../fonts/BerlingskeSerif-MdItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'RTT-Font';
    src: url('../fonts/BerlingskeSerif-Lt.woff2') format('woff2'),
        url('../fonts/BerlingskeSerif-Lt.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}



.home-story-section {
	background: url(../images/bg-textyre-repeat.png) cover repeat !important;
}

.white-bg{
	background:#fff;
 padding: 54px;
}
.uk-donate-card{
	background:#fff;
	padding-right:96px;
}
.uk-card-default{
	padding: 10px 10px 32px 10px;
}

.sky-blue-btn {
    border: 1px solid #292A2D;
    background: #F6F6F6;
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: border-radius 0.35s ease, padding 0.35s ease;
}
.sky-blue-btn a{
	display:flex;
	align-items:center;
	justify-content:center;
}
/* TEXT */
.sky-blue-btn .text-span {
	color:#000;
    display: inline-block;      /* inline-block to allow max-width */
    max-width: 0;               /* collapsed initially */
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-left: 0;
    transform: translateX(-6px);

    transition:
        max-width 0.35s ease,
        margin-left 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

/* HOVER */
.sky-blue-btn:hover {
    border-radius: 30px;
    padding: 10px 16px;
}

.sky-blue-btn:hover .uk-icon{
	margin-left:5px;
}
.sky-blue-btn:hover .text-span {
    max-width: 200px;  /* adjust for your text length */
    opacity: 1;
    margin-left: 8px;
    transform: translateX(0);
}





.uk-dotnav>*>* {
    display: block;
    box-sizing: border-box;
    width: 34px;
    height: 2px;
    border-radius: 0;
    background: #C0C0C0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: .2s ease-in-out;
    transition-property: color, background-color, border-color, box-shadow;
	border:none;
}
.uk-dotnav>.uk-active>* {
    background-color: #fff;
    border-color: transparent;
}
/* .uk-navbar-nav li:nth-child(4){
	display:none;
} */
.tm-box-decoration-secondary::before {
    background-image: url(../images/secondary-box-decoration.svg)!important;
    top: -6px;
    left: -44px;
    width: 108%;
    height: 108%;
    background-size: contain;
    z-index: -1;
}
/* ---------------------pagination---------------- */
.uk-pagination-previous svg{display:none;}
.uk-pagination-next svg{display:none;}
.uk-pagination-previous:before{
	    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 20%;
    background-image: url(../images/previous.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 25px;
    width: 25px;
}
.uk-pagination-previous:hover:before{
	    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 20%;
    background-image: url(../images/previous-hover.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 25px;
    width: 25px;
}
.uk-pagination-next:after{
	    content: "";
    position: absolute;
    display: inline-block;
    right: 0;
    top: 20%;
    background-image: url(../images/next.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 25px;
    width: 25px;
}
.uk-pagination-next:hover:after{
	    content: "";
    position: absolute;
    display: inline-block;
    right: 0;
    top: 20%;
    background-image: url(../images/next-hover.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 25px;
    width: 25px;
}

@media (max-width:1224px){
	.uk-navbar-left  img{
		    width: 164px;
	}
}

@media (max-width:936px){
	.uk-heading-medium,.uk-heading-large {
    font-size: 48px;    line-height: 64px;
}
	.uk-donate-card{
	padding:20px  !important;
}
	.uk-section-small, .uk-section-large {
    padding-top: 40px;
    padding-bottom: 40px;
}
	
}

@media (max-width:639px){
.white-bg{
 padding: 20px;
}
}





/* Container styling */
.cybersource-donation-form {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Grouping labels and inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

/* Input styling */
.form-row { display: flex; gap: 10px; margin-bottom: 15px; }
        .form-group { flex: 1; margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
        .form-group input, .form-group select { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
        .submit-btn { background: #007cba; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; }



.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.form-group input:focus {
    outline: none;
    border-color: #0073aa; /* WordPress Blue */
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

/* Button styling */
.cybersource-donation-form .button {
    width: 100%;
    padding: 14px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.cybersource-donation-form .button:hover {
    background-color: #005177;
}

.cybersource-donation-form .button:active {
    transform: scale(0.98);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .cybersource-donation-form {
        padding: 20px;
        margin: 20px;
    }
}