@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%;
    height: fit-content;
	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;
}
label.hamburger {
    z-index: 99999;
    height: 45px;
	width: 45px;
	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;
}




.hero {
    background-color: #c0e6de;
    width: 100%;
    height: auto;
    margin-top: 20em;
    padding: 0 1em;
}
.container-animation {
    text-align: center;
    position: relative;
}
.container-animation span {
    display: inline-block; 
}
.text1 {
    color:#1F305E;
    font-size: 3.5em;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: -0.1em;
    position: relative;
    text-transform: uppercase;
  /*   shorthand animation property: name | duration | iteration count */
    animation-name: text;
    animation-duration: 4s;
}
.text1::after {
    content: "";
    width: 0%;
    height: 0.05em;
	background: #1F305E;
    display: block;
    margin-top: -0.25em;
    margin-bottom: 0.5em;
    transition: 0.3s;
}
.text1:hover::after {
    width: 100%;
}
@keyframes text {
    0% {
      margin-left: -40em;
    }
    100% {
      margin-left: 0em;
    }
}

.table-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.container-table {
    text-align: center;
    overflow: hidden;
    box-shadow: 1px 1px 5px 2px #000;
    width: 48%;
    height: 120vh;
    border-radius: 5px;
    margin-bottom: 4em;
}
thead>tr>th{
    padding: 2vh 0;
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 500;
    color: #003153;
    text-shadow: 1px 1px  #000000;
}
.heading-content {
    display: flex;
    position: relative;
}
.image{
    margin-top: 1em;
    border-radius: 0.5em;
    height: 10em;
    width: 15em;
    transition: all 0.5s ease-in-out;
}
.image:hover {
    scale: 1.03;
    box-shadow: 2px 2px 10px 5px #000;
}
tbody>tr>td{
    font-size: 1.5em;
    border: 1px solid #000000;
    border-radius: 0.1em;
    font-weight: 600;
    background-color: #1F305E;
    text-transform: uppercase;
    text-shadow: 0.5px 0.5px #000000;
    transition: all 0.5s ease-in-out;
}
tbody>tr>td:hover{
    box-shadow: 1px 1px 5px 2px #000000;
    background-color: #FCE0C7;
    scale: 1.03;
}
tbody>tr>td>a{
    text-decoration: none;
    color: #c0e6de;
}
tbody tr td:hover a {
    color: #000000;
    transition: all 0.5s ease-in-out;
    text-shadow: 1px 1px  #00ffff;
} 




.section {
    margin-top: 22em;
    padding-top: 2em;
    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: #fee7b2;
}
.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: 3em;
    }
    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);
    }
    .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;
    }





    .hero {
        height: max-content;
        padding: 0;
        padding-top: 35em;
    }
    .text1 {
        font-size: 2em;
    }
    .table-container {
        flex-direction: column;
        padding: 0.5em;
    }
    .container-table {
        position: relative;
        width: 100%;
        height: 100vh;
    }
    thead>tr>th{
        font-size: 1em;
    }
    tbody>tr>td{
        font-size: 0.8em;
        letter-spacing: 2px;
    }




    .section {
        margin-top: 45em;
        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;
        height: 3.5em;
    }
    label.hamburger {
        height: 2em;
        width: 2em;
        top: 2em;
        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;
    }



    .hero {
        margin-top: 61em;
    }
    .text1 {
        font-size: 1.5em;
        margin-bottom: 1em;
    }
    .table-container {
        flex-direction: column;
    }
    .container-table {
        position: relative;
        width: 100%;
        height: 100vh;
    }
    thead>tr>th{
        font-size: 1em;
    }
    .heading-content {
        flex-direction: column;
    }
    tbody>tr>td{
        font-size: 0.8em;
        letter-spacing: 2px;
    }



    .section {
        margin-top: 60em;
        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;
    }
    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%;
    }
    .drawer-list ul {
        margin: 0;
        padding: 0;
        margin-top: 12em;
    }
    .drawer-list ul li {
        margin: 0;
        padding: 0;
        padding-top: 1em;  
    }
    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;
    }






    .hero {
        margin-top: 52em;
    }
    .text1 {
        font-size: 2.5em;
    }
    .table-container {
        flex-direction: column;
    }
    .container-table {
        width: 100%;
        height: 100vh;
        border-radius: 5px;
        margin-bottom: 4em;
    }
    thead>tr>th{
        padding: 0;
        font-size: 1.8em;
    }
    .heading-content {
        flex-direction: column;
    }
    .image{
        width: 18em;
    }
    tbody>tr>td{
        font-size: 1.2em;
        letter-spacing: 2px;
    }





    .section {
        margin-top: 52em;
        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;
    }
    label.hamburger {
        height: 2.5em;
        width: 2em;
        top: 1.5em;
        right: 1.5em;
    }
    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;
    }





    .hero {
        padding: 0;
    }
    .text1 {
        font-size: 3em;
    }
    .table-container {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .container-table {
        width: 45%;
        height: 120vh;
    }
    thead>tr>th{
        font-size: 1.3em;
    }
    tbody>tr>td{
        font-size: 1em;
    }




    .section {
        margin-top: 20em;
        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;
    }
    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;
    }







    .hero {
        background-color: #c0e6de;
        width: 100%;
        height: auto;
        margin-top: 35em;
        padding: 0 1em;
    }
    .text1 {
        font-size: 5em;
    }
    .container-table {
        border-radius: 1em;
        width: 45%;
        height: 120vh;
    }
    thead>tr>th{
        font-size: 3.5em;
    }
    .image{
        height: 12em;
        width: 18em;
    }
    tbody>tr>td{
        font-size: 3em;
    }






    .section {
        margin-top: 35em;
        padding: 3em;
    }
    .section h3 {
        margin-top: 1.5em;
        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: 3.5em;
    }
    .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;
    }
}