* {   
body {
    box-sizing: border-box;
    margin: 0;
    background-color: #EEEEEE;
    min-height: 100vh;
}
body::selection {
    background-color: #D85454; 
    color: #ffffff; 
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
    width: 85%;
    margin: auto;
    /* background-color: #D85454; */
}
p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
}
html {
    scroll-behavior: smooth;
} 
/*=======================*/
#nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#nav {
    background-color: #ffffff;
    box-shadow: 0px 1px 11px #9b9b9b6e;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 25px 0;
    z-index: 100;
}
#nav .container .nav-logo a {
    font-size: 30px;
    font-weight: 700;
}
#nav .container .nav-logo span {
    color: #CE1212;
}
#nav .nav-links ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: relative;
}
#nav .nav-links ul li {
    font-size: 17px;
    padding: 0 15px;
    font-weight: 600;
    position: relative;
}
#nav .nav-links ul span a {
    color: #000000;
}
#nav .nav-links ul span a::after {
    content: '';
    background-color: #CE1212;
    width: 47px;
    height: 2.5px;
    position: absolute;
    top: 28px;
    left: 15px;
}
#nav .nav-links ul a {
    color: #7d7d7d;
    /* border-bottom: #CE1212 2px solid; */
}
#nav .nav-links .under-line {
    background-color: #CE1212;
    width: 0px;
    height: 2.5px;
    position: absolute;
    top: 28px;
    left: 20%;
    transition: width 1s;
    transition-duration: 0.5s;
}
#nav .nav-links .under-line-one:hover .under-line {
    width: 43px;
    transition-duration: 0.5s;
}
#nav .nav-links .under-line-two:hover .under-line {
    width: 52px;
    transition-duration: 0.5s;
}
#nav .nav-links .under-line-tree:hover .under-line {
    width: 58px;
    transition-duration: 0.5s;
}
#nav .nav-links ul a:hover {
    color: #000000;
    transition-duration: 0.5s;
}
#nav .nav-dark-mood {
    font-size: 25px;
}
/*=======================*/
.container .header {
    display: flex; 
    height: 100vh;
    /* background-color: #ffffff; */
    align-items: center;
    margin: 60px 0;
}
.container .header h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #37373F;
    margin: 10px 0;
}
.container .header h2::selection {
    background-color: #D85454; 
    color: #ffffff;  
}
.container .header p {
    font-weight: 400;
    color: #4F4F5A;
    line-height: 25.6px;
}
.content-left {
    width: 50%;
    /* background-color: #CE1212; */
}
.content-left-img {
    width: 50%;
    /* background-color: #CE1212; */
    display: flex;
    justify-content: flex-end;
}
.content-left-img img {
    width: 80%;
    padding: 20px 0;
    /* background-color: #CE1212; */
    filter: drop-shadow(0px 1px 11px #545454);
}
.content-left-img img:hover {
    position: relative;
    animation-name: tilt-n-move-shaking;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-duration: alternate;
}
@keyframes tilt-n-move-shaking {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, 5px) rotate(5deg); }
    50% { transform: translate(0, 0) rotate(0eg); }
    75% { transform: translate(-5px, 5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
.container button {
    width: 140px;
    height: 43px;
    margin: 20px 0 0 0px ;
    padding: 10px 0;
    background-color: #CE1212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    transition-property: background-color;
    transition-duration: 0.8s;
}
.container .but-left:hover {
    background-color:#EC2403 ;
}
.container .but-left {
    margin-right: 30px;
    border-radius: 25px;
    border-top-left-radius: 0;
    background-color: #CE1212;
}
.container .but-right {
    color: #000000;
    position: relative;
    height: 50px;
}
/* .container .but-right::after {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 15px;
    background-color: #ffffff;
} */
/* .container .but-right::before {
    content: '';
    width: 120px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 25px;
    background-color: #ffffff;
} */
 /*=====section-two=====*/
.section {
    min-height: 122vh;
    background-color: #ffffff;
    margin: 50px 0;
 }
 .section .title {
    text-align: center;
    padding-top: 60px;
 }
 .section .title h3 {
    font-family: "Inter", sans-serif;
    color: #7F7F90;
    font-size: 14px;
    font-weight: 400;
 }
.section .title p {
    font-family: "Amatic SC", sans-serif;
    color:#212529;
    font-size: 50px;
    margin: -15px 0 0 0;
 }
.section .title span {
    font-family: "Amatic SC", sans-serif;
    color:#CE1212;
}
.section .container .box-image {
    display: flex;
    align-items: center;
}
.section .container .cards-img .inner {
    background-color: #ffffff;
    box-shadow: 0px 1px 9px #9b9b9b60;
    border-radius: 10px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.section .container .cards-img {
    width: 33.333%;
    margin: 50px 0;
    padding: 0 15px;
    transition: transform 0.5s;
}
.section .container .cards-img:hover {
    transform: scale(1.05);
}
#wave {
    position: absolute;
    top: 300px;
}
.section .container .box-image .inner .layer {
    background-color:#ffffff65;
    width: 11.5%;
    height: 30%;
    border-radius: 5px;
    position: absolute;
    top: 25px;
    right: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition-duration: 0.3s;
}
.section .container .box-image .inner:hover .layer {
    right: 12px;
    transition-delay: 0.5s;
}
.section .container .box-image .inner .layer i {
    color: #958E8C;
    font-size: 18px;
    padding: 10px 0;
    transition-duration: 0.3s;
}
.section .container .box-image .inner i:hover  {
    color: #000000;
}
.section .container .cards-img img {
    width: 100%;
    border-radius: 10px;
}
.container .cards-img .data-card {
    text-align: center;
}
.container .cards-img .data-card h2 {
    font-family: "Inter", sans-serif;
    color: #212529;
    font-size: 18.72px;
}
.container .cards-img .data-card span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #7F7F90;
}
.container .cards-img .data-card p {
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    color: #7F7F90;
}
/*=====section-tree=====*/
.section-tree {
    height: 180vh;
    background-color: #EEEEEE;
    margin: 50px 0;
}
.section-tree .title-section-tree {
    text-align: center;
    padding-top: 20px;
 }
.section-tree .title-section-tree h3 {
    font-family: "Inter", sans-serif;
    color: #7F7F90;
    font-size: 14px;
    font-weight: 400;
 }
.section-tree .title-section-tree p {
    font-family: "Amatic SC", sans-serif;
    color:#212529;
    font-size: 50px;
    margin: -15px 0 0 0;
 }
.section-tree .title-section-tree span {
    font-family: "Amatic SC", sans-serif;
    color:#CE1212;
}
.container-img {
    column-count: 3;
    column-gap: 16px;
    margin: 0px 0 60px 0;
    margin: 50px 0;
}
.section-tree-box-img {
    min-height: 100px;
    padding: 10px 5px;
}
.section-tree-box-img .inner {
    border: #ffffff 4px solid;
}
.section-tree-box-img img {
    width: 100%;
    display: block;
    /* break-inside: avoid; */
    transition-duration: 0.5s;
}
.section-tree-box-img .inner {
    position: relative;
    overflow: hidden;
}
.section-tree-box-img .layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00000093;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition-duration: 0.4s;
}
.section-tree-box-img .layer::selection {
    background-color: #AE1C11;
}
.section-tree-box-img .layer span {
    font-size: 24px;
    font-family: "Inter", sans-serif;
}
.section-tree-box-img .layer p {
    text-align: center;
}
.section-tree-box-img .inner:hover img {
   transform: scale(1.09);
}
.section-tree-box-img .inner:hover .layer {
   top: 0;
}
/* section-four */
.section-four {
    background-color: #ffffff;
    height: 182vh;
}
.section-four .title-section-four {
    text-align: center;
    padding-top: 60px;
 }
.section-four .title-section-four h3 {
    font-family: "Inter", sans-serif;
    color: #7F7F90;
    font-size: 14px;
    font-weight: 400;
 }
.section-four .title-section-four p {
    font-family: "Amatic SC", sans-serif;
    color:#212529;
    font-size: 50px;
    margin: -15px 0 0 0;
 }
.section-four .title-section-four span {
    font-family: "Amatic SC", sans-serif;
    color:#CE1212;
}
iframe {
    width: 100%;
    height: 350px;
    margin: 20px 0;
}
/* contact-data */
.contact-data {
    display: flex;
    column-count: 3;
    /* column-gap: 40px; */
    margin: 15px 0;
}
.section-four .contact-data .data {
    background-color: #F5F5F5;
    width: 100%;
    display: flex;
    align-items: center;
}
.text-data h2 {
    margin-bottom: -12px;
    color:#7D7D7D;
    font-family: "Inter", sans-serif;
}
.icon-map {
    background-color: #CE1212;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    margin: 0 18px;
}
.icon-map i {
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    top: 15px;
    left: 14px;
}
/* form */
form .layout {
    box-shadow: 0px 1px 10px #9b9b9b42;
    min-height: 50vh;
    width: 100%;
    font-size: 13px;
}
form .layout input {
    width: 50%;
    height: 50px;
    margin: 20px 8px;
    padding: 0 10px;
    border:#E8E3E3 2px solid;
 }
form .layout .input-enter {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
form .layout .input-enter-two {
    margin: 0px 8px;
    display: flex;
    align-items: center;
}
form .layout .input-enter-two .Subject {
    width: 100%;
    margin: 0 10px;
}
form .input-area {
    margin: 20px 18px;
    display: flex;
    background-color: #212529;
}
form .layout .text-area {
    width: 100%;
    height: 20vh;
    border:#E8E3E3 2px solid;
    padding: 20px 5px;
}
form .layout .btn-form {
    display: flex;
    justify-content: center;
}
form .layout button {
    margin: 20px 0;
    width: 160px;
}
/* section-end */
.section-end {
    min-height: 30vh;
    background-image: url(image/imgi_13_textured-metal-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px 0;
    /* margin: 10px 0; */
}
.layout-container {
    display: flex;
    column-count: 3;
    column-gap: 16px;
}
.section-end .box-one {
    width: 25%;
}
.section-end .column-one {
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: -30px;
}
.section-end .column-one img {
    width: 42px;
    padding-right: 10px;
}
.section-end .column-one h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}
.section-end .column-one h2 span {color: #CE1212;}
.section-end .box-one h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18.72px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    position: relative;
}
.section-end .box-one h3::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color:#585858;
}
.section-end .box-one .layer {text-align: center;}
.section-end .box-one .layer i {
    color:#ffffff;
    font-size: 25px;
    width: 11.5%;
    height: 30%;
    margin: 10px 15px;
    text-align: center; 
}
.section-end .box-two h3 {
    font-family: "Inter", sans-serif;
    font-size: 18.72px;
    font-weight: 700;
    color: #ffffff;
    margin: 25px 0 0 0;
}
.section-end .box-two .ul-box {
    display: flex;
    align-items: center;
}
.section-end .box-two ul {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin: 5px 0;
}
.section-end .box-two li {
    margin: 5px 0;
    padding: 5px 5px;
    width: 500px;
    transition-duration: 0.2s;
}
.section-end .box-two li:hover {
   background-color: #212121;
}
.section-end p {
    color: #ffffff;
    margin: 15px 0;
} 
.section-end .box-two {
    width: 50%;
}
.section-end .box-two .column-two{
    width: 100%;
}
.section-end .box-two .data-email {
    width: 85%;
    height: 36px;
    margin-right: 5px ;
    padding: 0 10px;
}
form {
    display: flex;
    align-items: center;
}
form i {
    color: #ffffff;
}
.section-end .box-two button {
    width: 110px;
    height: 40px;
    border-radius: 0%;  
    margin: 0 0;
}
.section-end .box-tree h4 {
    font-family: "Inter", sans-serif;
    font-size: 18.72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}
.p-content {
    margin-top: -40px;
}
.section-end .box-tree p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #ffffff;
}
.i-icons i {
    display: flex;
    flex-direction: column;
    margin: 0 20px 20px 20px;
    font-size: 22px;
    color: #CE1212;
}
.i-box {
    display: flex;
    align-items: center;
}