@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

.main {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    padding: 1em 1em;
    width: 100%;
    height: 12%;
    background-color: #c0e6de;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 6em;
}

.slogan h2 {
    color: #1F305E;
    font-weight: 500;
    text-transform: uppercase;
}

label.hamburger {
    z-index: 99999;
    height: 50px;
    width: 50px;
    top: 2em;
    right: 2em;
    position: fixed;
}

label.hamburger:hover {
    cursor: pointer;
}

.drawer-list {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    height: 100vh;
    width: 50%;
    transform: translate(100vw, 0);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
    box-sizing: border-box;
    pointer-events: none;
    transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    border-bottom-left-radius: 100vw;
    background-color: #8080ff;
}

.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    margin-top: 12em;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
}

.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateX(100vw);
    /* ie workaround */
    -ms-transform: translateX(-100vw);
}

.drawer-list li:last-child {
    margin-bottom: 1em;
}

.drawer-list li a {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    text-align: right;
    display: block;
    font-size: 2.5em;
    letter-spacing: 5px;
    transition: all 0.5s ease-in-out;
}

.drawer-list li a:hover {
    cursor: pointer;
    letter-spacing: 0;
    color: #1F305E;
    background: #c0e6de;
    text-shadow: 1px 1px #ffffff;
}

input.hamburger {
    display: none;
}

input.hamburger:checked~.drawer-list {
    transform: translateX(0);
    border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
    transform: translateX(0);
}

input.hamburger:checked~.drawer-list li:nth-child(1) {
    transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(2) {
    transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(3) {
    transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(4) {
    transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(5) {
    transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(6) {
    transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(7) {
    transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(8) {
    transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li a {
    padding-right: 0.5em;
}

input.hamburger:checked~label>i {
    background-color: transparent;
    transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked~label close {
    color: #1F305E;
    width: 100%;
}

input.hamburger:checked~label open {
    color: #1F305E;
    width: 0;
}

label.hamburger text close,
label.hamburger text open {
    text-transform: uppercase;
    font-size: 0.8em;
    text-align: center;
    position: absolute;
    transform: translateY(18px);
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
    -webkit-transition: width 0.25s 0.35s, color 0.45s 0.35s;
    -moz-transition: width 0.25s 0.35s, color 0.45s 0.35s;
    -ms-transition: width 0.25s 0.35s, color 0.45s 0.35s;
    -o-transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
    color: #1F305E;
    width: 0;
}

label.hamburger text open {
    color: #1F305E;
    width: 100%;
}

label.hamburger>i {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1F305E;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #1F305E;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}

label.hamburger>i:before {
    transform: translate(-50%, -12px);
}

label.hamburger>i:after {
    transform: translate(-50%, 12px);
}

.social_item_inner {
    background-color: #1F305E;
    height: 5em;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_item_inner li {
    list-style: none;
    transition: all 0.5s ease-in-out;
    font-size: 1em;
}

.social_item_inner li a i {
    font-size: 1em;
    color: #ffffff;
}

.social_item_inner li:hover a {
    transform: rotateX(360deg);
    background-color: transparent;
}

.video-div {
    padding: 1em;
    display: flex;
    flex-direction: column;
}

.mobile {
    display: none;
}

.back-video {
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.content {
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 1em;
}

.content h1 {
    margin-top: -30%;
    margin-left: 1em;
    font-size: 5em;
    position: absolute;
    font-weight: 800;
    text-transform: uppercase;
    color: #c0e6de;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    background: linear-gradient(to right, #cccccc, #385399, #ed1b24);
    -webkit-background-clip: text;
    background-position: 5 5;
    animation: back 20s linear infinite;
}

@keyframes back {
    100% {
        background-position: 2000px 0;
    }
}

.container-animation {
    text-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 50%;
    padding: 0;
    margin: 0;
}

.container-animation span {
    display: inline-block;
}

.text1 {
    text-transform: uppercase;
    margin-top: -40%;
    width: 100%;
    color: #ffff00;
    text-shadow: 1px 1px #777eff;
    font-size: 3em;
    font-weight: 600;
    position: absolute;
    /*   shorthand animation property: name | duration | iteration count */
    animation-name: text;
    animation-duration: 6s;
}

@keyframes text {
    0% {
        margin-left: -20em;
    }

    100% {
        margin-left: 0em;
    }
}

.body {
    margin-top: -4em;
    width: 100%;
    background-color: #c0e6de;
    padding: 50px 80px;

    justify-content: space-between;
    display: flex;
    padding-bottom: 10px;
}

.tdimension {
    margin-top: 9em;
    width: 20em;
    height: 15em;
}

.tdimension a {
    display: block;
    width: 100%;
    height: 100%;
    background: url("./Assets/Images/logobg.png");
    background-size: cover;
    transform-style: preserve-3d;
    transform: rotateX(60deg);
    transition: all 1s;
}

.tdimension:hover a {
    transform: rotateX(0deg);
}

.tdimension a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1em;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    transform: rotateX(90deg);
    transform-origin: bottom;
}

.right {
    padding-left: 2em;
    text-align: justify;
}

.right h2 {
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #1F305E;
}

.right h2::after {
    content: "";
    width: 0%;
    height: 0.1em;
    background: #1F305E;
    display: block;
    transition: 0.3s;
}

.right h2:hover::after {
    width: 10.3em;
}

.right p {
    color: #1F305E;
    font-size: 1.1em;
    /* font-weight: 500; */
    margin-top: 1em;
}

#ch {
    display: none;
}

#ch:checked~.paragraph {
    display: block;
}

#ch:checked~label {
    display: none;
}

.paragraph {
    display: none;
}

.ch-btn {
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    color: #c0e6de;
    background-color: #08023b;
    padding: 0.5em 1em;
    margin-top: 0.5em;
    border-radius: 0.5em;
}

.slider-container {
    padding: 5em 2em;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    background-color: #c0e6de;
}

.slider {
    width: 100%;
    display: flex;
    animation: interchange 25s linear infinite;
}
.slider:hover {
    animation-play-state: paused;
}
.slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.slide:nth-child(1) {
    animation: fadeInOut 25s 0s infinite;
}

.slide:nth-child(2) {
    animation: fadeInOut 25s 4s infinite;
}

.slide:nth-child(3) {
    animation: fadeInOut 25s 8s infinite;
}

.slide:nth-child(4) {
    animation: fadeInOut 25s 12s infinite;
}

.slide:nth-child(5) {
    animation: fadeInOut 25s 16s infinite;
}

.slide:nth-child(6) {
    animation: fadeInOut 25s 20s infinite;
}
.slide:hover {
    animation-play-state: paused;
}

@keyframes interchange {

    0%,
    15% {
        transform: translateX(0);
    }

    16%,
    30% {
        transform: translateX(-100%);
    }

    31%,
    45% {
        transform: translateX(-200%);
    }

    46%,
    60% {
        transform: translateX(-300%);
    }
    61%,
    75% {
        transform: translateX(-400%);
    }
    76%,
    100% {
        transform: translateX(-500%);
    }
}

@keyframes fadeInOut {

    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.image-with-text {
    display: flex;
    justify-content: center;
    gap: 7em;
    align-items: center;
    float: left;
    position: relative;
    -webkit-perspective: 1000;
}

.image-with-text img {
    box-shadow: 1px 1px 5px 2px #000000;
    border-radius: 0.5em;
    width: 30em;
    height: 20em;
    transform: rotateY(20deg);
    transition: transform 0.5s ease;
}

.image-with-text img:hover {
    transform: rotateY(0deg);
}

.image-with-text .text {
    text-transform: uppercase;
    width: 40%;
    text-shadow: 1px 1px #000000;
    color: #1F305E;
    font-size: 2.5em;
}

.section {
    display: flex;
    justify-content: space-between;
    text-align: start;
    padding: 1em;
    text-align: center;
    background-color: #003153;
}

.section h3 {
    font-weight: 400;
    text-transform: uppercase;
    color: #c0e6de;
    margin-bottom: 0.5em;
}

.section hr {
    margin-bottom: 1em;
    background-color: #c0e6de;
}

iframe {
    margin-top: 1em;
    width: 20em;
    height: 10em;
    border-radius: 0.5em;
}

.address p {
    color: #c0e6de;
    font-size: 1em;
}

.social li {
    list-style: none;
    margin-top: 1em;
}

.social li a {
    text-decoration: none;
    color: #c0e6de;
    font-size: 1.2em;
}

.category ul li a:hover,
.category ul li i:hover {
    color: #8080ff;
}

.footer-email-form h2 {
    margin-bottom: 1em;
    font-weight: 400;
    color: rgb(254, 231, 178);
}

.contacts p {
    color: #c0e6de;
    text-align: left;
    margin-top: 1em;
}

.contacts span {
    margin-left: 1.5em;
    margin-bottom: 2em;
}

.contacts h4 {
    text-align: center;
    color: #c0e6de;
    margin: 1em 1em;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
}

#footer-email {
    width: 15em;
    height: 3em;
    border-radius: 0.5em;
    outline: none;
    border: none;
    padding: 1em;
    font-size: 1em;
}

#footer-email::placeholder {
    color: #1F305E;
    text-align: center;
}

#footer-email-btn {
    width: 8em;
    height: 3.6em;
    border-radius: 0.5em;
    background-color: #777eff;
    outline: none;
    border: none;
    color: #c0e6de;
}

#footer-email-btn:hover {
    cursor: pointer;
    color: #000;
    transition: all 0.5s ease-out;
}

.rights {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1em 2em;
    background-color: #001524;
}

.rights span {
    color: #c0e6de;
    font-weight: 400;
}

.rights span a {
    color: #c0e6de;
    text-decoration: none;
}


@media only screen and (min-width:310px) and (max-width:353px) {
    .navbar {
        padding: 0.5em 0.5em;
        width: 100%;
        height: 12%;
    }

    .logo img {
        width: 2.5em;
    }

    .slogan h2 {
        font-weight: 700;
        font-size: 0.5em;
        margin-left: -4em;
    }

    label.hamburger {
        height: 2em;
        width: 1.5em;
        top: 1.5em;
        right: 0.5em;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -8px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 8px);
    }

    .drawer-list {
        width: 100%;
    }
    .drawer-list ul {
        margin-top: 8em;
    }
    .drawer-list li a {
        font-size: 2em;
    }
    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(15px);
    }
    label.hamburger>i {
        height: 1.5px;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 1.5px;
    }


    .back-video {
        object-fit: cover;
        height: 70vh auto;
    }

    .desktop {
        display: none;
    }

    .content h1 {
        margin-top: -180%;
        margin-left: -0.2em;
        font-size: 1.5em;
        position: relative;
        font-weight: 900;
    }

    .container-animation {
        position: relative;
        width: 100%;
    }

    .text1 {
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
        position: relative;
        margin-top: 1em;
    }


    .body {
        padding: 0.5em 0em;
        margin: 0;
        margin-top: -14em;
        display: flex;
        flex-direction: column;
    }

    .tdimension {
        padding: 0;
        margin-top: -0.5em;
        margin-left: 4em;
        width: 25em;
        height: 15em;
    }

    .tdimension a {
        width: 45%;
        height: 50%;
        transform: rotateX(50deg);
    }

    .right {
        margin-left: -1em;
        text-align: center;
        width: 100%;
    }

    .right h2 {
        margin-top: -4em;
        font-size: 1.5em;
    }

    .right p {
        text-align: justify;
        font-size: 0.8em;
        padding: 0.5em 0.5em;
    }



    .slider-container {
        margin: 0;
        padding: 0;
    }

    .image-with-text {
        padding: 1em 0;
        flex-direction: column;
    }

    .image-with-text img {
        width: 18em;
        height: 10em;
        transform: rotateY(0deg);
    }

    .image-with-text img:hover {
        transform: rotateY(0deg);
    }

    .image-with-text .text {
        text-align: center;
        margin-top: -4em;
        width: 70%;
        font-size: 1em;
    }



    .section {
        flex-direction: column;
        padding: 1em;
    }

    .section h3 {
        margin-top: 2em;
    }

    iframe {
        margin-top: 1em;
        width: 18em;
    }

    .address p {
        color: #c0e6de;
        font-size: 1em;
    }

    .social li {
        list-style: none;
        margin-top: 0;
    }

    .social li a {
        text-decoration: none;
        color: #c0e6de;
        font-size: 1.2em;
    }

    .icon {
        display: flex;
        justify-content: space-around;
    }

    .contacts p {
        text-align: center;
    }

    .contacts span {
        margin-left: 1.5em;
        margin-bottom: 2em;
    }

    #footer-email {
        height: 2.5em;
        margin-bottom: 1em;
    }

    #footer-email::placeholder {
        color: #1F305E;
        text-align: center;
    }

    #footer-email-btn {
        height: 2.8em;
    }

    .rights {
        flex-direction: column;
        text-align: center;
    }

    .rights span {
        font-size: 0.8em;
    }

    .rights span a {
        color: #c0e6de;
        text-decoration: none;
    }

}

@media only screen and (min-width:354px) and (max-width:426px) {
    .navbar {
        padding: 0.5em 0.5em;
        width: 100%;
        height: 12%;
    }

    .logo img {
        width: 3.5em;
    }

    .slogan h2 {
        font-size: 0.7em;
        margin-left: -3em;
    }

    label.hamburger {
        height: 2em;
        width: 2em;
        top: 2.5em;
        right: 0.8em;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -8px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 8px);
    }

    .drawer-list {
        width: 100%;
    }
    .drawer-list ul {
        margin-top: 18em;
    }
    .drawer-list li a {
        font-size: 2em;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(15px);
    }

    .drawer-list li a {
        font-size: 2.5em;
    }

    label.hamburger>i {
        height: 1.5px;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 1.5px;
    }
    .back-video {
        object-fit: cover;
        height: 100vh auto;
    }

    .desktop {
        display: none;
    }

    .content h1 {
        margin-top: -160%;
        margin-left: -0.2em;
        font-size: 1.8em;
        position: relative;
        font-weight: 900;
    }

    .container-animation {
        position: relative;
        width: 100%;
    }

    .text1 {
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
        position: relative;
        margin-top: 1em;
    }



    .body {
        padding: 0.5em 0em;
        margin: 0;
        margin-top: -14em;
        display: flex;
        flex-direction: column;
    }

    .tdimension {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: -0.5em;
        margin-left: 4.5em;
        width: 25em;
        height: 20em;
    }

    .tdimension a {
        width: 50%;
        height: 50%;
        transform: rotateX(50deg);
    }

    .right {
        text-align: center;
        width: 90%;
    }

    .right h2 {
        margin-top: -4em;
        font-size: 1.75em;
    }

    .right h2::after {
        margin-left: 0.15em;
    }

    .right p {
        margin-left: -1em;
        width: 115%;
        text-align: justify;
        font-size: 1.15em;
        padding: 0.5em 0.5em;
    }



    .slider-container {
        margin: 0;
        padding: 0;
    }

    .image-with-text {
        padding: 1em 0;
        flex-direction: column;
    }

    .image-with-text img {
        width: 20em;
        height: 12em;
        transform: rotateY(0deg);
    }

    .image-with-text img:hover {
        transform: rotateY(0deg);
    }

    .image-with-text .text {
        text-align: center;
        margin-top: -2em;
        width: 70%;
        font-size: 1.3em;
    }



    .section {
        flex-direction: column;
        padding: 1em;
    }

    .section h3 {
        margin-top: 2em;
    }

    iframe {
        margin-top: 1em;
        width: 18em;
    }

    .address p {
        color: #c0e6de;
        font-size: 1em;
    }

    .social li {
        list-style: none;
        margin-top: 0;
    }

    .social li a {
        text-decoration: none;
        color: #c0e6de;
        font-size: 1.2em;
    }

    .icon {
        display: flex;
        justify-content: space-around;
    }

    .contacts p {
        text-align: center;
    }

    .contacts span {
        margin-left: 1.5em;
        margin-bottom: 2em;
    }

    #footer-email {
        height: 2.5em;
        margin-bottom: 1em;
    }

    #footer-email::placeholder {
        color: #1F305E;
        text-align: center;
    }

    #footer-email-btn {
        height: 2.8em;
    }

    .rights {
        flex-direction: column;
        text-align: center;
    }

    .rights span {
        font-size: 0.8em;
    }

    .rights span a {
        color: #c0e6de;
        text-decoration: none;
    }
}

@media only screen and (min-width:427px) and (max-width:769px) {
    .navbar {
        padding: 0.5em 0.5em;
        width: 100%;
        height: 12%;

    }

    .logo img {
        width: 4em;
    }

    .slogan h2 {
        font-size: 1.2em;
        margin-left: -3em;
    }

    label.hamburger {
        height: 2em;
        width: 1.5em;
        top: 1.5em;
        right: 1em;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -8px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 8px);
    }

    .drawer-list {
        width: 100%;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(15px);
    }

    .drawer-list li a {
        font-size: 2em;
    }

    label.hamburger>i {
        height: 1.5px;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 1.5px;
    }

    .social_item_inner li a {
        margin-left: 0.5em;
    }

    .back-video {
        object-fit: cover;
        height: 70vh auto;
    }

    .mobile {
        display: none;
    }

    .content h1 {
        margin-top: -60%;
        margin-left: -0.2em;
        font-size: 2.5em;
        position: relative;
        font-weight: 900;
    }

    .container-animation {
        position: relative;
        width: 100%;
    }

    .text1 {
        width: 100%;
        font-size: 1.5em;
        font-weight: 600;
        position: relative;
        margin-top: 1em;
    }



    .body {
        padding: 0.5em 0em;
        margin: 0;
        margin-top: -5em;
        display: flex;
    }

    .tdimension {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 15em;
        margin-left: 2em;
        width: 25em;
        height: 15em;
    }

    .tdimension a {
        width: 50%;
        height: 50%;
        transform: rotateX(50deg);
    }

    .right {
        text-align: center;
        width: 100%;
    }

    .right h2 {
        text-align: center;
        margin-top: 1em;
        margin-left: -9em;
        font-size: 1.5em;
    }

    .right p {
        margin-left: -10em;
        width: 120%;
        text-align: justify;
        font-size: 0.8em;
        padding: 0.5em 0.5em;
    }

    .right h2::after {
        margin-left: 5.5em;
        content: "";
        width: 0%;
        height: 0.1em;
        background: #1F305E;
        display: block;
        transition: 0.3s;
    }

    .right h2:hover::after {
        width: 10.7em;
    }




    .slider-container {
        padding: 1em 3em;
    }

    .image-with-text {
        display: flex;
        justify-content: center;
        gap: 5em;
        align-items: center;
        float: left;
        position: relative;
        -webkit-perspective: 1000;
    }

    .image-with-text img {
        box-shadow: 1px 1px 5px 2px #000000;
        border-radius: 0.5em;
        width: 20em;
        height: 13em;
        transform: rotateY(20deg);
        transition: transform 0.5s ease;
    }

    .image-with-text img:hover {
        transform: rotateY(0deg);
    }

    .image-with-text .text {
        text-transform: uppercase;
        width: 70%;
        text-shadow: 1px 1px #000000;
        color: #1F305E;
        font-size: 1.5em;
    }


    .section {
        flex-direction: column;
        padding: 1em;
    }

    .section h3 {
        margin-top: 2em;
    }

    iframe {
        margin-top: 1em;
        width: 18em;
    }

    .address p {
        color: #c0e6de;
        font-size: 1em;
    }

    .social li {
        list-style: none;
        margin-top: 0;
    }

    .social li a {
        text-decoration: none;
        color: #c0e6de;
        font-size: 1.2em;
    }

    .icon {
        display: flex;
        justify-content: space-around;
    }

    .contacts p {
        text-align: center;
    }

    .contacts span {
        margin-left: 1.5em;
        margin-bottom: 2em;
    }

    #footer-email {
        height: 2.5em;
        margin-bottom: 1em;
    }

    #footer-email::placeholder {
        color: #1F305E;
        text-align: center;
    }

    #footer-email-btn {
        height: 2.8em;
    }

    .rights {
        text-align: center;
    }

    .rights span {
        font-size: 0.8em;
    }

    .rights span a {
        color: #c0e6de;
        text-decoration: none;
    }
}

@media only screen and (min-width: 1023px) and (max-width:1025px) {
    .navbar {
        padding: 1em 1em;
        width: 100%;
        height: 12%;

    }

    .logo img {
        width: 6em;
    }

    .slogan h2 {
        font-size: 1.5em;
        margin-left: -3em;
    }

    label.hamburger {
        height: 2.5em;
        width: 2em;
        top: 1.5em;
        right: 1em;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -10px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 10px);
    }

    .drawer-list {
        width: 50%;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(15px);
    }

    .drawer-list li a {
        font-size: 2em;
    }

    label.hamburger>i {
        height: 1.5px;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 1.5px;
    }

    .social_item_inner li a {
        margin-left: 0.5em;
    }

    .back-video {
        object-fit: cover;
        height: 100vh auto;
    }

    .mobile {
        display: none;
    }

    .content h1 {
        margin-top: -6em;
        margin-left: -0.2em;
        font-size: 4em;
        position: relative;
        font-weight: 900;
    }

    .container-animation {
        position: relative;
        width: 100%;
    }

    .text1 {
        width: 100%;
        font-size: 3.5em;
        font-weight: 500;
        position: relative;
        margin-top: 0em;
    }



    .body {
        padding: 0.5em 0em;
        margin: 0;
        margin-top: -5em;
        display: flex;
    }

    .tdimension {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 20em;
        margin-left: 2em;
        width: 25em;
        height: 15em;
    }

    .tdimension a {
        width: 50%;
        height: 50%;
        transform: rotateX(40deg);
    }

    .right h2 {
        margin-left: -2em;
        text-align: start;
        margin-top: 1em;
        font-size: 1.5em;
    }

    .right p {
        width: 130%;
        margin-left: -9em;
        text-align: justify;
        font-size: 1em;
        padding: 0.5em 5em;
    }

    .right h2::after {
        content: "";
        width: 0%;
        height: 0.1em;
        background: #1F305E;
        display: block;
        transition: 0.3s;
    }

    .right h2:hover::after {
        width: 10.5em;
    }

    .ch-btn {
        margin-left: -4em;
    }



    .slider-container {
        padding: 1em 5em;
        width: 110%;
    }

    .image-with-text {
        display: flex;
        justify-content: center;
        gap: 3em;
        align-items: center;
        float: left;
        position: relative;
        -webkit-perspective: 1000;
    }

    .image-with-text img {
        box-shadow: 1px 1px 5px 2px #000000;
        border-radius: 0.5em;
        width: 20em;
        height: 13em;
        transform: rotateY(20deg);
        transition: transform 0.5s ease;
    }

    .image-with-text img:hover {
        transform: rotateY(0deg);
    }

    .image-with-text .text {
        text-transform: uppercase;
        width: 70%;
        text-shadow: 1px 1px #000000;
        color: #1F305E;
        font-size: 1.5em;
        margin-right: 2em;
    }


    .section {
        padding: 1em;
    }

    .section h3 {
        margin-top: 2em;
    }

    iframe {
        margin-top: 1em;
        width: 18em;
    }

    .address p {
        color: #c0e6de;
        font-size: 1em;
    }

    .social li {
        list-style: none;
        margin-top: 1em;
    }

    .social li a {
        text-decoration: none;
        color: #c0e6de;
        font-size: 1.2em;
    }

    .contacts p {
        text-align: center;
    }

    .contacts span {
        margin-left: 1.5em;
        margin-bottom: 2em;
    }

    #footer-email {
        height: 2.5em;
        margin-bottom: 1em;
    }

    #footer-email::placeholder {
        color: #1F305E;
        text-align: center;
    }

    #footer-email-btn {
        height: 2.8em;
    }

    .rights {
        text-align: center;
    }

    .rights span {
        font-size: 0.8em;
    }

    .rights span a {
        color: #c0e6de;
        text-decoration: none;
    }
}

@media only screen and (min-width: 1441px) and (max-width:2561px) {
    .navbar {
        padding: 1em 1em;
        width: 100%;
        height: 12%;

    }

    .logo img {
        width: 15em;
    }

    .slogan h2 {
        font-size: 3.5em;
        margin-left: -3em;
    }

    label.hamburger {
        height: 5em;
        width: 6em;
        top: 4em;
        right: 3em;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -25px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 25px);
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 2em;
        transform: translateY(35px);
    }

    label.hamburger>i {
        height: 5px;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 5px;
    }

    .drawer-list {
        width: 50%;
    }

    .drawer-list li a {
        font-size: 2em;
    }

    .drawer-list ul {
        margin-top: 15em;
    }

    .drawer-list li a {
        font-size: 6em;
        letter-spacing: 10px;

    }

    .drawer-list li a:hover {
        cursor: pointer;
        letter-spacing: 0;
        color: #1F305E;
        background: #c0e6de;
        text-shadow: 1px 1px #ffffff;
    }

    .social_item_inner {
        height: 15em;
    }

    .social_item_inner li a {
        margin-left: 0.5em;
    }

    .back-video {
        object-fit: cover;
        height: 100vh auto;
    }

    .mobile {
        display: none;
    }

    .content h1 {
        margin-top: -5em;
        margin-left: 0em;
        font-size: 10.5em;
        position: relative;
        font-weight: 900;
    }

    .container-animation {
        position: relative;
        width: 100%;
    }

    .text1 {
        width: 100%;
        font-size: 8em;
        font-weight: 500;
        position: relative;
        margin-top: 0em;
    }



    .body {
        padding: 0.5em 0em;
        margin: 0;
        margin-top: -5em;
        display: flex;
    }

    .tdimension {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 40em;
        margin-left: 8em;
        width: 60em;
        height: 80em;
    }

    .tdimension a {
        width: 80%;
        height: 40%;
        transform: rotateX(50deg);
    }

    .right h2 {
        margin-left: -2em;
        text-align: start;
        margin-top: 1em;
        font-size: 5em;
    }

    .right h2::after {
        content: "";
        width: 0%;
        height: 0.1em;
        background: #1F305E;
        display: block;
        transition: 0.3s;
    }

    .right h2:hover::after {
        width: 10.5em;
    }

    .right p {
        margin-left: -9em;
        text-align: justify;
        font-size: 2.5em;
        padding: 0.5em 5em;
    }

    .ch-btn {
        margin-left: -4em;
        font-size: 2.5em;
    }



    .slider-container {
        padding: 5em 10em;
        width: 110%;
        height: 80vh;
    }

    .image-with-text {
        display: flex;
        justify-content: center;
        gap: 10em;
        align-items: center;
        float: left;
        position: relative;
        -webkit-perspective: 1000;
    }

    .image-with-text img {
        box-shadow: 1px 1px 5px 2px #000000;
        border-radius: 0.5em;
        width: 60em;
        height: 50em;
        transform: rotateY(20deg);
        transition: transform 0.5s ease;
    }

    .image-with-text img:hover {
        transform: rotateY(0deg);
    }

    .image-with-text .text {
        text-transform: uppercase;
        width: 30%;
        text-shadow: 1px 1px #000000;
        color: #1F305E;
        font-size: 4em;
    }


    .section {
        padding: 3em;
    }

    .section h3 {
        margin-top: 2em;
        font-size: 3em;
    }

    iframe {
        margin-top: 1em;
        width: 40em;
        height: 30em;
    }

    .address p {
        color: #c0e6de;
        font-size: 3em;
    }

    .social li {
        list-style: none;
        margin-top: 4em;
    }

    .social li a {
        text-decoration: none;
        color: #c0e6de;
        font-size: 3em;
    }

    .contacts p {
        text-align: center;
        font-size: 3em;
    }

    .contacts span {
        margin-left: 1.5em;
        margin-bottom: 2em;
    }

    .footer-email-form h4 {
        font-size: 3em;
    }

    #footer-email {
        width: 13.5em;
        height: 3.5em;
        border-radius: 0.5em;
        outline: none;
        border: none;
        padding: 1em;
        font-size: 2.5em;
    }

    #footer-email::placeholder {
        color: #1F305E;
        text-align: center;
    }

    #footer-email-btn {
        width: 8em;
        height: 3.6em;
        border-radius: 0.5em;
        background-color: #777eff;
        font-size: 2.5em;
        outline: none;
        border: none;
        color: #c0e6de;
    }

    #footer-email-btn:hover {
        cursor: pointer;
        color: #000;
        transition: all 0.5s ease-out;
    }

    .rights {
        text-align: center;
    }

    .rights span {
        font-size: 2em;
    }

    .rights span a {
        color: #c0e6de;
        text-decoration: none;
    }
}