@font-face {
     font-family: deserta;
     src: url(../assets/deserta.ttf);
}

@font-face {
     font-family: Montserrat;
     src: url(../assets/Montserrat-Regular.ttf);
}
:root {
     --bgclr: #292929;
     --maclr: #dddddd;
     --miclr: #767676;
     --itmiclr: #107dac;
     --itmvclr: #e31e2592;
     --itmeclr: #363636;
}

body {
     margin: 0px;
     padding: 0px;
     overflow-x: hidden;
     direction: ltr;
     background-color: var(--bgclr);
     font-family: Montserrat;
     font-size : 14px ;
}

html {
     overflow: scroll;
     overflow-x: hidden;
}

::-webkit-scrollbar {
     width: 0;
     background: transparent;
}
.header {
     width : 100% ;
     height : 60px ;
     border : 1px solid var(--itmeclr) ;
     border-left : none ;
     border-right : none ;
     margin-top : 10px ;
     display: flex;
     justify-content: flex-start;
     align-items: center;
}

.header div:nth-child(1) {
     width : 500px  ;
     height : inherit ;
     display: flex;
     justify-content: flex-start;
     align-items: center;
}

.header div:nth-child(2) {
     width : 300px ;
     height : inherit ;
     flex-grow : 1 ;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding-right : 20px ;
}

.header div:nth-child(2) img {
     width : 150px ;
     height : auto ;
}

.header div:nth-child(1) ul {
     width : 100% ;
     height : inherit ;
     margin : 0px ;
     padding : 0px ;
     display: flex;
     justify-content: space-evenly;
     align-items: center;
     list-style-type: none;
}

.header div:nth-child(1) ul .link {
     text-decoration: none;
     color : var(--maclr) ;
     font-size : 14px ;
     cursor: pointer;
}

.header div:nth-child(1) ul .link:hover {
     color : var(--itmiclr)
}

.featurcont {
     width: 100%;
     min-height: 250px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     align-items: center;
     flex-wrap: wrap;
}

.featurtit {
     width: 100%;
     height: 80px;
     margin-top: -20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}

.featurscnt {
     width: 100%;
     height: 100px;
     display: flex;
     justify-content: center;
     align-items: flex-end;
     margin-bottom : 10px ;
}

.featurtit div:nth-child(1) {
     width: 100%;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.featurtit div:nth-child(2) {
     width: 80%;
     height: 40px;
     display: flex;
     justify-content: flex-start;
     align-items: center;
}

.featurtit div:nth-child(1) strong {
     font-size: 30px;
     font-weight: normal;
     color: var(--itmiclr);
}

.featurtit div:nth-child(2) strong {
     font-size: 18px;
     margin-top: 10px;
     font-weight: normal;
     color: var(--maclr);
}

.featurscnt div {
     width: 250px;
     height: 50px;
     margin: 0px 2px;
     border-radius: 2px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.featurscnt div p {
     width: 250px;
     height: 50px;
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--maclr);
     /* background-color: var(--itmeclr); */
     border : 1px solid var(--itmeclr) ;
     transition: all 0.3s ease-in;
     user-select: none;
}

.featurscnt div p:hover {
     background-color: var(--itmiclr);
     color: var(--maclr);
     margin-top: -5px;
}

.aboucont {
     width: 100%;
     height: 200px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top : 10px ;
     margin-bottom : 20px ;
}

.aboucont p:nth-child(1) {
     width: 650px;
     height: 150px;
     text-align: justify;
     font-size: 15px;
     color: var(--miclr);
     margin-right: 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
}

.aboucont p:nth-child(1) a:nth-child(1) {
     width: 100%;
     height: 20%;
     color : var(--maclr) ;
}

.aboucont p:nth-child(2) {
     width: 250px;
     height: 200px;
     display: flex;
     justify-content: center;
     align-items: center;
}

.aboucont p:nth-child(2) img {
     width: auto;
     height: 200px;
}

.productscont {
     width : 100% ;
     height : 400px ;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}

.productscont p {
     width : 90% ;
     height : 30px ;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     margin-bottom : 0px ;
     color : var(--maclr) ;
     font-size : 18px ;
}

.productscont div {
     width : 90% ;
     height : 250px ;
     display: flex;
     justify-content: center;
     align-items: center;
}

.productscont div p {
     width : 200px ;
     height : 200px ;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     align-items: center;
     background-color: var(--itmeclr) ;
     border-radius : 10px ;
     margin : 10px 5px ;
     transition: all 0.3s ease-in;
}

.productscont div p:hover {
     margin-top : -10px ;
     box-shadow : 1px -2px 0px var(--itmiclr) ;
}

.productscont div p img {
     width : 120px ;
     height : auto ;
     padding-bottom : 10px ;
     margin-top : 10px ;
     border-bottom : 1px solid var(--miclr) ;
     margin-bottom : 10px ;
}

.productscont div p a {
     margin-top : 10px ;
     font-size : 15px ;
     color : var(--miclr) ;
}

/* Footer */

.footer {
     width: 100%;
     min-height: 300px;
     margin-top: 20px;
     margin-bottom: 20px;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     align-items: center;
     flex-wrap: wrap;
     border-top: 1px solid var(--itmeclr);
     border-bottom: 1px solid var(--itmeclr);
}

.footer .itmsocial {
     width: 95%;
     height: 40px;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     margin-top: 15px;
}

.footer .infositms {
     width: 100%;
     height: 250px;
     margin-top: 10px;
     display: flex;
     flex-direction: row-reverse;
     justify-content: flex-start;
     align-items: flex-end;
}

.footer .itmsocial a:nth-child(1) {
     width: 180px;
     height: 40px;
     background-color: var(--itmiclr);
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 4px;
     color: var(--maclr);
     font-size: 12px;
     cursor: pointer;
     transition: all 0.4s ease-in;
     text-decoration: none;
}

.footer .itmsocial a:nth-child(1):hover {
     background-color: var(--itmvclr);
}

.footer .itmsocial a:nth-child(2) {
     width: 33px;
     height: 33px;
     display: block;
     background-image: url(./icons/instagram.png);
     background-repeat: no-repeat;
     background-size: contain;
     display: flex;
     margin-left: 10px;
     cursor: pointer;
     transition: all 0.4s ease-in;
}

.footer .itmsocial a:nth-child(3) {
     width: 28px;
     height: 28px;
     display: block;
     background-image: url(./icons/telegram.png);
     background-size: contain;
     display: flex;
     margin-left: 2px;
     cursor: pointer;
     transition: all 0.4s ease-in;
}

.footer .itmsocial a:nth-child(4) {
     width: 28px;
     height: 28px;
     display: block;
     background-image: url(./icons/twitter.png);
     background-size: contain;
     display: flex;
     margin-left: 5px;
     cursor: pointer;
     transition: all 0.4s ease-in;
}

.footer .infositms div:nth-child(1) {
     width: 300px;
     height: 220px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     flex-wrap: wrap;
}

.footer .infositms div:nth-child(2) {
     width: 500px;
     height: 220px;
     display: flex;
     flex-direction: column;
     align-items: center;
}

.footer .infositms div:nth-child(3) {
     width: 180px;
     height: 220px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
}

.footer .infositms div:nth-child(3) ul {
     list-style-type: none;
}

.footer .infositms div:nth-child(3) ul .link {
     color : var(--maclr) ;
     text-decoration: none;
}

.footer .infositms div:nth-child(3) ul li {
     margin: 10px 0px;
     font-size : 14px ;
     cursor: pointer;
}

.footer .infositms div:nth-child(3) ul .link:hover {
     color : var(--itmvclr) ;
}

.footer .infositms div:nth-child(3) ul li:nth-child(1) {
     color : var(--itmiclr) ;
     font-size : 15px ;
     margin-bottom : 20px ;
}

.footer .infositms div:nth-child(2) ul {
     list-style-type: none;
}

.footer .infositms div:nth-child(2) ul li {
     margin: 10px 0px;
     font-size : 14px ;
     color : var(--maclr) ;
}

.footer .infositms div:nth-child(2) ul li:nth-child(1) {
     color : var(--itmiclr) ;
     font-size : 15px ;
     margin-bottom : 20px ;
}

.footer .infositms div:nth-child(1) p:nth-child(1) {
     width : 100% ;
     height : 20px ;
     margin : 0px ;
     margin-top : 24px ;
     color : var(--itmiclr) ;
     font-size : 15px ;
     margin-bottom : 0px ;
}

.footer .infositms div:nth-child(1) p:nth-child(2) {
     width : 100% ;
     height : 120px ;
     margin : 0px ;
     margin-top : 20px ;
     display: flex;
     justify-content: flex-start;
     align-items: flex-start;
}

.footer .infositms div:nth-child(1) p:nth-child(2) img:nth-child(1) {
     width : 80px ;
     height : 90px ;
     margin-left : 5px ;
}

.footer .infositms div:nth-child(1) p:nth-child(2) img:nth-child(2) {
     width : 322px ;
     height : auto ;
     margin-left : 5px ;
}