@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');

/*

If you don't have an internet connecton you can use local fonts.
@font-face {
    font-family: "Sora";
    src: url("../fonts/Sora-Regular.ttf");
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/Sora-Bold.ttf");
}*/

:root {
    --primary: #0d6efd;
    --dark: #21252f;
    --body: #888;
    --white: #ffffff;
    --box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

body {
    font-family: "Sora", sans-serif;
    line-height: 1.7;
    color: var(--body);
}


h1,h2,h3,h4,h5,h6,
.display-4 {
    color: var(--dark);
    font-weight: 700;
}

.navbar {
    box-shadow: var(--box-shadow);
}

.navbar .nav-link {
    font-size: 20px;
    font-weight: 700;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
}

.navbar
form input.form-control {
    height: 37px;
}

.carousel-caption h5{
    color: white;
}


section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.card-effect {
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    padding: 25px;
    transition: all 0.35s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}



.iconbox {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 32px;
    border-radius: 100px;
    flex: none;
}


.service {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}


.service:hover .iconbox {
    background-color: var(--white);
    color: var(--primary);
}

.service:hover h5,
.service:hover p {
    color: var(--white);;
}

.service:hover::after {
    opacity: 1;
    top: 0;
}

.col-img {
    background-image: url(../img/cover2.jpg);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.col-img-1 {
    background-image: url(../img/campany-2.jfif);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.col-img-2 {
    background-image: url(../img/company-3.jfif);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}



.social-icons {
    display: flex;
    justify-content: center;
}
.social-icons a {
    width: 34px;
    height: 34px;
    background-color: var(--primary);
    border-radius: 2px solid var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-left: 5px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
}

.social-icons a:hover {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primarys);
}


form input.form-control {
    height: 56px;
}

form .form-control {
    border: transparent;
    border-radius: 0;
    background-color: rgba(0,0,0,0.02);
}


.footer-top {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--dark);
}

.footer-top a {
    color: var(--body);
}

.footer-top a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #242933;
}

span i{
    color: rgb(13, 110, 253) !important;
    font-size:30px;
}


.list-unstyled span i{
    font-size: 20px;
}

.project button{
    font-size: 20px;

}
.project span i{
    font-size: 20px;
    color:white !important;

}


#contact .form-control{

    border: 1px solid #77869f;
    border-radius: 3px;
}

.map{
    margin-bottom: -10px;
}

i.fas{
    font-size: 30px;
}


.hero-section{
    background-image: url(../img/coding.jpg);
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-section-text-div{

    max-width: 400px;
    margin: auto;

    
/* From https://css.glass */
background: rgba(13, 110, 253, 0.54);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.7px);
-webkit-backdrop-filter: blur(2.7px);
border: 1px solid rgba(13, 110, 253, 0.3);
}

