*{
    margin: 0;
    padding: 0;
}
:root{
    --sxblack-dark: #000;
    --trymid-dark: #252525;
    --tnwhite-dark: #fff;

    --sxblack-light: #fff;
    --trymid-light: #252525;
    --tnwhite-light: #000;
}

.hLight{
    background-image: url(../imgs/bkg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hDark{
    background-image: url(../imgs/dkbkg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

[color-scheme="light"]{
    --sxblack: var(--sxblack-light);
    --trymid: var(--trymid-light);
    --tnwhite: var(--tnwhite-light);
}

[color-scheme="dark"]{
    --sxblack: var(--sxblack-dark);
    --trymid: var(--trymid-dark);
    --tnwhite: var(--tnwhite-dark);
}

@font-face{
	font-family: Agency FB;
	src: url(assets/font/AGENCYR.ttf);
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Agency FB;
    width: 100%;
    background: var(--sxblack);
}
header{
    width: 100%;
    height: 100vh;
    position: relative;
}

nav ul{
    list-style-type: none;
}
nav li{
    padding: 25px 30px;
    color: var(--tnwhite);
    cursor: pointer;
    font-size: 18px;
}
nav li:hover{
    background-color: var(--tnwhite);
    color: var(--sxblack);
}
#toggleBtn, #menubtn{
    color: var(--tnwhite);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 220px;
}
#toggleBtn:hover, #menuBtn:hover{
    font-size: 1.7rem;
}
.social i{
    display: block;
    font-size: 1.5rem;
    color: var(--tnwhite);
    margin-bottom: 20px;
    cursor: pointer;
}
.social{
    position: fixed;
    left: 20px;
    top: 50%;
    z-index: 3;
}
.logo{
    position: absolute;
}
.logo img{
    width: 240px;
}
#f:hover{
    color: #1970d4;
}
#i:hover{
    color: #b810eb;
}

/*.............about & services................*/
#about, #services{
    width: 100%;
    display: flex;
    align-items: center;
}

.slide_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide_container{
    width: 60%;
    /* background: var(--trymid); */
}
.slide, .sslide{
    text-align: center;
    width: 100%;
    display: none;
}
.slide img, .sslide img{
    width: 100%;
    border-radius: 30px;
}
.sshow{
    display: block !important;
}
.dots{
    display: flex;
    justify-content: center;
}
.dot{
    width: 16px;
    height: 16px;
    background: var(--trymid);
    border-radius: 50%;
    margin: 10px;
}
.text_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.text_container{
    width: 80%;
}
.text_container h3{
    display: block;
    padding: 15px 0;
    color: var(--tnwhite);
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    padding-bottom: 40px;
}
.text_container p{
    width: 100%;
    color: var(--tnwhite);
    text-align: justify;
    font-size: 14px;
}
.text_container ul{
    list-style: none;
    width: 100%;
}
.text_container li{
    display: block;
    text-align: center;
    color: #fff;
    background: var(--trymid);
    padding: 60px 0;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--sxblack);
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.active{
    background: #66aaf8 !important;
}

/*.........showcase...........*/
#showcase{
    width: 100%;
}
#showcase h3{
    display: block;
    padding: 15px 0;
    color: var(--tnwhite);
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    padding-bottom: 40px;
}

.oldimgs{
    display: flex;
    justify-content: center;
    gap: 5px;
}

.col img{
    /* margin-bottom: 5px; */
    width: 100%;
}
.new_slider i{
    color: var(--trymid);
    font-size: 1.5rem;
    cursor: pointer;
}
.new_slider i:hover{
    color: var(--tnwhite);
}
.slide_container{
    margin: 10px auto;
    position: relative;
}
.slide_container img{
    width: 100%;
    border-radius: 30px;
}
.slide_container .dots{
    position: absolute;
    left: 46%;
    bottom: 10px;
}
#previous{
    position: absolute;
    left: 25px;
    top: 48%;
}
#next{
    position: absolute;
    right: 25px;
    top: 48%;
}

/*........contact........*/
#contact{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
form{
    height: auto;
    background: var(--trymid);
    color: var(--tnwhite);
    border-radius: 30px;
    text-align: center;
}
form h3{
    display: block;
    text-align: center;
    padding: 30px 0;
    font-size: 2rem;
    font-weight: 900;

}
input, textarea{
    width: 80%;
    height: 50px;
    background: var(--trymid);
    border: 2px solid var(--tnwhite);
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 25px;
}
textarea{
    height: 150px;
}
form button{
    color: var(--tnwhite);
    border: 2px solid var(--tnwhite);
    background: var(--trymid);
    padding: 20px 40px;
    border-radius: 30px;
    cursor: pointer;
}
button:hover{
    color: var(--sxblack);
    background: var(--tnwhite);
}

/*...........footer............*/
footer{
    width: 100%;
    background: var(--trymid);
}
.flinks{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--sxblack);
}
.fsocial, .dev, .flogo{
    flex-basis: 32%;
}
footer img{
    width: 40%;
}
footer h5{
    display: block;
    text-align: center;
    margin: 20px;
    color: var(--tnwhite);
    font-size: 2rem;
}
.dev{
    text-align: center;
}
.dev img{
    cursor: pointer;
}
.flogo{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.cr{
    display: block;
    text-align: center;
    padding: 30px;
    color: var(--tnwhite);
    font-size: 18px;
}

#wbtn{
    padding: 20px;
    background: var(--trymid);
    font-size: 18px;
    font-weight: 200;
    color: var(--tnwhite);
    border: none;
    cursor: pointer;
}

footer a{
    text-decoration: none;
    color: #10adeb;
}
footer a:hover{
    text-decoration: underline;
}