/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-yellow-color: #FFCF49;
    --main-blue-color: #1F2A3E;
    --main-transition: 0.5s;
    --p-color: #ccc;
    --padding-top: 50px;
    --padding-bottom: 50px;
}

/* End Variables */


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Start Contanier */

.contanier {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contanier {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .contanier {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .contanier {
        width: 1170px;
    }
}

/* End Contanier */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}

.main-title {
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    width: fit-content;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
}

@media (max-width: 768px){
    .main-title{
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 23px;
    }
}

.main-title a {
    color: black;
}

.main-title:hover {
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}


.main-title:hover a {
    color: white;
    transition-delay: 0.5s;
}

.main-title::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title:hover::before {
    z-index: -1;
    animation-name: left-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.main-title:hover::after {
    z-index: -1;
    animation-name: right-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* Start Mage Menu */

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    /* position: fixed; */
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    display: none;
}

.menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 20% 0 0 0;
    text-align: center;
}

.menu-items ul li {
    margin-bottom: 20px;
}

.menu-items ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.menu-items ul li a:hover {
    color: #00bcd4;
}

.close-icon {
    color: white;
}

/* End Mage Menu */

/* End Global Rules */

/*********************************************************************************************/
/* start des  */
/* start header */

.top {
    position: relative;
    padding-bottom: var(--padding-bottom);

}

.top .contanier {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top .special-heading {
    color: #d3d7dd;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    z-index: -1;
    position: relative;

}

@media (max-width: 768px) {
    .top .special-heading{
        font-size: 50px;
    }
}

.top .special-heading+p {
    color: var(--main-blue-color);
    letter-spacing: 4px;
    font-size: 40px;
    font-weight: 600;
    z-index: 5;
    bottom: 88px;
    position: absolute;
}

@media (max-width: 768px) {
    .top .special-heading+p {
        font-size: 25px;
        bottom: 50px;
    }
}

/* end header */

.info .contanier p {
    padding-left: 5px;
    border-left: 7px solid var(--main-blue-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: -50px;
}

/* start image design */
.poth-section {
    position: relative;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);

}

.poth-section .contanier {
    display: flex;
    align-items: center;
    justify-content: center;

}

.left-section {
    flex: 1;
    margin-right: 5px;
}

.left-section img {
    width: 100%;
    height: 500px;
}

.right-section {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-section img {
    width: 50%;
    height: 250px;
}

@media (max-width:767px) {
    .poth-section .contanier {
        flex-direction: column;
    }
    .right-section {
        margin: 20px 50px;
        display: none;
    }
    .right-section img {
        height: 180px;
    }
    .left-section {
        margin: 5px 50px;
    }
}

/* start btn */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 30px auto;
    border-radius: 24px 15px 24px 15px;
}

.btn a {
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: white;
    font-weight: bold;
    border-radius: 24px 15px 24px 15px;
}

.btn a:hover {
    background-color: white;
    border: 1px solid var(--main-blue-color);
    color: var(--main-blue-color);
}

/* end btn */

/* ######################################################## */