/* Defauls Start*/

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

* {
    box-sizing: border-box;
    font-family: inherit;
}

body {
    margin: 0;
    font-family: 'OpenSans';
    font-size: 15px;
    overflow: hidden;
}

body > .bg-img {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/b.jpg');
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover;
    z-index: -2;
}

body > .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}

h1 {
    font-size: 50px;
    color: #fff;
    font-weight: normal;
}

h1,h2,h3,h4 {
    margin: 0;
}

form {
    margin: 0;
}

input, textarea, select {
    outline: none;
    transition: ease 0.3s all;
    width: 100%;
    padding: 3px 7px;
    border: 1px solid #aaa;
    border-radius: 0px;
}

textarea {
    resize: none;
}

input:focus, textarea:focus, select:focus {
}

button {
    outline: none;
    cursor: pointer;
    transition: ease 0.3s all;
    border: 0;
    padding: 4px 10px;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline;
    transition: ease 0.3s all;
}

a:hover {
    color: #348ed8;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-holder {
    border: 1px solid #aaa;
}

.img-holder .img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #000;
}

.hover-text {
    position: relative;
    display: inline-flex;
    justify-content: center;
    cursor: default;
}

.hover-text .label {
    visibility: hidden;
    width: 360px;
    text-align: center;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    opacity: 0;
    transition: ease 0.3s all;
    font-weight: normal;
    font-size: 14px;
}

.hover-text .label .text-holder {
    max-width: 360px;
    min-width: 140px;
    max-height: 181px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 12px;
    overflow-y: auto;
    display: inline-block;
    word-wrap: break-word;
}

.hover-text .label:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.hover-text:hover .label {
    visibility: visible;
    opacity: 0.9;
    bottom: 110%;
}

.page {
    width: 100%;
    height: 100%;
    padding-left: 56px;
    overflow: hidden;
}

.subhead {
    color: #f9a825;
    position: relative;
    padding-left: 40px;
}

.subhead:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 32px;
    background: currentColor;
    left: 0px;
    top: 14px;
}

.items-center {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.btn-container {
    text-align: right;
    position: relative;
    float: right;
}

.btn-container .overlay1 {
    transition: 0.3s ease ;
    border-radius: 50px;
    width: 0px;
    height: 0px;
    position: absolute;
    z-index: -1;
}

.btn-container .btn1 {
    color: #fff;
    font-weight: bold;
    background-color: #f9a825;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.btn-container:hover .overlay1 {
    background-color: #000;
    width: 100%;
    height: 100%;
    border-radius: 0%;
}

.btn-container:hover .btn1 {
    color: #f9a825;
    background-color: transparent;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
}

@media (max-width: 374px) {
    h1 {
        font-size: 35px;
    }
}

/* Defauls End*/
/* Side Menu Start*/
#side-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55px;
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#side-menu .logo {
    width: 100%;
    height: 56px;
    background-color: #1d1d1d;
    padding: 10px;
}

#side-menu .logo img {
    width: 100%;
}

#side-menu .side-nav {
    height: 100%;
    margin-top: -56px;
    flex-direction: column;
}

#side-menu .side-nav .item-holder {
    color: #fff;
    font-size: 22px;
    width: 100%;
    height: 47px;
    position: relative;
}

#side-menu .side-nav .item-holder .icon {
    z-index: 2;
    transition: 0.2s all;
}

#side-menu .side-nav .overlay {
    transition: 0.3s ease ;
    border-radius: 50px;
    width: 10px;
    height: 10px;
    position: absolute;
}

#side-menu .side-nav .item-holder .title {
    position: absolute;
    left: calc(100% + 5px);
    font-size: 12px;
    width: 100px;
    border-bottom: 1px solid currentColor;
    text-shadow: 0 0 10px #000;
    transform: translateX(10px);
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    text-transform: uppercase;
}

#side-menu .side-nav .item-holder:hover .title {
    display: none;
    transform: none;
    visibility: visible;
    opacity: 1;
}

#side-menu .side-nav .item-holder:hover .overlay {
    color: #fff;
    background-color: #f9a825;
    width: 100%;
    height: 100%;
    border-radius: 0%;
}

#side-menu .side-nav .item-holder.active .icon {
    color: #1d1d1d;
}

#side-menu .side-nav .item-holder:hover .icon {
    color: #fff;
}

#side-menu .side-nav .item-holder.active .overlay {
    background-color: #f9a825;
    width: 100%;
    height: 100%;
    border-radius: 0%;
}

@media (max-width: 1023px) {
    #side-menu .side-nav .item-holder:hover .title {
        display:none;
    }
}

/* Side Menu End*/
/* Section Home Start*/
#s-home .page {
    justify-content: flex-end;
}

#s-home .item {
    padding: 0px 56px;
    flex-direction: column;
    width: 50%;
    align-items: flex-start;
}

#s-home h2 {
    color: #fff;
    font-size: 56px;
    font-weight: normal;
    margin-left: -5px;
    font-family: "Opensans";
    margin-bottom: 8px;
}

#s-home h3 {
    color: #fff;
    border-left: 4px solid #f9a825;
    padding-left: 10px;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 8px;
}

#s-home .item-holder {
    display: flex;
    align-items: center;
}

#s-home .item-holder .item1 {
    font-size: 96px;
    line-height: 0;
}

#s-home .item-holder .item2 {
    font-size: 28px;
    line-height: 25px;
}

@media (max-width: 1023px) {
    #s-home .page {
        justify-content:center;
    }

    #s-home .item {
        padding: 0px;
        width: auto;
    }
}

@media (max-width: 424px) {
    #s-home .item {
        transform: scale(0.8);
    }
}

/* Section Home End*/
/* Section About Start*/
#s-about .page {
    display: flex;
    flex-direction: column;
    /* background-image:url('../img/b (7).jpg');
		background-repeat:no-repeat !important;
		background-position:center !important;
		background-size:cover; */
}

/* #s-about .page:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color:#000;
	opacity: .41; 
	} */
#s-about h1 {
    text-align: center;
    padding-top: 20px;
}

#s-about .items-center {
    flex-direction: column;
    padding: 0 20px;
}

#s-about .text {
    color: #fff;
}

#s-about .middle {
    color: #fff;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

#s-about .middle .item-holder {
    width: calc(100% / 3);
    text-align: left;
    padding: 10px;
    display: flex;
}

#s-about .middle .item {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    flex-grow: 1;
    border-bottom: 1px solid #f9a825;
    transition: all 0.3s ease;
    cursor: default;
}

#s-about .middle .item:hover {
    box-shadow: 0 0 20px #f9a825;
    background-color: rgba(0,0,0,0.5);
}

#s-about .middle .item h2 {
    margin-bottom: 10px;
}

#s-about .middle .item .icon {
    font-size: 28px;
    padding-right: 5px;
    color: #f9a825;
}

@media (max-width: 1023px) {
    #s-about .middle .item-holder {
        width:calc(100% / 2);
    }
}

@media (max-width: 767px) {
    #s-about .middle .item-holder {
        width:100%;
    }
}

/* Section About End*/
/* Section Portfolio Start*/
#s-portfolio .page {
    display: flex;
    flex-direction: column;
}

#s-portfolio h1 {
    text-align: center;
    padding-top: 20px;
}

#s-portfolio .filter {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

#s-portfolio .filter .item {
    margin: 5px;
    padding: 3px 10px;
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f9a825;
    transition: 0.3s;
    flex-grow: 1;
}

#s-portfolio .filter .item:hover {
    color: #fff;
    background-color: #f9a825;
    transition: 0.2s;
}

#s-portfolio .item.active {
    color: #1d1d1d;
    background-color: #f9a825;
    border-color: #f9a825;
}

#s-portfolio .item .bigtitle {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 16px;
    padding: 20px;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    color: #FFF;
}

#s-portfolio .clone {
    display: none;
}

#s-portfolio .carousel {
    width: 100%;
    flex-grow: 1;
}

/* #s-portfolio .slider1 .title {
	font-size: 16px;
    font-weight: bold;
    color: #fff;
	position:absolute;
	top:10px;
	left:15px;
	} */
#s-portfolio .slider1 .strip {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    background-color: #ddd;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#s-portfolio .slider1 .dots-holder {
    display: flex;
}

#s-portfolio .slider1 .dots {
    width: 12px;
    height: 12px;
    background-color: #aaa;
    margin-right: 6px;
    border-radius: 50%;
}

#s-portfolio .slider1 .dots:nth-of-type(1) {
    background-color: #ff5f57;
}

#s-portfolio .slider1 .dots:nth-of-type(2) {
    background-color: #ffbd2e;
}

#s-portfolio .slider1 .dots:nth-of-type(3) {
    background-color: #28ca41;
}

#s-portfolio .slider1 .title {
    margin-left: -33px;
    font-size: 14px;
    text-transform: uppercase;
    color: #6a6a6a;
}

#s-portfolio .slider1 .img-holder {
    height: calc(100vh - 110px);
    width: 100%;
    border: 0;
    overflow: hidden;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-direction:  column; */
}

#s-portfolio .slider1 .overlay1 {
    background: linear-gradient(rgba(0,0,0,0.6),transparent,transparent,transparent,transparent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#s-portfolio .slider1 .img-holder:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0;
    width: 0px;
    border-bottom: solid 3px #f9a825;
    transition: all 0.3s ease;
}

#s-portfolio .slider1 .img-holder:hover:after {
    width: 100%;
}

#s-portfolio .slider1 .img-holder .img {
    transition: all 0.3s ease;
}

#s-portfolio .slider1 .img-holder:hover .img {
    width: 115%;
    height: 115%;
}

/* Section Portfolio End*/
/* Section Services Start*/
#s-services .page {
    display: flex;
    flex-direction: column;
    /* 	background-image:url('../img/b (9).jpg');
		background-repeat:no-repeat !important;
		background-position:center !important;
		background-size:cover; */
}

/* #s-services .page:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color:#000;
	opacity: .41; 
	} */
#s-services h1 {
    text-align: center;
    padding-top: 20px;
}

#s-services .items-center {
    justify-content: center
}

#s-services .items-holder {
    display: flex;
    flex-wrap: wrap;
}

#s-services .item-holder {
    width: calc(100% / 3);
    padding: 15px;
    display: flex;
}

#s-services .item {
    flex-grow: 1;
    background-color: rgba(255,255,255,0.1);
    border-bottom: 1px solid #f9a825;
    padding: 35px;
    transition: all 0.3s ease;
}

#s-services .item:hover {
    box-shadow: 0 0 20px #f9a825;
    background-color: rgba(0,0,0,0.5);
}

#s-services .item h2 {
    color: #fff;
}

#s-services .item .icon {
    color: #f9a825;
    font-size: 28px;
    padding-right: 5px;
}

#s-services .item .desc {
    font-size: 16px;
    line-height: 18px;
    color: #fff;
}

#s-services .item .desc {
    padding-left: 22px;
}

#s-services .item .desc li {
    margin-bottom: 10px;
}

@media (max-width: 1023px) {
    #s-services .item-holder {
        width: 50%;
    }
}

@media (max-width: 767px) {
    #s-services .item-holder {
        width:100%;
    }
}

/* Section Services End*/
/* Section Contact Start*/
#s-contact .page {
    display: flex;
    flex-direction: column;
}

#s-contact h1 {
    text-align: center;
    padding-top: 20px;
}

#s-contact .item.left {
    padding-right: 50px;
    margin-right: 50px;
    width: 30%;
}

#s-contact .item.right {
    width: 70%;
}

#s-contact .items-holder {
    padding-left: 120px;
    padding-right: 80px;
    display: flex;
    width: 100%;
}

#s-contact h3 {
    text-transform: uppercase;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    border-bottom: 8px solid;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    margin-bottom: 18px;
    width: 100%;
}

#s-contact h4 {
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    font-size: 20px;
}

#s-contact .item1 {
    color: #fff;
    margin-bottom: 15px;
}

#s-contact .item-holder {
    display: flex;
}

#s-contact .item-holder .item-holder1:nth-of-type(1) {
    margin-right: 10px;
    /* width: 50%; */
}

#s-contact .item-holder1 {
    position: relative;
    margin-bottom: 15px;
    background-color: rgba(255,255,255,0.10);
    border-bottom: 1px solid #f9a825;
}

#s-contact .item-holder1.small-item {
    width: 50%;
}

#s-contact .item-holder1 .input::placeholder {
    color: #bbb;
}

#s-contact .item-holder1 .input {
    width: 100%;
    background-color: rgba(255,255,255,0);
    border: 0;
    padding: 8px 15px 8px 90px;
    color: #fff;
    font-size: 16px;
}

#s-contact .item-holder1 .input.select option {
    color: #1d1d1d;
}

#s-contact .item-holder1 .label {
    position: absolute;
    left: 16px;
    top: 8px;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

#s-contact .item-holder1.budget {
    padding-left: 10px;
}

#s-contact .item-holder1.deadline {
    padding-left: 36px;
}

#s-contact .item-holder1.massage {
    padding: 10px;
}

#s-contact .item-holder1.massage .input::placeholder {
    color: #666;
}

#s-contact .item-holder1.massage .input {
    margin-top: 30px;
    padding-left: 10px;
    background-color: #fff;
    color: #1d1d1d;
    height: 150px;
}

#s-contact .icon-holder {
    display: flex;
    /* justify-content: space-between; */
    margin-top: 10px;
}

#s-contact .icon-holder a {
    margin-right: 5px;
}

#s-contact .icon-holder .icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f9a823;
    border-radius: 5px;
    cursor: pointer;
    transition: ease 0.3s all;
}

#s-contact .icon-holder .icon:hover {
    color: #f9a823;
    background-color: #000;
}

#s-services .item .descMobile {
    color: #fff;
    display: none;
    font-size: 14px;
}

@media (max-width: 1023px) {
    #s-services .item .descMobile {
        display: block;
    }

    #s-services .item .desc {
        display: none;
    }

    #s-about .item .text {
        display: none;
    }

    #s-contact .items-holder {
        flex-wrap: wrap;
    }

    #s-contact .item.left {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }

    #s-contact .item.right {
        width: 100%;
    }

    #s-contact .items-holder {
        padding: 15px;
    }

    #s-contact .item1 {
        width: 50%
    }
}

@media (max-width: 767px) {
    #s-about .middle .item {
        padding: 15px;
    }

    #s-services .item {
        padding: 15px;
    }

    #s-portfolio .slider1 .img-holder {
        height: calc(100vh - 250px);
    }

    #s-contact .item-holder {
        flex-wrap: wrap;
    }

    #s-contact .item-holder1.small-item {
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 374px) {
    h1 {
        font-size: 24px;
    }

    .item h2 {
        font-size: 14px;
    }

    #s-about .middle .item-holder {
    padding: 5px;
}

    #s-about .middle .item {
        padding: 8px;
    }

    #s-contact .item1 {
        width: 100%;
    }

    #s-contact h3 {
        font-size: 25px;
    }

    #s-contact h4 {
        font-size: 18px;
    }

    #s-contact .item-holder1 .label {
        font-size: 16px;
        left: 10px;
    }

    #s-contact .item-holder1 .input {
        font-size: 15px;
        padding: 8px 15px 8px 72px;
    }
}

/* Section Contact End*/
