@font-face {
    font-family: "IRANSans";
    src: local("IRANSans"), url(../fonts/IRANSansWeb.ttf) format("truetype");
}
@font-face {
    font-family: "IranSansBold";
    src: local("IranSansBold"), url(../fonts/IRANSansWeb.ttf) format("truetype");
}

html {
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

*:before,
*:after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IRANSans";
    outline: none;
}
body {
    background: #f0f0f0;
}
.navContainer {
    background: white;
    padding: 0 5%;
    box-shadow: #3e3e3e69 0px 0px 13px 1px;
}
.navTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 14vh;
}
.navTopStart {
    display: flex;
    width: 75%;
    align-items: flex-start;
}
.titleImage {
    width: 40%;
    min-width: 270px;
    max-width: 700px;
    margin: 12px;
}
.heartIcon {
    margin-top: 18px;
    width: 36px;
}

.logoImage {
    position: relative;
    top: 34px;
    width: 18%;
    border-radius: 50%;
    max-width: 320px;
}
.navbar {
    display: flex;
}
.navbar .nav-item {
    color: #3d3d3d;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 3%;
    border-right: 1px solid #c6c6c6;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.navbar .nav-item:last-child {
    border-left: 1px solid #c6c6c6;
}

.navbar .nav-item:hover {
    color: white;
    background: #00d2eb;
    box-shadow: 0px 0px 14px 1px #00d2eb70;
}
.navbar .nav-item:hover i {
    color: white;
}
.navbar i {
    font-size: 1.4rem;
    color: #00d2eb;
    padding-bottom: 12px;
}

.nav-dropdown div i {
    color: #3d3d3d;
    display: block;
    font-size: 0.9rem;
    padding: 0;
    padding-right: 5px;
}
.nav-dropdown div i:hover i {
    color: white;
}
.nav-dropdown div {
    display: flex;
    align-items: center;
}
.nav-dropdown {
    position: relative;
    transition: all 0.35s ease-in-out;
}
.nav-dropdown.nav-item:hover .nav-dropdown-container {
    max-height: 90vh;
    padding-bottom: 6px;
    background: #00d2eb;
}
.nav-dropdown.nav-item:hover .nav-dropdown-container {
    max-height: 90vh;
    padding-bottom: 6px;
    background: #00d2eb;
    opacity: 1;
}
.nav-leftie.nav-dropdown.nav-item:hover .nav-dropdown-leftie {
    max-width: 40vw;
    height: 200px;
    background: #00d2eb;
    color: white;
    width: 100%;
    height: fit-content;

    opacity: 1;
}
.nav-dropdown-container {
    position: absolute;
    top: 74px;
    right: 0;
    background: white;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 13px 13px;
    max-height: 0;
    transition: all 0.35s ease-in-out;
    z-index: 999;
    opacity: 0;
}
.nav-dropdown-leftie {
    position: absolute;
    top: 0;
    right: 100%;
    background: white;
    width: 100%;
    max-width: 0;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 13px 13px;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    z-index: 9999;
    opacity: 0;
    padding: 18px 0;
    border-radius: 10px 0 10px 10px;
}
.nav-dropdown-item {
    padding: 8px;
    width: inherit;
    color: white;
}
.nav-dropdown-item:hover {
    background: white;
    color: #39767d;
}
/* nav.mobile */
.ham {
    align-self: center;
    font-size: 1.5rem;
    margin-left: 20px;
    padding: 9px;
    border-radius: 8px;
    box-shadow: 0 0 6px 1px #e1e1e1;
    cursor: pointer;
    display: none;
}
.drawer {
    position: fixed;
    right: -100vh;
    top: 0;
    height: 100vh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    box-shadow: 0 0 8px 2px #c9c9c9;
    transition: all 0.35s ease-in-out;
}

.drawerclose {
    font-size: 2.2rem;
    text-align: start;
    width: 100%;
    cursor: pointer;
    margin-bottom: 1rem;
}
.drawer .nav-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    width: 100%;
    padding: 14px 12px;
}

.drawer .nav-item i {
    padding-left: 9px;
    font-size: 1.4rem;
}
.drawer .nav-dropdown-container {
    top: 48px;
}
/* nav.mobile */

/* --------------- end nav */
/* --------------- footer start*/
footer {
    background: #303030;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 4vh 10vw;
    margin-top: 8vh;
}
footer .info {
    padding: 1rem 1.8rem;
    border-radius: 9px;
    min-width: 280px;
    transition: all 0.3s ease-in-out;
}
/* footer .info:hover {
    border: 2px solid #00d2eb;
} */
footer .info div {
    display: flex;
    margin-bottom: 1rem;
}
footer .info i {
    border: 2px solid white;
    color: white;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in-out;
}
footer .info div {
    transition: all 0.3s ease-in-out;
}
footer .info div a {
    color: inherit;
}
footer .info div:hover i,
footer .info div:hover {
    border-color: #00d2eb;
    color: #00d2eb;
}

footer .info .insta {
    border: none;
    font-size: 26px;
    overflow: hidden;
}
footer address {
    max-width: 23vw;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.8rem;
}

.footer-links h3 {
    margin-bottom: 14px;
}
footer .certificates img {
    max-width: 120px;
    margin-right: 12px;
}

.page-container {
    padding: 10vh 10%;
}

.page-container p {
    margin-top: 1rem;
}
.page-container img {
    width: 100%;
    height: 310px;
    object-fit: contain;
    margin-bottom: 40px;
}
/* --------------- footer end*/
#jtt {
    background: #303030;
    color: white;
    font-size: 28px;
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
/* --------------- tags start*/
h1 {
    font-size: 1.4rem;
    color: #1c1c1c;
}

p {
    color: #303030;
    font-size: 1rem;
}

a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #1c666f;
}
a:visited {
    color: inherit;
}

main {
    margin: 8vh 10%;
    min-height: 30vh;
    overflow: auto;
}

/* responsive start */
@media only screen and (max-width: 1600px) {
    .logoImage {
        width: 13%;
        max-width: 280px;
        top: 10px;
    }
}
@media only screen and (max-width: 1200px) {
    .titleImage {
        min-width: 250px;
    }
    .logoImage {
        width: 12%;
        max-width: 120px;
        top: 0;
    }
    .navbar .nav-item {
        padding: 10px 1.9%;
    }
}
@media only screen and (max-width: 920px) {
    .titleImage {
        min-width: 220px;
    }
    .heartIcon {
        width: 28px;
        height: 28px;
    }
    .logoImage {
        max-width: 100px;
    }
    .navbar {
        display: none;
    }
    .ham {
        display: block;
    }

    footer {
        flex-direction: column;
    }
    footer address {
        max-width: 90vw;
    }
    .footer-links {
        margin-top: 3.5vh;
    }
}
@media only screen and (max-width: 480px) {
    .heartIcon {
        width: 18px;
        height: 18px;
        margin-top: 8px;
    }
    .titleImage {
        min-width: 130px;
    }
    .nav-leftie.nav-dropdown.nav-item:hover .nav-dropdown-leftie {
        max-width: 90vw;
        height: auto;
        background: #00d2eb;
        color: white;
        width: 100%;
        height: fit-content;
        opacity: 1;
        right: 0;
        top: 116px;
    }
}

/* responsive end */

/* loaading start*/
.loading {
    background: white;
    width: 100vw;
    height: 100vh;
    position: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
}
.loadinghide {
    transition: all 0.37s ease-in-out;
    opacity: 0;
}

.boxes {
    --size: 32px;
    --duration: 800ms;
    height: calc(var(--size) * 2);
    width: calc(var(--size) * 3);
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: calc(var(--size) * 1.5 * -1);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
    width: var(--size);
    height: var(--size);
    top: 0;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    -webkit-animation: box1 var(--duration) linear infinite;
    animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    -webkit-animation: box2 var(--duration) linear infinite;
    animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    -webkit-animation: box3 var(--duration) linear infinite;
    animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    -webkit-animation: box4 var(--duration) linear infinite;
    animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
    --background: #00d2eb;
    --top: auto;
    --right: auto;
    --bottom: auto;
    --left: auto;
    --translateZ: calc(var(--size) / 2);
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background);
    top: var(--top);
    right: var(--right);
    bottom: var(--bottom);
    left: var(--left);
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX))
        translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
    --top: 0;
    --left: 0;
}
.boxes .box > div:nth-child(2) {
    --background: #37abb8;
    --right: 0;
    --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
    --background: #447d83;
    --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
    --background: #dbe3f4;
    --top: 0;
    --left: 0;
    --translateZ: calc(var(--size) * 3 * -1);
}

@-webkit-keyframes box1 {
    0%,
    50% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box1 {
    0%,
    50% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}
@-webkit-keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100%, 0);
    }
}
@keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100%, 0);
    }
}
@-webkit-keyframes box3 {
    0%,
    50% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(0, 100%);
    }
}
@keyframes box3 {
    0%,
    50% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(0, 100%);
    }
}
@-webkit-keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }
    50% {
        transform: translate(200%, 100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}
@keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }
    50% {
        transform: translate(200%, 100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

/* loaading end*/
