@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: #FF3158;
    --dark: #21252f;
    --body: #888;
    --white: #ffffff;
    --white-gray: #F7F6FB;
    --box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    --box-shadowprimary: 0 0px 5px rgba(13,110,253,0.5);
    --box-shadowred: 0 0px 5px rgba(198,54,60,0.5);
    --box-shadowblue: 0 0px 5px rgba(12,64,118,0.5);
    --box-shadowgold: 0 0px 5px rgba(255,192,0,0.5);
    --btn-shadow: 0 2px 5px rgba(0,0,0,0.1);
    scrollbar-width: thin !important;
}

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;
}

a {
    color: var(--dark);
    text-decoration: none;
}

img {
    width: 100%;
}

.navbar {
    box-shadow: var(--box-shadow);
}

.logo {
    max-width: 300px;
}
.logo-footer {
    width: 100px;
}
.navbar .nav-link {
    font-size: 14px;
    font-weight: 700;
}

.btn {
    padding: 14px 18px;
    border-width: 2px;
    border-radius: 0;
}

.hero {
    background-image: url(../img/cover.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(21, 20, 51, 0.8);
    z-index: -1;
}

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);
}
.card-effectred {
    box-shadow: var(--box-shadowred);
    background-color: var(--white);
    padding: 10px;
    transition: all 0.35s ease;
    border-radius: 20px;
}

.card-effectred:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.card-effectblue {
    box-shadow: var(--box-shadowblue);
    background-color: var(--white);
    padding: 19px;
    transition: all 0.35s ease;
    border-radius: 20px;
}

.card-effectblue:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.card-effectgold {
    box-shadow: var(--box-shadowgold);
    background-color: var(--white);
    padding: 19px;
    transition: all 0.35s ease;
    border-radius: 20px;
}

.card-effectgold:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.btn-effect {
    box-shadow: var(--btn-shadow);
    background-color: var(--white);
    padding: 5px;
    margin-left: 4px;
    margin-right: 4px;
    margin-top: 4px;
    margin-bottom: 4px;
    transition: all 0.35s ease;
}

.btn-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/covernew.jpg);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.col-imgcard {
    background-image: url(../img/covercard.jpg);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.col-imgcontactcard {
    background-image: url(../img/covercontactcard.jpg);
    background-position: center;
    background-size: cover;
    min-height: 500px;
}

.project {
    position: relative;
    overflow: hidden;
}

.project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 20, 51, 0.8);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    opacity: 0;
}

.project img {
    transition: all 0.4s ease;
}

.project:hover .overlay{
    opacity: 1;
}

.project:hover img {
    transform: scale(1.1);
}


.pricing i {
    font-size: 20px;
    color: var(--primary);
}

.pricing ul li {
    margin-top: 8px;
}

.products i {
    font-size: 30px;
    color: var(--primary);
}

.products ul li {
    margin-top: 15px;
}

.serbia i {
    font-size: 20px;
    color: #0C4076;
}

.serbia ul li {
    margin-top: 8px;
}

.team-member img {
    width: 125px;
    height: 125px;
    border-radius: 100px;
}


.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);
}

.icons {
    display: flex;
    justify-content: center;
}
.icons a {
    width: 54px;
    height: 54px;
    background-color: var(--primary);
    border-radius: 2px solid var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
	font-size: 32px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
}

.icons a:hover {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primarys);
}


form input.form-control {
    height: 56px;
}

form select.form-control {
    height: 56px;
}

form .form-control {
    border: transparent;
    border-radius: 0;
    background-color: rgba(0,0,0,0.02);
}


.footer-top {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #F6F6F6;
}

.footer-top a {
    color: var(--body);
}

.footer-top a:hover {
    color: #FF3158;
}

.footer-bottom {
    background-color: #F6F6F6;
}

.footer-bottom a:hover{
    color: #FF3158;
}

/*District*/
.district img {
    width: 125px;
    height: 125px;
}
.district p {
    font-weight: 700;
}
.card-district {
    box-shadow: var(--box-shadowprimary);
    background-color: var(--white);
    padding: 10px;
    transition: all 0.35s ease;
    border-radius: 10px;
}

.card-district:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.align-right{
  text-align: left;
}

/*Like Dislike*/
.like-btn {
  color: var(--primary);
  background:none;
  border: none;
  font-size: 35px;
  cursor: pointer;
}

.like-btn:hover {
  color: var(--primary);
  background:none;
  border: none;
  font-size: 35px;
  cursor: pointer;
  transform: scale(1.2);
}

.like-btn:active {
  color: var(--primary);
  transform: scale(1.5);
}
/*Sidebar*/
.scroll-menu{
  height: 200px;
  overflow-y: scroll;
}
.image-width30{
  width: 30px;
}

.image-width100{
  width: 100px;
}

.image-width350{
  width: 350px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #21252f;
  border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
  box-shadow: inset 0 0 5px #F7F6FB;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0 0 5px #F7F6FB;
  background: #21252f;
}
