a{
    text-decoration: none !important;
}
@font-face {
    font-family: iranyekanwebregularfanum;
    src: url(./font/iranyekanwebregularfanum.ttf);
  }
  @font-face {
    font-family: IRANYekanWebBold;
    src: url(./font/IRANYekanWebBold.ttf);
  }
  @font-face {
    font-family: IRANYekanWebExtraBlack;
    src: url(./font/IRANYekanWebExtraBlack.ttf);
  }
  @font-face {
    font-family: IRANYekanWebExtraBold;
    src: url(./font/IRANYekanWebExtraBold.ttf);
  }
  @font-face {
    font-family: IRANYekanWebMedium;
    src: url(./font/IRANYekanWebMedium.ttf);
  }
  @font-face {
    font-family: IRANYekanWebRegular;
    src: url(./font/IRANYekanWebRegular.ttf);
  }
   @font-face {
    font-family: 'نوت\ نستعلیق\ اردو';
    src: url(./font/nataliq.ttf);
  }

  .portal{
    font-family: 'نوت\ نستعلیق\ اردو';
    font-size: 1.3em;
    margin-right: 20px;
    color: #5a5a5a;
    border-right: 1px solid gray;
    padding-right: 20px;
  }
  

:root{
    --primary-color:hsl(160.88deg 43.96% 59.41%)
}
body {
    font-family: iranyekanwebregularfanum;
    direction: rtl;
    font-size: 15px;
    font-variant-numeric: diagonal-fractions;
    font-feature-settings: "numr" 1;
    background-color: hsl(0deg 0% 91.76%);
 
}

.main-nav ul li.active {
    position: relative;
}

.main-nav ul li.active a {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.main-nav ul li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.main-nav ul li:not(.active):hover a {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}
.main-nav ul{
    padding: 0px;
    margin-bottom: 0px;
}
.main-nav ul li{
    display: inline-block;
    padding: 10px 20px; 
    font-size: 1.2em;
}

.main-nav ul li a{
    color: #000 !important;

}
.container-fluid .row:not(.gallery-carousel-container){
    max-width: 1678px;
    margin: 0px auto;
}
header{
    box-shadow: 0px 2px 10px 2px #cfcfcf;
    background-image: url(./images/protal-header-back.png);
    background-color: #fff;
    position:fixed;
    top:0;
    right:0;
    width:100%;
    z-index:10002;
    
}
/* Mobile Side Navigation Styles - Add to your style.css */

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Transform hamburger to X when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Side Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    /* padding: 80px 20px 30px; */
    transition: all 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav ul li.active a {
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-nav ul li:not(.active) a:hover {
    color: var(--primary-color);
    background-color: #f9f9f9;
    padding-right: 15px;
}

/* Menu Header */
       .mobile-menu-header {
            padding: 20px 10px;
            background: linear-gradient(135deg, var(--primary-color), #45a29e);
            color: white;
            text-align: center;
        }


        .mobile-menu-close {
           
            background: rgba(255,255,255,0.2);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .mobile-menu-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 10px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .mobile-logo{
            width: 70%;
        }

        .mobile-logo img {
           width: 100%;
        }

.news-card a{
    display:block;
    height:100%;
    width:100%;
}
@media (max-width: 992px) {
    .news-card a{
        display:flex;
    }
    .loc-tel{
        align-items:start;
    }
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img img {
        height: 40px;
    }
}


.news-ticker-container {
  display: flex;
  align-items: center;
  background-color: #fff; 
  border: 1px solid var(--primary-color); 
  border-radius: 20px; 
  padding: 8px; 
  overflow: hidden; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-ticker-label {
  background-color: #66cdaa; 
  color: white;
  padding: 8px 20px;
  border-radius: 15px; 
  font-weight: bold;
  white-space: nowrap; 
  margin-left: 10px; 
}

.news-items-viewport {
  flex-grow: 1; 
  overflow: hidden; 
  direction: ltr; 
}

.news-items-wrapper {
  display: flex; 
  width: fit-content; 

  animation: scroll-left-to-right 60s linear infinite;
}

.news-items-wrapper:hover {
  animation-play-state: paused; 
}

.news-content-block {
  display: flex; 
  align-items: center;
  white-space: nowrap; 
  /* padding-right: 20px; /* ایجاد فاصله بین دو بلوک محتوا، اگر لازم باشد */
}

.news-ticker-container .news-item {
  padding: 0 10px; 
  color: #333;
  font-size: 14px;
}
.news-ticker-container .news-item:hover {
  color: var(--primary-color);
}

.news-item-separator {
  background-color: var(--primary-color); 
  padding: 5px;
  border-radius: 50%;
  display: inline-flex; 
  align-items: center;
}

/* تعریف انیمیشن */
@keyframes scroll-left-to-right {
  0% {
    transform: translateX(-50%); 
  }
  100% {
    transform: translateX(0%);    
  }
}

.news-carousel{
    background-color: #fff;
    border-radius: 25px;
    position: relative;
}
.news-carousel-item a{
    color:#000 !important;
    display:flex;
    
}
.news-carousel-img{
    padding: 10px;
    width: 50%;
    max-height: 395px;
    min-height: 395px;
   
    /* height: 100%; */
}
.news-carousel-img img{
    height: 100%;
    object-fit: fill;
     border-radius: 15px;
}
.news-carousel-txt{
    padding:15px 10px;
    width: 50%;
    min-height: 393px;
    max-height: 393px;
    height: 100%;
}
.carousel-title .news-item-separator{
    position: absolute;
    right: 0px;
    top: 9px;
}
.news-carousel-txt h1{
    line-height: 30px;
    font-size: 1em;
    margin-right: 15px;
    font-weight: bold;
   
}
.news-carousel-txt p{
    line-height: 35px;
    text-align: justify;
   
}
.news-carousel-txt p, .news-carousel .date{
   color: #525151;
   
}
.weather-widget {
    background:#fff;
    border: 1px solid #e0e8ea;
    border-radius: 15px;
    padding:14px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size:.9em;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(216, 215, 215);
}

.city-selector {
    display: flex;
    align-items: center;
    background: #f0f4f5;
    border: 1px solid #d0d8da;
    border-radius: 8px;
    color: #333;
    padding: 8px 10px;
    font-size: .9em;
    cursor: pointer;
    font-family: inherit;
}

.city-selector i {
    margin-left: 5px;
    font-size: 12px;
}

.weather-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.main-weather {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.main-temp {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1;
}

.temp-unit {
    font-size: 1.8em;
    color: hsl(44deg 100% 50%);
}

.weather-icon {
    font-size: 3rem;
    color: #87ceeb;
}

.weather-description {
    font-size: 13px;
    color: #979797;
    margin-top: 20px;
}

.weather-details {
    background: #ffffff;
     border-bottom: 2px solid rgb(216, 215, 215);
    padding: 15px;
    margin-bottom: 20px;
}
.weather-details i{
    color: red;
}
.weather-details p{
    margin-bottom: 10px;
    font-size: .8em;
}
.weather-details img{
   
}


.forecast-section {
   
}

.forecast-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: right;
    color: #333;
}

.forecast-title small {
    font-size: 12px;
    font-weight: normal;
    color: var(--primary-color);
    display: block;
    margin-top: 3px;
}

.forecast-items {
    background: #ffffff;
    
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.forecast-item {
    width: 50%;
    display: flex;
   font-weight: 500px;
    justify-content: space-between;
    padding: 5px;
    
}

.forecast-item:last-child {
    border-bottom: none;
}

.forecast-label {
    color: #666;
}

.forecast-value {
    color: #333;
    font-weight: 500;
}

/* News Tabs Styles */
.news-tabs-section {
    padding-top:30px;
    /* background-color: #f8f9fa; */
}

.news-tab-nav {
    border-bottom: none;
    margin-bottom: 30px;
    padding-right:0px;
    /* justify-content: center; */
}

.news-tab-nav .nav-item {
    margin: 0 5px;
}

.news-tab-nav .nav-link {
    background: none;
    border: none;
    border-radius: 0;
    color: #333;
    font-weight: 700;
    padding: 15px 25px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.news-tab-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: transparent;
    border-color: transparent;
}

.news-tab-nav .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.news-tab-content {
    min-height: 500px;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*max-height: 463px;*/
    /*min-height: 463px;*/
}


.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.news-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-content {
    padding:10px 20px;
}

.news-card-content h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    /*height:50px;*/
    /*max-height:50px;*/
}

.news-date {
    color: #6c757d;
    font-size: 14px;
    /* margin-bottom: 15px; */
}

.news-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    height: 68px;
    max-height:68px;
    overflow: hidden;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Modal Styles */
#imageModal .modal-content {
    border: none;
    border-radius: 10px;
}

#imageModal .modal-body {
    padding: 0;
}

#imageModal img {
    border-radius: 0 0 10px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-tab-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .news-tab-nav .nav-item {
        margin: 2px 0;
    }
    
    .news-tab-nav .nav-link {
        padding: 12px 15px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

.latest-news-section {
    padding-bottom:50px;
    /* background-color: #f8f9fa; */
}
.latest-news-header {
    margin: 50px 0px;
    position: relative;
    /* background-color: #f8f9fa; */
    text-align: right;
    border-bottom: 1px solid hsl(0deg 0% 74.12%);
}

.section-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding:10px 15px;
}




.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color); 
    position: absolute;
    bottom: -10px;
    right: 0;
}




.latest-news-container {
    display: flex;
    gap: 30px;
    /*max-width: 1400px;*/
    margin: 0 auto;
}

/* Left Sidebar - News List */
.news-sidebar {
    flex: 1;
    max-width: 400px;
    height: 500px;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 15px;
}

.news-list {
    background: white;
    border-radius: 15px;
    padding: 20px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}
.news-link{
    text-align: left !important;
}

.news-list-item {
    padding: 20px;
    border-bottom: 1px solid #eef2f3;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.news-list-item.active::before,
.news-list-item:hover::before {
    background-color: var(--primary-color);
}

.news-list-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.news-list-item.active {
    background-color: #f0f7ff;
}

.news-list-item h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: justify;
}

.news-meta {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-top: 10px;
}

.news-date {
    color: #666;
    font-size: 14px;
}

.news-category {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}


.news-content{
    flex: 2;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}
.news-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Primary hover effect: slight rise with shadow */
.news-gird .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.news-image{
    width: 100%;
    height: 100%;
    position: relative;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.08);
}

/* Overlay transition effect */
.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    color: white;
    padding: 15px;
    transition: all 0.4s ease;
    height: 80px; /* Initial height that just shows the tag and part of text */
    overflow: hidden;
}

.news-item:hover .news-overlay {
    height: 120px; /* Expanded height on hover to show more text */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding-bottom: 25px;
}

/* News tag animation */
.news-tag {
    display: inline-block;
    background-color: #66cdaa;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item:hover .news-tag {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(102, 205, 170, 0.5);
}

/* Text description animation */
.news-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.news-item:hover .news-description {
    opacity: 1;
    transform: translateY(-5px);
}

/* Add a subtle border glow effect */
.news-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 0 0 0 rgba(102, 205, 170, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.news-item:hover::after {
    box-shadow: 0 0 0 3px rgba(102, 205, 170, 0.4);
}

/* Alternative hover effect for smaller screens */
@media (max-width: 768px) {
    .news-item:hover {
        transform: translateY(-3px);
    }
    
    .news-item:hover .news-overlay {
        height: 100px;
    }
}

/* استایل‌های بخش گالری تصاویر */
.image-gallery-section {
    padding: 50px 0;
    background-color: hsl(0deg 0% 88.24%);
    position: relative;
}

.gallery-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    padding-right: 15px;
    display: inline-block;
}

.gallery-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #66cdaa;
    border-radius: 2px;
}

.gallery-carousel-container {
    position: relative;
    padding: 0 50px;
}

/* استایل‌های آیتم کاروسل گالری */
.gallery-carousel-item {
    margin: 0 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:0px 2px 15px 2px rgba(87, 87, 87, 0.1);
    position: relative;
    transition: all 0.3s ease;
    background-color: white;
    min-height:265px;
}

.gallery-carousel-item:hover {
    transform: translateY(-5px);
   
}

.gallery-image {
    height: 220px;
    min-height:220px;
    max-height:220px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-carousel-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px 10px;
    background-color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    min-height: 85px;
    max-height: 85px;
}

.caption-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

.gallery-caption p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* دکمه‌های ناوبری */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #66cdaa;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(102, 205, 170, 0.3);
}

.gallery-nav:hover {
    background-color: #5ab89a;
    box-shadow: 0 5px 15px rgba(102, 205, 170, 0.5);
}

.gallery-nav-prev {
    left: 10px;
}

.gallery-nav-next {
    right: 10px;
}

/* تنظیمات واکنش‌گرا */
@media (max-width: 768px) {
    .gallery-image {
        height: 180px;
    }
    
    .gallery-carousel-container {
        padding: 0 0px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.loc-tel{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
   .footer {
      padding-top: 40px;
      background-color: #1b1b1b;
      border-top: 1px solid #333;
      color: #fff;
      position: relative;
    }
    .footer .footer-right{
        background-color:#333;
        width:100%;
        padding:20px 0px;
    }
    .up{
      position: absolute;
      left: 10px;
      bottom: 30px;
      cursor: pointer;
    }
    .up:hover{
      transform: translateY(-5px);
      transition: transform .5s ease;
    }
    .footer a {
      color: #98f1d3;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer-nav a{
      color: #fff;
    }
     .footer-nav a:hover{
      color: var(--primary-color);
    }
    .location{
      min-width: 370px;
    }
    
    .footer .social-icons img {
      font-size: 24px;
      margin-left: 10px;
      color: #98f1d3;
    }
    .footer .footer-logo {
      color: #98f1d3;
    }
    .footer .footer-bottom {
      color: #aaa;
      font-size: 14px;
    }
    .footer .footer-bottom span {
      color: #98f1d3;
    }