@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');

:root {
    --img1:url("./Assets/Images/IMG_20240322_103257.jpg");
    --img2:url("./Assets/Images/IMG_20240322_121150.jpg");
    --img3:url("./Assets/Images/IMG_20240322_121227.jpg");
    --img4:url("./Assets/Images/IMG_20240322_121518.jpg");
    --img5:url("./Assets/Images/IMG_20240322_121541.jpg");
    --img6:url("./Assets/Images/IMG_20240322_134354.jpg");
    --img7:url("./Assets/Images/IMG_20240322_134545.jpg");
    --img8:url("./Assets/Images/IMG_20240322_135446.jpg");
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html , body {
	width: 100%;
    height: fit-content;
    background-color: #c0e6de;
	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: -35em;
}
.container-animation {
    text-align: center;
    position: relative;
}
.container-animation span {
    display: inline-block; 
}
.text1 {
    color:#1F305E;
    font-size: 3em;
    font-weight: 600;
    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;
    transition: 0.3s;
}
.text1:hover::after {
    width: 100%;
}
@keyframes text {
    0% {
      margin-left: -40em;
    }
    100% {
      margin-left: 0em;
    }
}


.text-cover {
    width: 100%;
    padding: 0 2em;
    font-style: oblique;
}
.text-cover>p,
.content>p {
    color: #1F305E;
    font-size: 1em;
    text-align: justify;
    font-weight: 500;
    margin-top: 1em;
}
.profile {
    border-radius: 0.5em;
    box-shadow: 2px 2px 10px 5px #525252;
    padding: 3em;
    margin: 2em;
    background-color: rgba(0,0,0,0.1);
}
.para-section {
    display: flex;
    justify-content:flex-start;
    align-items: flex-end;
    gap: 1em;
}
.right h1,
.right h2,
.right h4 {
    color: #1F305E;
}
.right h2,
.right h4 {
    text-transform: uppercase;
}
.left img {
    width: 13em;
    height: 15em;
}
.heading-title {
    font-size: 2em;
    text-align: center;
    color: #003153;
}




#CrossFade {
    background: #c0e6de;
    display: flex;
    align-items: center;
    margin-left: 8em;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}
#CrossFade img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    background: #000;
    backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.4) rotate(12deg);
    animation: CrossFade 54s infinite;
}
#CrossFade img:nth-child(8) {
    animation-delay: 6s;
  }
#CrossFade img:nth-child(7) {
    animation-delay: 12s;
}
#CrossFade img:nth-child(6) {
    animation-delay: 18s;
}
#CrossFade img:nth-child(5) {
    animation-delay: 24s;
}
#CrossFade img:nth-child(4) {
    animation-delay: 30s;
}
#CrossFade img:nth-child(3) {
    animation-delay: 36s;
}
#CrossFade img:nth-child(2) {
    animation-delay: 42s;
}
#CrossFade img:nth-child(1) {
    animation-delay: 48s;
}

@keyframes CrossFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}
  








.registration {
    border-radius: 0.5em;
    box-shadow: 2px 2px 10px 5px #525252;
    padding: 3em;
    margin: 2em;
    background-color: rgba(0,0,0,0.1);
}
.certificates {
    text-align: center;
}
.certificates p {
    margin-top: 1em;
    color: #636000;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
}
.certificates iframe {
    width: 100%;
    height: 100vh;
    border: none;
}






.section {
    margin-top: 2em;
    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;
    }
    .header {
        margin-top: 3em;
    }
    .hero {
        height: max-content;
        padding: 0;
    }
    .text1 {
        font-size: 2em;
    }
    .text-cover {
        width: 100%;
        padding: 1em;
    }
    .text-cover>p,
    .content>p {
        font-size: 0.8em;
    }
    .profile {
        margin: 0.5em;
        padding: 0.8em;
    }
    .para-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.6em;
    }
    .right h1,
    .right h2,
    .right h4 {
        color: #1F305E;
        text-align: center;
    }

    .right h2,
    .right h4 {
        text-transform: uppercase;
    }

    
    

    #CrossFade {
        margin-left: 0;
        margin-top: 2em;
        height: 40vh;
    }
    



    .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;
        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;
    }


    .header {
        margin-top: -45em;
    }
    .hero {
        height: max-content;
        padding: 0;
    }
    .text1 {
        font-size: 2em;
    }
    .text-cover {
        width: 100%;
        padding: 1em;
    }
    .text-cover>p,
    .content>p {
        font-size: 0.8em;
    }
    .profile {
        margin: 0.5em;
        padding: 0.8em;
    }
    .para-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.6em;
    }
    .right h1,
    .right h2,
    .right h4 {
        color: #1F305E;
        text-align: center;
    }

    .right h2,
    .right h4 {
        text-transform: uppercase;
    }

    
    #CrossFade {
        margin-left: 0.7em;
        margin-top: 2em;
        height: 50vh;
    }
    


    .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;
    }
    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: 10em;
    }
    .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;
    }





    .header {
        margin-top: 1em;
    }
    .hero {
        height: max-content;
        padding: 0;
    }
    .text1 {
        font-size: 2em;
    }
    .text-cover {
        width: 100%;
        padding: 2em;
    }
    .text-cover>p,
    .content>p {
        font-size: 0.8em;
    }
    .profile {
        margin: 1em;
        padding: 1em;
    }
    .para-section {
        justify-content: flex-start;
        align-items: flex-end;
        font-size: 0.6em;
    }
    .right h1,
    .right h2,
    .right h4 {
        color: #1F305E;
        text-align: start;
    }

    .right h2,
    .right h4 {
        text-transform: uppercase;
    }
    

    #CrossFade {
        margin-left: 0em;
        height: 80vh;
    }
    


    .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;
    }
    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 {
        margin-top: -30em;
        height: max-content;
        padding: 0;
    }
    .text1 {
        font-size: 2em;
    }
    .text-cover {
        width: 100%;
        padding: 1em;
    }
    .text-cover>p,
    .content>p {
        font-size: 0.8em;
    }
    .profile {
        margin: 1em;
        padding: 1em;
    }
    .para-section {
        justify-content: flex-start;
        align-items: flex-end;
    }
    .right h1,
    .right h2,
    .right h4 {
        color: #1F305E;
        text-align: start;
    }
    .right h2,
    .right h4 {
        text-transform: uppercase;
    }


    #CrossFade {
        margin-left: 4.5em;
        height: 80vh;
    }
    

    
    .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;
    }
    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;
    }



    .header {
        margin-top: -73em;
        padding: 1em;
    }
    .hero {
        height: max-content;
        padding: 0;
    }
    .text1 {
        font-size: 7em;
        margin-top: 4.5em;
    }
    .text-cover {
        width: 100%;
    }
    .text-cover>p,
    .content>p {
        font-size: 2.8em;
        padding: 0 2em;
    }
    .profile {
        margin: 2em;
        padding: 2em;
    }
    .para-section {
        margin-left: 6em;
        justify-content: flex-start;
        align-items: flex-end;
    }
    .left img {
        width: 25em;
        height: 25em;
    }
    .right h1,
    .right h2,
    .right h4 {
        color: #1F305E;
        text-align: start;
    }
    .right h2,
    .right h4 {
        text-transform: uppercase;
    }
    .right h1 {
        font-size: 5em;
    }
    .right h2 {
        font-size: 3em;
    }
    .right h4 {
        font-size: 2em;
    }


    #CrossFade {
    margin-left: 30em;
}




    .section {
        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;
    }
}