@charset "utf-8";
:root {
    --gd: rgb(63, 63, 63);
    --gl: rgb(138, 138, 138);
    --yd: rgb(204, 121, 3);
    --yl: #ffae39;
    --w: #fff;
    --b: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.6s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

.fa {
    transition: none;
    margin: 5px;
}

@media (min-width:260px) {
    .full {
        position: relative;
        top: 0;
        left: 0;
        background-color: #fff;
        min-height: 100vh;
    }
    .contact {
        position: absolute;
        top: 0;
        left: 0;
        min-height: 100vh;
        z-index: 4;
        width: 100%;
    }
    .icons {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        overflow: hidden;
        z-index: 3;
    }
    .icons .fa {
        margin: 12px;
        font-size: 36px;
        color: rgb(255, 174, 57, 0.8);
    }
    .box-full {
        max-width: 100%;
        background-color: #000000a8;
        padding: 30px;
        margin: 20px;
        border-radius: 6px;
    }
    .box-full h1 {
        text-align: center;
        color: var(--w);
        margin-bottom: 8px;
    }
    .box-tools {
        gap: 30px;
        margin-bottom: 30px;
        display: grid;
    }
    .tool input,
    .tool textarea {
        background-color: #00000073;
        border: none;
        border-bottom: 2px solid var(--yl);
        outline: none;
        font-size: 20px;
        color: var(--w);
        padding: 8px;
        width: 100%;
    }
    .tool textarea {
        width: 100%;
        overflow: hidden;
        height: 100px;
        resize: none;
    }
    .box-links {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .box-links input {
        padding: 10px;
        margin: 10px 14px;
        font-size: 22px;
        border: none;
        border-radius: 10px;
        outline: none;
        color: var(--w);
        background-color: var(--yl);
        width: 140px;
        display: block;
        margin: 10px auto;
    }
    .box-links input:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
    .box-links a,
    .box-links a .fa {
        color: var(--w);
        font-size: 24px;
        margin: 0 5px;
        transition: all 0.4s;
    }
    .box-links a:hover .fa {
        transform: scale(1.4);
        transition: all 0.4s;
    }
}

@media (min-width:650px) {
    .full {
        position: relative;
        top: 0;
        left: 0;
        background-color: #fff;
        min-height: 100vh;
    }
    .contact {
        position: absolute;
        top: 0;
        left: 0;
        min-height: 100vh;
        z-index: 4;
        width: 100%;
    }
    .icons {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        overflow: hidden;
        z-index: 3;
    }
    .icons .fa {
        margin: 12px;
        font-size: 36px;
        color: rgb(255, 174, 57, 0.8);
    }
    .box-full {
        max-width: 630px;
        background-color: #000000a8;
        padding: 30px;
    }
    .box-tools {
        gap: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .tool input,
    .tool textarea {
        background-color: #00000073;
        border: none;
        border-bottom: 2px solid var(--yl);
        outline: none;
        font-size: 20px;
        color: var(--w);
        padding: 8px;
    }
    .tool textarea {
        width: 100%;
        overflow: hidden;
        height: 100px;
        resize: none;
    }
    .box-links input {
        padding: 10px;
        margin: 10px 14px;
        font-size: 22px;
        border: none;
        border-radius: 10px;
        outline: none;
        color: var(--w);
        background-color: var(--yl);
        width: 140px;
    }
    .box-links input:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
    .box-links a,
    .box-links a .fa {
        color: var(--w);
        font-size: 24px;
        margin: 0 8px;
        transition: all 0.4s;
    }
    .box-links a:hover .fa {
        transform: scale(1.4);
        transition: all 0.4s;
    }
}